From c2c6b7fe3b0e4637ff0ce738390191bf09ffa872 Mon Sep 17 00:00:00 2001 From: Markus Hauck Date: Wed, 21 Oct 2015 13:15:57 +0200 Subject: [PATCH 0001/1059] activemq: prepare nix files for multiple versions --- pkgs/development/libraries/apache-activemq/5.8.nix | 6 ++++++ .../libraries/apache-activemq/{default.nix => recent.nix} | 7 ++++--- pkgs/top-level/all-packages.nix | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) create mode 100644 pkgs/development/libraries/apache-activemq/5.8.nix rename pkgs/development/libraries/apache-activemq/{default.nix => recent.nix} (75%) diff --git a/pkgs/development/libraries/apache-activemq/5.8.nix b/pkgs/development/libraries/apache-activemq/5.8.nix new file mode 100644 index 00000000000..7e4644895e9 --- /dev/null +++ b/pkgs/development/libraries/apache-activemq/5.8.nix @@ -0,0 +1,6 @@ +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/default.nix b/pkgs/development/libraries/apache-activemq/recent.nix similarity index 75% rename from pkgs/development/libraries/apache-activemq/default.nix rename to pkgs/development/libraries/apache-activemq/recent.nix index 2f2792dec14..a6988023343 100644 --- a/pkgs/development/libraries/apache-activemq/default.nix +++ b/pkgs/development/libraries/apache-activemq/recent.nix @@ -1,12 +1,13 @@ +{ 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.8.0"; src = fetchurl { - url = "mirror://apache/activemq/apache-activemq/${version}/${name}-bin.tar.gz"; - sha256 = "12a1lmmqapviqdgw307jm07vw1z5q53r56pkbp85w9wnqwspjrbk"; + url = mkUrl name; + inherit sha256; }; phases = [ "unpackPhase" "installPhase" ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9d87029b715..8f10895d9d9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5981,7 +5981,7 @@ let acl = callPackage ../development/libraries/acl { }; - activemq = callPackage ../development/libraries/apache-activemq { }; + activemq = callPackage ../development/libraries/apache-activemq/5.8.nix { }; adns = callPackage ../development/libraries/adns { }; From 9c668d847fdbd97100718fa86c3161570e89f6f4 Mon Sep 17 00:00:00 2001 From: Markus Hauck Date: Wed, 21 Oct 2015 13:16:28 +0200 Subject: [PATCH 0002/1059] activemq: Add 5.12.1 version --- pkgs/development/libraries/apache-activemq/5.12.nix | 6 ++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 8 insertions(+) create mode 100644 pkgs/development/libraries/apache-activemq/5.12.nix diff --git a/pkgs/development/libraries/apache-activemq/5.12.nix b/pkgs/development/libraries/apache-activemq/5.12.nix new file mode 100644 index 00000000000..e2e3af96532 --- /dev/null +++ b/pkgs/development/libraries/apache-activemq/5.12.nix @@ -0,0 +1,6 @@ +import ./recent.nix + rec { + version = "5.12.1"; + sha256 = "1hn6pls12dzc2fngz6lji7kmz7blvd3z1dq4via8gd4fjflmw5c9"; + mkUrl = name: "mirror://apache/activemq/${version}/${name}-bin.tar.gz"; + } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8f10895d9d9..ce8ddb862e5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5983,6 +5983,8 @@ let activemq = callPackage ../development/libraries/apache-activemq/5.8.nix { }; + activemq512 = callPackage ../development/libraries/apache-activemq/5.12.nix { }; + adns = callPackage ../development/libraries/adns { }; afflib = callPackage ../development/libraries/afflib { }; From aa89e984742987b593052e93e7704314e8f72ca3 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Tue, 22 Dec 2015 10:48:19 +0100 Subject: [PATCH 0003/1059] 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 05bf6b2b10abae70dc6a605cc7575c13fd4f1a81 Mon Sep 17 00:00:00 2001 From: knupfer Date: Thu, 21 Jan 2016 22:09:23 +0100 Subject: [PATCH 0004/1059] brotliUnstable: init at bed93862 --- pkgs/tools/compression/brotli/unstable.nix | 46 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 48 insertions(+) create mode 100644 pkgs/tools/compression/brotli/unstable.nix diff --git a/pkgs/tools/compression/brotli/unstable.nix b/pkgs/tools/compression/brotli/unstable.nix new file mode 100644 index 00000000000..59eb1e1d469 --- /dev/null +++ b/pkgs/tools/compression/brotli/unstable.nix @@ -0,0 +1,46 @@ +{ stdenv, fetchFromGitHub }: + +# ?TODO: there's also python lib in there + +stdenv.mkDerivation rec { + name = "brotli-20160112"; + version = "bed93862"; + + src = fetchFromGitHub { + owner = "google"; + repo = "brotli"; + rev = "bed93862608d4d232ebe6d229f04e48399775e8b"; + sha256 = "0g94kqh984qkbqbj4fpkkyji9wnbrb9cs32r9d6niw1sqfnfkd6f"; + }; + + preConfigure = "cd tools"; + + # Debian installs "brotli" instead of "bro" but let's keep upstream choice for now. + installPhase = '' + mkdir -p "$out/bin" + mv ./bro "$out/bin/" + ''; + + meta = with stdenv.lib; { + inherit (src.meta) homepage; + + description = "A generic-purpose lossless compression algorithm and tool"; + + longDescription = + '' Brotli is a generic-purpose lossless compression algorithm that + compresses data using a combination of a modern variant of the LZ77 + algorithm, Huffman coding and 2nd order context modeling, with a + compression ratio comparable to the best currently available + general-purpose compression methods. It is similar in speed with + deflate but offers more dense compression. + + The specification of the Brotli Compressed Data Format is defined + in the following internet draft: + http://www.ietf.org/id/draft-alakuijala-brotli + ''; + + license = licenses.mit; + maintainers = []; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1c283e4acb1..acdd52a1a78 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1144,6 +1144,8 @@ let brotli = callPackage ../tools/compression/brotli { }; + brotliUnstable = callPackage ../tools/compression/brotli/unstable.nix { }; + biosdevname = callPackage ../tools/networking/biosdevname { }; checkbashism = callPackage ../development/tools/misc/checkbashisms { }; From bf6a8674d43de385d9168f1fbfa939987e4fc361 Mon Sep 17 00:00:00 2001 From: knupfer Date: Thu, 21 Jan 2016 22:13:35 +0100 Subject: [PATCH 0005/1059] libbrotli: init at 53d53e8 --- .../libraries/libbrotli/default.nix | 36 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/libraries/libbrotli/default.nix diff --git a/pkgs/development/libraries/libbrotli/default.nix b/pkgs/development/libraries/libbrotli/default.nix new file mode 100644 index 00000000000..1e28b57dadf --- /dev/null +++ b/pkgs/development/libraries/libbrotli/default.nix @@ -0,0 +1,36 @@ +{stdenv, fetchFromGitHub, autoconf, automake, libtool, brotliUnstable}: + +stdenv.mkDerivation rec { + name = "libbrotli-20160120"; + version = "53d53e8"; + + src = fetchFromGitHub { + owner = "bagder"; + repo = "libbrotli"; + rev = "53d53e8d9c0d37398d37bac2e7a7aa20b0025e9e"; + sha256 = "10r4nx6n1r54f5cjck5mmmsj7bkasnmmz7m84imhil45q73kzd4m"; + }; + + buildInputs = [autoconf automake libtool]; + preConfigure = '' + cp -r ${brotliUnstable.src}/* brotli/ + chmod -R +700 brotli + mkdir m4 + autoreconf --install --force --symlink + ''; + + meta = with stdenv.lib; { + description = "Meta project to build libraries from the brotli source code"; + longDescription = '' + Wrapper scripts and code around the brotli code base. + Builds libraries out of the brotli decode and encode sources. Uses autotools. + 'brotlidec' is the library for decoding, decompression + 'brotlienc' is the library for encoding, compression + ''; + + homepage = https://github.com/bagder/libbrotli; + license = licenses.mit; + platforms = platforms.all; + maintainers = []; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index acdd52a1a78..1e6fc7511e4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1146,6 +1146,8 @@ let brotliUnstable = callPackage ../tools/compression/brotli/unstable.nix { }; + libbrotli = callPackage ../development/libraries/libbrotli { }; + biosdevname = callPackage ../tools/networking/biosdevname { }; checkbashism = callPackage ../development/tools/misc/checkbashisms { }; From 8e604f7937e9bfd729af13fa8022fa88218a65c0 Mon Sep 17 00:00:00 2001 From: knupfer Date: Thu, 21 Jan 2016 22:14:39 +0100 Subject: [PATCH 0006/1059] nginxModules.brotli: init at 788615e --- pkgs/servers/http/nginx/modules.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/servers/http/nginx/modules.nix b/pkgs/servers/http/nginx/modules.nix index d0d587eb041..f91141a0c66 100644 --- a/pkgs/servers/http/nginx/modules.nix +++ b/pkgs/servers/http/nginx/modules.nix @@ -1,6 +1,16 @@ { fetchFromGitHub, pkgs }: { + brotli = { + src = fetchFromGitHub { + owner = "google"; + repo = "ngx_brotli"; + rev = "788615eab7c5e0a984278113c55248305620df14"; + sha256 = "02514bbjdhm9m38vljdh626d3c1783jxsxawv5c6bzblwmb8xgvf"; + }; + inputs = [ pkgs.libbrotli ]; + }; + rtmp = { src = fetchFromGitHub { owner = "arut"; From d95321b83e7c1a1d74cb62f0c5d98f3b110ee163 Mon Sep 17 00:00:00 2001 From: "tg(x)" <*@tg-x.net> Date: Sat, 27 Feb 2016 16:13:08 +0100 Subject: [PATCH 0007/1059] grsecurity: 4.3.4 -> 4.4.2 --- pkgs/build-support/grsecurity/default.nix | 2 +- pkgs/os-specific/linux/kernel/grsec-path.patch | 3 ++- pkgs/os-specific/linux/kernel/patches.nix | 6 +++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/build-support/grsecurity/default.nix b/pkgs/build-support/grsecurity/default.nix index 841effcfca1..f58d98933d4 100644 --- a/pkgs/build-support/grsecurity/default.nix +++ b/pkgs/build-support/grsecurity/default.nix @@ -33,7 +33,7 @@ let grKernel = if cfg.stable then mkKernel pkgs.linux_3_14 stable-patch - else mkKernel pkgs.linux_4_3 test-patch; + else mkKernel pkgs.linux_4_4 test-patch; ## -- grsecurity configuration --------------------------------------------- diff --git a/pkgs/os-specific/linux/kernel/grsec-path.patch b/pkgs/os-specific/linux/kernel/grsec-path.patch index 6f477c22b5e..bef1a75c23d 100644 --- a/pkgs/os-specific/linux/kernel/grsec-path.patch +++ b/pkgs/os-specific/linux/kernel/grsec-path.patch @@ -2,13 +2,14 @@ diff --git a/kernel/kmod.c b/kernel/kmod.c index a689506..30747b4 100644 --- a/kernel/kmod.c +++ b/kernel/kmod.c -@@ -294,10 +294,8 @@ static int ____call_usermodehelper(void *data) +@@ -294,11 +294,8 @@ static int ____call_usermodehelper(void *data) out the path to be used prior to this point and are now operating on that copy */ - if ((strncmp(sub_info->path, "/sbin/", 6) && strncmp(sub_info->path, "/usr/lib/", 9) && - strncmp(sub_info->path, "/lib/", 5) && strncmp(sub_info->path, "/lib64/", 7) && - strncmp(sub_info->path, "/usr/libexec/", 13) && strncmp(sub_info->path, "/usr/bin/", 9) && +- strncmp(sub_info->path, "/usr/sbin/", 10) && - strcmp(sub_info->path, "/usr/share/apport/apport")) || strstr(sub_info->path, "..")) { + if ((strncmp(sub_info->path, "/sbin/", 6) && strncmp(sub_info->path, "/nix/store/", 11) && + strncmp(sub_info->path, "/run/current-system/systemd/lib/", 32)) || strstr(sub_info->path, "..")) { diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index 3f7afd90322..93c31d0cdd0 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -87,10 +87,10 @@ rec { }; grsecurity_unstable = grsecPatch - { kversion = "4.3.4"; - revision = "201601231215"; + { kversion = "4.4.2"; + revision = "201602182048"; branch = "test"; - sha256 = "1dacld4zlp8mk6ykc0f1v5crppvq3znbdw9rwfrf6qi90984x0mr"; + sha256 = "0dm0nzzja6ynzdz2k5h0ckys7flw307i3w0k1lwjxfj80civ73wr"; }; grsec_fix_path = From 75479605463a0319fa6af0dcd64c833138d38198 Mon Sep 17 00:00:00 2001 From: "tg(x)" <*@tg-x.net> Date: Sat, 27 Feb 2016 16:33:18 +0100 Subject: [PATCH 0008/1059] grsecurity: move version information to one place --- pkgs/build-support/grsecurity/default.nix | 14 +++++++------- pkgs/os-specific/linux/kernel/patches.nix | 15 +++++++++------ 2 files changed, 16 insertions(+), 13 deletions(-) diff --git a/pkgs/build-support/grsecurity/default.nix b/pkgs/build-support/grsecurity/default.nix index f58d98933d4..77b947f906e 100644 --- a/pkgs/build-support/grsecurity/default.nix +++ b/pkgs/build-support/grsecurity/default.nix @@ -22,18 +22,18 @@ let vals = rec { - mkKernel = kernel: patch: - assert patch.kversion == kernel.version; - { inherit kernel patch; - inherit (patch) grversion revision; + mkKernel = patch: + { + inherit patch; + inherit (patch) kernel grversion revision; }; - test-patch = with pkgs.kernelPatches; grsecurity_unstable; + test-patch = with pkgs.kernelPatches; grsecurity_testing; stable-patch = with pkgs.kernelPatches; grsecurity_stable; grKernel = if cfg.stable - then mkKernel pkgs.linux_3_14 stable-patch - else mkKernel pkgs.linux_4_4 test-patch; + then mkKernel stable-patch + else mkKernel test-patch; ## -- grsecurity configuration --------------------------------------------- diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index 93c31d0cdd0..3e745d9f2b5 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl }: +{ stdenv, fetchurl, pkgs }: let @@ -18,9 +18,10 @@ let }; }; - grsecPatch = { grversion ? "3.1", kversion, revision, branch, sha256 }: + grsecPatch = { grversion ? "3.1", kernel, kversion, revision, branch, sha256 }: + assert kversion == kernel.version; { name = "grsecurity-${grversion}-${kversion}"; - inherit grversion kversion revision; + inherit grversion kernel kversion revision; patch = fetchurl { url = "https://github.com/slashbeast/grsecurity-scrape/blob/master/${branch}/grsecurity-${grversion}-${kversion}-${revision}.patch?raw=true"; inherit sha256; @@ -80,14 +81,16 @@ rec { }; grsecurity_stable = grsecPatch - { kversion = "3.14.51"; + { kernel = pkgs.linux_3_14; + kversion = "3.14.51"; revision = "201508181951"; branch = "stable"; sha256 = "1sp1gwa7ahzflq7ayb51bg52abrn5zx1hb3pff3axpjqq7vfai6f"; }; - grsecurity_unstable = grsecPatch - { kversion = "4.4.2"; + grsecurity_testing = grsecPatch + { kernel = pkgs.linux_4_4; + kversion = "4.4.2"; revision = "201602182048"; branch = "test"; sha256 = "0dm0nzzja6ynzdz2k5h0ckys7flw307i3w0k1lwjxfj80civ73wr"; From 75f353ffbdbd5345005e6231a93dd1eae95f6785 Mon Sep 17 00:00:00 2001 From: "tg(x)" <*@tg-x.net> Date: Sat, 27 Feb 2016 19:33:35 +0100 Subject: [PATCH 0009/1059] grsecurity: decouple from mainline --- .../linux/kernel/linux-grsecurity-3.14.nix | 19 +++++++++++++++++++ .../linux/kernel/linux-grsecurity-4.4.nix | 19 +++++++++++++++++++ pkgs/os-specific/linux/kernel/patches.nix | 8 +++++--- pkgs/top-level/all-packages.nix | 18 ++++++++++++++++++ 4 files changed, 61 insertions(+), 3 deletions(-) create mode 100644 pkgs/os-specific/linux/kernel/linux-grsecurity-3.14.nix create mode 100644 pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix diff --git a/pkgs/os-specific/linux/kernel/linux-grsecurity-3.14.nix b/pkgs/os-specific/linux/kernel/linux-grsecurity-3.14.nix new file mode 100644 index 00000000000..a67a91b4d0c --- /dev/null +++ b/pkgs/os-specific/linux/kernel/linux-grsecurity-3.14.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, perl, buildLinux, ... } @ args: + +import ./generic.nix (args // rec { + version = "3.14.51"; + extraMeta.branch = "3.14"; + + src = fetchurl { + url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; + sha256 = "1gqsd69cqijff4c4br4ydmcjl226d0yy6vrmgfvy16xiraavq1mk"; + }; + + kernelPatches = args.kernelPatches; + + features.iwlwifi = true; + features.efiBootStub = true; + features.needsCifsUtils = true; + features.canDisableNetfilterConntrackHelpers = true; + features.netfilterRPFilter = true; +} // (args.argsOverride or {})) diff --git a/pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix new file mode 100644 index 00000000000..dff91095549 --- /dev/null +++ b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, perl, buildLinux, ... } @ args: + +import ./generic.nix (args // rec { + version = "4.4.2"; + extraMeta.branch = "4.4"; + + src = fetchurl { + url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; + sha256 = "09l6y0nb8yv7l16arfwhy4i5h9pkxcbd7hlbw0015n7gm4i2mzc2"; + }; + + kernelPatches = args.kernelPatches; + + features.iwlwifi = true; + features.efiBootStub = true; + features.needsCifsUtils = true; + features.canDisableNetfilterConntrackHelpers = true; + features.netfilterRPFilter = true; +} // (args.argsOverride or {})) diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index 3e745d9f2b5..8ff83b2d7ee 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -23,7 +23,9 @@ let { name = "grsecurity-${grversion}-${kversion}"; inherit grversion kernel kversion revision; patch = fetchurl { - url = "https://github.com/slashbeast/grsecurity-scrape/blob/master/${branch}/grsecurity-${grversion}-${kversion}-${revision}.patch?raw=true"; + url = if branch == "stable" + then "https://github.com/kdave/grsecurity-patches/blob/master/grsecurity_patches/grsecurity-${grversion}-${kversion}-${revision}.patch?raw=true" + else "https://github.com/slashbeast/grsecurity-scrape/blob/master/${branch}/grsecurity-${grversion}-${kversion}-${revision}.patch?raw=true"; inherit sha256; }; features.grsecurity = true; @@ -81,7 +83,7 @@ rec { }; grsecurity_stable = grsecPatch - { kernel = pkgs.linux_3_14; + { kernel = pkgs.linux_grsecurity_3_14; kversion = "3.14.51"; revision = "201508181951"; branch = "stable"; @@ -89,7 +91,7 @@ rec { }; grsecurity_testing = grsecPatch - { kernel = pkgs.linux_4_4; + { kernel = pkgs.linux_grsecurity_4_4; kversion = "4.4.2"; revision = "201602182048"; branch = "test"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 22dbfc41f43..d45c78d67a7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10407,6 +10407,24 @@ let to EC2, where Xen is the Hypervisor. */ + linux_grsecurity_3_14 = callPackage ../os-specific/linux/kernel/linux-grsecurity-3.14.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_grsecurity_4_4 = callPackage ../os-specific/linux/kernel/linux-grsecurity-4.4.nix { + kernelPatches = [ kernelPatches.bridge_stp_helper ] + ++ lib.optionals ((platform.kernelArch or null) == "mips") + [ kernelPatches.mips_fpureg_emu + kernelPatches.mips_fpu_sigill + kernelPatches.mips_ext3_n32 + ]; + }; + grFlavors = import ../build-support/grsecurity/flavors.nix; mkGrsecurity = opts: From 4e3d6d3e90de85b610290af60ba374da20a2cc69 Mon Sep 17 00:00:00 2001 From: "tg(x)" <*@tg-x.net> Date: Sat, 27 Feb 2016 19:54:55 +0100 Subject: [PATCH 0010/1059] grsecurity: separate fix patches for testing & stable --- pkgs/build-support/grsecurity/default.nix | 4 ++-- .../linux/kernel/grsecurity-path-3.14.patch | 17 +++++++++++++++++ ...sec-path.patch => grsecurity-path-4.4.patch} | 0 pkgs/os-specific/linux/kernel/patches.nix | 17 ++++++++++++----- 4 files changed, 31 insertions(+), 7 deletions(-) create mode 100644 pkgs/os-specific/linux/kernel/grsecurity-path-3.14.patch rename pkgs/os-specific/linux/kernel/{grsec-path.patch => grsecurity-path-4.4.patch} (100%) diff --git a/pkgs/build-support/grsecurity/default.nix b/pkgs/build-support/grsecurity/default.nix index 77b947f906e..4a395d46459 100644 --- a/pkgs/build-support/grsecurity/default.nix +++ b/pkgs/build-support/grsecurity/default.nix @@ -25,7 +25,7 @@ let mkKernel = patch: { inherit patch; - inherit (patch) kernel grversion revision; + inherit (patch) kernel patches grversion revision; }; test-patch = with pkgs.kernelPatches; grsecurity_testing; @@ -136,7 +136,7 @@ let mkGrsecKern = grkern: lowPrio (overrideDerivation (grkern.kernel.override (args: { - kernelPatches = args.kernelPatches ++ [ grkern.patch pkgs.kernelPatches.grsec_fix_path ]; + kernelPatches = args.kernelPatches ++ [ grkern.patch ] ++ grkern.patches; argsOverride = { modDirVersion = "${grkern.kernel.modDirVersion}${localver grkern}"; }; diff --git a/pkgs/os-specific/linux/kernel/grsecurity-path-3.14.patch b/pkgs/os-specific/linux/kernel/grsecurity-path-3.14.patch new file mode 100644 index 00000000000..6f477c22b5e --- /dev/null +++ b/pkgs/os-specific/linux/kernel/grsecurity-path-3.14.patch @@ -0,0 +1,17 @@ +diff --git a/kernel/kmod.c b/kernel/kmod.c +index a689506..30747b4 100644 +--- a/kernel/kmod.c ++++ b/kernel/kmod.c +@@ -294,10 +294,8 @@ static int ____call_usermodehelper(void *data) + out the path to be used prior to this point and are now operating + on that copy + */ +- if ((strncmp(sub_info->path, "/sbin/", 6) && strncmp(sub_info->path, "/usr/lib/", 9) && +- strncmp(sub_info->path, "/lib/", 5) && strncmp(sub_info->path, "/lib64/", 7) && +- strncmp(sub_info->path, "/usr/libexec/", 13) && strncmp(sub_info->path, "/usr/bin/", 9) && +- strcmp(sub_info->path, "/usr/share/apport/apport")) || strstr(sub_info->path, "..")) { ++ if ((strncmp(sub_info->path, "/sbin/", 6) && strncmp(sub_info->path, "/nix/store/", 11) && ++ strncmp(sub_info->path, "/run/current-system/systemd/lib/", 32)) || strstr(sub_info->path, "..")) { + printk(KERN_ALERT "grsec: denied exec of usermode helper binary %.950s located outside of permitted system paths\n", sub_info->path); + retval = -EPERM; + goto out; diff --git a/pkgs/os-specific/linux/kernel/grsec-path.patch b/pkgs/os-specific/linux/kernel/grsecurity-path-4.4.patch similarity index 100% rename from pkgs/os-specific/linux/kernel/grsec-path.patch rename to pkgs/os-specific/linux/kernel/grsecurity-path-4.4.patch diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index 8ff83b2d7ee..c5b9fe9d3a7 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -18,10 +18,10 @@ let }; }; - grsecPatch = { grversion ? "3.1", kernel, kversion, revision, branch, sha256 }: + grsecPatch = { grversion ? "3.1", kernel, patches, kversion, revision, branch, sha256 }: assert kversion == kernel.version; { name = "grsecurity-${grversion}-${kversion}"; - inherit grversion kernel kversion revision; + inherit grversion kernel patches kversion revision; patch = fetchurl { url = if branch == "stable" then "https://github.com/kdave/grsecurity-patches/blob/master/grsecurity_patches/grsecurity-${grversion}-${kversion}-${revision}.patch?raw=true" @@ -84,6 +84,7 @@ rec { grsecurity_stable = grsecPatch { kernel = pkgs.linux_grsecurity_3_14; + patches = [ grsecurity_fix_path_3_14 ]; kversion = "3.14.51"; revision = "201508181951"; branch = "stable"; @@ -92,15 +93,21 @@ rec { grsecurity_testing = grsecPatch { kernel = pkgs.linux_grsecurity_4_4; + patches = [ grsecurity_fix_path_4_4 ]; kversion = "4.4.2"; revision = "201602182048"; branch = "test"; sha256 = "0dm0nzzja6ynzdz2k5h0ckys7flw307i3w0k1lwjxfj80civ73wr"; }; - grsec_fix_path = - { name = "grsec-fix-path"; - patch = ./grsec-path.patch; + grsecurity_fix_path_3_14 = + { name = "grsecurity-fix-path-3.14"; + patch = ./grsecurity-path-3.14.patch; + }; + + grsecurity_fix_path_4_4 = + { name = "grsecurity-fix-path-4.4"; + patch = ./grsecurity-path-4.4.patch; }; crc_regression = From 424af2cd52c3c9a684ad595703fcf96eede5499c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sat, 27 Feb 2016 21:47:34 +0100 Subject: [PATCH 0011/1059] 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 0012/1059] 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 0013/1059] 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 0014/1059] 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 0015/1059] 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 0016/1059] 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 0017/1059] 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 0018/1059] 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 38614d3f6ac0a071e4d9e4ee0a6faa1d517c3b95 Mon Sep 17 00:00:00 2001 From: "tg(x)" <*@tg-x.net> Date: Sun, 28 Feb 2016 04:10:59 +0100 Subject: [PATCH 0019/1059] grsecurity: use kernel version instead of testing / stable --- nixos/modules/security/grsecurity.nix | 27 ++------ pkgs/build-support/grsecurity/default.nix | 15 ++--- pkgs/build-support/grsecurity/flavors.nix | 25 +++---- pkgs/os-specific/linux/kernel/patches.nix | 13 ++-- pkgs/top-level/all-packages.nix | 80 +++++++++++++++-------- 5 files changed, 76 insertions(+), 84 deletions(-) diff --git a/nixos/modules/security/grsecurity.nix b/nixos/modules/security/grsecurity.nix index 40942644868..ea739264a14 100644 --- a/nixos/modules/security/grsecurity.nix +++ b/nixos/modules/security/grsecurity.nix @@ -26,19 +26,11 @@ in ''; }; - stable = mkOption { - type = types.bool; - default = false; + kernelPatch = mkOption { + type = types.attrs; + default = pkgs.kernelPatches.grsecurity_latest; description = '' - Enable the stable grsecurity patch, based on Linux 3.14. - ''; - }; - - testing = mkOption { - type = types.bool; - default = false; - description = '' - Enable the testing grsecurity patch, based on Linux 4.0. + Grsecurity patch to use. ''; }; @@ -219,16 +211,7 @@ in config = mkIf cfg.enable { assertions = - [ { assertion = cfg.stable || cfg.testing; - message = '' - If grsecurity is enabled, you must select either the - stable patch (with kernel 3.14), or the testing patch (with - kernel 4.0) to continue. - ''; - } - { assertion = !(cfg.stable && cfg.testing); - message = "Select either one of the stable or testing patch"; - } + [ { assertion = (cfg.config.restrictProc -> !cfg.config.restrictProcWithGroup) || (cfg.config.restrictProcWithGroup -> !cfg.config.restrictProc); message = "You cannot enable both restrictProc and restrictProcWithGroup"; diff --git a/pkgs/build-support/grsecurity/default.nix b/pkgs/build-support/grsecurity/default.nix index 4a395d46459..64cce3dbad5 100644 --- a/pkgs/build-support/grsecurity/default.nix +++ b/pkgs/build-support/grsecurity/default.nix @@ -4,8 +4,7 @@ with lib; let cfg = { - stable = grsecOptions.stable or false; - testing = grsecOptions.testing or false; + kernelPatch = grsecOptions.kernelPatch; config = { mode = "auto"; sysctl = false; @@ -28,12 +27,7 @@ let inherit (patch) kernel patches grversion revision; }; - test-patch = with pkgs.kernelPatches; grsecurity_testing; - stable-patch = with pkgs.kernelPatches; grsecurity_stable; - - grKernel = if cfg.stable - then mkKernel stable-patch - else mkKernel test-patch; + grKernel = mkKernel cfg.kernelPatch; ## -- grsecurity configuration --------------------------------------------- @@ -90,8 +84,8 @@ let # Disable restricting links under the testing kernel, as something # has changed causing it to fail miserably during boot. - restrictLinks = optionalString cfg.testing - "GRKERNSEC_LINK n"; + #restrictLinks = optionalString cfg.testing + # "GRKERNSEC_LINK n"; in '' GRKERNSEC y ${grsecMainConfig} @@ -109,7 +103,6 @@ let GRKERNSEC_CHROOT_CHMOD ${boolToKernOpt cfg.config.denyChrootChmod} GRKERNSEC_DENYUSB ${boolToKernOpt cfg.config.denyUSB} GRKERNSEC_NO_RBAC ${boolToKernOpt cfg.config.disableRBAC} - ${restrictLinks} ${cfg.config.kernelExtraConfig} ''; diff --git a/pkgs/build-support/grsecurity/flavors.nix b/pkgs/build-support/grsecurity/flavors.nix index 969ca579f5a..1281d60aa32 100644 --- a/pkgs/build-support/grsecurity/flavors.nix +++ b/pkgs/build-support/grsecurity/flavors.nix @@ -1,26 +1,17 @@ let - mkOpts = ver: prio: sys: virt: swvirt: hwvirt: + mkOpts = prio: sys: virt: swvirt: hwvirt: { config.priority = prio; config.system = sys; config.virtualisationConfig = virt; config.hardwareVirtualisation = hwvirt; config.virtualisationSoftware = swvirt; - } // builtins.listToAttrs [ { name = ver; value = true; } ]; + }; in { - # Stable kernels - linux_grsec_stable_desktop = - mkOpts "stable" "performance" "desktop" "host" "kvm" true; - linux_grsec_stable_server = - mkOpts "stable" "security" "server" "host" "kvm" true; - linux_grsec_stable_server_xen = - mkOpts "stable" "security" "server" "guest" "xen" true; - - # Testing kernels - linux_grsec_testing_desktop = - mkOpts "testing" "performance" "desktop" "host" "kvm" true; - linux_grsec_testing_server = - mkOpts "testing" "security" "server" "host" "kvm" true; - linux_grsec_testing_server_xen = - mkOpts "testing" "security" "server" "guest" "xen" true; + desktop = + mkOpts "performance" "desktop" "host" "kvm" true; + server = + mkOpts "security" "server" "host" "kvm" true; + server_xen = + mkOpts "security" "server" "guest" "xen" true; } diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index c5b9fe9d3a7..9945361688e 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -18,7 +18,7 @@ let }; }; - grsecPatch = { grversion ? "3.1", kernel, patches, kversion, revision, branch, sha256 }: + grsecPatch = { grversion ? "3.1", kernel, patches, kversion, revision, branch ? "test", sha256 }: assert kversion == kernel.version; { name = "grsecurity-${grversion}-${kversion}"; inherit grversion kernel patches kversion revision; @@ -82,8 +82,8 @@ rec { sha256 = "00b1rqgd4yr206dxp4mcymr56ymbjcjfa4m82pxw73khj032qw3j"; }; - grsecurity_stable = grsecPatch - { kernel = pkgs.linux_grsecurity_3_14; + grsecurity_3_14 = grsecPatch + { kernel = pkgs.grsecurity_base_linux_3_14; patches = [ grsecurity_fix_path_3_14 ]; kversion = "3.14.51"; revision = "201508181951"; @@ -91,15 +91,16 @@ rec { sha256 = "1sp1gwa7ahzflq7ayb51bg52abrn5zx1hb3pff3axpjqq7vfai6f"; }; - grsecurity_testing = grsecPatch - { kernel = pkgs.linux_grsecurity_4_4; + grsecurity_4_4 = grsecPatch + { kernel = pkgs.grsecurity_base_linux_4_4; patches = [ grsecurity_fix_path_4_4 ]; kversion = "4.4.2"; revision = "201602182048"; - branch = "test"; sha256 = "0dm0nzzja6ynzdz2k5h0ckys7flw307i3w0k1lwjxfj80civ73wr"; }; + grsecurity_latest = grsecurity_4_4; + grsecurity_fix_path_3_14 = { name = "grsecurity-fix-path-3.14"; patch = ./grsecurity-path-3.14.patch; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d45c78d67a7..b4d83c68c64 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10407,7 +10407,9 @@ let to EC2, where Xen is the Hypervisor. */ - linux_grsecurity_3_14 = callPackage ../os-specific/linux/kernel/linux-grsecurity-3.14.nix { + # Base kernels to apply the grsecurity patch onto + + grsecurity_base_linux_3_14 = callPackage ../os-specific/linux/kernel/linux-grsecurity-3.14.nix { kernelPatches = [ kernelPatches.bridge_stp_helper ] ++ lib.optionals ((platform.kernelArch or null) == "mips") [ kernelPatches.mips_fpureg_emu @@ -10416,7 +10418,7 @@ let ]; }; - linux_grsecurity_4_4 = callPackage ../os-specific/linux/kernel/linux-grsecurity-4.4.nix { + grsecurity_base_linux_4_4 = callPackage ../os-specific/linux/kernel/linux-grsecurity-4.4.nix { kernelPatches = [ kernelPatches.bridge_stp_helper ] ++ lib.optionals ((platform.kernelArch or null) == "mips") [ kernelPatches.mips_fpureg_emu @@ -10427,28 +10429,37 @@ let grFlavors = import ../build-support/grsecurity/flavors.nix; - mkGrsecurity = opts: + mkGrsecurity = patch: opts: (callPackage ../build-support/grsecurity { - grsecOptions = opts; + grsecOptions = { kernelPatch = patch; } // opts; }); - grKernel = opts: (mkGrsecurity opts).grsecKernel; - grPackage = opts: recurseIntoAttrs (mkGrsecurity opts).grsecPackage; + grKernel = patch: opts: (mkGrsecurity patch opts).grsecKernel; + grPackage = patch: opts: recurseIntoAttrs (mkGrsecurity patch opts).grsecPackage; - # Stable kernels - # This is no longer supported. Please see the official announcement on the - # grsecurity page. https://grsecurity.net/announce.php - linux_grsec_stable_desktop = throw "No longer supported due to https://grsecurity.net/announce.php. " - + "Please use linux_grsec_testing_desktop."; - linux_grsec_stable_server = throw "No longer supported due to https://grsecurity.net/announce.php. " - + "Please use linux_grsec_testing_server."; - linux_grsec_stable_server_xen = throw "No longer supporteddue to https://grsecurity.net/announce.php. " - + "Please use linux_grsec_testing_server_xen."; + # grsecurity kernels (see also linuxPackages_grsec_*) - # Testing kernels - linux_grsec_testing_desktop = grKernel grFlavors.linux_grsec_testing_desktop; - linux_grsec_testing_server = grKernel grFlavors.linux_grsec_testing_server; - linux_grsec_testing_server_xen = grKernel grFlavors.linux_grsec_testing_server_xen; + linux_grsec_desktop_3_14 = grKernel kernelPatches.grsecurity_3_14 grFlavors.desktop; + linux_grsec_server_3_14 = grKernel kernelPatches.grsecurity_3_14 grFlavors.server; + linux_grsec_server_xen_3_14 = grKernel kernelPatches.grsecurity_3_14 grFlavors.server_xen; + + linux_grsec_desktop_4_4 = grKernel kernelPatches.grsecurity_4_4 grFlavors.desktop; + linux_grsec_server_4_4 = grKernel kernelPatches.grsecurity_4_4 grFlavors.server; + linux_grsec_server_xen_4_4 = grKernel kernelPatches.grsecurity_4_4 grFlavors.server_xen; + + linux_grsec_desktop_latest = grKernel kernelPatches.grsecurity_latest grFlavors.desktop; + linux_grsec_server_latest = grKernel kernelPatches.grsecurity_latest grFlavors.server; + linux_grsec_server_xen_latest = grKernel kernelPatches.grsecurity_latest grFlavors.server_xen; + + # grsecurity: old names + + linux_grsec_testing_desktop = linux_grsec_desktop_latest; + linux_grsec_testing_server = linux_grsec_server_latest; + linux_grsec_testing_server_xen = linux_grsec_server_xen_latest; + + linux_grsec_stable_desktop = linux_grsec_desktop_3_14; + linux_grsec_stable_server = linux_grsec_server_3_14; + linux_grsec_stable_server_xen = linux_grsec_server_xen_3_14; /* Linux kernel modules are inherently tied to a specific kernel. So rather than provide specific instances of those packages for a @@ -10589,16 +10600,29 @@ let # Build a kernel for Xen dom0 linuxPackages_latest_xen_dom0 = recurseIntoAttrs (linuxPackagesFor (pkgs.linux_latest.override { features.xen_dom0=true; }) linuxPackages_latest); - # grsecurity flavors - # Stable kernels - linuxPackages_grsec_stable_desktop = grPackage grFlavors.linux_grsec_stable_desktop; - linuxPackages_grsec_stable_server = grPackage grFlavors.linux_grsec_stable_server; - linuxPackages_grsec_stable_server_xen = grPackage grFlavors.linux_grsec_stable_server_xen; + # grsecurity packages - # Testing kernels - linuxPackages_grsec_testing_desktop = grPackage grFlavors.linux_grsec_testing_desktop; - linuxPackages_grsec_testing_server = grPackage grFlavors.linux_grsec_testing_server; - linuxPackages_grsec_testing_server_xen = grPackage grFlavors.linux_grsec_testing_server_xen; + linuxPackages_grsec_desktop_3_14 = grPackage kernelPatches.grsecurity_3_14 grFlavors.desktop; + linuxPackages_grsec_server_3_14 = grPackage kernelPatches.grsecurity_3_14 grFlavors.server; + linuxPackages_grsec_server_xen_3_14 = grPackage kernelPatches.grsecurity_3_14 grFlavors.server_xen; + + linuxPackages_grsec_desktop_4_4 = grPackage kernelPatches.grsecurity_4_4 grFlavors.desktop; + linuxPackages_grsec_server_4_4 = grPackage kernelPatches.grsecurity_4_4 grFlavors.server; + linuxPackages_grsec_server_xen_4_4 = grPackage kernelPatches.grsecurity_4_4 grFlavors.server_xen; + + linuxPackages_grsec_desktop_latest = grPackage kernelPatches.grsecurity_latest grFlavors.desktop; + linuxPackages_grsec_server_latest = grPackage kernelPatches.grsecurity_latest grFlavors.server; + linuxPackages_grsec_server_xen_latest = grPackage kernelPatches.grsecurity_latest grFlavors.server_xen; + + # grsecurity: old names + + linuxPackages_grsec_testing_desktop = linuxPackages_grsec_desktop_latest; + linuxPackages_grsec_testing_server = linuxPackages_grsec_server_latest; + linuxPackages_grsec_testing_server_xen = linuxPackages_grsec_server_xen_latest; + + linuxPackages_grsec_stable_desktop = linuxPackages_grsec_desktop_3_14; + linuxPackages_grsec_stable_server = linuxPackages_grsec_server_3_14; + linuxPackages_grsec_stable_server_xen = linuxPackages_grsec_server_xen_3_14; # ChromiumOS kernels linuxPackages_chromiumos_3_14 = recurseIntoAttrs (linuxPackagesFor pkgs.linux_chromiumos_3_14 linuxPackages_chromiumos_3_14); From abd3c246a43ea5e2128d3372b5fe0295f18cad78 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 28 Feb 2016 12:59:17 +0100 Subject: [PATCH 0020/1059] 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 be3bd972d5f242340a28b65c31d2f16a97c59017 Mon Sep 17 00:00:00 2001 From: "tg(x)" <*@tg-x.net> Date: Sun, 28 Feb 2016 15:00:05 +0100 Subject: [PATCH 0021/1059] grsecurity: add 4.1 kernel --- nixos/modules/security/grsecurity.nix | 1 + .../linux/kernel/linux-grsecurity-4.1.nix | 19 +++++++++++++++++++ pkgs/os-specific/linux/kernel/patches.nix | 8 ++++++++ pkgs/top-level/all-packages.nix | 17 +++++++++++++++++ 4 files changed, 45 insertions(+) create mode 100644 pkgs/os-specific/linux/kernel/linux-grsecurity-4.1.nix diff --git a/nixos/modules/security/grsecurity.nix b/nixos/modules/security/grsecurity.nix index ea739264a14..3aabbc8fe1b 100644 --- a/nixos/modules/security/grsecurity.nix +++ b/nixos/modules/security/grsecurity.nix @@ -29,6 +29,7 @@ in kernelPatch = mkOption { type = types.attrs; default = pkgs.kernelPatches.grsecurity_latest; + example = pkgs.kernelPatches.grsecurity_4_1; description = '' Grsecurity patch to use. ''; diff --git a/pkgs/os-specific/linux/kernel/linux-grsecurity-4.1.nix b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.1.nix new file mode 100644 index 00000000000..4359f4586c5 --- /dev/null +++ b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.1.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, perl, buildLinux, ... } @ args: + +import ./generic.nix (args // rec { + version = "4.1.7"; + extraMeta.branch = "4.1"; + + src = fetchurl { + url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; + sha256 = "0g1dnvak0pd03d4miy1025bw64wq71w29a058dzspdr6jcf9qwbn"; + }; + + kernelPatches = args.kernelPatches; + + features.iwlwifi = true; + features.efiBootStub = true; + features.needsCifsUtils = true; + features.canDisableNetfilterConntrackHelpers = true; + features.netfilterRPFilter = true; +} // (args.argsOverride or {})) diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index 9945361688e..b20d53ef6da 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -91,6 +91,14 @@ rec { sha256 = "1sp1gwa7ahzflq7ayb51bg52abrn5zx1hb3pff3axpjqq7vfai6f"; }; + grsecurity_4_1 = grsecPatch + { kernel = pkgs.grsecurity_base_linux_4_1; + patches = [ grsecurity_fix_path_3_14 ]; + kversion = "4.1.7"; + revision = "201509201149"; + sha256 = "1agv8c3c4vmh5algbzmrq2f6vwk72rikrlcbm4h7jbrb9js6fxk4"; + }; + grsecurity_4_4 = grsecPatch { kernel = pkgs.grsecurity_base_linux_4_4; patches = [ grsecurity_fix_path_4_4 ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b4d83c68c64..321e28f95b3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10418,6 +10418,15 @@ let ]; }; + grsecurity_base_linux_4_1 = callPackage ../os-specific/linux/kernel/linux-grsecurity-4.1.nix { + kernelPatches = [ kernelPatches.bridge_stp_helper ] + ++ lib.optionals ((platform.kernelArch or null) == "mips") + [ kernelPatches.mips_fpureg_emu + kernelPatches.mips_fpu_sigill + kernelPatches.mips_ext3_n32 + ]; + }; + grsecurity_base_linux_4_4 = callPackage ../os-specific/linux/kernel/linux-grsecurity-4.4.nix { kernelPatches = [ kernelPatches.bridge_stp_helper ] ++ lib.optionals ((platform.kernelArch or null) == "mips") @@ -10443,6 +10452,10 @@ let linux_grsec_server_3_14 = grKernel kernelPatches.grsecurity_3_14 grFlavors.server; linux_grsec_server_xen_3_14 = grKernel kernelPatches.grsecurity_3_14 grFlavors.server_xen; + linux_grsec_desktop_4_1 = grKernel kernelPatches.grsecurity_4_1 grFlavors.desktop; + linux_grsec_server_4_1 = grKernel kernelPatches.grsecurity_4_1 grFlavors.server; + linux_grsec_server_xen_4_1 = grKernel kernelPatches.grsecurity_4_1 grFlavors.server_xen; + linux_grsec_desktop_4_4 = grKernel kernelPatches.grsecurity_4_4 grFlavors.desktop; linux_grsec_server_4_4 = grKernel kernelPatches.grsecurity_4_4 grFlavors.server; linux_grsec_server_xen_4_4 = grKernel kernelPatches.grsecurity_4_4 grFlavors.server_xen; @@ -10606,6 +10619,10 @@ let linuxPackages_grsec_server_3_14 = grPackage kernelPatches.grsecurity_3_14 grFlavors.server; linuxPackages_grsec_server_xen_3_14 = grPackage kernelPatches.grsecurity_3_14 grFlavors.server_xen; + linuxPackages_grsec_desktop_4_1 = grPackage kernelPatches.grsecurity_4_1 grFlavors.desktop; + linuxPackages_grsec_server_4_1 = grPackage kernelPatches.grsecurity_4_1 grFlavors.server; + linuxPackages_grsec_server_xen_4_1 = grPackage kernelPatches.grsecurity_4_1 grFlavors.server_xen; + linuxPackages_grsec_desktop_4_4 = grPackage kernelPatches.grsecurity_4_4 grFlavors.desktop; linuxPackages_grsec_server_4_4 = grPackage kernelPatches.grsecurity_4_4 grFlavors.server; linuxPackages_grsec_server_xen_4_4 = grPackage kernelPatches.grsecurity_4_4 grFlavors.server_xen; From c388380bb48411dae999440f378daa75129eaabc Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 28 Feb 2016 15:20:14 +0100 Subject: [PATCH 0022/1059] 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 0023/1059] 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 0024/1059] 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 0025/1059] 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 0026/1059] 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 0027/1059] 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 0028/1059] 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 0029/1059] 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 b1dd00f6163579948c3b6edcb8988e6af8012d70 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 1 Mar 2016 21:53:22 +0100 Subject: [PATCH 0030/1059] libclc: 2015-03-27 -> 0.2.0 Fix build with newer LLVM version --- pkgs/development/libraries/libclc/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libclc/default.nix b/pkgs/development/libraries/libclc/default.nix index 16d9d8c75a4..de3f51752b9 100644 --- a/pkgs/development/libraries/libclc/default.nix +++ b/pkgs/development/libraries/libclc/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchFromGitHub, python, llvm, clang }: stdenv.mkDerivation { - name = "libclc-2015-03-27"; + name = "libclc-2015-08-07"; src = fetchFromGitHub { owner = "llvm-mirror"; repo = "libclc"; - rev = "0a2d1619921545b52303be5608b64dc46f381e97"; - sha256 = "0hgm013c0vlfqfbbf4cdajl01hhk1mhsfk4h4bfza1san97l0vcc"; + rev = "f97d9db40718f2e68b3f0b44200760d8e0d50532"; + sha256 = "10n9qk1dild9yjkjjkzpmp9zid3ysdgvqrad554azcf755frch7g"; }; buildInputs = [ python llvm clang ]; From a5b501a36ec628895ca1bdfa9d7f78fb978476b2 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 2 Mar 2016 17:21:46 +0100 Subject: [PATCH 0031/1059] 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 0032/1059] 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 0033/1059] 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 0034/1059] 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 0035/1059] 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 0036/1059] 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 0037/1059] 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 0038/1059] 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 0039/1059] 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 0040/1059] 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 0041/1059] 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 864ec69c84f89b0f0e073a9a0fec218d521f5ce9 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Sun, 28 Feb 2016 18:22:06 -0600 Subject: [PATCH 0042/1059] qemu: compile with cocoa for darwin support This uses the --enable-cocoa flag in qemu to build in Darwin. --- .../virtualization/qemu/default.nix | 36 +++++++++++-------- pkgs/top-level/all-packages.nix | 5 ++- 2 files changed, 26 insertions(+), 15 deletions(-) diff --git a/pkgs/applications/virtualization/qemu/default.nix b/pkgs/applications/virtualization/qemu/default.nix index 9301f886472..158231a6e64 100644 --- a/pkgs/applications/virtualization/qemu/default.nix +++ b/pkgs/applications/virtualization/qemu/default.nix @@ -1,11 +1,15 @@ { stdenv, fetchurl, python, zlib, pkgconfig, glib, ncurses, perl, pixman -, attr, libcap, vde2, alsaLib, texinfo, libuuid, flex, bison, lzo, snappy -, libseccomp, libaio, libcap_ng, gnutls, nettle, numactl +, vde2, alsaLib, texinfo, libuuid, flex, bison, lzo, snappy +, libaio, gnutls, nettle , makeWrapper -, pulseSupport ? true, libpulseaudio -, sdlSupport ? true, SDL +, attr, libcap, libcap_ng +, CoreServices, Cocoa, rez, setfile +, numaSupport ? stdenv.isLinux, numactl +, seccompSupport ? stdenv.isLinux, libseccomp +, pulseSupport ? !stdenv.isDarwin, libpulseaudio +, sdlSupport ? !stdenv.isDarwin, SDL , vncSupport ? true, libjpeg, libpng -, spiceSupport ? true, spice, spice_protocol, usbredir +, spiceSupport ? !stdenv.isDarwin, spice, spice_protocol, usbredir , x86Only ? false }: @@ -26,31 +30,35 @@ stdenv.mkDerivation rec { }; buildInputs = - [ python zlib pkgconfig glib ncurses perl pixman attr libcap - vde2 texinfo libuuid flex bison makeWrapper lzo snappy libseccomp - libcap_ng gnutls nettle numactl + [ python zlib pkgconfig glib ncurses perl pixman + vde2 texinfo libuuid flex bison makeWrapper lzo snappy + gnutls nettle ] + ++ optionals stdenv.isDarwin [ CoreServices Cocoa rez setfile ] + ++ optionals seccompSupport [ libseccomp ] + ++ optionals numaSupport [ numactl ] ++ optionals pulseSupport [ libpulseaudio ] ++ optionals sdlSupport [ SDL ] ++ optionals vncSupport [ libjpeg libpng ] ++ optionals spiceSupport [ spice_protocol spice usbredir ] - ++ optionals (hasSuffix "linux" stdenv.system) [ alsaLib libaio ]; + ++ optionals stdenv.isLinux [ alsaLib libaio libcap_ng libcap attr ]; enableParallelBuilding = true; patches = [ ./no-etc-install.patch ]; configureFlags = - [ "--enable-seccomp" - "--enable-numa" - "--smbd=smbd" # use `smbd' from $PATH + [ "--smbd=smbd" # use `smbd' from $PATH "--audio-drv-list=${audio}" "--sysconfdir=/etc" "--localstatedir=/var" ] + ++ optional numaSupport "--enable-numa" + ++ optional seccompSupport "--enable-seccomp" ++ optional spiceSupport "--enable-spice" ++ optional x86Only "--target-list=i386-softmmu,x86_64-softmmu" - ++ optional (hasSuffix "linux" stdenv.system) "--enable-linux-aio"; + ++ optional stdenv.isDarwin "--enable-cocoa" + ++ optional stdenv.isLinux "--enable-linux-aio"; postInstall = '' @@ -66,6 +74,6 @@ stdenv.mkDerivation rec { description = "A generic and open source machine emulator and virtualizer"; license = licenses.gpl2Plus; maintainers = with maintainers; [ viric eelco ]; - platforms = platforms.linux; + platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 831390ad774..08f6feb811a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13329,7 +13329,10 @@ let eiskaltdcpp = callPackage ../applications/networking/p2p/eiskaltdcpp { lua5 = lua5_1; }; - qemu = callPackage ../applications/virtualization/qemu { }; + qemu = callPackage ../applications/virtualization/qemu { + inherit (darwin.apple_sdk.frameworks) CoreServices Cocoa; + inherit (darwin.stubs) rez setfile; + }; qjackctl = callPackage ../applications/audio/qjackctl { }; From d2c8919a16a37db7ad3a9d1dee155a9d095f62cd Mon Sep 17 00:00:00 2001 From: Raymond Gauthier Date: Sat, 3 Oct 2015 20:07:00 -0400 Subject: [PATCH 0043/1059] digikam: improvements - Now usable in non kde desktop environments. Build a immutable sycoca database and use wrappers to tie programs to this database and avoid interference from the outside by specifying a fixed `KDELIBS` and fixed/empty `XDG_DATA_DIRS`. Added missing dependencies to syscoca database so that the program is complete. Added all build time optional packages. Kipi-plugins now properly detected. Added almost all optional dependencies so that almost all plugins are usable. Now with vlc phonon backend for video playback. Now with ffmpeg thumbnailer for video items thumbnail creation. Now run without any error log. Tests: - Ran most features of the standard program. Everything work perfectly without error logs. - Ran some of the kipi plugins. Work fine there too. - Ran face detection and fingerprint generation successfully. - Oxygen icons are now displayed properly. - Ran other wrapped executable successfully. --- .../applications/graphics/digikam/default.nix | 224 ++++++++++++++++-- 1 file changed, 202 insertions(+), 22 deletions(-) diff --git a/pkgs/applications/graphics/digikam/default.nix b/pkgs/applications/graphics/digikam/default.nix index bdf8077624d..a41e1ad07d3 100644 --- a/pkgs/applications/graphics/digikam/default.nix +++ b/pkgs/applications/graphics/digikam/default.nix @@ -3,42 +3,222 @@ , libgphoto2, libjpeg, libkdcraw, libkexiv2, libkipi, libpgf, libtiff , libusb1, liblqr1, marble, mysql, opencv, perl, phonon, pkgconfig , qca2, qimageblitz, qjson, qt4, soprano + +# Optional build time dependencies +, baloo, doxygen, kfilemetadata +, lcms2 +, kfaceSupport ? true, libkface ? null +, kgeomapSupport ? true, libkgeomap ? null +, libxslt + +# Plugins optional build time dependencies +, gdk_pixbuf, imagemagick +, libgpod, libksane, libkvkontakte +, qt_gstreamer1 /*qt_soap, herqq -> is missing its av part.*/ + /*qt_koauth */ + +# Supplementary packages required only by the wrapper. +, bash, kde_runtime, kde_baseapps, makeWrapper, oxygen_icons +, phonon_backend_vlc /*phonon_backend_gstreamer,*/ +, ffmpegthumbs /*mplayerthumbs*/ +, runCommand, shared_mime_info, writeScriptBin }: -stdenv.mkDerivation rec { - name = "digikam-4.12.0"; +let + version = "4.12.0"; + pName = "digikam-${version}"; - src = fetchurl { - url = "http://download.kde.org/stable/digikam/${name}.tar.bz2"; - sha256 = "081ldsaf3frf5khznjd3sxkjmi4dyp6w6nqnc2a0agkk0kxkl10m"; + build = stdenv.mkDerivation rec { + name = "digikam-build-${version}"; + + src = fetchurl { + url = "http://download.kde.org/stable/digikam/${pName}.tar.bz2"; + sha256 = "081ldsaf3frf5khznjd3sxkjmi4dyp6w6nqnc2a0agkk0kxkl10m"; + }; + + nativeBuildInputs = [ + automoc4 cmake gettext perl pkgconfig + ] ++ [ + # Optional + doxygen + ]; + + buildInputs = [ + boost eigen jasper kdelibs kdepimlibs lcms lensfun + libgphoto2 libjpeg libkdcraw libkexiv2 libkipi liblqr1 libpgf + libtiff marble mysql.lib opencv phonon qca2 qimageblitz qjson qt4 + shared_desktop_ontologies soprano ] + # Optional build time dependencies + ++ [ + baloo + kfilemetadata + lcms2 ] + ++ stdenv.lib.optional (kfaceSupport && null != libkface) [ libkface ] + ++ stdenv.lib.optional (kgeomapSupport && null != libkgeomap) [ libkgeomap ] ++ + [ libxslt ] + # Plugins optional build time dependencies + ++ [ + gdk_pixbuf imagemagick libgpod libksane + libkvkontakte + qt_gstreamer1 ]; + + # Make digikam find some FindXXXX.cmake + KDEDIRS="${marble}:${qjson}"; + + # Find kdepimlibs's upper case headers under `include/KDE`. + NIX_CFLAGS_COMPILE = "-I${kdepimlibs}/include/KDE"; + + # Help digiKam find libusb, otherwise gphoto2 support is disabled + cmakeFlags = [ + "-DLIBUSB_LIBRARIES=${libusb1}/lib" + "-DLIBUSB_INCLUDE_DIR=${libusb1}/include/libusb-1.0" + "-DENABLE_BALOOSUPPORT=ON" + "-DENABLE_KDEPIMLIBSSUPPORT=ON" + "-DENABLE_LCMS2=ON" ] + ++ stdenv.lib.optional (kfaceSupport && null == libkface) [ "-DDIGIKAMSC_COMPILE_LIBKFACE=ON" ] + ++ stdenv.lib.optional (kgeomapSupport && null == libkgeomap) [ "-DDIGIKAMSC_COMPILE_LIBKGEOMAP=ON" ]; + + enableParallelBuilding = true; + + meta = { + description = "Photo Management Program"; + license = stdenv.lib.licenses.gpl2; + homepage = http://www.digikam.org; + maintainers = with stdenv.lib.maintainers; [ goibhniu viric urkud ]; + inherit (kdelibs.meta) platforms; + }; }; - nativeBuildInputs = [ automoc4 cmake gettext perl pkgconfig ]; - buildInputs = [ - boost eigen jasper kdelibs kdepimlibs lcms lensfun libgphoto2 - libjpeg libkdcraw libkexiv2 libkipi liblqr1 libpgf libtiff marble - mysql.lib opencv phonon qca2 qimageblitz qjson qt4 - shared_desktop_ontologies soprano + kdePkgs = [ + build # digikam's own build + kdelibs kdepimlibs kde_runtime kde_baseapps libkdcraw oxygen_icons + /*phonon_backend_gstreamer*/ phonon_backend_vlc + ffmpegthumbs /*mplayerthumbs*/ shared_mime_info ] + # Optional build time dependencies + ++ [ + + baloo kfilemetadata ] + ++ stdenv.lib.optional (kfaceSupport && null != libkface) [ libkface ] + ++ stdenv.lib.optional (kgeomapSupport && null != libkgeomap) [ libkgeomap ] + ++ [ + libkipi ] + # Plugins optional build time dependencies + ++ [ + libksane libkvkontakte ]; - # Make digikam find some FindXXXX.cmake - KDEDIRS="${marble}:${qjson}"; - # Help digiKam find libusb, otherwise gphoto2 support is disabled - cmakeFlags = [ - "-DLIBUSB_LIBRARIES=${libusb1}/lib" - "-DLIBUSB_INCLUDE_DIR=${libusb1}/include/libusb-1.0" - "-DDIGIKAMSC_COMPILE_LIBKFACE=ON" - ]; + # TODO: It should be the responsability of these packages to add themselves to `KDEDIRS`. See + # for + # a practical example. + # IMPORTANT: Note that using `XDG_DATA_DIRS` here instead of `KDEDIRS` won't work properly. + KDEDIRS = with stdenv.lib; concatStrings (intersperse ":" (map (x: "${x}") kdePkgs)); - enableParallelBuilding = true; + sycocaDirRelPath = "var/lib/kdesycoca"; + sycocaFileRelPath = "${sycocaDirRelPath}/${pName}.sycoca"; + + sycoca = runCommand "${pName}" { + + name = "digikam-sycoca-${version}"; + + nativeBuildInputs = [ kdelibs ]; + + dontPatchELF = true; + dontStrip = true; + + } '' + # Make sure kbuildsycoca4 does not attempt to write to user home directory. + export HOME=$PWD + + export KDESYCOCA="$out/${sycocaFileRelPath}" + + mkdir -p $out/${sycocaDirRelPath} + export XDG_DATA_DIRS="" + export KDEDIRS="${KDEDIRS}" + kbuildsycoca4 --noincremental --nosignal + ''; + + + replaceExeListWithWrapped = + let f = exeName: '' + rm -f "$out/bin/${exeName}" + makeWrapper "${build}/bin/${exeName}" "$out/bin/${exeName}" \ + --set XDG_DATA_DIRS "" \ + --set KDEDIRS "${KDEDIRS}" \ + --set KDESYCOCA "${sycoca}/${sycocaFileRelPath}" + ''; + in + with stdenv.lib; exeNameList: concatStrings (intersperse "\n" (map f exeNameList)); + +in + + +with stdenv.lib; + +/* + Final derivation + ---------------- + + - Create symlinks to our original build derivation items. + - Wrap specific executables so that they know of the appropriate + sycoca database, `KDEDIRS` to use and block any interference + from `XDG_DATA_DIRS` (only `dnginfo` is not wrapped). +*/ +runCommand "${pName}" { + inherit build; + inherit sycoca; + + nativeBuildInputs = [ makeWrapper ]; + + buildInputs = kdePkgs; + + dontPatchELF = true; + dontStrip = true; meta = { description = "Photo Management Program"; license = stdenv.lib.licenses.gpl2; homepage = http://www.digikam.org; - maintainers = with stdenv.lib.maintainers; [ goibhniu viric urkud ]; + maintainers = with stdenv.lib.maintainers; [ /*jraygauthier*/ ]; inherit (kdelibs.meta) platforms; }; -} + +} '' + pushd $build > /dev/null + for d in `find . -maxdepth 1 -name "*" -printf "%f\n" | tail -n+2`; do + mkdir -p $out/$d + for f in `find $d -maxdepth 1 -name "*" -printf "%f\n" | tail -n+2`; do + ln -s "$build/$d/$f" "$out/$d/$f" + done + done + popd > /dev/null + + ${replaceExeListWithWrapped [ "cleanup_digikamdb" "digitaglinktree" "digikam" "dngconverter" + "expoblending" "photolayoutseditor" "scangui" "showfoto" ]} +'' + +/* + +TODO +---- + +### Useful ### + + - Per lib `KDELIBS` environment variable export. See above in-code TODO comment. + - Missing optional `qt_soap` or `herqq` (av + normal package) dependencies. Those are not + yet (or not fully) packaged in nix. Mainly required for upnp export. + - Possibility to use the `phonon_backend_gstreamer` with its own user specified set of backend. + - Allow user to disable optional features or dependencies reacting properly. + - Compile `kipiplugins` as a separate package (so that it can be used by other kde packages + and so that this package's build time is reduced). + +### Not so useful ### + + - Missing optional `qt_koauth` (not packaged in nix). + - Missing optional `libmediawiki` (not packaged in nix).. + - For some reason the cmake build does not detect `libkvkontakte`. Fix this. + - Possibility to use `mplayerthumbs` thumbnail creator backend. In digikam dev docs, + it is however suggested to use `ffmpegthumbs`. Maybe we should stick to it. + +*/ From 215c54c310f50a7697f44c3c38ecec49e23d43b7 Mon Sep 17 00:00:00 2001 From: Mate Kovacs Date: Sat, 5 Mar 2016 23:24:21 -0800 Subject: [PATCH 0044/1059] pythonPackages.av: init at 0.2.4 --- 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 ade98083aa3..2f5daced11e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1119,6 +1119,29 @@ in modules // { }; }); + av = buildPythonPackage rec { + name = "av-${version}"; + version = "0.2.4"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/a/av/${name}.tar.gz"; + sha256 = "bdc7e2e213cb9041d9c5c0497e6f8c47e84f89f1f2673a46d891cca0fb0d19a0"; + }; + + buildInputs + = (with self; [ nose pillow numpy ]) + ++ (with pkgs; [ ffmpeg git libav pkgconfig ]); + + # Because of https://github.com/mikeboers/PyAV/issues/152 + doCheck = false; + + meta = { + description = "Pythonic bindings for FFmpeg/Libav"; + homepage = https://github.com/mikeboers/PyAV/; + license = licenses.bsd2; + }; + }; + avro = buildPythonPackage (rec { name = "avro-1.7.6"; From 5e5494a85213d535843e86e228f078381ab57459 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 28 Feb 2016 13:27:43 +0000 Subject: [PATCH 0045/1059] 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 ada105188814daf32f8ac559250b08a3167453aa Mon Sep 17 00:00:00 2001 From: Avery Glitch Date: Mon, 7 Mar 2016 18:53:40 +1100 Subject: [PATCH 0046/1059] Added vim plugins Lightline and Spacegray --- pkgs/misc/vim-plugins/default.nix | 20 ++++++++++++++++++++ pkgs/misc/vim-plugins/vim-plugin-names | 2 ++ 2 files changed, 22 insertions(+) diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index 5e6e73419d2..c61947fc8f7 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -1616,4 +1616,24 @@ rec { }; + lightline-vim = buildVimPluginFrom2Nix { + name = "lightline-2016-02-10"; + src = fetchgit { + url = "git://github.com/itchyny/lightline.vim"; + rev = "e6a43f98fab1ee2e373bd0b670803222607ed123"; + sha256 = "abb836d728a8f674f3aa71c4936798c9be02bb352ca0e6e5f5b262886622ac3b"; + }; + dependencies = []; + }; + + Spacegray-vim = buildVimPluginFrom2Nix { + name = "spacegray-2015-04-05"; + src = fetchgit { + url = "git://github.com/ajh17/Spacegray.vim"; + rev = "1c10d0da045609910e8fb03b33c043bbcff35d9e"; + sha256 = "bced8987539ca42f84350b90e2570a226dad66e8061b90b79a41d51f9fb4b4b5"; + }; + dependencies = []; + }; + } diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index 87420a7a4ca..82b59f1ebaa 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -21,6 +21,7 @@ "ghcmod" "github:Chiel92/vim-autoformat" "github:LnL7/vim-nix" +"github:ajh17/Spacegray.vim" "github:ap/vim-css-color" "github:benekastah/neomake" "github:bitc/vim-hdevtools" @@ -34,6 +35,7 @@ "github:idris-hackers/idris-vim" "github:itchyny/calendar.vim" "github:itchyny/thumbnail.vim" +"github:itchyny/lightline.vim" "github:ivanov/vim-ipython" "github:jceb/vim-hier" "github:jeetsukumaran/vim-buffergator" From ff69fc6fb9093decaaa4a16f89dffce40fc55803 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 7 Mar 2016 13:03:31 +0100 Subject: [PATCH 0047/1059] 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 0048/1059] 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 17f0573c900372bcaf0c8c406563350949539c45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Val=C3=A9rian=20Galliat?= Date: Mon, 7 Mar 2016 10:06:18 -0500 Subject: [PATCH 0049/1059] go2nix: update to 4c552da --- pkgs/top-level/go-packages.nix | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index dd9a9dde7bb..888ffe474f2 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3767,12 +3767,22 @@ let }; go2nix = buildFromGitHub rec { - rev = "dd513f1f1336a3cdceb9dd4be0f3c47a09929651"; + rev = "4c552dadd855e3694ed3499feb46dca9cd855f60"; owner = "kamilchm"; repo = "go2nix"; - sha256 = "1ad7zcab5vjbw7a8ns0aspkblqqz0z96b7ak3zdx409rq7rlqdsj"; - buildInputs = [ go-bindata.bin tools.bin vcs go-spew gls go-difflib assertions goconvey testify kingpin ]; + sha256 = "1pwnm1vrjxvgl17pk9n1k5chmhgwxkrwp2s1bzi64xf12anibj63"; + + buildInputs = [ pkgs.makeWrapper go-bindata.bin tools.bin vcs go-spew gls go-difflib assertions goconvey testify kingpin ]; + preBuild = ''go generate ./...''; + + postInstall = '' + wrapProgram $bin/bin/go2nix \ + --prefix PATH : ${pkgs.nix-prefetch-git}/bin \ + --prefix PATH : ${pkgs.git}/bin + ''; + + allowGoReference = true; }; godotenv = buildFromGitHub rec { From cf71bc9255b6a71ee756a82e05e9204cc32eaffa Mon Sep 17 00:00:00 2001 From: Henry Till Date: Mon, 7 Mar 2016 10:49:19 -0500 Subject: [PATCH 0050/1059] racket: fix build error https://github.com/racket/racket/issues/1222 closes #13733 --- pkgs/development/interpreters/racket/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/development/interpreters/racket/default.nix b/pkgs/development/interpreters/racket/default.nix index d22d3849b1b..748482b1bf0 100644 --- a/pkgs/development/interpreters/racket/default.nix +++ b/pkgs/development/interpreters/racket/default.nix @@ -28,6 +28,11 @@ let sqlite ]; + boolPatch = fetchurl { + url = "http://copr-dist-git.fedorainfracloud.org/cgit/bthomas/racket/racket.git/plain/xform-errors-converting-fix.patch"; + sha256 = "0h5g7a7w8wwj43jb8q69xldgbyxkn0y0i1na6r9fk17dd56nsm68"; + }; + in stdenv.mkDerivation rec { @@ -51,6 +56,10 @@ stdenv.mkDerivation rec { cd src/build ''; + # https://github.com/racket/racket/issues/1222 + # Fixed upstream after the release of 6.4 + patches = [ boolPatch ]; + shared = if stdenv.isDarwin then "dylib" else "shared"; configureFlags = [ "--enable-${shared}" "--enable-lt=${libtool}/bin/libtool" ] ++ stdenv.lib.optional disableDocs [ "--disable-docs" ] From aac309fa95a70a1d01603df075aa93bfc2a4a4c9 Mon Sep 17 00:00:00 2001 From: Simon Vandel Sillesen Date: Sat, 5 Mar 2016 11:51:25 +0100 Subject: [PATCH 0051/1059] mba6x_bl: init at 2016-02-12 This driver fixes backlight after suspend/resume on Macbook Air 6,1 and 6,2. Added a workaround for https://github.com/patjak/mba6x_bl/issues/43 in form of a systemd service. Has been working great on my machine for at least a month now. --- pkgs/os-specific/linux/mba6x_bl/default.nix | 32 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 pkgs/os-specific/linux/mba6x_bl/default.nix diff --git a/pkgs/os-specific/linux/mba6x_bl/default.nix b/pkgs/os-specific/linux/mba6x_bl/default.nix new file mode 100644 index 00000000000..010bda4bb15 --- /dev/null +++ b/pkgs/os-specific/linux/mba6x_bl/default.nix @@ -0,0 +1,32 @@ +{ fetchFromGitHub, kernel, stdenv }: + +with stdenv.lib; + +let pkgName = "mba6x_bl"; +in + +stdenv.mkDerivation rec { + name = "${pkgName}-2016-02-12"; + + src = fetchFromGitHub { + owner = "patjak"; + repo = pkgName; + rev = "9c2de8a24e7d4e8506170a19d32d6f11f380a142"; + sha256 = "1zaypai8lznqcaszb6an643amsvr5qjnqj6aq6jkr0qk37x0fjff"; + }; + + enableParallelBuilding = true; + + makeFlags = [ + "KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" + "INSTALL_MOD_PATH=$(out)" + ]; + + meta = { + description = "MacBook Air 6,1 and 6,2 (mid 2013) backlight driver"; + homepage = "https://github.com/patjak/mba6x_bl"; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = [ maintainers.simonvandel ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c540ff849c8..f62ca556ce5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10531,6 +10531,8 @@ let jool = callPackage ../os-specific/linux/jool { }; + mba6x_bl = callPackage ../os-specific/linux/mba6x_bl { }; + /* compiles but has to be integrated into the kernel somehow Let's have it uncommented and finish it.. */ From aaa443516f247c07946ba31995c04d020ff6ad77 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Mon, 7 Mar 2016 19:24:24 +0100 Subject: [PATCH 0052/1059] mkvtoolnix: 8.4.0 -> 8.9.0 --- .../applications/video/mkvtoolnix/default.nix | 94 +++++++------------ pkgs/top-level/all-packages.nix | 3 - 2 files changed, 36 insertions(+), 61 deletions(-) diff --git a/pkgs/applications/video/mkvtoolnix/default.nix b/pkgs/applications/video/mkvtoolnix/default.nix index cda861497e1..54bd2b5f979 100644 --- a/pkgs/applications/video/mkvtoolnix/default.nix +++ b/pkgs/applications/video/mkvtoolnix/default.nix @@ -1,76 +1,54 @@ -{ stdenv, fetchurl, gettext, pkgconfig, ruby -, boost, expat, file, flac, libebml, libmatroska, libogg, libvorbis, xdg_utils, zlib -# pugixml (not packaged) -, buildConfig ? "all" -, withGUI ? false, qt5 ? null # Disabled for now until upstream issues are resolved -, legacyGUI ? true, wxGTK ? null -# For now both qt5 and wxwidgets gui's are enabled, if wxwidgets is disabled the -# build system doesn't install desktop entries, icons, etc... -, libiconv +{ stdenv, fetchgit, pkgconfig, autoconf, automake +, ruby, file, xdg_utils, gettext, expat, qt5, boost +, libebml, zlib, libmatroska, libogg, libvorbis, flac +, withGUI ? true }: -let - inherit (stdenv.lib) enableFeature optional; -in - assert withGUI -> qt5 != null; -assert legacyGUI -> wxGTK != null; + +with stdenv.lib; stdenv.mkDerivation rec { name = "mkvtoolnix-${version}"; - version = "8.4.0"; + version = "8.9.0"; - src = fetchurl { - url = "http://www.bunkus.org/videotools/mkvtoolnix/sources/${name}.tar.xz"; - sha256 = "0y7qm8q9vpvjiw7b69k9140pw9nhvs6ggmk56yxnmcd02inm19gn"; + src = fetchgit { + url = "https://github.com/mbunkus/mkvtoolnix.git"; + rev = "54e6b52b3dde07f89da4542997ef059e18802128"; + sha256 = "1hm9f9q60c0axmmlsalazsiil8gk3v8q6cl5qxsfa95m51i39878"; }; - patchPhase = '' - patchShebangs ./rake.d/ - patchShebangs ./Rakefile - # Force ruby encoding to use UTF-8 or else when enabling qt5 the Rakefile may - # fail with `invalid byte sequence in US-ASCII' due to UTF-8 characters - # This workaround replaces an arbitrary comment in the drake file - sed -e 's,#--,Encoding.default_external = Encoding::UTF_8,' -i ./drake - ''; - - configureFlags = [ - "--with-boost-libdir=${boost.lib}/lib" - "--without-curl" - ] ++ ( - if (withGUI || legacyGUI) then [ - "--with-mkvtoolnix-gui" - "--enable-gui" - (enableFeature withGUI "qt") - (enableFeature legacyGUI "wxwidgets") - ] else [ - "--disable-gui" - ] - ); - - nativeBuildInputs = [ gettext pkgconfig ruby ]; + nativeBuildInputs = [ gettext ruby ]; buildInputs = [ - boost expat file flac libebml libmatroska libogg libvorbis xdg_utils zlib - ] ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv ] - ++ optional withGUI qt5 - ++ optional legacyGUI wxGTK; + pkgconfig autoconf automake expat + file xdg_utils boost libebml zlib + libmatroska libogg libvorbis flac + (optional withGUI qt5.qtbase) + ]; - enableParallelBuilding = true; + preConfigure = "./autogen.sh"; + buildPhase = "./drake -j $NIX_BUILD_CORES"; + installPhase = "./drake install -j $NIX_BUILD_CORES"; - buildPhase = '' - ./drake - ''; - - installPhase = '' - ./drake install - ''; + configureFlags = [ + "--enable-magic" + "--enable-optimization" + "--with-boost-libdir=${boost.lib}/lib" + "--disable-debug" + "--disable-profiling" + "--disable-precompiled-headers" + "--disable-static-qt" + "--without-curl" + "--with-gettext" + (enableFeature withGUI "qt") + ]; meta = with stdenv.lib; { description = "Cross-platform tools for Matroska"; - homepage = http://www.bunkus.org/videotools/mkvtoolnix/; - license = licenses.gpl2; - maintainers = with maintainers; [ codyopel fuuzetsu ]; - platforms = platforms.all; + homepage = http://www.bunkus.org/videotools/mkvtoolnix/; + license = licenses.gpl2; + maintainers = with maintainers; [ codyopel fuuzetsu rnhmjoj ]; + platforms = platforms.linux; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b6c83a3cbbf..faba12c71c0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8148,9 +8148,6 @@ let mkvtoolnix-cli = mkvtoolnix.override { withGUI = false; - qt5 = null; - legacyGUI = false; - wxGTK = null; }; mlt-qt4 = callPackage ../development/libraries/mlt { From 7a3122757386555c9339400a6f3fb03d81865d1d Mon Sep 17 00:00:00 2001 From: Sergiu Ivanov Date: Tue, 20 Oct 2015 01:57:24 +0200 Subject: [PATCH 0053/1059] oh-my-zsh-git: init at 2016-02-27 --- lib/maintainers.nix | 1 + pkgs/shells/oh-my-zsh/default.nix | 74 +++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 77 insertions(+) create mode 100644 pkgs/shells/oh-my-zsh/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index b908ec3115a..4c552946667 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -299,6 +299,7 @@ sander = "Sander van der Burg "; schmitthenner = "Fabian Schmitthenner "; schristo = "Scott Christopher "; + scolobb = "Sergiu Ivanov "; sepi = "Raffael Mancini "; sheganinans = "Aistis Raulinaitis "; shell = "Shell Turner "; diff --git a/pkgs/shells/oh-my-zsh/default.nix b/pkgs/shells/oh-my-zsh/default.nix new file mode 100644 index 00000000000..297489fd7fc --- /dev/null +++ b/pkgs/shells/oh-my-zsh/default.nix @@ -0,0 +1,74 @@ +# This script was inspired by the ArchLinux User Repository package: +# +# https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=oh-my-zsh-git + + +{ stdenv, fetchgit }: + +stdenv.mkDerivation rec { + name = "oh-my-zsh-git-${version}"; + version = "2016-02-27"; + + src = fetchgit { + url = "https://github.com/robbyrussell/oh-my-zsh"; + rev = "bd6dbd1d9b1fc8a523aaf588492eb3ed4113b49d"; + sha256 = "0bn3jijxjhrd00mc3biqs7jj6in3ivhr6d02mp4566i2rdp9x2d5"; + }; + + phases = "installPhase"; + + installPhase = '' + outdir=$out/share/oh-my-zsh + template=templates/zshrc.zsh-template + + mkdir -p $outdir + cp -r $src/* $outdir + cd $outdir + + rm MIT-LICENSE.txt + rm -rf .git* + + chmod -R +w templates + + # Change the path to oh-my-zsh dir and disable auto-updating. + sed -i -e "2c\\ZSH=$outdir/" \ + -e 's/\# \(DISABLE_AUTO_UPDATE="true"\)/\1/' \ + $template + + # Look for .zsh_variables, .zsh_aliases, and .zsh_funcs, and source + # them, if found. + cat >> $template <<- EOF + + # Load the variables. + if [ -f ~/.zsh_variables ]; then + . ~/.zsh_variables + fi + + # Load the functions. + if [ -f ~/.zsh_funcs ]; then + . ~/.zsh_funcs + fi + + # Load the aliases. + if [ -f ~/.zsh_aliases ]; then + . ~/.zsh_aliases + fi + EOF + ''; + + meta = with stdenv.lib; { + description = "A framework for managing your zsh configuration"; + longDescription = '' + Oh My Zsh is a framework for managing your zsh configuration. + + To copy the Oh My Zsh configuration file to your home directory, run + the following command: + + $ cp -v $(nix-env -q --out-path oh-my-zsh-git | cut -d' ' -f3)/share/oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc + ''; + homepage = "http://ohmyz.sh/"; + license = licenses.mit; + platforms = platforms.all; + maintainers = with maintainers; [ scolobb nequissimus ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b6c83a3cbbf..dad5b87eaec 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2675,6 +2675,8 @@ let inherit (pythonPackages) sqlite3; }; + oh-my-zsh = callPackage ../shells/oh-my-zsh { }; + opencryptoki = callPackage ../tools/security/opencryptoki { }; opendbx = callPackage ../development/libraries/opendbx { }; From be590f1d9dffd88e333ed4cfa336420e4eacd3c9 Mon Sep 17 00:00:00 2001 From: Sergiu Ivanov Date: Tue, 1 Dec 2015 23:52:59 +0100 Subject: [PATCH 0054/1059] aspell-dict-ro: init at 3.3-2 --- pkgs/development/libraries/aspell/dictionaries.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/development/libraries/aspell/dictionaries.nix b/pkgs/development/libraries/aspell/dictionaries.nix index 3fb49c2be24..c0c4bf97b60 100644 --- a/pkgs/development/libraries/aspell/dictionaries.nix +++ b/pkgs/development/libraries/aspell/dictionaries.nix @@ -167,6 +167,15 @@ in { }; }; + ro = buildDict { + shortName = "ro-3.3-2"; + fullName = "Romanian"; + src = fetchurl { + url = mirror://gnu/aspell/dict/ro/aspell5-ro-3.3-2.tar.bz2; + sha256 = "0gb8j9iy1acdl11jq76idgc2lbc1rq3w04favn8cyh55d1v8phsk"; + }; + }; + ru = buildDict { shortName = "ru-0.99f7-1"; fullName = "Russian"; From 81f0eaa61f17460551d24c23e0e298eda94cfb2b Mon Sep 17 00:00:00 2001 From: Sergiu Ivanov Date: Sat, 27 Feb 2016 23:22:50 +0100 Subject: [PATCH 0055/1059] montserrat: init at 1.0 --- pkgs/data/fonts/montserrat/default.nix | 28 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 pkgs/data/fonts/montserrat/default.nix diff --git a/pkgs/data/fonts/montserrat/default.nix b/pkgs/data/fonts/montserrat/default.nix new file mode 100644 index 00000000000..70fd2060ff1 --- /dev/null +++ b/pkgs/data/fonts/montserrat/default.nix @@ -0,0 +1,28 @@ +# Originally packaged for ArchLinux. +# +# https://aur.archlinux.org/packages/ttf-montserrat/ + +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "montserrat-${version}"; + version = "1.0"; + + src = fetchurl { + url = "http://marvid.fr/~eeva/mirror/Montserrat.tar.gz"; + sha256 = "12yn651kxi5fcbpdxhapg5fpri291mgcfc1kx7ymg53nrl11nj3x"; + }; + + installPhase = '' + mkdir -p $out/share/fonts/montserrat + cp *.ttf $out/share/fonts/montserrat + ''; + + meta = with stdenv.lib; { + description = "A geometric sans serif font with extended latin support (Regular, Alternates, Subrayada)"; + homepage = "http://www.fontspace.com/julieta-ulanovsky/montserrat"; + license = licenses.ofl; + platforms = platforms.all; + maintainers = with maintainers; [ scolobb ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dad5b87eaec..2dcf2685d30 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11220,6 +11220,8 @@ let mobile_broadband_provider_info = callPackage ../data/misc/mobile-broadband-provider-info { }; + montserrat = callPackage ../data/fonts/montserrat { }; + mph_2b_damase = callPackage ../data/fonts/mph-2b-damase { }; mplus-outline-fonts = callPackage ../data/fonts/mplus-outline-fonts { }; From 4c1be2b7da9bcab6428aaf10b1681c7436a4c12e Mon Sep 17 00:00:00 2001 From: obadz Date: Mon, 7 Mar 2016 17:33:32 +0000 Subject: [PATCH 0056/1059] pithos: add desktop item --- pkgs/applications/audio/pithos/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/audio/pithos/default.nix b/pkgs/applications/audio/pithos/default.nix index 1083f9434a9..ac42fc71642 100644 --- a/pkgs/applications/audio/pithos/default.nix +++ b/pkgs/applications/audio/pithos/default.nix @@ -19,6 +19,11 @@ pythonPackages.buildPythonApplication rec { substituteInPlace setup.py --replace "/usr/share" "$out/share" ''; + postInstall = '' + mkdir -p $out/share/applications + cp -v data/pithos.desktop $out/share/applications + ''; + buildInputs = [ wrapGAppsHook ]; propagatedBuildInputs = From 82e12688a2cd00fdc1f3d134decb52942ced8f1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Mon, 7 Mar 2016 11:21:53 -0300 Subject: [PATCH 0057/1059] jwm: window manager module addition --- .../services/x11/window-managers/default.nix | 1 + .../services/x11/window-managers/jwm.nix | 25 +++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 nixos/modules/services/x11/window-managers/jwm.nix diff --git a/nixos/modules/services/x11/window-managers/default.nix b/nixos/modules/services/x11/window-managers/default.nix index 26dfbb1f4e1..63136beac71 100644 --- a/nixos/modules/services/x11/window-managers/default.nix +++ b/nixos/modules/services/x11/window-managers/default.nix @@ -17,6 +17,7 @@ in ./fluxbox.nix ./herbstluftwm.nix ./i3.nix + ./jwm.nix ./metacity.nix ./openbox.nix ./notion.nix diff --git a/nixos/modules/services/x11/window-managers/jwm.nix b/nixos/modules/services/x11/window-managers/jwm.nix new file mode 100644 index 00000000000..0e8dab2e922 --- /dev/null +++ b/nixos/modules/services/x11/window-managers/jwm.nix @@ -0,0 +1,25 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.services.xserver.windowManager.jwm; +in +{ + ###### interface + options = { + services.xserver.windowManager.jwm.enable = mkEnableOption "jwm"; + }; + + ###### implementation + config = mkIf cfg.enable { + services.xserver.windowManager.session = singleton { + name = "jwm"; + start = '' + ${pkgs.jwm}/bin/jwm & + waitPID=$! + ''; + }; + environment.systemPackages = [ pkgs.jwm ]; + }; +} From 5856e89b2cbccf40d2f1b8d72e0356cbbedc9e2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Mon, 7 Mar 2016 16:11:13 -0300 Subject: [PATCH 0058/1059] jwm: 2.2.2 -> 1406 --- .../window-managers/jwm/default.nix | 33 ++++++++++--------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/pkgs/applications/window-managers/jwm/default.nix b/pkgs/applications/window-managers/jwm/default.nix index f019ba9751b..adbdef5e284 100644 --- a/pkgs/applications/window-managers/jwm/default.nix +++ b/pkgs/applications/window-managers/jwm/default.nix @@ -1,29 +1,30 @@ -{ stdenv, fetchurl, libX11, libXext, libXinerama, libXpm, libXft, freetype, - fontconfig }: +{ stdenv, fetchurl, pkgconfig, automake, autoconf, libtool, which, xorg, + libX11, libXext, libXinerama, libXpm, libXft, libXau, libXdmcp, libpng, + libjpeg, expat, xproto, xextproto, xineramaproto, librsvg, gettext, + freetype, fontconfig }: stdenv.mkDerivation rec { - name = "jwm-2.2.2"; + name = "jwm-${version}"; + version = "1406"; src = fetchurl { - url = "http://www.joewing.net/projects/jwm/releases/${name}.tar.xz"; - sha256 = "0nhyy78c6imk85d47bakk460x0cfhkyghqq82zghmb00dhwiryln"; + url = "https://github.com/joewing/jwm/archive/s${version}.tar.gz"; + sha256 = "0yk22b7cshhyfpcqnb4p59yxspx95xg9yp1kmkxi2fyw95cacab4"; }; - buildInputs = [ libX11 libXext libXinerama libXpm libXft freetype - fontconfig ]; + nativeBuildInputs = [ pkgconfig automake autoconf libtool which ]; - preConfigure = '' - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${freetype}/include/freetype2 " - export NIX_LDFLAGS="$NIX_LDFLAGS -lXft -lfreetype -lfontconfig " - ''; + buildInputs = [ libX11 libXext libXinerama libXpm libXft xorg.libXrender + libXau libXdmcp libpng libjpeg expat xproto xextproto xineramaproto + librsvg gettext freetype fontconfig ]; - postInstall = - '' - sed -i -e s/rxvt/xterm/g $out/etc/system.jwmrc - sed -i -e "s/.*Swallow.*\|.*xload.*//" $out/etc/system.jwmrc - ''; + preConfigure = "./autogen.sh"; meta = { + homepage = "http://joewing.net/projects/jwm/"; description = "A window manager for X11 that requires only Xlib"; + license = stdenv.lib.licenses.gpl2; + maintainers = [ stdenv.lib.maintainers.romildo ]; + platforms = stdenv.lib.platforms.unix; }; } From 99a27e7137a232117155e1d8f368761559bc2601 Mon Sep 17 00:00:00 2001 From: "Ricardo M. Correia" Date: Thu, 18 Feb 2016 13:18:10 +0100 Subject: [PATCH 0059/1059] nixos.transmission: whitelist lz4 in AppArmor rules --- nixos/modules/services/torrent/transmission.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/torrent/transmission.nix b/nixos/modules/services/torrent/transmission.nix index 5ae12ac1e95..7718a721763 100644 --- a/nixos/modules/services/torrent/transmission.nix +++ b/nixos/modules/services/torrent/transmission.nix @@ -128,6 +128,7 @@ in ${pkgs.c-ares}/lib/libcares*.so* mr, ${pkgs.libcap}/lib/libcap*.so* mr, ${pkgs.attr}/lib/libattr*.so* mr, + ${pkgs.lz4}/lib/liblz4*.so* mr, @{PROC}/sys/kernel/random/uuid r, @{PROC}/sys/vm/overcommit_memory r, From d9a7918055ddfc11164af72f41d1807f162816f7 Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Sun, 24 Jan 2016 13:40:32 +0300 Subject: [PATCH 0060/1059] dbus-sharp-2_0: init at 0.8.1 --- .../libraries/dbus-sharp/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/development/libraries/dbus-sharp/default.nix diff --git a/pkgs/development/libraries/dbus-sharp/default.nix b/pkgs/development/libraries/dbus-sharp/default.nix new file mode 100644 index 00000000000..ea7d920dc82 --- /dev/null +++ b/pkgs/development/libraries/dbus-sharp/default.nix @@ -0,0 +1,24 @@ +{stdenv, fetchFromGitHub, pkgconfig, dbus, mono, autoreconfHook }: + +stdenv.mkDerivation rec { + name = "dbus-sharp-${version}"; + version = "0.8.1"; + + src = fetchFromGitHub { + owner = "mono"; + repo = "dbus-sharp"; + + rev = "v${version}"; + sha256 = "1g5lblrvkd0wnhfzp326by6n3a9mj2bj7a7646g0ziwgsxp5w6y7"; + }; + + nativeBuildInputs = [ pkgconfig autoreconfHook ]; + buildInputs = [ mono ]; + + dontStrip = true; + + meta = with stdenv.lib; { + description = "D-Bus for .NET"; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b6c83a3cbbf..e809d7cb4c5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6594,6 +6594,8 @@ let dbus_java = callPackage ../development/libraries/java/dbus-java { }; dbus_python = pythonPackages.dbus; + dbus-sharp-2_0 = callPackage ../development/libraries/dbus-sharp { }; + # Should we deprecate these? Currently there are many references. dbus_tools = pkgs.dbus.tools; dbus_libs = pkgs.dbus.libs; From 826c716ea30744d15c905b428c641ae0901e318a Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Sun, 24 Jan 2016 13:42:07 +0300 Subject: [PATCH 0061/1059] dbus-sharp-1_0: init at 0.7 --- .../libraries/dbus-sharp/dbus-sharp-1.0.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 25 insertions(+) create mode 100644 pkgs/development/libraries/dbus-sharp/dbus-sharp-1.0.nix diff --git a/pkgs/development/libraries/dbus-sharp/dbus-sharp-1.0.nix b/pkgs/development/libraries/dbus-sharp/dbus-sharp-1.0.nix new file mode 100644 index 00000000000..c17a140b9c5 --- /dev/null +++ b/pkgs/development/libraries/dbus-sharp/dbus-sharp-1.0.nix @@ -0,0 +1,24 @@ +{stdenv, fetchFromGitHub, pkgconfig, dbus, mono, autoreconfHook }: + +stdenv.mkDerivation rec { + name = "dbus-sharp-${version}"; + version = "0.7"; + + src = fetchFromGitHub { + owner = "mono"; + repo = "dbus-sharp"; + + rev = "v${version}"; + sha256 = "13qlqx9wqahfpzzl59157cjxprqcx2bd40w5gb2bs3vdx058p562"; + }; + + nativeBuildInputs = [ pkgconfig autoreconfHook ]; + buildInputs = [ mono ]; + + dontStrip = true; + + meta = with stdenv.lib; { + description = "D-Bus for .NET"; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e809d7cb4c5..b8099e7e6ad 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6594,6 +6594,7 @@ let dbus_java = callPackage ../development/libraries/java/dbus-java { }; dbus_python = pythonPackages.dbus; + dbus-sharp-1_0 = callPackage ../development/libraries/dbus-sharp/dbus-sharp-1.0.nix { }; dbus-sharp-2_0 = callPackage ../development/libraries/dbus-sharp { }; # Should we deprecate these? Currently there are many references. From 7254219b3817284fcbb7911ab9377e7c3380a845 Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Sun, 24 Jan 2016 13:43:36 +0300 Subject: [PATCH 0062/1059] dbus-sharp-glib-2_0: init at 0.6 --- .../libraries/dbus-sharp-glib/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/development/libraries/dbus-sharp-glib/default.nix diff --git a/pkgs/development/libraries/dbus-sharp-glib/default.nix b/pkgs/development/libraries/dbus-sharp-glib/default.nix new file mode 100644 index 00000000000..ef1ddd9bfff --- /dev/null +++ b/pkgs/development/libraries/dbus-sharp-glib/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, pkgconfig, mono, dbus-sharp-2_0, autoreconfHook }: + +stdenv.mkDerivation rec { + name = "dbus-sharp-glib-${version}"; + version = "0.6"; + + src = fetchFromGitHub { + owner = "mono"; + repo = "dbus-sharp-glib"; + + rev = "v${version}"; + sha256 = "0i39kfg731as6j0hlmasgj8dyw5xsak7rl2dlimi1naphhffwzm8"; + }; + + nativeBuildInputs = [ pkgconfig autoreconfHook ]; + buildInputs = [ mono dbus-sharp-2_0 ]; + + dontStrip = true; + + meta = with stdenv.lib; { + description = "D-Bus for .NET: GLib integration module"; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b8099e7e6ad..409a74545b7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6597,6 +6597,8 @@ let dbus-sharp-1_0 = callPackage ../development/libraries/dbus-sharp/dbus-sharp-1.0.nix { }; dbus-sharp-2_0 = callPackage ../development/libraries/dbus-sharp { }; + dbus-sharp-glib-2_0 = callPackage ../development/libraries/dbus-sharp-glib { }; + # Should we deprecate these? Currently there are many references. dbus_tools = pkgs.dbus.tools; dbus_libs = pkgs.dbus.libs; From 1018e0497adae2f18bbbb77a5c28d2a7201a52a1 Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Sun, 24 Jan 2016 13:45:09 +0300 Subject: [PATCH 0063/1059] dbus-sharp-glib-1_0: init at 0.5 --- .../dbus-sharp-glib/dbus-sharp-glib-1.0.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 25 insertions(+) create mode 100644 pkgs/development/libraries/dbus-sharp-glib/dbus-sharp-glib-1.0.nix diff --git a/pkgs/development/libraries/dbus-sharp-glib/dbus-sharp-glib-1.0.nix b/pkgs/development/libraries/dbus-sharp-glib/dbus-sharp-glib-1.0.nix new file mode 100644 index 00000000000..208288bfca1 --- /dev/null +++ b/pkgs/development/libraries/dbus-sharp-glib/dbus-sharp-glib-1.0.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, mono, dbus-sharp-1_0 }: + +stdenv.mkDerivation rec { + name = "dbus-sharp-glib-${version}"; + version = "0.5"; + + src = fetchFromGitHub { + owner = "mono"; + repo = "dbus-sharp-glib"; + + rev = "v${version}"; + sha256 = "0z8ylzby8n5sar7aywc8rngd9ap5qqznadsscp5v34cacdfz1gxm"; + }; + + nativeBuildInputs = [ pkgconfig autoreconfHook ]; + buildInputs = [ mono dbus-sharp-1_0 ]; + + dontStrip = true; + + meta = with stdenv.lib; { + description = "D-Bus for .NET: GLib integration module"; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 409a74545b7..6b9dda67ffe 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6597,6 +6597,7 @@ let dbus-sharp-1_0 = callPackage ../development/libraries/dbus-sharp/dbus-sharp-1.0.nix { }; dbus-sharp-2_0 = callPackage ../development/libraries/dbus-sharp { }; + dbus-sharp-glib-1_0 = callPackage ../development/libraries/dbus-sharp-glib/dbus-sharp-glib-1.0.nix { }; dbus-sharp-glib-2_0 = callPackage ../development/libraries/dbus-sharp-glib { }; # Should we deprecate these? Currently there are many references. From ec0ffd9078525dfd7a01463ddcbc56d218d1b697 Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Sun, 24 Jan 2016 15:16:21 +0300 Subject: [PATCH 0064/1059] notify-sharp: init at 3.0.3 --- .../libraries/notify-sharp/default.nix | 35 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 37 insertions(+) create mode 100644 pkgs/development/libraries/notify-sharp/default.nix diff --git a/pkgs/development/libraries/notify-sharp/default.nix b/pkgs/development/libraries/notify-sharp/default.nix new file mode 100644 index 00000000000..c7e133d94b2 --- /dev/null +++ b/pkgs/development/libraries/notify-sharp/default.nix @@ -0,0 +1,35 @@ +{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook +, mono, gtk-sharp-3_0, dbus-sharp-1_0, dbus-sharp-glib-1_0 }: + +stdenv.mkDerivation rec { + name = "notify-sharp-${version}"; + version = "3.0.3"; + + src = fetchFromGitHub { + owner = "GNOME"; + repo = "notify-sharp"; + + rev = "${version}"; + sha256 = "1vm7mnmxdwrgy4mr07lfva8sa6a32f2ah5x7w8yzcmahaks3sj5m"; + }; + + nativeBuildInputs = [ + pkgconfig autoreconfHook + ]; + + buildInputs = [ + mono gtk-sharp-3_0 + dbus-sharp-1_0 dbus-sharp-glib-1_0 + ]; + + dontStrip = true; + + postPatch = '' + sed -i 's#^[ \t]*DOCDIR=.*$#DOCDIR=$out/lib/monodoc#' ./configure.ac + ''; + + meta = with stdenv.lib; { + description = "D-Bus for .NET"; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6b9dda67ffe..2510cf5acdf 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8205,6 +8205,8 @@ let nanomsg = callPackage ../development/libraries/nanomsg { }; + notify-sharp = callPackage ../development/libraries/notify-sharp { }; + ncurses = callPackage ../development/libraries/ncurses { }; neardal = callPackage ../development/libraries/neardal { }; From d778ab0cb01bf836f6926fa31dcdbda07cce3abf Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Sun, 24 Jan 2016 15:43:13 +0300 Subject: [PATCH 0065/1059] gtk-sharp-3_0: init at 2.99.3 --- .../default.nix => gtk-sharp/2.0.nix} | 0 pkgs/development/libraries/gtk-sharp/3.0.nix | 48 +++++++++++++++++++ .../{gtk-sharp-2 => gtk-sharp}/builder.sh | 0 pkgs/top-level/all-packages.nix | 10 +++- 4 files changed, 57 insertions(+), 1 deletion(-) rename pkgs/development/libraries/{gtk-sharp-2/default.nix => gtk-sharp/2.0.nix} (100%) create mode 100644 pkgs/development/libraries/gtk-sharp/3.0.nix rename pkgs/development/libraries/{gtk-sharp-2 => gtk-sharp}/builder.sh (100%) diff --git a/pkgs/development/libraries/gtk-sharp-2/default.nix b/pkgs/development/libraries/gtk-sharp/2.0.nix similarity index 100% rename from pkgs/development/libraries/gtk-sharp-2/default.nix rename to pkgs/development/libraries/gtk-sharp/2.0.nix diff --git a/pkgs/development/libraries/gtk-sharp/3.0.nix b/pkgs/development/libraries/gtk-sharp/3.0.nix new file mode 100644 index 00000000000..380c43108de --- /dev/null +++ b/pkgs/development/libraries/gtk-sharp/3.0.nix @@ -0,0 +1,48 @@ +{ stdenv, fetchurl, pkgconfig, mono +, glib +, pango +, gtk3 +, GConf ? null +, libglade ? null +, libgtkhtml ? null +, gtkhtml ? null +, libgnomecanvas ? null +, libgnomeui ? null +, libgnomeprint ? null +, libgnomeprintui ? null +, gnomepanel ? null +, libxml2 +, monoDLLFixer +}: + +stdenv.mkDerivation { + name = "gtk-sharp-2.99.3"; + + builder = ./builder.sh; + src = fetchurl { + #"mirror://gnome/sources/gtk-sharp/2.99/gtk-sharp-2.99.3.tar.xz"; + url = "http://ftp.gnome.org/pub/GNOME/sources/gtk-sharp/2.99/gtk-sharp-2.99.3.tar.xz"; + sha256 = "18n3l9zcldyvn4lwi8izd62307mkhz873039nl6awrv285qzah34"; + }; + + # patch bad usage of glib, which wasn't tolerated anymore + # prePatch = '' + # for f in glib/glue/{thread,list,slist}.c; do + # sed -i 's,#include ,#include ,g' "$f" + # done + # ''; + + buildInputs = [ + pkgconfig mono glib pango gtk3 GConf libglade libgnomecanvas + libgtkhtml libgnomeui libgnomeprint libgnomeprintui gtkhtml libxml2 + gnomepanel + ]; + + dontStrip = true; + + inherit monoDLLFixer; + + passthru = { + inherit gtk3; + }; +} diff --git a/pkgs/development/libraries/gtk-sharp-2/builder.sh b/pkgs/development/libraries/gtk-sharp/builder.sh similarity index 100% rename from pkgs/development/libraries/gtk-sharp-2/builder.sh rename to pkgs/development/libraries/gtk-sharp/builder.sh diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2510cf5acdf..09f97b49d9e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7044,12 +7044,20 @@ let gtksharp = gtk-sharp; }; - gtk-sharp = callPackage ../development/libraries/gtk-sharp-2 { + gtk-sharp-2_0 = callPackage ../development/libraries/gtk-sharp/2.0.nix { inherit (gnome) libglade libgtkhtml gtkhtml libgnomecanvas libgnomeui libgnomeprint libgnomeprintui GConf gnomepanel; }; + gtk-sharp-3_0 = callPackage ../development/libraries/gtk-sharp/3.0.nix { + inherit (gnome) libglade libgtkhtml gtkhtml + libgnomecanvas libgnomeui libgnomeprint + libgnomeprintui GConf gnomepanel; + }; + + gtk-sharp = gtk-sharp-2_0; + gtkspell = callPackage ../development/libraries/gtkspell { }; gtkspell3 = callPackage ../development/libraries/gtkspell/3.nix { }; From 3576a2d5499701a264a10c0e9c8b5bdf02cdc0a0 Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Tue, 2 Feb 2016 15:38:28 +0300 Subject: [PATCH 0066/1059] mono-addins: init at 1.2 --- .../libraries/mono-addins/default.nix | 29 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/development/libraries/mono-addins/default.nix diff --git a/pkgs/development/libraries/mono-addins/default.nix b/pkgs/development/libraries/mono-addins/default.nix new file mode 100644 index 00000000000..e68661b44ec --- /dev/null +++ b/pkgs/development/libraries/mono-addins/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, mono, gtk-sharp-2_0 }: + +stdenv.mkDerivation rec { + name = "mono-addins-${version}"; + version = "1.2"; + + src = fetchFromGitHub { + owner = "mono"; + repo = "mono-addins"; + + rev = "mono-addins-${version}"; + sha256 = "1hnn0a2qsjcjprsxas424bzvhsdwy0yc2jj5xbp698c0m9kfk24y"; + }; + + nativeBuildInputs = [ pkgconfig autoreconfHook ]; + buildInputs = [ mono gtk-sharp-2_0 ]; + + dontStrip = true; + + meta = with stdenv.lib; { + homepage = http://www.mono-project.com/archived/monoaddins/; + description = "A generic framework for creating extensible applications"; + longDescription = '' + Mono.Addins is a generic framework for creating extensible applications, + and for creating libraries which extend those applications. + ''; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 09f97b49d9e..0d3d7818df3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8171,6 +8171,8 @@ let qt = qt4; }; + mono-addins = callPackage ../development/libraries/mono-addins { }; + movit = callPackage ../development/libraries/movit { }; mosquitto = callPackage ../servers/mqtt/mosquitto { }; From a4a19c57ad85361bf4d7d89a6440ad54cfd68590 Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Mon, 8 Feb 2016 17:04:11 +0300 Subject: [PATCH 0067/1059] taglib-sharp: init at 2.1.0.0 --- .../libraries/taglib-sharp/default.nix | 26 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/development/libraries/taglib-sharp/default.nix diff --git a/pkgs/development/libraries/taglib-sharp/default.nix b/pkgs/development/libraries/taglib-sharp/default.nix new file mode 100644 index 00000000000..6da524c2339 --- /dev/null +++ b/pkgs/development/libraries/taglib-sharp/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchFromGitHub, autoreconfHook, which, pkgconfig, mono }: + +stdenv.mkDerivation rec { + name = "taglib-sharp-${version}"; + version = "2.1.0.0"; + + src = fetchFromGitHub { + owner = "mono"; + repo = "taglib-sharp"; + + rev = "taglib-sharp-${version}"; + sha256 = "12pk4z6ag8w7kj6vzplrlasq5lwddxrww1w1ya5ivxrfki15h5cp"; + }; + + nativeBuildInputs = [ pkgconfig autoreconfHook which ]; + buildInputs = [ mono ]; + + dontStrip = true; + + configureFlags = [ "--disable-docs" ]; + + meta = with stdenv.lib; { + description = "Library for reading and writing metadata in media files"; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0d3d7818df3..1dbd0dfee7d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8824,6 +8824,8 @@ let taglib_extras = callPackage ../development/libraries/taglib-extras { }; + taglib-sharp = callPackage ../development/libraries/taglib-sharp { }; + talloc = callPackage ../development/libraries/talloc { python = python2; }; From 50bd9b01931ca7cc5651a2ee60bbeb0635cbeb94 Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Tue, 9 Feb 2016 13:20:55 +0300 Subject: [PATCH 0068/1059] gio-sharp:init at 0.3 --- .../libraries/gio-sharp/default.nix | 28 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 pkgs/development/libraries/gio-sharp/default.nix diff --git a/pkgs/development/libraries/gio-sharp/default.nix b/pkgs/development/libraries/gio-sharp/default.nix new file mode 100644 index 00000000000..ad5220cac4e --- /dev/null +++ b/pkgs/development/libraries/gio-sharp/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchFromGitHub, autoconf, automake, which, pkgconfig, mono, gtk-sharp }: + +stdenv.mkDerivation rec { + name = "gio-sharp-${version}"; + version = "0.3"; + + src = fetchFromGitHub { + owner = "mono"; + repo = "gio-sharp"; + + rev = "${version}"; + sha256 = "13pc529pjabj7lq23dbndc26ssmg5wkhc7lfvwapm87j711m0zig"; + }; + + nativeBuildInputs = [ pkgconfig autoconf automake which ]; + buildInputs = [ mono gtk-sharp ]; + + dontStrip = true; + + prePatch = '' + ./autogen-2.22.sh + ''; + + meta = with stdenv.lib; { + description = "GIO API bindings"; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1dbd0dfee7d..e48ed29b504 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6813,6 +6813,8 @@ let giblib = callPackage ../development/libraries/giblib { }; + gio-sharp = callPackage ../development/libraries/gio-sharp { }; + libgit2 = callPackage ../development/libraries/git2 { }; libgit2_0_21 = callPackage ../development/libraries/git2/0.21.nix { }; From a347e45c545fc3f7b84cd37169385805050e6cbc Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Tue, 9 Feb 2016 13:25:24 +0300 Subject: [PATCH 0069/1059] gtk-sharp-beans: init at 2.14.0 --- .../libraries/gtk-sharp-beans/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/development/libraries/gtk-sharp-beans/default.nix diff --git a/pkgs/development/libraries/gtk-sharp-beans/default.nix b/pkgs/development/libraries/gtk-sharp-beans/default.nix new file mode 100644 index 00000000000..92578f42e34 --- /dev/null +++ b/pkgs/development/libraries/gtk-sharp-beans/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, autoreconfHook, which, pkgconfig, mono, gtk-sharp, gio-sharp }: + +stdenv.mkDerivation rec { + name = "gtk-sharp-beans-${version}"; + version = "2.14.0"; + + src = fetchFromGitHub { + owner = "mono"; + repo = "gtk-sharp-beans"; + + rev = "${version}"; + sha256 = "04sylwdllb6gazzs2m4jjfn14mil9l3cny2q0xf0zkhczzih6ah1"; + }; + + nativeBuildInputs = [ pkgconfig autoreconfHook which ]; + buildInputs = [ mono gtk-sharp gio-sharp ]; + + dontStrip = true; + + meta = with stdenv.lib; { + description = "gtk-sharp-beans binds some API from Gtk+ that isn't in Gtk# 2.12.x"; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e48ed29b504..45eba8c72d6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7060,6 +7060,8 @@ let gtk-sharp = gtk-sharp-2_0; + gtk-sharp-beans = callPackage ../development/libraries/gtk-sharp-beans { }; + gtkspell = callPackage ../development/libraries/gtkspell { }; gtkspell3 = callPackage ../development/libraries/gtkspell/3.nix { }; From 6c9269670e32e0a0d95547aa21187c6c5917e876 Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Tue, 9 Feb 2016 13:46:39 +0300 Subject: [PATCH 0070/1059] mono-zeroconf: init at 0.9.0 --- .../libraries/mono-zeroconf/default.nix | 23 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/development/libraries/mono-zeroconf/default.nix diff --git a/pkgs/development/libraries/mono-zeroconf/default.nix b/pkgs/development/libraries/mono-zeroconf/default.nix new file mode 100644 index 00000000000..12b15c4937d --- /dev/null +++ b/pkgs/development/libraries/mono-zeroconf/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, autoreconfHook, which, pkgconfig, mono }: + +stdenv.mkDerivation rec { + name = "mono-zeroconf-${version}"; + version = "0.9.0"; + + src = fetchurl { + url = "http://download.banshee-project.org/mono-zeroconf/mono-zeroconf-${version}.tar.bz2"; + sha256 = "1qfp4qvsx7rc2shj1chi2y7fxn10rwi70rw2y54b2i8a4jq7gpkb"; + }; + + buildInputs = [ pkgconfig which mono ]; + + dontStrip = true; + + configureFlags = [ "--disable-docs" ]; + + meta = with stdenv.lib; { + description = "A cross platform Zero Configuration Networking library for Mono and .NET"; + homepage = http://www.mono-project.com/archived/monozeroconf/; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 45eba8c72d6..2e511dc3ad4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8177,6 +8177,8 @@ let mono-addins = callPackage ../development/libraries/mono-addins { }; + mono-zeroconf = callPackage ../development/libraries/mono-zeroconf { }; + movit = callPackage ../development/libraries/movit { }; mosquitto = callPackage ../servers/mqtt/mosquitto { }; From 2edba485311c810e6f83de82406b0c9128a4c896 Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Fri, 29 Jan 2016 23:32:48 +0300 Subject: [PATCH 0071/1059] boo: init at 20131021 --- pkgs/development/compilers/boo/config.patch | 45 +++++++++++++++++++++ pkgs/development/compilers/boo/default.nix | 45 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++ 3 files changed, 94 insertions(+) create mode 100644 pkgs/development/compilers/boo/config.patch create mode 100644 pkgs/development/compilers/boo/default.nix diff --git a/pkgs/development/compilers/boo/config.patch b/pkgs/development/compilers/boo/config.patch new file mode 100644 index 00000000000..f6e0eee29b1 --- /dev/null +++ b/pkgs/development/compilers/boo/config.patch @@ -0,0 +1,45 @@ +diff --git a/default.build b/default.build +index e48fd9e..b0dee4f 100644 +--- a/default.build ++++ b/default.build +@@ -23,14 +23,14 @@ + + + +- ++ + + + + + + +- ++ + + + +@@ -575,9 +575,9 @@ + key files for mime detection, etc + --> + +- ++ + +- ++ + + + +@@ -707,9 +707,9 @@ + key files for mime detection, etc + --> + +- ++ + +- ++ + + + diff --git a/pkgs/development/compilers/boo/default.nix b/pkgs/development/compilers/boo/default.nix new file mode 100644 index 00000000000..c57d4de8767 --- /dev/null +++ b/pkgs/development/compilers/boo/default.nix @@ -0,0 +1,45 @@ +{ stdenv, fetchFromGitHub, pkgconfig, dbus, mono, makeWrapper, nant +, shared_mime_info, gtksourceview, gtk +, targetVersion ? "4.5" }: + +let + release = "alpha"; +in stdenv.mkDerivation rec { + name = "boo-${version}"; + version = "2013-10-21"; + + src = fetchFromGitHub { + owner = "boo-lang"; + repo = "boo"; + + rev = "${release}"; + sha256 = "174abdwfpq8i3ijx6bwqll16lx7xwici374rgsbymyk8g8mla094"; + }; + + buildInputs = [ + pkgconfig mono makeWrapper nant shared_mime_info gtksourceview + gtk + ]; + + patches = [ ./config.patch ]; + + postPatch = '' + sed -e 's|\$out|'$out'|' -i default.build + ''; + + buildPhase = '' + nant -t:mono-4.5 + ''; + + installPhase = '' + nant install + cp $out/lib/mono/boo/*.dll $out/lib/boo/ + ''; + + dontStrip = true; + + meta = with stdenv.lib; { + description = "The Boo Programming Language"; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2e511dc3ad4..f7dd3d59410 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4009,6 +4009,10 @@ let bigloo = callPackage ../development/compilers/bigloo { }; + boo = callPackage ../development/compilers/boo { + inherit (gnome) gtksourceview; + }; + colm = callPackage ../development/compilers/colm { }; fetchegg = callPackage ../build-support/fetchegg { }; From 04d2c5f1189b8a9ae8421e3b74ef9587ea8b3a07 Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Tue, 2 Feb 2016 18:08:51 +0300 Subject: [PATCH 0072/1059] gdata-sharp: init at 2.2.0.0 --- .../libraries/gdata-sharp/default.nix | 38 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/libraries/gdata-sharp/default.nix diff --git a/pkgs/development/libraries/gdata-sharp/default.nix b/pkgs/development/libraries/gdata-sharp/default.nix new file mode 100644 index 00000000000..e9f5898e2ea --- /dev/null +++ b/pkgs/development/libraries/gdata-sharp/default.nix @@ -0,0 +1,38 @@ +{ stdenv, fetchsvn, pkgconfig, mono, dotnetPackages }: + +let + newtonsoft-json = dotnetPackages.NewtonsoftJson; +in stdenv.mkDerivation rec { + name = "gdata-sharp-${version}"; + version = "2.2.0.0"; + + src = fetchsvn { + url = "http://google-gdata.googlecode.com/svn/trunk/"; + rev = "1217"; + sha256 = "0b0rvgg3xsbbg2fdrpz0ywsy9rcahlyfskndaagd3yzm83gi6bhk"; + }; + + buildInputs = [ pkgconfig mono newtonsoft-json ]; + + sourceRoot = "svn-r1217/clients/cs"; + + dontStrip = true; + + postPatch = '' + sed -i -e 's#^\(DEFINES=.*\)\(.\)#\1 /r:third_party/Newtonsoft.Json.dll\2#' Makefile + # carriage return ^ + ''; + + makeFlags = [ "PREFIX=$(out)" ]; + + meta = with stdenv.lib; { + homepage = https://code.google.com/archive/p/google-gdata/; + + description = "The Google Data APIs"; + longDescription = '' + The Google Data APIs provide a simple protocol for reading and writing + data on the web. + ''; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f7dd3d59410..e5c53795e7e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7029,6 +7029,8 @@ let pangox_compat = callPackage ../development/libraries/pangox-compat { }; + gdata-sharp = callPackage ../development/libraries/gdata-sharp { }; + gdk_pixbuf = callPackage ../development/libraries/gdk-pixbuf { }; gnome-sharp = callPackage ../development/libraries/gnome-sharp {}; From 84cfc1bc729910e06f0511967916b59383666dbf Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Tue, 9 Feb 2016 17:40:24 +0300 Subject: [PATCH 0073/1059] libgpod: mono support --- pkgs/development/libraries/libgpod/default.nix | 16 ++++++++++++---- pkgs/top-level/all-packages.nix | 1 + 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/libgpod/default.nix b/pkgs/development/libraries/libgpod/default.nix index 6a1f28c96ff..b4b951325a4 100644 --- a/pkgs/development/libraries/libgpod/default.nix +++ b/pkgs/development/libraries/libgpod/default.nix @@ -1,6 +1,8 @@ -{stdenv, fetchurl, gettext, perl, perlXMLParser, intltool, pkgconfig, glib, +{stdenv, lib, fetchurl, gettext, perl, perlXMLParser, intltool, pkgconfig, glib, libxml2, sqlite, libusb1, zlib, sg3_utils, gdk_pixbuf, taglib, - libimobiledevice, python, pygobject, mutagen }: + libimobiledevice, python, pygobject, mutagen, + monoSupport ? true, mono, gtk-sharp +}: stdenv.mkDerivation rec { name = "libgpod-0.8.3"; @@ -10,13 +12,19 @@ stdenv.mkDerivation rec { }; preConfigure = "configureFlagsArray=( --with-udev-dir=$out/lib/udev )"; - configureFlags = "--without-hal --enable-udev"; + + configureFlags = [ + "--without-hal" + "--enable-udev" + ] ++ lib.optionals monoSupport [ "--with-mono" ]; + + dontStrip = true; propagatedBuildInputs = [ glib libxml2 sqlite zlib sg3_utils gdk_pixbuf taglib libimobiledevice python pygobject mutagen ]; nativeBuildInputs = [ gettext perlXMLParser intltool pkgconfig perl - libimobiledevice.swig ]; + libimobiledevice.swig ] ++ lib.optionals monoSupport [ mono gtk-sharp ]; meta = { homepage = http://gtkpod.sourceforge.net/; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e5c53795e7e..e8e397c2375 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7562,6 +7562,7 @@ let libgpod = callPackage ../development/libraries/libgpod { inherit (pkgs.pythonPackages) mutagen; + monoSupport = false; }; libgsystem = callPackage ../development/libraries/libgsystem { }; From 4a92dbcd4c5a83025277d8efc709241aacf853a3 Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Fri, 22 Jan 2016 17:34:51 +0300 Subject: [PATCH 0074/1059] banshee: init at 2.6.2 Co-Authored-By: Nikolay Amiantov --- pkgs/applications/audio/banshee/default.nix | 55 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 5 ++ 2 files changed, 60 insertions(+) create mode 100644 pkgs/applications/audio/banshee/default.nix diff --git a/pkgs/applications/audio/banshee/default.nix b/pkgs/applications/audio/banshee/default.nix new file mode 100644 index 00000000000..4e5086bdb26 --- /dev/null +++ b/pkgs/applications/audio/banshee/default.nix @@ -0,0 +1,55 @@ +{ pkgs, stdenv, lib, fetchurl, intltool, pkgconfig, gstreamer, gst_plugins_base +, gst_plugins_good, gst_plugins_bad, gst_plugins_ugly, gst_ffmpeg, glib +, mono, mono-addins, dbus-sharp-1_0, dbus-sharp-glib-1_0, notify-sharp, gtk-sharp-2_0 +, boo, gdata-sharp, taglib-sharp, sqlite, gnome-sharp, gconf, gtk-sharp-beans, gio-sharp +, libmtp, libgpod, mono-zeroconf }: + +stdenv.mkDerivation rec { + name = "banshee-${version}"; + version = "2.6.2"; + + src = fetchurl { + url = "http://ftp.gnome.org/pub/GNOME/sources/banshee/2.6/banshee-${version}.tar.xz"; + sha256 = "1y30p8wxx5li39i5gpq2wib0ympy8llz0gyi6ri9bp730ndhhz7p"; + }; + + dontStrip = true; + + nativeBuildInputs = [ pkgconfig intltool ]; + buildInputs = [ + gtk-sharp-2_0.gtk gstreamer gst_plugins_base gst_plugins_good + gst_plugins_bad gst_plugins_ugly gst_ffmpeg + mono dbus-sharp-1_0 dbus-sharp-glib-1_0 mono-addins notify-sharp + gtk-sharp-2_0 boo gdata-sharp taglib-sharp sqlite gnome-sharp gconf gtk-sharp-beans + gio-sharp libmtp libgpod mono-zeroconf + ]; + + makeFlags = [ "PREFIX=$(out)" ]; + + postPatch = '' + patchShebangs data/desktop-files/update-desktop-file.sh + patchShebangs build/private-icon-theme-installer + sed -i "s,DOCDIR=.*,DOCDIR=$out/lib/monodoc," configure + ''; + + postInstall = let + ldLibraryPath = lib.makeLibraryPath [ gtk-sharp-2_0.gtk gtk-sharp-2_0 sqlite gconf glib gstreamer ]; + + monoGACPrefix = lib.concatStringsSep ":" [ + mono dbus-sharp-1_0 dbus-sharp-glib-1_0 mono-addins notify-sharp gtk-sharp-2_0 + boo gdata-sharp taglib-sharp sqlite gnome-sharp gconf gtk-sharp-beans + gio-sharp libmtp libgpod mono-zeroconf + ]; + in '' + sed -e '2a export MONO_GAC_PREFIX=${monoGACPrefix}' \ + -e 's|LD_LIBRARY_PATH=|LD_LIBRARY_PATH=${ldLibraryPath}:|' \ + -e "s|GST_PLUGIN_PATH=|GST_PLUGIN_PATH=$GST_PLUGIN_SYSTEM_PATH:|" \ + -e 's| mono | ${mono}/bin/mono |' \ + -i $out/bin/banshee + ''; + meta = with lib; { + description = "A music player written in C# using GNOME technologies"; + platforms = platforms.linux; + maintainers = [ maintainers.zohl ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e8e397c2375..bc1b6255873 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11545,6 +11545,11 @@ let ffmpeg = ffmpeg_1; }; + banshee = callPackage ../applications/audio/banshee { + gconf = pkgs.gnome.GConf; + libgpod = pkgs.libgpod.override { monoSupport = true; }; + }; + batik = callPackage ../applications/graphics/batik { }; batti = callPackage ../applications/misc/batti { }; From a227bd4e3b9c98f61fa98f305ea191cb20dbbabd Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Mon, 7 Mar 2016 22:48:14 +0300 Subject: [PATCH 0075/1059] nix.requireSignedBinaryCaches: description fix --- nixos/modules/services/misc/nix-daemon.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/nixos/modules/services/misc/nix-daemon.nix b/nixos/modules/services/misc/nix-daemon.nix index cf2ee20801a..78f0cd18040 100644 --- a/nixos/modules/services/misc/nix-daemon.nix +++ b/nixos/modules/services/misc/nix-daemon.nix @@ -257,13 +257,11 @@ in type = types.bool; default = true; description = '' - If enabled, Nix will only download binaries from binary - caches if they are cryptographically signed with any of the - keys listed in - . If disabled (the - default), signatures are neither required nor checked, so - it's strongly recommended that you use only trustworthy - caches and https to prevent man-in-the-middle attacks. + If enabled (the default), Nix will only download binaries from binary caches if + they are cryptographically signed with any of the keys listed in + . If disabled, signatures are neither + required nor checked, so it's strongly recommended that you use only + trustworthy caches and https to prevent man-in-the-middle attacks. ''; }; From 896a70aa52ad1cd912d07859dfb69db2bcc24181 Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Mon, 7 Mar 2016 23:04:34 +0300 Subject: [PATCH 0076/1059] KDC description fix --- nixos/modules/config/krb5.nix | 2 +- nixos/modules/services/system/kerberos.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/modules/config/krb5.nix b/nixos/modules/config/krb5.nix index d2198e4ac1a..b845ef69a75 100644 --- a/nixos/modules/config/krb5.nix +++ b/nixos/modules/config/krb5.nix @@ -32,7 +32,7 @@ in kdc = mkOption { default = "kerberos.mit.edu"; - description = "Kerberos Domain Controller."; + description = "Key Distribution Center"; }; kerberosAdminServer = mkOption { diff --git a/nixos/modules/services/system/kerberos.nix b/nixos/modules/services/system/kerberos.nix index e0c3f95c3cc..347302c6090 100644 --- a/nixos/modules/services/system/kerberos.nix +++ b/nixos/modules/services/system/kerberos.nix @@ -46,7 +46,7 @@ in }; systemd.services.kdc = { - description = "Kerberos Domain Controller daemon"; + description = "Key Distribution Center daemon"; wantedBy = [ "multi-user.target" ]; preStart = '' mkdir -m 0755 -p ${stateDir} @@ -55,7 +55,7 @@ in }; systemd.services.kpasswdd = { - description = "Kerberos Domain Controller daemon"; + description = "Kerberos Password Changing daemon"; wantedBy = [ "multi-user.target" ]; script = "${heimdal}/sbin/kpasswdd"; }; From 449894ccb570c91aad9eeff31fe16b8ad60aefac Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 7 Mar 2016 23:02:32 +0100 Subject: [PATCH 0077/1059] keen4: Add license --- pkgs/games/keen4/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/games/keen4/default.nix b/pkgs/games/keen4/default.nix index 562df3ac1b6..64522e568db 100644 --- a/pkgs/games/keen4/default.nix +++ b/pkgs/games/keen4/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, dosbox, unzip}: +{ lib, stdenv, fetchurl, dosbox, unzip }: stdenv.mkDerivation { name = "keen4"; @@ -15,5 +15,7 @@ stdenv.mkDerivation { meta = { description = "Commander Keen Episode 4: Secret of the Oracle"; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.eelco ]; }; } From e0fe8cf204216beb2485d6f56cde9aa25d56a977 Mon Sep 17 00:00:00 2001 From: Svein Ove Aas Date: Sun, 31 Jan 2016 13:06:14 +0000 Subject: [PATCH 0078/1059] nvidia: major update 358.16 -> 361.28 Beta also gets updated, but even upstream it's older than stable. vcunat generalized parallel make. Close #12719. --- 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, 18 insertions(+), 13 deletions(-) diff --git a/pkgs/os-specific/linux/nvidia-x11/beta.nix b/pkgs/os-specific/linux/nvidia-x11/beta.nix index d3111a4f75a..d53d5e19d40 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 = "349.12"; + versionNumber = "361.18"; # 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://us.download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}.run"; - sha256 = "0x9zfw66nxv98zpkdkymlyqzspksk850bhfmza7g7pba4yba085h"; + url = "http://download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}.run"; + sha256 = "1n6nrz59r3dgcpkcpr4yw997fygkpsdbv1x45c30w781w0j1q5s5"; } else if stdenv.system == "x86_64-linux" then fetchurl { - url = "http://us.download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-no-compat32.run"; - sha256 = "19mfkigzffxsik3h4bsjsl481q410h804fz3rdc7chs86q4bg9h3"; + url = "http://download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-no-compat32.run"; + sha256 = "12fi7vb697h38qh0f2j40q76yx9fqk6vwx20zfxhac3fvdhw2sj0"; } 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 c1f165c45dd..09c104f09e7 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 + make SYSSRC=$sysSrc SYSOUT=$sysOut module "-j${NIX_BUILD_CORES}" "-l${NIX_BUILD_CORES}" cd .. fi @@ -34,6 +34,14 @@ 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 @@ -61,7 +69,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" ]; then + if [ $(basename "$libname_short") == "libGLESv2.so" -a "$libname" != "$libname_short.2" ]; then ln -srnf "$libname" "$libname_short.2" fi @@ -119,9 +127,6 @@ 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 fff1135d311..86abeeaa824 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 = "358.16"; + versionNumber = "361.28"; # 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 = "1cc0zsri92nz2mznabfd6pqckm9mlbszmysqqqh3w5mipwn898nk"; + sha256 = "013l9hfjc7gyk5g2v2h71lwjmx4dqlkczsb17cz833fnadcrn4hs"; } 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 = "1xr16faam2zsx8ajwm9g9302m6qjzyjh1zd56g8jhc8jxg8h43sg"; + sha256 = "1kq335mdmwlgp0lp9z8wrwyh48p2xv2nwdlgfj7b83vsh6ib17a4"; } else throw "nvidia-x11 does not support platform ${stdenv.system}"; From fedcbfce68bcf540f5211ef49637d05f85d0a7f3 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 7 Mar 2016 23:15:15 +0100 Subject: [PATCH 0079/1059] htop: 2.0.0 -> 2.0.1 --- pkgs/os-specific/linux/htop/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/htop/default.nix b/pkgs/os-specific/linux/htop/default.nix index b722815f295..de18378a32b 100644 --- a/pkgs/os-specific/linux/htop/default.nix +++ b/pkgs/os-specific/linux/htop/default.nix @@ -1,11 +1,12 @@ { fetchFromGitHub, stdenv, autoreconfHook, ncurses }: stdenv.mkDerivation rec { - name = "htop-2.0.0"; + name = "htop-${version}"; + version = "2.0.1"; src = fetchFromGitHub { - sha256 = "1z8rzf3ndswk3090qypl0bqzq9f32w0ik2k5x4zd7jg4hkx66k7z"; - rev = "2.0.0"; + sha256 = "0llj8ixgyjjq9vymsiysv7qnlc7f04jzm6lc9wm7nhcnymn7jg8z"; + rev = version; repo = "htop"; owner = "hishamhm"; }; From 6cf1853f292f31f32c08493dd04add95570a73f6 Mon Sep 17 00:00:00 2001 From: Mathieu Boespflug Date: Mon, 7 Mar 2016 23:16:26 +0100 Subject: [PATCH 0080/1059] spark: Fix tarball hash. Maybe tarball changed upstream. Who knows. Fixes #13703 --- pkgs/applications/networking/cluster/spark/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/cluster/spark/default.nix b/pkgs/applications/networking/cluster/spark/default.nix index a0abe4f3142..79074d2d28e 100644 --- a/pkgs/applications/networking/cluster/spark/default.nix +++ b/pkgs/applications/networking/cluster/spark/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { src = fetchzip { url = "mirror://apache/spark/${name}/${name}-bin-cdh4.tgz"; - sha256 = "0waq8xx4bjj1yvfbadv1gdvz8s4kh5zasicv2n5623ld6lj7zgad"; + sha256 = "19ycx1r8g82vkvzmn9wxkssmv2damrg72yfmrgzpc6xyh071g91c"; }; buildInputs = [ makeWrapper jre pythonPackages.python pythonPackages.numpy ] From 9d03355bedb392910f8cd3fcae5891f728c7051e Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Mon, 7 Mar 2016 18:00:21 +0300 Subject: [PATCH 0081/1059] ChromiumOS kernel option fixup --- pkgs/os-specific/linux/kernel/common-config.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index 254910cf842..f3dd32386bc 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -478,7 +478,9 @@ with stdenv.lib; ''} ${optionalString (versionAtLeast version "3.7") '' MEDIA_USB_SUPPORT y - MEDIA_PCI_SUPPORT y + ${optionalString (!(features.chromiumos or false)) '' + MEDIA_PCI_SUPPORT y + ''} ''} # Our initrd init uses shebang scripts, so can't be modular. From 8291ea61b0db91de2649d53a79f3e826de789434 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 7 Mar 2016 23:25:59 +0100 Subject: [PATCH 0082/1059] nvidia: allow using the beta driver, mainly in future --- nixos/modules/hardware/video/nvidia.nix | 2 ++ pkgs/top-level/all-packages.nix | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos/modules/hardware/video/nvidia.nix b/nixos/modules/hardware/video/nvidia.nix index 711576982ec..8514f765e61 100644 --- a/nixos/modules/hardware/video/nvidia.nix +++ b/nixos/modules/hardware/video/nvidia.nix @@ -14,6 +14,8 @@ let nvidiaForKernel = kernelPackages: if elem "nvidia" drivers then kernelPackages.nvidia_x11 + else if elem "nvidiaBeta" drivers then + kernelPackages.nvidia_x11_beta else if elem "nvidiaLegacy173" drivers then kernelPackages.nvidia_x11_legacy173 else if elem "nvidiaLegacy304" drivers then diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 15b3c1266be..9b5aad0fe1e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10515,7 +10515,8 @@ let nvidia_x11_legacy173 = callPackage ../os-specific/linux/nvidia-x11/legacy173.nix { }; nvidia_x11_legacy304 = callPackage ../os-specific/linux/nvidia-x11/legacy304.nix { }; nvidia_x11_legacy340 = callPackage ../os-specific/linux/nvidia-x11/legacy340.nix { }; - nvidia_x11_beta = callPackage ../os-specific/linux/nvidia-x11/beta.nix { }; + nvidia_x11_beta = nvidia_x11; # latest beta is lower version ATM + # callPackage ../os-specific/linux/nvidia-x11/beta.nix { }; nvidia_x11 = callPackage ../os-specific/linux/nvidia-x11 { }; rtl8812au = callPackage ../os-specific/linux/rtl8812au { }; From d43578b599d4b7329fb1197118b4621eaac824c3 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 7 Mar 2016 19:34:44 +0100 Subject: [PATCH 0083/1059] nano: 2.5.0 -> 2.5.3 Also move build-time dependencies to nativeBuildInputs --- pkgs/applications/editors/nano/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/nano/default.nix b/pkgs/applications/editors/nano/default.nix index 61818561f74..efec2410f9b 100644 --- a/pkgs/applications/editors/nano/default.nix +++ b/pkgs/applications/editors/nano/default.nix @@ -12,12 +12,13 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "nano-${version}"; - version = "2.5.0"; + version = "2.5.3"; src = fetchurl { url = "mirror://gnu/nano/${name}.tar.gz"; - sha256 = "1vl9bim56k1b4zwc3icxp46w6pn6gb042j1h4jlz1jklxxpkwcpz"; + sha256 = "1vhjrcydcfxqq1719vcsvqqnbjbq2523m00dhzag5vwzkc961c5j"; }; - buildInputs = [ ncurses texinfo ] ++ optional enableNls gettext; + nativeBuildInputs = [ texinfo ] ++ optional enableNls gettext; + buildInputs = [ ncurses ]; outputs = [ "out" "info" ]; configureFlags = '' --sysconfdir=/etc From 255d710757faf94401a45802e92dffd4339e9c3b Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 8 Mar 2016 01:03:47 +0100 Subject: [PATCH 0084/1059] grsecurity: 4.4.2 -> 4.4.4 See #13505. --- pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix | 4 ++-- pkgs/os-specific/linux/kernel/patches.nix | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix index dff91095549..6819dfedb13 100644 --- a/pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix +++ b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.4.2"; + version = "4.4.4"; extraMeta.branch = "4.4"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "09l6y0nb8yv7l16arfwhy4i5h9pkxcbd7hlbw0015n7gm4i2mzc2"; + sha256 = "0b4190mwmxf329n16yl32my7dfi02pi7qf39a8v61sl9b2gxffad"; }; kernelPatches = args.kernelPatches; diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index b20d53ef6da..cf3b6c73ca1 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -102,9 +102,9 @@ rec { grsecurity_4_4 = grsecPatch { kernel = pkgs.grsecurity_base_linux_4_4; patches = [ grsecurity_fix_path_4_4 ]; - kversion = "4.4.2"; - revision = "201602182048"; - sha256 = "0dm0nzzja6ynzdz2k5h0ckys7flw307i3w0k1lwjxfj80civ73wr"; + kversion = "4.4.4"; + revision = "201603032158"; + sha256 = "18b8dmwn4qwrd7i838d9dlfk9fn7m4bjab5583p3980yayxqpa3k"; }; grsecurity_latest = grsecurity_4_4; From ef9febe5ff551f6c3848aea2b839e0cc68029e01 Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Tue, 8 Mar 2016 10:29:56 +0900 Subject: [PATCH 0085/1059] sqlitebrowser: 3.7.0 -> 3.8.0 --- .../tools/database/sqlitebrowser/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/development/tools/database/sqlitebrowser/default.nix b/pkgs/development/tools/database/sqlitebrowser/default.nix index e5c2060b5e9..338f3323d94 100644 --- a/pkgs/development/tools/database/sqlitebrowser/default.nix +++ b/pkgs/development/tools/database/sqlitebrowser/default.nix @@ -1,13 +1,14 @@ -{ stdenv, fetchzip, qt4, sqlite, cmake }: +{ stdenv, fetchFromGitHub, qt4, sqlite, cmake }: stdenv.mkDerivation rec { - version = "3.7.0"; + version = "3.8.0"; name = "sqlitebrowser-${version}"; - src = fetchzip { - name = "${name}-src"; - url = "https://github.com/sqlitebrowser/sqlitebrowser/archive/v${version}.tar.gz"; - sha256 = "1zsgylnxk4lyg7p6k6pv8d3mh1k0wkfcplh5c5da3x3i9a3qs78j"; + src = fetchFromGitHub { + repo = "sqlitebrowser"; + owner = "sqlitebrowser"; + rev = "v${version}"; + sha256 = "009yaamf6f654dl796f1gmj3rb34d55w87snsfgk33gpy6x19ccp"; }; buildInputs = [ qt4 sqlite cmake ]; From 04573b82bc09ba115ea30ea7a5088a2c63b2a45d Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 8 Mar 2016 03:09:41 +0100 Subject: [PATCH 0086/1059] sshuttle: 0.76 -> 0.77.2 --- pkgs/tools/security/sshuttle/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/sshuttle/default.nix b/pkgs/tools/security/sshuttle/default.nix index b78eb43782e..4a8d7518e9c 100644 --- a/pkgs/tools/security/sshuttle/default.nix +++ b/pkgs/tools/security/sshuttle/default.nix @@ -3,10 +3,10 @@ pythonPackages.buildPythonApplication rec { name = "sshuttle-${version}"; - version = "0.76"; + version = "0.77.2"; src = fetchurl { - sha256 = "1q0hr0vhdvv23cw5dqndsmf61283mvs6b14662ci00xj6zp5v48b"; + sha256 = "1fwlhr5r9pl3pns65nn4mxf5ivypmd2a12gv3vpyznfy5f097k10"; url = "https://pypi.python.org/packages/source/s/sshuttle/${name}.tar.gz"; }; From 22f31ea6a0513bd64bbd28cfe5e4ad8e7620cb73 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 4 Mar 2016 11:23:28 +0100 Subject: [PATCH 0087/1059] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20151217-13-g1932303 using the following inputs: - Nixpkgs: https://github.com/NixOS/nixpkgs/commit/048b08e2df950731939a3d7281d22215569f1b39 - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/9380d724dd8842b56412be3cf99d2f170f5d5a2c - LTS Haskell: https://github.com/fpco/lts-haskell/commit/d2ad5fe9030deeacf1ed9c9de9045c65e597ca76 - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/04ed93d83062a82ff9489964485538e6e2b37ac2 --- .../haskell-modules/configuration-lts-0.0.nix | 14 + .../haskell-modules/configuration-lts-0.1.nix | 14 + .../haskell-modules/configuration-lts-0.2.nix | 14 + .../haskell-modules/configuration-lts-0.3.nix | 14 + .../haskell-modules/configuration-lts-0.4.nix | 14 + .../haskell-modules/configuration-lts-0.5.nix | 14 + .../haskell-modules/configuration-lts-0.6.nix | 14 + .../haskell-modules/configuration-lts-0.7.nix | 14 + .../haskell-modules/configuration-lts-1.0.nix | 15 + .../haskell-modules/configuration-lts-1.1.nix | 15 + .../configuration-lts-1.10.nix | 15 + .../configuration-lts-1.11.nix | 15 + .../configuration-lts-1.12.nix | 15 + .../configuration-lts-1.13.nix | 15 + .../configuration-lts-1.14.nix | 15 + .../configuration-lts-1.15.nix | 15 + .../haskell-modules/configuration-lts-1.2.nix | 15 + .../haskell-modules/configuration-lts-1.4.nix | 15 + .../haskell-modules/configuration-lts-1.5.nix | 15 + .../haskell-modules/configuration-lts-1.7.nix | 15 + .../haskell-modules/configuration-lts-1.8.nix | 15 + .../haskell-modules/configuration-lts-1.9.nix | 15 + .../haskell-modules/configuration-lts-2.0.nix | 16 + .../haskell-modules/configuration-lts-2.1.nix | 16 + .../configuration-lts-2.10.nix | 16 + .../configuration-lts-2.11.nix | 16 + .../configuration-lts-2.12.nix | 16 + .../configuration-lts-2.13.nix | 16 + .../configuration-lts-2.14.nix | 16 + .../configuration-lts-2.15.nix | 16 + .../configuration-lts-2.16.nix | 16 + .../configuration-lts-2.17.nix | 16 + .../configuration-lts-2.18.nix | 16 + .../configuration-lts-2.19.nix | 16 + .../haskell-modules/configuration-lts-2.2.nix | 16 + .../configuration-lts-2.20.nix | 16 + .../configuration-lts-2.21.nix | 16 + .../configuration-lts-2.22.nix | 16 + .../haskell-modules/configuration-lts-2.3.nix | 16 + .../haskell-modules/configuration-lts-2.4.nix | 16 + .../haskell-modules/configuration-lts-2.5.nix | 16 + .../haskell-modules/configuration-lts-2.6.nix | 16 + .../haskell-modules/configuration-lts-2.7.nix | 16 + .../haskell-modules/configuration-lts-2.8.nix | 16 + .../haskell-modules/configuration-lts-2.9.nix | 16 + .../haskell-modules/configuration-lts-3.0.nix | 18 +- .../haskell-modules/configuration-lts-3.1.nix | 18 +- .../configuration-lts-3.10.nix | 24 +- .../configuration-lts-3.11.nix | 24 +- .../configuration-lts-3.12.nix | 27 +- .../configuration-lts-3.13.nix | 27 +- .../configuration-lts-3.14.nix | 27 +- .../configuration-lts-3.15.nix | 27 +- .../configuration-lts-3.16.nix | 28 +- .../configuration-lts-3.17.nix | 28 +- .../configuration-lts-3.18.nix | 28 +- .../configuration-lts-3.19.nix | 29 +- .../haskell-modules/configuration-lts-3.2.nix | 19 +- .../configuration-lts-3.20.nix | 30 +- .../configuration-lts-3.21.nix | 30 +- .../configuration-lts-3.22.nix | 30 +- .../haskell-modules/configuration-lts-3.3.nix | 20 +- .../haskell-modules/configuration-lts-3.4.nix | 20 +- .../haskell-modules/configuration-lts-3.5.nix | 20 +- .../haskell-modules/configuration-lts-3.6.nix | 20 +- .../haskell-modules/configuration-lts-3.7.nix | 21 +- .../haskell-modules/configuration-lts-3.8.nix | 21 +- .../haskell-modules/configuration-lts-3.9.nix | 21 +- .../haskell-modules/configuration-lts-4.0.nix | 32 +- .../haskell-modules/configuration-lts-4.1.nix | 32 +- .../haskell-modules/configuration-lts-4.2.nix | 32 +- .../haskell-modules/configuration-lts-5.0.nix | 35 +- .../haskell-modules/configuration-lts-5.1.nix | 35 +- .../haskell-modules/configuration-lts-5.2.nix | 38 +- .../haskell-modules/configuration-lts-5.3.nix | 41 +- .../haskell-modules/configuration-lts-5.4.nix | 45 +- .../haskell-modules/configuration-lts-5.5.nix | 45 +- .../haskell-modules/hackage-packages.nix | 1268 +++++++++++++---- 78 files changed, 2562 insertions(+), 288 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 2486d91b95a..af7ea54082f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -1783,6 +1783,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1971,6 +1972,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2583,6 +2585,7 @@ self: super: { "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"; @@ -3962,6 +3965,7 @@ self: super: { "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"; @@ -5037,6 +5041,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6328,6 +6333,7 @@ self: super: { "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"; @@ -6806,6 +6812,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -7018,6 +7025,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7214,6 +7222,7 @@ self: super: { "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"; @@ -7397,6 +7406,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7957,6 +7967,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -8034,6 +8045,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -9071,6 +9083,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9163,6 +9176,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 9ec9fd73f46..6c5c25b8938 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -1783,6 +1783,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1971,6 +1972,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2583,6 +2585,7 @@ self: super: { "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"; @@ -3962,6 +3965,7 @@ self: super: { "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"; @@ -5037,6 +5041,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6328,6 +6333,7 @@ self: super: { "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"; @@ -6806,6 +6812,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -7018,6 +7025,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7214,6 +7222,7 @@ self: super: { "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"; @@ -7397,6 +7406,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7957,6 +7967,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -8034,6 +8045,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -9071,6 +9083,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9163,6 +9176,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 6f09f2d2418..eb1af4c83e7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -1783,6 +1783,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1971,6 +1972,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2583,6 +2585,7 @@ self: super: { "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"; @@ -3962,6 +3965,7 @@ self: super: { "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"; @@ -5037,6 +5041,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6328,6 +6333,7 @@ self: super: { "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"; @@ -6806,6 +6812,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -7018,6 +7025,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7214,6 +7222,7 @@ self: super: { "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"; @@ -7397,6 +7406,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7957,6 +7967,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -8034,6 +8045,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -9071,6 +9083,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9163,6 +9176,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index a24c6905c07..e4d33f2efe5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -1783,6 +1783,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1971,6 +1972,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2583,6 +2585,7 @@ self: super: { "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"; @@ -3962,6 +3965,7 @@ self: super: { "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"; @@ -5037,6 +5041,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6328,6 +6333,7 @@ self: super: { "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"; @@ -6806,6 +6812,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -7018,6 +7025,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7214,6 +7222,7 @@ self: super: { "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"; @@ -7397,6 +7406,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7957,6 +7967,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -8034,6 +8045,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -9071,6 +9083,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9163,6 +9176,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index f979f700e91..43ffde620d2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -1783,6 +1783,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1971,6 +1972,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2583,6 +2585,7 @@ self: super: { "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"; @@ -3959,6 +3962,7 @@ self: super: { "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"; @@ -5034,6 +5038,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6325,6 +6330,7 @@ self: super: { "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"; @@ -6803,6 +6809,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -7015,6 +7022,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7210,6 +7218,7 @@ self: super: { "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"; @@ -7393,6 +7402,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7953,6 +7963,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -8030,6 +8041,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -9067,6 +9079,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9159,6 +9172,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 6ee51f7c699..85d80b93352 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -1783,6 +1783,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1971,6 +1972,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2583,6 +2585,7 @@ self: super: { "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"; @@ -3959,6 +3962,7 @@ self: super: { "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"; @@ -5034,6 +5038,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6325,6 +6330,7 @@ self: super: { "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"; @@ -6803,6 +6809,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -7015,6 +7022,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7210,6 +7218,7 @@ self: super: { "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"; @@ -7393,6 +7402,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7953,6 +7963,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -8030,6 +8041,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -9067,6 +9079,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9159,6 +9172,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 8fe1d730c80..a0567225d9c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -1782,6 +1782,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1970,6 +1971,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2582,6 +2584,7 @@ self: super: { "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"; @@ -3958,6 +3961,7 @@ self: super: { "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"; @@ -5032,6 +5036,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6323,6 +6328,7 @@ self: super: { "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"; @@ -6801,6 +6807,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -7013,6 +7020,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7207,6 +7215,7 @@ self: super: { "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"; @@ -7390,6 +7399,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7950,6 +7960,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -8027,6 +8038,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -9062,6 +9074,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9153,6 +9166,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 48f29fddd71..30e31c1e084 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -1782,6 +1782,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1970,6 +1971,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2582,6 +2584,7 @@ self: super: { "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"; @@ -3958,6 +3961,7 @@ self: super: { "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"; @@ -5032,6 +5036,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6323,6 +6328,7 @@ self: super: { "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"; @@ -6801,6 +6807,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -7013,6 +7020,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7207,6 +7215,7 @@ self: super: { "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"; @@ -7390,6 +7399,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7950,6 +7960,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -8027,6 +8038,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -9062,6 +9074,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9153,6 +9166,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 49ec22af7c7..0f0c488d2e5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -927,6 +927,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1777,6 +1778,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1963,6 +1965,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2574,6 +2577,7 @@ self: super: { "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"; @@ -3949,6 +3953,7 @@ self: super: { "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"; @@ -5021,6 +5026,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6312,6 +6318,7 @@ self: super: { "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"; @@ -6790,6 +6797,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -7002,6 +7010,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7195,6 +7204,7 @@ self: super: { "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"; @@ -7378,6 +7388,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7937,6 +7948,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -8014,6 +8026,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -9048,6 +9061,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9139,6 +9153,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 3d4a16f325a..c1b4d8e6112 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -927,6 +927,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1777,6 +1778,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1962,6 +1964,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2572,6 +2575,7 @@ self: super: { "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"; @@ -3946,6 +3950,7 @@ self: super: { "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"; @@ -5015,6 +5020,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6305,6 +6311,7 @@ self: super: { "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"; @@ -6783,6 +6790,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6995,6 +7003,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7188,6 +7197,7 @@ self: super: { "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"; @@ -7371,6 +7381,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7928,6 +7939,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -8005,6 +8017,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -9035,6 +9048,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9126,6 +9140,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 67857ee4b1c..7da0500abde 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -926,6 +926,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1776,6 +1777,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1960,6 +1962,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2568,6 +2571,7 @@ self: super: { "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"; @@ -3936,6 +3940,7 @@ self: super: { "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"; @@ -4999,6 +5004,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6285,6 +6291,7 @@ self: super: { "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"; @@ -6763,6 +6770,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6974,6 +6982,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7167,6 +7176,7 @@ self: super: { "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"; @@ -7349,6 +7359,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7905,6 +7916,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7981,6 +7993,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -9005,6 +9018,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9096,6 +9110,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index c27a46a88c8..437962990c3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -926,6 +926,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1776,6 +1777,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1960,6 +1962,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2568,6 +2571,7 @@ self: super: { "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"; @@ -3935,6 +3939,7 @@ self: super: { "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"; @@ -4996,6 +5001,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6281,6 +6287,7 @@ self: super: { "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"; @@ -6759,6 +6766,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6970,6 +6978,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7163,6 +7172,7 @@ self: super: { "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"; @@ -7345,6 +7355,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7901,6 +7912,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7977,6 +7989,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -9001,6 +9014,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9092,6 +9106,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index a5a7d7fa360..4b22bce4ac1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -926,6 +926,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1776,6 +1777,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1960,6 +1962,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2568,6 +2571,7 @@ self: super: { "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"; @@ -3935,6 +3939,7 @@ self: super: { "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"; @@ -4995,6 +5000,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6280,6 +6286,7 @@ self: super: { "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"; @@ -6758,6 +6765,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6969,6 +6977,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7162,6 +7171,7 @@ self: super: { "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"; @@ -7344,6 +7354,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7900,6 +7911,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7976,6 +7988,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8999,6 +9012,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9090,6 +9104,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 66812de0443..191c04f8984 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -926,6 +926,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1776,6 +1777,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1960,6 +1962,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2568,6 +2571,7 @@ self: super: { "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"; @@ -3934,6 +3938,7 @@ self: super: { "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"; @@ -4994,6 +4999,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6279,6 +6285,7 @@ self: super: { "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"; @@ -6757,6 +6764,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6968,6 +6976,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7161,6 +7170,7 @@ self: super: { "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"; @@ -7343,6 +7353,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7899,6 +7910,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7975,6 +7987,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8997,6 +9010,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9088,6 +9102,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index e125520cf71..6ba78851f21 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -925,6 +925,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1774,6 +1775,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1958,6 +1960,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2565,6 +2568,7 @@ self: super: { "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"; @@ -3931,6 +3935,7 @@ self: super: { "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"; @@ -4991,6 +4996,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6274,6 +6280,7 @@ self: super: { "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"; @@ -6752,6 +6759,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6962,6 +6970,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7155,6 +7164,7 @@ self: super: { "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"; @@ -7337,6 +7347,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7893,6 +7904,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7969,6 +7981,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8991,6 +9004,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9082,6 +9096,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 47821d85dab..710db92a7e5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -924,6 +924,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1773,6 +1774,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1957,6 +1959,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2562,6 +2565,7 @@ self: super: { "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"; @@ -3927,6 +3931,7 @@ self: super: { "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"; @@ -4987,6 +4992,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6268,6 +6274,7 @@ self: super: { "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"; @@ -6746,6 +6753,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6955,6 +6963,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7148,6 +7157,7 @@ self: super: { "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"; @@ -7330,6 +7340,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7884,6 +7895,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7960,6 +7972,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8981,6 +8994,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9072,6 +9086,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 8469c6f17c7..ca6f51c7e0f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -927,6 +927,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1777,6 +1778,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1962,6 +1964,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2570,6 +2573,7 @@ self: super: { "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"; @@ -3943,6 +3947,7 @@ self: super: { "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"; @@ -5012,6 +5017,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6301,6 +6307,7 @@ self: super: { "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"; @@ -6779,6 +6786,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6990,6 +6998,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7183,6 +7192,7 @@ self: super: { "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"; @@ -7365,6 +7375,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7922,6 +7933,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7999,6 +8011,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -9029,6 +9042,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_0"; "yesod-form" = doDistribute super."yesod-form_1_4_3_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9120,6 +9134,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-archive" = doDistribute super."zip-archive_0_2_3_5"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 8b9dedb59fe..10f704082f5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -926,6 +926,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1776,6 +1777,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1961,6 +1963,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2569,6 +2572,7 @@ self: super: { "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"; @@ -3941,6 +3945,7 @@ self: super: { "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"; @@ -5009,6 +5014,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6297,6 +6303,7 @@ self: super: { "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"; @@ -6775,6 +6782,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6986,6 +6994,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7179,6 +7188,7 @@ self: super: { "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"; @@ -7361,6 +7371,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7918,6 +7929,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7995,6 +8007,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_0_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -9024,6 +9037,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_3_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9115,6 +9129,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 23909c3d2e7..540aa779d7e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -926,6 +926,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1776,6 +1777,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1960,6 +1962,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2568,6 +2571,7 @@ self: super: { "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"; @@ -3940,6 +3944,7 @@ self: super: { "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"; @@ -5008,6 +5013,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6296,6 +6302,7 @@ self: super: { "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"; @@ -6774,6 +6781,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6985,6 +6993,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7178,6 +7187,7 @@ self: super: { "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"; @@ -7360,6 +7370,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7917,6 +7928,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7994,6 +8006,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -9021,6 +9034,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_3_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9112,6 +9126,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 127f3e90509..b9b74b37329 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -926,6 +926,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1776,6 +1777,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1960,6 +1962,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2568,6 +2571,7 @@ self: super: { "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"; @@ -3940,6 +3944,7 @@ self: super: { "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"; @@ -5003,6 +5008,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6291,6 +6297,7 @@ self: super: { "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"; @@ -6769,6 +6776,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6980,6 +6988,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7173,6 +7182,7 @@ self: super: { "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"; @@ -7355,6 +7365,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7912,6 +7923,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7989,6 +8001,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -9016,6 +9029,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_3_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9107,6 +9121,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index efbf9037a6f..6831e5a994d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -926,6 +926,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1776,6 +1777,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1960,6 +1962,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2568,6 +2571,7 @@ self: super: { "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"; @@ -3937,6 +3941,7 @@ self: super: { "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"; @@ -5000,6 +5005,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6287,6 +6293,7 @@ self: super: { "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"; @@ -6765,6 +6772,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6976,6 +6984,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7169,6 +7178,7 @@ self: super: { "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"; @@ -7351,6 +7361,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7908,6 +7919,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7985,6 +7997,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -9011,6 +9024,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9102,6 +9116,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 99dc38c7f80..fadfe04c4f6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -926,6 +926,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1776,6 +1777,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1960,6 +1962,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = dontDistribute super."cartel"; + "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"; @@ -2568,6 +2571,7 @@ self: super: { "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"; @@ -3936,6 +3940,7 @@ self: super: { "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"; @@ -4999,6 +5004,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6286,6 +6292,7 @@ self: super: { "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"; @@ -6764,6 +6771,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6975,6 +6983,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7168,6 +7177,7 @@ self: super: { "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"; @@ -7350,6 +7360,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = dontDistribute super."servant-jquery"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7907,6 +7918,7 @@ self: super: { "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7984,6 +7996,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -9010,6 +9023,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9101,6 +9115,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 568076876a7..b3b5b567740 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -919,6 +919,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1763,6 +1764,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1947,6 +1949,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2354,6 +2357,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2548,6 +2552,7 @@ self: super: { "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"; @@ -3909,6 +3914,7 @@ self: super: { "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"; @@ -4961,6 +4967,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6225,6 +6232,7 @@ self: super: { "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"; @@ -6700,6 +6708,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6909,6 +6918,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7102,6 +7112,7 @@ self: super: { "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"; @@ -7283,6 +7294,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7832,6 +7844,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7907,6 +7920,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8921,6 +8935,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9012,6 +9027,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 498229f2a84..eb82bb1cece 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -919,6 +919,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1763,6 +1764,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1946,6 +1948,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2353,6 +2356,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2547,6 +2551,7 @@ self: super: { "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"; @@ -3908,6 +3913,7 @@ self: super: { "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"; @@ -4960,6 +4966,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6224,6 +6231,7 @@ self: super: { "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"; @@ -6699,6 +6707,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6908,6 +6917,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7101,6 +7111,7 @@ self: super: { "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"; @@ -7282,6 +7293,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7831,6 +7843,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7906,6 +7919,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8919,6 +8933,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9010,6 +9025,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index d779e935a1c..453c0b845e6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -916,6 +916,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1754,6 +1755,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1935,6 +1937,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2341,6 +2344,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2534,6 +2538,7 @@ self: super: { "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"; @@ -3889,6 +3894,7 @@ self: super: { "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"; @@ -4937,6 +4943,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6193,6 +6200,7 @@ self: super: { "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"; @@ -6665,6 +6673,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6873,6 +6882,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7065,6 +7075,7 @@ self: super: { "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"; @@ -7245,6 +7256,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7788,6 +7800,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7861,6 +7874,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8870,6 +8884,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8961,6 +8976,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 88fa6fdbe07..0b26c8a2da0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -916,6 +916,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1753,6 +1754,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1934,6 +1936,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2340,6 +2343,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2533,6 +2537,7 @@ self: super: { "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"; @@ -3887,6 +3892,7 @@ self: super: { "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"; @@ -4934,6 +4940,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6187,6 +6194,7 @@ self: super: { "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"; @@ -6659,6 +6667,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6867,6 +6876,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7058,6 +7068,7 @@ self: super: { "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"; @@ -7238,6 +7249,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7779,6 +7791,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7852,6 +7865,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8861,6 +8875,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8952,6 +8967,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 265cb7ab469..a23586c4557 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -916,6 +916,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1753,6 +1754,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1934,6 +1936,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2340,6 +2343,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2533,6 +2537,7 @@ self: super: { "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"; @@ -3887,6 +3892,7 @@ self: super: { "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"; @@ -4934,6 +4940,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6187,6 +6194,7 @@ self: super: { "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"; @@ -6659,6 +6667,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6867,6 +6876,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7058,6 +7068,7 @@ self: super: { "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"; @@ -7237,6 +7248,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7778,6 +7790,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7851,6 +7864,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8860,6 +8874,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8951,6 +8966,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 64f691c05ec..53688afb8ec 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -916,6 +916,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1753,6 +1754,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1934,6 +1936,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2340,6 +2343,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2533,6 +2537,7 @@ self: super: { "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"; @@ -3886,6 +3891,7 @@ self: super: { "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"; @@ -4932,6 +4938,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6185,6 +6192,7 @@ self: super: { "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"; @@ -6657,6 +6665,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6865,6 +6874,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7056,6 +7066,7 @@ self: super: { "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"; @@ -7235,6 +7246,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7776,6 +7788,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7849,6 +7862,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8858,6 +8872,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8949,6 +8964,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 0ac7dfa05a4..ec039632190 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -916,6 +916,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1752,6 +1753,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1933,6 +1935,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2339,6 +2342,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2532,6 +2536,7 @@ self: super: { "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"; @@ -3884,6 +3889,7 @@ self: super: { "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"; @@ -4929,6 +4935,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6182,6 +6189,7 @@ self: super: { "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"; @@ -6654,6 +6662,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6862,6 +6871,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7053,6 +7063,7 @@ self: super: { "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"; @@ -7232,6 +7243,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7772,6 +7784,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7845,6 +7858,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8852,6 +8866,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8943,6 +8958,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 9070ce99658..a3d80430355 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -916,6 +916,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1752,6 +1753,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1933,6 +1935,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2339,6 +2342,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2532,6 +2536,7 @@ self: super: { "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"; @@ -3883,6 +3888,7 @@ self: super: { "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"; @@ -4928,6 +4934,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6180,6 +6187,7 @@ self: super: { "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"; @@ -6652,6 +6660,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6860,6 +6869,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7051,6 +7061,7 @@ self: super: { "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"; @@ -7230,6 +7241,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7769,6 +7781,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7842,6 +7855,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8849,6 +8863,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8939,6 +8954,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 37eff2fd08b..aa482072e72 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -916,6 +916,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1752,6 +1753,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1933,6 +1935,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2337,6 +2340,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2530,6 +2534,7 @@ self: super: { "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"; @@ -3879,6 +3884,7 @@ self: super: { "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"; @@ -4924,6 +4930,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6175,6 +6182,7 @@ self: super: { "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"; @@ -6647,6 +6655,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6855,6 +6864,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7046,6 +7056,7 @@ self: super: { "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"; @@ -7225,6 +7236,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7764,6 +7776,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7837,6 +7850,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8844,6 +8858,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8933,6 +8948,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 83f4314bb12..8f78f48e28b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -916,6 +916,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1750,6 +1751,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1931,6 +1933,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2335,6 +2338,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2528,6 +2532,7 @@ self: super: { "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"; @@ -3875,6 +3880,7 @@ self: super: { "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"; @@ -4920,6 +4926,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6170,6 +6177,7 @@ self: super: { "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"; @@ -6642,6 +6650,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6850,6 +6859,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7041,6 +7051,7 @@ self: super: { "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"; @@ -7220,6 +7231,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7759,6 +7771,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7832,6 +7845,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8839,6 +8853,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8928,6 +8943,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index fad6e89bae9..b73043843f5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -916,6 +916,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1750,6 +1751,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1930,6 +1932,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2334,6 +2337,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2527,6 +2531,7 @@ self: super: { "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"; @@ -3873,6 +3878,7 @@ self: super: { "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"; @@ -4917,6 +4923,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6166,6 +6173,7 @@ self: super: { "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"; @@ -6638,6 +6646,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6846,6 +6855,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7037,6 +7047,7 @@ self: super: { "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"; @@ -7216,6 +7227,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7754,6 +7766,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7827,6 +7840,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8833,6 +8847,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8922,6 +8937,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index de41ab241a4..44086d11797 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -916,6 +916,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1750,6 +1751,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1930,6 +1932,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2334,6 +2337,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2527,6 +2531,7 @@ self: super: { "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"; @@ -3872,6 +3877,7 @@ self: super: { "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"; @@ -4916,6 +4922,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6164,6 +6171,7 @@ self: super: { "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"; @@ -6636,6 +6644,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6844,6 +6853,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7035,6 +7045,7 @@ self: super: { "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"; @@ -7214,6 +7225,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7750,6 +7762,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7823,6 +7836,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8828,6 +8842,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8917,6 +8932,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 56704b5a5dc..082dd709074 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -918,6 +918,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1762,6 +1763,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1943,6 +1945,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2350,6 +2353,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2544,6 +2548,7 @@ self: super: { "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"; @@ -3905,6 +3910,7 @@ self: super: { "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"; @@ -4957,6 +4963,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6221,6 +6228,7 @@ self: super: { "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"; @@ -6696,6 +6704,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6905,6 +6914,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7098,6 +7108,7 @@ self: super: { "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"; @@ -7279,6 +7290,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7828,6 +7840,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7903,6 +7916,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8915,6 +8929,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9006,6 +9021,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 14b71d7d362..e4088e83fda 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -916,6 +916,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1750,6 +1751,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1930,6 +1932,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2333,6 +2336,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2526,6 +2530,7 @@ self: super: { "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"; @@ -3871,6 +3876,7 @@ self: super: { "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"; @@ -4915,6 +4921,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6163,6 +6170,7 @@ self: super: { "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"; @@ -6634,6 +6642,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6842,6 +6851,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7033,6 +7043,7 @@ self: super: { "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"; @@ -7212,6 +7223,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7747,6 +7759,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7820,6 +7833,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8825,6 +8839,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8914,6 +8929,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index a4c6afbdc20..a5feb068167 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -916,6 +916,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1750,6 +1751,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1930,6 +1932,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2333,6 +2336,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2526,6 +2530,7 @@ self: super: { "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"; @@ -3871,6 +3876,7 @@ self: super: { "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"; @@ -4915,6 +4921,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6162,6 +6169,7 @@ self: super: { "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"; @@ -6632,6 +6640,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6840,6 +6849,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7031,6 +7041,7 @@ self: super: { "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"; @@ -7210,6 +7221,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7745,6 +7757,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7818,6 +7831,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8820,6 +8834,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8909,6 +8924,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 6b945f2af10..0cc8eb33e20 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -916,6 +916,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1750,6 +1751,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1930,6 +1932,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2333,6 +2336,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2526,6 +2530,7 @@ self: super: { "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"; @@ -3871,6 +3876,7 @@ self: super: { "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"; @@ -4914,6 +4920,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6160,6 +6167,7 @@ self: super: { "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"; @@ -6630,6 +6638,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6838,6 +6847,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7029,6 +7039,7 @@ self: super: { "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"; @@ -7208,6 +7219,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7743,6 +7755,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7816,6 +7829,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8818,6 +8832,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8907,6 +8922,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 3ce4419e3e0..9d44f450ac3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -918,6 +918,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1762,6 +1763,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1943,6 +1945,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2350,6 +2353,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2544,6 +2548,7 @@ self: super: { "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"; @@ -3904,6 +3909,7 @@ self: super: { "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"; @@ -4955,6 +4961,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6219,6 +6226,7 @@ self: super: { "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"; @@ -6694,6 +6702,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6903,6 +6912,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7096,6 +7106,7 @@ self: super: { "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"; @@ -7277,6 +7288,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7826,6 +7838,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7901,6 +7914,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8913,6 +8927,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9004,6 +9019,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 402e65f8b8f..8a2b3b4deac 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -918,6 +918,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1761,6 +1762,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1942,6 +1944,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2349,6 +2352,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2543,6 +2547,7 @@ self: super: { "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"; @@ -3903,6 +3908,7 @@ self: super: { "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"; @@ -4954,6 +4960,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6217,6 +6224,7 @@ self: super: { "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"; @@ -6691,6 +6699,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6900,6 +6909,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7092,6 +7102,7 @@ self: super: { "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"; @@ -7273,6 +7284,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7822,6 +7834,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7897,6 +7910,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8909,6 +8923,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -9000,6 +9015,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 489f310c2d0..67671cfa058 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -918,6 +918,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1761,6 +1762,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1942,6 +1944,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2348,6 +2351,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2542,6 +2546,7 @@ self: super: { "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"; @@ -3902,6 +3907,7 @@ self: super: { "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"; @@ -4953,6 +4959,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6216,6 +6223,7 @@ self: super: { "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"; @@ -6690,6 +6698,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6899,6 +6908,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7091,6 +7101,7 @@ self: super: { "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"; @@ -7272,6 +7283,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7821,6 +7833,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7896,6 +7909,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8908,6 +8922,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8999,6 +9014,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 171d7187d19..395eed7a466 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -918,6 +918,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1758,6 +1759,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1939,6 +1941,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2345,6 +2348,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2539,6 +2543,7 @@ self: super: { "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"; @@ -3897,6 +3902,7 @@ self: super: { "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"; @@ -4948,6 +4954,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6210,6 +6217,7 @@ self: super: { "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"; @@ -6684,6 +6692,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6893,6 +6902,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7085,6 +7095,7 @@ self: super: { "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"; @@ -7266,6 +7277,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7815,6 +7827,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7890,6 +7903,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8900,6 +8914,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8991,6 +9006,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index d48d2912514..56b294f3a0d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -917,6 +917,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1757,6 +1758,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1938,6 +1940,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2344,6 +2347,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2538,6 +2542,7 @@ self: super: { "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"; @@ -3896,6 +3901,7 @@ self: super: { "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"; @@ -4947,6 +4953,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6209,6 +6216,7 @@ self: super: { "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"; @@ -6683,6 +6691,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6892,6 +6901,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7084,6 +7094,7 @@ self: super: { "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"; @@ -7265,6 +7276,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7814,6 +7826,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7889,6 +7902,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_1"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8899,6 +8913,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8990,6 +9005,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 2363e401c29..ed5076569f0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -916,6 +916,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1756,6 +1757,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1937,6 +1939,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2343,6 +2346,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2537,6 +2541,7 @@ self: super: { "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"; @@ -3894,6 +3899,7 @@ self: super: { "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"; @@ -4945,6 +4951,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6207,6 +6214,7 @@ self: super: { "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"; @@ -6681,6 +6689,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6890,6 +6899,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7082,6 +7092,7 @@ self: super: { "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"; @@ -7262,6 +7273,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7808,6 +7820,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7883,6 +7896,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8893,6 +8907,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8984,6 +8999,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 2c924184096..154ac6f5c76 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -916,6 +916,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1754,6 +1755,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; "bool-extras" = dontDistribute super."bool-extras"; "boolean-list" = dontDistribute super."boolean-list"; "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; @@ -1935,6 +1937,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2341,6 +2344,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2535,6 +2539,7 @@ self: super: { "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"; @@ -3890,6 +3895,7 @@ self: super: { "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"; @@ -4939,6 +4945,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -6199,6 +6206,7 @@ self: super: { "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"; @@ -6672,6 +6680,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = dontDistribute super."psqueues"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6881,6 +6890,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -7073,6 +7083,7 @@ self: super: { "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"; @@ -7253,6 +7264,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_2_2_1"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7797,6 +7809,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7870,6 +7883,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_1_0"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -8879,6 +8893,7 @@ self: super: { "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8970,6 +8985,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index aa9d7348a73..26901fe517d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -898,6 +898,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1701,6 +1702,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1876,6 +1878,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2272,6 +2275,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2462,6 +2466,7 @@ self: super: { "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"; @@ -3332,6 +3337,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3776,6 +3782,7 @@ self: super: { "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"; @@ -4797,6 +4804,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -5995,6 +6003,7 @@ self: super: { "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"; @@ -6451,6 +6460,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_2"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6657,6 +6667,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6850,6 +6861,7 @@ self: super: { "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"; @@ -7027,6 +7039,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7548,6 +7561,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7620,6 +7634,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7879,7 +7894,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8595,6 +8609,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "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"; @@ -8682,6 +8697,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 1e1afff1d7a..22bf6130b77 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1700,6 +1701,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1875,6 +1877,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2271,6 +2274,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2461,6 +2465,7 @@ self: super: { "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"; @@ -3329,6 +3334,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3773,6 +3779,7 @@ self: super: { "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"; @@ -4794,6 +4801,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -5990,6 +5998,7 @@ self: super: { "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"; @@ -6445,6 +6454,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_2"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6651,6 +6661,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6843,6 +6854,7 @@ self: super: { "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"; @@ -7020,6 +7032,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7541,6 +7554,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7613,6 +7627,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7872,7 +7887,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8587,6 +8601,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "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"; @@ -8674,6 +8689,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 6be62d0311f..7b6a5fc116d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -164,7 +164,9 @@ self: super: { "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_1"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -893,6 +895,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1384,6 +1387,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1686,6 +1690,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1861,6 +1866,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "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"; @@ -2224,6 +2230,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2254,6 +2261,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2444,6 +2452,7 @@ self: super: { "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"; @@ -3300,6 +3309,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3742,6 +3752,7 @@ self: super: { "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"; @@ -4757,6 +4768,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -4840,6 +4852,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5940,6 +5953,7 @@ self: super: { "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"; @@ -6388,6 +6402,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6593,6 +6608,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6784,6 +6800,7 @@ self: super: { "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"; @@ -6961,6 +6978,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7476,6 +7494,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7548,6 +7567,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; @@ -7802,7 +7822,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8220,6 +8239,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8505,6 +8525,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "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"; @@ -8590,6 +8611,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index 6968b8f22ff..6d667e44406 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -164,7 +164,9 @@ self: super: { "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_1"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -893,6 +895,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1384,6 +1387,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1686,6 +1690,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1860,6 +1865,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "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"; @@ -2223,6 +2229,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2253,6 +2260,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2443,6 +2451,7 @@ self: super: { "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"; @@ -3298,6 +3307,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3740,6 +3750,7 @@ self: super: { "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"; @@ -4755,6 +4766,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -4838,6 +4850,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5938,6 +5951,7 @@ self: super: { "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"; @@ -6385,6 +6399,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6590,6 +6605,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6781,6 +6797,7 @@ self: super: { "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"; @@ -6958,6 +6975,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7472,6 +7490,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7544,6 +7563,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; @@ -7798,7 +7818,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8216,6 +8235,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8501,6 +8521,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_5"; "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"; @@ -8586,6 +8607,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 54a18bac10a..e57cb676ac9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -164,6 +164,9 @@ self: super: { "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" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -892,6 +895,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1383,6 +1387,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1685,6 +1690,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1859,6 +1865,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "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"; @@ -1981,6 +1988,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2219,6 +2228,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2249,6 +2259,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2439,6 +2450,7 @@ self: super: { "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"; @@ -3294,6 +3306,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3735,6 +3748,7 @@ self: super: { "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"; @@ -4750,6 +4764,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -4833,6 +4848,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5933,6 +5949,7 @@ self: super: { "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"; @@ -6379,6 +6396,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6584,6 +6602,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6775,6 +6794,7 @@ self: super: { "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"; @@ -6952,6 +6972,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7466,6 +7487,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7538,6 +7560,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; @@ -7790,7 +7813,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8208,6 +8230,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8493,6 +8516,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_5"; "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"; @@ -8576,6 +8600,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index e2f847f30df..b9cb47decb0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -164,6 +164,9 @@ self: super: { "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" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -892,6 +895,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1383,6 +1387,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1685,6 +1690,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1859,6 +1865,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "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"; @@ -1981,6 +1988,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2219,6 +2228,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2249,6 +2259,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2439,6 +2450,7 @@ self: super: { "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"; @@ -3294,6 +3306,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3735,6 +3748,7 @@ self: super: { "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"; @@ -4749,6 +4763,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -4832,6 +4847,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5931,6 +5947,7 @@ self: super: { "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"; @@ -6376,6 +6393,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6581,6 +6599,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6772,6 +6791,7 @@ self: super: { "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"; @@ -6949,6 +6969,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7463,6 +7484,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7535,6 +7557,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; @@ -7787,7 +7810,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8204,6 +8226,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8489,6 +8512,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_5"; "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"; @@ -8572,6 +8596,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 1757791208f..e587a7ad38a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -164,6 +164,9 @@ self: super: { "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" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -892,6 +895,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1381,6 +1385,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1683,6 +1688,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1856,6 +1862,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "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"; @@ -1978,6 +1985,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2216,6 +2225,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2245,6 +2255,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2435,6 +2446,7 @@ self: super: { "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"; @@ -3288,6 +3300,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3729,6 +3742,7 @@ self: super: { "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"; @@ -4742,6 +4756,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -4825,6 +4840,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5923,6 +5939,7 @@ self: super: { "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"; @@ -6368,6 +6385,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6573,6 +6591,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6764,6 +6783,7 @@ self: super: { "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"; @@ -6941,6 +6961,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7455,6 +7476,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7527,6 +7549,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; @@ -7779,7 +7802,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8196,6 +8218,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8480,6 +8503,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_5"; "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"; @@ -8563,6 +8587,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 11783029b1a..2be3799d16d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -164,6 +164,9 @@ self: super: { "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" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -892,6 +895,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1381,6 +1385,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1683,6 +1688,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1856,6 +1862,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "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"; @@ -1978,6 +1985,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2216,6 +2225,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2245,6 +2255,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2435,6 +2446,7 @@ self: super: { "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"; @@ -3288,6 +3300,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3729,6 +3742,7 @@ self: super: { "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"; @@ -4739,6 +4753,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -4822,6 +4837,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5920,6 +5936,7 @@ self: super: { "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"; @@ -6365,6 +6382,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6570,6 +6588,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6761,6 +6780,7 @@ self: super: { "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"; @@ -6938,6 +6958,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7451,6 +7472,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7523,6 +7545,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; @@ -7775,7 +7798,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8192,6 +8214,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8476,6 +8499,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_5"; "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"; @@ -8559,6 +8583,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index e188ec15cbb..efd1b082339 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -164,6 +164,9 @@ self: super: { "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" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -891,6 +894,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1380,6 +1384,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1682,6 +1687,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1855,6 +1861,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "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"; @@ -1977,6 +1984,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2215,6 +2224,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2244,6 +2254,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2434,6 +2445,7 @@ self: super: { "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"; @@ -3286,6 +3298,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3726,6 +3739,7 @@ self: super: { "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"; @@ -4736,6 +4750,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -4819,6 +4834,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5915,6 +5931,7 @@ self: super: { "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"; @@ -6003,6 +6020,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path" = doDistribute super."path_0_5_3"; "path-extra" = dontDistribute super."path-extra"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; @@ -6358,6 +6376,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6562,6 +6581,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6753,6 +6773,7 @@ self: super: { "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"; @@ -6929,6 +6950,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7442,6 +7464,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7514,6 +7537,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; @@ -7763,7 +7787,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8180,6 +8203,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8464,6 +8488,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_5"; "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"; @@ -8547,6 +8572,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 5875789a2af..b2af59ffb82 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -164,6 +164,9 @@ self: super: { "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" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -891,6 +894,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1379,6 +1383,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1681,6 +1686,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1854,6 +1860,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "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"; @@ -1975,6 +1982,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2213,6 +2222,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2242,6 +2252,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2432,6 +2443,7 @@ self: super: { "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"; @@ -3284,6 +3296,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3723,6 +3736,7 @@ self: super: { "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"; @@ -4732,6 +4746,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -4815,6 +4830,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5909,6 +5925,7 @@ self: super: { "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"; @@ -5997,6 +6014,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path" = doDistribute super."path_0_5_3"; "path-extra" = dontDistribute super."path-extra"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; @@ -6352,6 +6370,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6556,6 +6575,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6747,6 +6767,7 @@ self: super: { "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"; @@ -6923,6 +6944,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7436,6 +7458,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7508,6 +7531,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; @@ -7757,7 +7781,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8174,6 +8197,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8457,6 +8481,7 @@ self: super: { "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"; @@ -8540,6 +8565,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 58b5849579c..2668b094d9d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -164,6 +164,9 @@ self: super: { "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" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -891,6 +894,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1379,6 +1383,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1681,6 +1686,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1853,6 +1859,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "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"; @@ -1974,6 +1981,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2212,6 +2221,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2241,6 +2251,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2431,6 +2442,7 @@ self: super: { "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"; @@ -3283,6 +3295,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3719,6 +3732,7 @@ self: super: { "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"; @@ -4723,6 +4737,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -4806,6 +4821,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5900,6 +5916,7 @@ self: super: { "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"; @@ -5987,6 +6004,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path" = doDistribute super."path_0_5_3"; "path-extra" = dontDistribute super."path-extra"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; @@ -6340,6 +6358,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6544,6 +6563,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6735,6 +6755,7 @@ self: super: { "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"; @@ -6911,6 +6932,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7423,6 +7445,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7495,6 +7518,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; @@ -7744,7 +7768,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8161,6 +8184,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8444,6 +8468,7 @@ self: super: { "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"; @@ -8527,6 +8552,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index 3eeb0194a49..fc230510d8d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -163,6 +163,9 @@ self: super: { "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" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -890,6 +893,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1377,6 +1381,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1678,6 +1683,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1848,6 +1854,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "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"; @@ -1969,6 +1976,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2206,6 +2215,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2235,6 +2245,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2425,6 +2436,7 @@ self: super: { "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"; @@ -3277,6 +3289,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3713,6 +3726,7 @@ self: super: { "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"; @@ -4714,6 +4728,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -4797,6 +4812,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5888,6 +5904,7 @@ self: super: { "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"; @@ -5975,6 +5992,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path" = doDistribute super."path_0_5_3"; "path-extra" = dontDistribute super."path-extra"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; @@ -6080,6 +6098,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_7"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -6326,6 +6345,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6530,6 +6550,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6721,6 +6742,7 @@ self: super: { "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"; @@ -6897,6 +6919,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7408,6 +7431,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7480,6 +7504,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; @@ -7729,7 +7754,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8146,6 +8170,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8428,6 +8453,7 @@ self: super: { "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"; @@ -8511,6 +8537,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 69483ad17f0..450ccc34a9a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1698,6 +1699,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1873,6 +1875,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2269,6 +2272,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2459,6 +2463,7 @@ self: super: { "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"; @@ -3325,6 +3330,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3769,6 +3775,7 @@ self: super: { "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"; @@ -4790,6 +4797,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -5984,6 +5992,7 @@ self: super: { "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"; @@ -6438,6 +6447,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_2"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6643,6 +6653,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6835,6 +6846,7 @@ self: super: { "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"; @@ -7012,6 +7024,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7531,6 +7544,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7603,6 +7617,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7862,7 +7877,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8284,6 +8298,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_4"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8576,6 +8591,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "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"; @@ -8663,6 +8679,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 535391a6252..8bab2133709 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -163,6 +163,9 @@ self: super: { "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" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -889,6 +892,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1376,6 +1380,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1677,6 +1682,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1847,6 +1853,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "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"; @@ -1968,6 +1975,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2205,6 +2214,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2234,6 +2244,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2424,6 +2435,7 @@ self: super: { "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"; @@ -3276,6 +3288,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3712,6 +3725,7 @@ self: super: { "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"; @@ -4713,6 +4727,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -4796,6 +4811,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4935,6 +4951,7 @@ self: super: { "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" = doDistribute super."language-c-quote_0_11_4"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -5886,6 +5903,7 @@ self: super: { "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"; @@ -5973,6 +5991,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path" = doDistribute super."path_0_5_3"; "path-extra" = dontDistribute super."path-extra"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; @@ -6077,6 +6096,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_7"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -6323,6 +6343,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6527,6 +6548,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6717,6 +6739,7 @@ self: super: { "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"; @@ -6893,6 +6916,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_5"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7403,6 +7427,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7475,6 +7500,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; @@ -7723,7 +7749,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8140,6 +8165,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8421,6 +8447,7 @@ self: super: { "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"; @@ -8504,6 +8531,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index 3f7fe51cd18..5627d7f1520 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -163,6 +163,9 @@ self: super: { "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" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -889,6 +892,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1376,6 +1380,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1677,6 +1682,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1847,6 +1853,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "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"; @@ -1968,6 +1975,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2204,6 +2213,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2233,6 +2243,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2423,6 +2434,7 @@ self: super: { "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"; @@ -3273,6 +3285,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3708,6 +3721,7 @@ self: super: { "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"; @@ -4707,6 +4721,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -4790,6 +4805,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4929,6 +4945,7 @@ self: super: { "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" = doDistribute super."language-c-quote_0_11_4"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -5879,6 +5896,7 @@ self: super: { "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"; @@ -5965,6 +5983,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path" = doDistribute super."path_0_5_3"; "path-extra" = dontDistribute super."path-extra"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; @@ -6069,6 +6088,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_7"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -6314,6 +6334,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6517,6 +6538,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6706,6 +6728,7 @@ self: super: { "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"; @@ -6878,6 +6901,7 @@ self: super: { "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-pool" = dontDistribute super."servant-pool"; @@ -7382,6 +7406,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7454,6 +7479,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; @@ -7702,7 +7728,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8115,6 +8140,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8394,6 +8420,7 @@ self: super: { "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"; @@ -8476,6 +8503,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index e3fb760f538..2d4131a2761 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -163,6 +163,9 @@ self: super: { "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" = doDistribute super."Chart-diagrams_1_5_4"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "ChasingBottoms" = doDistribute super."ChasingBottoms_1_3_0_13"; @@ -889,6 +892,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1376,6 +1380,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1677,6 +1682,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1847,6 +1853,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "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"; @@ -1968,6 +1975,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = dontDistribute super."clckwrks"; "clckwrks-cli" = dontDistribute super."clckwrks-cli"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; @@ -2204,6 +2213,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2233,6 +2243,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2423,6 +2434,7 @@ self: super: { "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"; @@ -3271,6 +3283,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3706,6 +3719,7 @@ self: super: { "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"; @@ -4701,6 +4715,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -4784,6 +4799,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -4923,6 +4939,7 @@ self: super: { "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" = doDistribute super."language-c-quote_0_11_4"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; "language-dot" = dontDistribute super."language-dot"; @@ -5873,6 +5890,7 @@ self: super: { "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"; @@ -5959,6 +5977,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path" = doDistribute super."path_0_5_3"; "path-extra" = dontDistribute super."path-extra"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; @@ -6063,6 +6082,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_7"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -6308,6 +6328,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6511,6 +6532,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6700,6 +6722,7 @@ self: super: { "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"; @@ -6872,6 +6895,7 @@ self: super: { "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-pool" = dontDistribute super."servant-pool"; @@ -7376,6 +7400,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7448,6 +7473,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; @@ -7696,7 +7722,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8109,6 +8134,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8388,6 +8414,7 @@ self: super: { "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"; @@ -8470,6 +8497,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index fe46fd0999f..2c6fede1d7c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1697,6 +1698,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1872,6 +1874,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2237,6 +2240,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2267,6 +2271,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2457,6 +2462,7 @@ self: super: { "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"; @@ -3322,6 +3328,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3766,6 +3773,7 @@ self: super: { "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"; @@ -4786,6 +4794,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -5980,6 +5989,7 @@ self: super: { "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"; @@ -6434,6 +6444,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_2"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6639,6 +6650,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6830,6 +6842,7 @@ self: super: { "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"; @@ -7007,6 +7020,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7525,6 +7539,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7597,6 +7612,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7855,7 +7871,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8276,6 +8291,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_4"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8567,6 +8583,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "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"; @@ -8654,6 +8671,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 6d56cc3fd65..c6050740cf6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1697,6 +1698,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1872,6 +1874,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "cartel" = doDistribute super."cartel_0_14_2_6"; + "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"; @@ -2237,6 +2240,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2267,6 +2271,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2457,6 +2462,7 @@ self: super: { "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"; @@ -3322,6 +3328,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3766,6 +3773,7 @@ self: super: { "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"; @@ -4786,6 +4794,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -5980,6 +5989,7 @@ self: super: { "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"; @@ -6434,6 +6444,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_2"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6639,6 +6650,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6830,6 +6842,7 @@ self: super: { "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"; @@ -7007,6 +7020,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7524,6 +7538,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7596,6 +7611,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-ant-xml" = doDistribute super."tasty-ant-xml_1_0_1"; @@ -7854,7 +7870,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8275,6 +8290,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_4"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8565,6 +8581,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "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"; @@ -8652,6 +8669,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index bc5a71482e4..3ae2f390006 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1696,6 +1697,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1871,6 +1873,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "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"; @@ -2236,6 +2239,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2266,6 +2270,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2456,6 +2461,7 @@ self: super: { "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"; @@ -3320,6 +3326,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3764,6 +3771,7 @@ self: super: { "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"; @@ -4780,6 +4788,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -5973,6 +5982,7 @@ self: super: { "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"; @@ -6425,6 +6435,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_2"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6630,6 +6641,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6821,6 +6833,7 @@ self: super: { "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"; @@ -6998,6 +7011,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7515,6 +7529,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7587,6 +7602,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; @@ -7842,7 +7858,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8263,6 +8278,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_4"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8552,6 +8568,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "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"; @@ -8637,6 +8654,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index f9bb0ec0e00..51691d09fe5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1696,6 +1697,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1871,6 +1873,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "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"; @@ -2236,6 +2239,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2266,6 +2270,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2456,6 +2461,7 @@ self: super: { "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"; @@ -3319,6 +3325,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3761,6 +3768,7 @@ self: super: { "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"; @@ -4777,6 +4785,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -5966,6 +5975,7 @@ self: super: { "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"; @@ -6418,6 +6428,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_2"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6623,6 +6634,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6814,6 +6826,7 @@ self: super: { "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"; @@ -6991,6 +7004,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_2"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7508,6 +7522,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7580,6 +7595,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; @@ -7835,7 +7851,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8254,6 +8269,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8543,6 +8559,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "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"; @@ -8628,6 +8645,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index fb31054c6e7..2617995e3b3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1694,6 +1695,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1869,6 +1871,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "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"; @@ -2233,6 +2236,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2263,6 +2267,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2453,6 +2458,7 @@ self: super: { "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"; @@ -3316,6 +3322,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3758,6 +3765,7 @@ self: super: { "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"; @@ -4773,6 +4781,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -4856,6 +4865,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5961,6 +5971,7 @@ self: super: { "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"; @@ -6411,6 +6422,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6616,6 +6628,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6807,6 +6820,7 @@ self: super: { "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"; @@ -6984,6 +6998,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7500,6 +7515,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7572,6 +7588,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; @@ -7827,7 +7844,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8246,6 +8262,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8533,6 +8550,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "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"; @@ -8618,6 +8636,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index f5c350e91c1..d3da3959e8f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1692,6 +1693,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1867,6 +1869,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "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"; @@ -2230,6 +2233,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2260,6 +2264,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2450,6 +2455,7 @@ self: super: { "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"; @@ -3309,6 +3315,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3751,6 +3758,7 @@ self: super: { "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"; @@ -4766,6 +4774,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -4849,6 +4858,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5952,6 +5962,7 @@ self: super: { "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"; @@ -6401,6 +6412,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6606,6 +6618,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6797,6 +6810,7 @@ self: super: { "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"; @@ -6974,6 +6988,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7490,6 +7505,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7562,6 +7578,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; @@ -7816,7 +7833,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8235,6 +8251,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8522,6 +8539,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "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"; @@ -8607,6 +8625,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index e2d045ed44d..f76aae3bf7a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -895,6 +895,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-worker" = doDistribute super."Spock-worker_0_2_1_3"; "SpreadsheetML" = dontDistribute super."SpreadsheetML"; "Sprig" = dontDistribute super."Sprig"; "Stasis" = dontDistribute super."Stasis"; @@ -1689,6 +1690,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1864,6 +1866,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = dontDistribute super."carray"; "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"; @@ -2227,6 +2230,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2257,6 +2261,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2447,6 +2452,7 @@ self: super: { "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"; @@ -3304,6 +3310,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3746,6 +3753,7 @@ self: super: { "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"; @@ -4761,6 +4769,7 @@ self: super: { "irc-conduit" = dontDistribute super."irc-conduit"; "irc-core" = dontDistribute super."irc-core"; "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; @@ -4844,6 +4853,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5946,6 +5956,7 @@ self: super: { "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"; @@ -6395,6 +6406,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = dontDistribute super."publicsuffix"; @@ -6600,6 +6612,7 @@ self: super: { "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"; "reform" = dontDistribute super."reform"; "reform-blaze" = dontDistribute super."reform-blaze"; @@ -6791,6 +6804,7 @@ self: super: { "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"; @@ -6968,6 +6982,7 @@ self: super: { "servant-elm" = dontDistribute super."servant-elm"; "servant-examples" = dontDistribute super."servant-examples"; "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; "servant-jquery" = doDistribute super."servant-jquery_0_4_4_4"; "servant-lucid" = dontDistribute super."servant-lucid"; "servant-mock" = dontDistribute super."servant-mock"; @@ -7484,6 +7499,7 @@ self: super: { "sylvia" = dontDistribute super."sylvia"; "sym" = dontDistribute super."sym"; "sym-plot" = dontDistribute super."sym-plot"; + "symengine-hs" = dontDistribute super."symengine-hs"; "sync" = dontDistribute super."sync"; "sync-mht" = dontDistribute super."sync-mht"; "synchronous-channels" = dontDistribute super."synchronous-channels"; @@ -7556,6 +7572,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_10_1_2"; "tasty-dejafu" = dontDistribute super."tasty-dejafu"; @@ -7810,7 +7827,6 @@ self: super: { "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -8229,6 +8245,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -8516,6 +8533,7 @@ self: super: { "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "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"; @@ -8601,6 +8619,7 @@ self: super: { "zeroth" = dontDistribute super."zeroth"; "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; + "zip" = dontDistribute super."zip"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index d744f166c32..ae2745ddee8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -163,6 +163,8 @@ self: super: { "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"; @@ -870,6 +872,7 @@ self: super: { "SpinCounter" = dontDistribute super."SpinCounter"; "Spintax" = dontDistribute super."Spintax"; "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"; @@ -1285,6 +1288,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1563,6 +1567,7 @@ self: super: { "bliplib" = dontDistribute super."bliplib"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; + "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1572,6 +1577,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1737,6 +1743,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = doDistribute super."carray_0_1_6_2"; "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"; @@ -1855,6 +1862,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = doDistribute super."clckwrks_0_23_13"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; @@ -2080,6 +2089,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2108,6 +2118,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2295,6 +2306,7 @@ self: super: { "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"; @@ -3118,6 +3130,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3544,6 +3557,7 @@ self: super: { "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"; @@ -4231,6 +4245,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_1"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4485,6 +4500,7 @@ self: super: { "irc-client" = doDistribute super."irc-client_0_2_5_0"; "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"; @@ -4563,6 +4579,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5625,6 +5642,7 @@ self: super: { "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"; @@ -5708,6 +5726,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = doDistribute super."patches-vector_0_1_5_0"; + "path" = doDistribute super."path_0_5_3"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5804,6 +5823,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_7"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -6037,6 +6057,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; @@ -6234,6 +6255,7 @@ self: super: { "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-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; @@ -6406,6 +6428,7 @@ self: super: { "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"; @@ -6574,6 +6597,7 @@ self: super: { "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-pool" = dontDistribute super."servant-pool"; @@ -7056,6 +7080,7 @@ self: super: { "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"; @@ -7126,6 +7151,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "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"; @@ -7217,7 +7243,6 @@ self: super: { "text-region" = dontDistribute super."text-region"; "text-register-machine" = dontDistribute super."text-register-machine"; "text-render" = dontDistribute super."text-render"; - "text-show" = doDistribute super."text-show_2_1_2"; "text-show-instances" = dontDistribute super."text-show-instances"; "text-stream-decode" = dontDistribute super."text-stream-decode"; "text-utf7" = dontDistribute super."text-utf7"; @@ -7354,12 +7379,12 @@ self: super: { "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; "tracker" = dontDistribute super."tracker"; + "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7747,6 +7772,7 @@ self: super: { "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-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; @@ -8007,6 +8033,7 @@ self: super: { "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"; @@ -8082,6 +8109,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 8645bceb82e..0e765572ffe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -163,6 +163,8 @@ self: super: { "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"; @@ -870,6 +872,7 @@ self: super: { "SpinCounter" = dontDistribute super."SpinCounter"; "Spintax" = dontDistribute super."Spintax"; "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"; @@ -1283,6 +1286,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1561,6 +1565,7 @@ self: super: { "bliplib" = dontDistribute super."bliplib"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; + "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1570,6 +1575,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1735,6 +1741,7 @@ self: super: { "carettah" = dontDistribute super."carettah"; "carray" = doDistribute super."carray_0_1_6_2"; "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"; @@ -1853,6 +1860,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = doDistribute super."clckwrks_0_23_13"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; @@ -2078,6 +2087,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2106,6 +2116,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2293,6 +2304,7 @@ self: super: { "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"; @@ -3112,6 +3124,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3538,6 +3551,7 @@ self: super: { "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"; @@ -4224,6 +4238,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_1"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4473,6 +4488,7 @@ self: super: { "irc-client" = doDistribute super."irc-client_0_2_5_0"; "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"; @@ -4551,6 +4567,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5610,6 +5627,7 @@ self: super: { "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"; @@ -5692,6 +5710,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "path" = doDistribute super."path_0_5_3"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5788,6 +5807,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_7"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -6020,6 +6040,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; @@ -6217,6 +6238,7 @@ self: super: { "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-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; @@ -6389,6 +6411,7 @@ self: super: { "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"; @@ -6557,6 +6580,7 @@ self: super: { "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-pool" = dontDistribute super."servant-pool"; @@ -7039,6 +7063,7 @@ self: super: { "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"; @@ -7109,6 +7134,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "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"; @@ -7200,7 +7226,6 @@ self: super: { "text-region" = dontDistribute super."text-region"; "text-register-machine" = dontDistribute super."text-register-machine"; "text-render" = dontDistribute super."text-render"; - "text-show" = doDistribute super."text-show_2_1_2"; "text-show-instances" = dontDistribute super."text-show-instances"; "text-stream-decode" = dontDistribute super."text-stream-decode"; "text-utf7" = dontDistribute super."text-utf7"; @@ -7337,12 +7362,12 @@ self: super: { "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; "tracker" = dontDistribute super."tracker"; + "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7729,6 +7754,7 @@ self: super: { "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-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; @@ -7988,6 +8014,7 @@ self: super: { "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"; @@ -8063,6 +8090,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index ecca396a71c..ae22300df63 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -163,6 +163,8 @@ self: super: { "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"; @@ -867,6 +869,7 @@ self: super: { "SpinCounter" = dontDistribute super."SpinCounter"; "Spintax" = dontDistribute super."Spintax"; "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"; @@ -1278,6 +1281,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1556,6 +1560,7 @@ self: super: { "bliplib" = dontDistribute super."bliplib"; "blocking-transactions" = dontDistribute super."blocking-transactions"; "blogination" = dontDistribute super."blogination"; + "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1565,6 +1570,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1727,6 +1733,7 @@ self: super: { "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"; @@ -1844,6 +1851,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = doDistribute super."clckwrks_0_23_13"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; @@ -2067,6 +2076,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2095,6 +2105,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2281,6 +2292,7 @@ self: super: { "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"; @@ -3093,6 +3105,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3516,6 +3529,7 @@ self: super: { "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"; @@ -4193,6 +4207,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_1"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4438,6 +4453,7 @@ self: super: { "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"; @@ -4516,6 +4532,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5571,6 +5588,7 @@ self: super: { "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"; @@ -5653,6 +5671,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "path" = doDistribute super."path_0_5_3"; "path-io" = dontDistribute super."path-io"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5749,6 +5768,7 @@ self: super: { "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes" = doDistribute super."pipes_4_1_7"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -5978,6 +5998,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; @@ -6174,6 +6195,7 @@ self: super: { "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-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; @@ -6343,6 +6365,7 @@ self: super: { "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"; @@ -6510,6 +6533,7 @@ self: super: { "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-pool" = dontDistribute super."servant-pool"; @@ -6986,6 +7010,7 @@ self: super: { "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"; @@ -7055,6 +7080,7 @@ self: super: { "tar" = doDistribute super."tar_0_4_2_2"; "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"; @@ -7145,7 +7171,6 @@ self: super: { "text-region" = dontDistribute super."text-region"; "text-register-machine" = dontDistribute super."text-register-machine"; "text-render" = dontDistribute super."text-render"; - "text-show" = doDistribute super."text-show_2_1_2"; "text-show-instances" = dontDistribute super."text-show-instances"; "text-stream-decode" = dontDistribute super."text-stream-decode"; "text-utf7" = dontDistribute super."text-utf7"; @@ -7282,12 +7307,12 @@ self: super: { "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; "tracker" = dontDistribute super."tracker"; + "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7672,6 +7697,7 @@ self: super: { "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-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; @@ -7929,6 +7955,7 @@ self: super: { "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"; @@ -8004,6 +8031,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index 9934d049508..c299aa73e67 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -162,6 +162,8 @@ self: super: { "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"; @@ -855,6 +857,7 @@ self: super: { "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"; @@ -1263,6 +1266,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1398,7 +1402,6 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; - "bifunctors" = doDistribute super."bifunctors_5_2"; "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; @@ -1544,6 +1547,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1701,6 +1705,7 @@ self: super: { "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"; @@ -1749,6 +1754,7 @@ self: super: { "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"; @@ -1815,6 +1821,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = doDistribute super."clckwrks_0_23_13"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; @@ -2034,6 +2042,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2061,6 +2070,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2243,6 +2253,7 @@ self: super: { "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"; @@ -2817,6 +2828,8 @@ self: super: { "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"; @@ -3033,6 +3046,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3451,6 +3465,7 @@ self: super: { "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"; @@ -4127,6 +4142,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_1"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4368,6 +4384,7 @@ self: super: { "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"; @@ -4446,6 +4463,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5486,6 +5504,7 @@ self: super: { "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"; @@ -5565,6 +5584,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5659,6 +5679,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -5883,6 +5904,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; @@ -6076,6 +6098,7 @@ self: super: { "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-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6244,6 +6267,7 @@ self: super: { "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"; @@ -6407,6 +6431,7 @@ self: super: { "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"; @@ -6873,6 +6898,7 @@ self: super: { "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"; @@ -6941,6 +6967,7 @@ self: super: { "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"; @@ -7027,7 +7054,6 @@ self: super: { "text-region" = dontDistribute super."text-region"; "text-register-machine" = dontDistribute super."text-register-machine"; "text-render" = dontDistribute super."text-render"; - "text-show" = doDistribute super."text-show_2_1_2"; "text-show-instances" = dontDistribute super."text-show-instances"; "text-stream-decode" = dontDistribute super."text-stream-decode"; "text-utf7" = dontDistribute super."text-utf7"; @@ -7161,12 +7187,12 @@ self: super: { "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; "tracker" = dontDistribute super."tracker"; + "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7543,6 +7569,7 @@ self: super: { "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-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -7797,6 +7824,7 @@ self: super: { "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"; @@ -7872,6 +7900,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index 37a5a87c4f2..69f2161732c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -161,6 +161,8 @@ self: super: { "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"; @@ -853,6 +855,7 @@ self: super: { "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"; @@ -1260,6 +1263,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1392,7 +1396,6 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; - "bifunctors" = doDistribute super."bifunctors_5_2"; "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; @@ -1537,6 +1540,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1693,6 +1697,7 @@ self: super: { "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"; @@ -1741,6 +1746,7 @@ self: super: { "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"; @@ -1804,6 +1810,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = doDistribute super."clckwrks_0_23_13"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; @@ -2023,6 +2031,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2050,6 +2059,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2231,6 +2241,7 @@ self: super: { "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"; @@ -2805,6 +2816,8 @@ self: super: { "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"; @@ -3021,6 +3034,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3439,6 +3453,7 @@ self: super: { "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"; @@ -4115,6 +4130,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_1"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4355,6 +4371,7 @@ self: super: { "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"; @@ -4433,6 +4450,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5471,6 +5489,7 @@ self: super: { "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"; @@ -5550,6 +5569,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5644,6 +5664,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -5868,6 +5889,7 @@ self: super: { "pseudo-boolean" = dontDistribute super."pseudo-boolean"; "pseudo-trie" = dontDistribute super."pseudo-trie"; "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; "psqueues" = doDistribute super."psqueues_0_2_0_3"; "pub" = dontDistribute super."pub"; "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; @@ -6060,6 +6082,7 @@ self: super: { "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-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6228,6 +6251,7 @@ self: super: { "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"; @@ -6390,6 +6414,7 @@ self: super: { "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"; @@ -6856,6 +6881,7 @@ self: super: { "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"; @@ -6923,6 +6949,7 @@ self: super: { "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"; @@ -7009,7 +7036,6 @@ self: super: { "text-region" = dontDistribute super."text-region"; "text-register-machine" = dontDistribute super."text-register-machine"; "text-render" = dontDistribute super."text-render"; - "text-show" = doDistribute super."text-show_2_1_2"; "text-show-instances" = dontDistribute super."text-show-instances"; "text-stream-decode" = dontDistribute super."text-stream-decode"; "text-utf7" = dontDistribute super."text-utf7"; @@ -7143,12 +7169,12 @@ self: super: { "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; "tracker" = dontDistribute super."tracker"; + "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7524,6 +7550,7 @@ self: super: { "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-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -7778,6 +7805,7 @@ self: super: { "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"; @@ -7852,6 +7880,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index 0e4e457bf1e..de127967a26 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -161,6 +161,8 @@ self: super: { "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"; @@ -852,6 +854,7 @@ self: super: { "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"; @@ -1259,6 +1262,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1391,7 +1395,6 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; - "bifunctors" = doDistribute super."bifunctors_5_2"; "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; @@ -1536,6 +1539,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1623,6 +1627,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install" = doDistribute super."cabal-install_1_22_8_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1691,6 +1696,7 @@ self: super: { "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"; @@ -1739,6 +1745,7 @@ self: super: { "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"; @@ -1802,6 +1809,8 @@ self: super: { "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_5"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = doDistribute super."clckwrks_0_23_13"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; @@ -2021,6 +2030,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2048,6 +2058,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2229,6 +2240,7 @@ self: super: { "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"; @@ -2799,6 +2811,8 @@ self: super: { "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"; @@ -3014,6 +3028,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3332,6 +3347,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hOpenPGP" = doDistribute super."hOpenPGP_2_4_3"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3430,6 +3446,7 @@ self: super: { "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"; @@ -4106,6 +4123,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_1"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4344,6 +4362,7 @@ self: super: { "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"; @@ -4422,6 +4441,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5454,6 +5474,7 @@ self: super: { "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"; @@ -5533,6 +5554,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5624,6 +5646,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -5847,6 +5870,7 @@ self: super: { "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"; @@ -6037,6 +6061,7 @@ self: super: { "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-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6204,6 +6229,7 @@ self: super: { "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"; @@ -6366,6 +6392,7 @@ self: super: { "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"; @@ -6831,6 +6858,7 @@ self: super: { "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"; @@ -6898,6 +6926,7 @@ self: super: { "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"; @@ -6984,7 +7013,6 @@ self: super: { "text-region" = dontDistribute super."text-region"; "text-register-machine" = dontDistribute super."text-register-machine"; "text-render" = dontDistribute super."text-render"; - "text-show" = doDistribute super."text-show_2_1_2"; "text-show-instances" = dontDistribute super."text-show-instances"; "text-stream-decode" = dontDistribute super."text-stream-decode"; "text-utf7" = dontDistribute super."text-utf7"; @@ -7118,12 +7146,12 @@ self: super: { "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; "tracker" = dontDistribute super."tracker"; + "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7498,6 +7526,7 @@ self: super: { "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-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; @@ -7649,6 +7678,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_3_1"; "xml-enumerator" = dontDistribute super."xml-enumerator"; "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; "xml-extractors" = dontDistribute super."xml-extractors"; @@ -7751,6 +7781,7 @@ self: super: { "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"; @@ -7825,6 +7856,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index 2e3c31fe650..942d47f5868 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -161,6 +161,8 @@ self: super: { "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"; @@ -849,6 +851,7 @@ self: super: { "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"; @@ -1253,6 +1256,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1385,7 +1389,6 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; - "bifunctors" = doDistribute super."bifunctors_5_2"; "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; @@ -1528,6 +1531,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1615,6 +1619,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install" = doDistribute super."cabal-install_1_22_8_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1683,6 +1688,7 @@ self: super: { "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"; @@ -1730,6 +1736,7 @@ self: super: { "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"; @@ -1788,6 +1795,9 @@ self: super: { "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; + "classy-prelude" = doDistribute super."classy-prelude_0_12_5_1"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = doDistribute super."clckwrks_0_23_13"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; @@ -2005,6 +2015,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2032,6 +2043,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2212,6 +2224,7 @@ self: super: { "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"; @@ -2597,6 +2610,7 @@ self: super: { "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"; @@ -2773,6 +2787,8 @@ self: super: { "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"; @@ -2987,6 +3003,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3304,6 +3321,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hOpenPGP" = doDistribute super."hOpenPGP_2_4_3"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3402,6 +3420,7 @@ self: super: { "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"; @@ -4078,6 +4097,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_1"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4315,6 +4335,7 @@ self: super: { "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"; @@ -4393,6 +4414,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5421,6 +5443,7 @@ self: super: { "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"; @@ -5498,6 +5521,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5589,6 +5613,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-binary" = doDistribute super."pipes-binary_0_4_0_5"; @@ -5811,6 +5836,7 @@ self: super: { "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"; @@ -5999,6 +6025,7 @@ self: super: { "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"; @@ -6164,6 +6191,7 @@ self: super: { "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"; @@ -6326,6 +6354,7 @@ self: super: { "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"; @@ -6706,6 +6735,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -6785,6 +6815,7 @@ self: super: { "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"; @@ -6852,6 +6883,7 @@ self: super: { "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"; @@ -6937,7 +6969,6 @@ self: super: { "text-region" = dontDistribute super."text-region"; "text-register-machine" = dontDistribute super."text-register-machine"; "text-render" = dontDistribute super."text-render"; - "text-show" = doDistribute super."text-show_2_1_2"; "text-show-instances" = dontDistribute super."text-show-instances"; "text-stream-decode" = dontDistribute super."text-stream-decode"; "text-utf7" = dontDistribute super."text-utf7"; @@ -7071,12 +7102,12 @@ self: super: { "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; "tracker" = dontDistribute super."tracker"; + "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7450,6 +7481,7 @@ self: super: { "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-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; @@ -7598,6 +7630,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_3_1"; "xml-enumerator" = dontDistribute super."xml-enumerator"; "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; "xml-extractors" = dontDistribute super."xml-extractors"; @@ -7699,6 +7732,7 @@ self: super: { "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"; @@ -7773,6 +7807,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index a167ad714b8..beb5cb4ebf8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -161,6 +161,8 @@ self: super: { "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"; @@ -848,6 +850,7 @@ self: super: { "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"; @@ -1251,6 +1254,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1383,7 +1387,6 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; - "bifunctors" = doDistribute super."bifunctors_5_2"; "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; @@ -1526,6 +1529,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1613,6 +1617,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install" = doDistribute super."cabal-install_1_22_8_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1681,6 +1686,7 @@ self: super: { "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"; @@ -1728,6 +1734,7 @@ self: super: { "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"; @@ -1786,6 +1793,9 @@ self: super: { "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; + "classy-prelude" = doDistribute super."classy-prelude_0_12_5_1"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks" = doDistribute super."clckwrks_0_23_13"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; @@ -1912,10 +1922,12 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_2"; "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-extra" = doDistribute super."conduit-extra_1_1_10_1"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; @@ -1999,6 +2011,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2026,6 +2039,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2206,6 +2220,7 @@ self: super: { "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"; @@ -2584,6 +2599,7 @@ self: super: { "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"; @@ -2759,6 +2775,8 @@ self: super: { "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"; @@ -2972,6 +2990,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3289,6 +3308,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hOpenPGP" = doDistribute super."hOpenPGP_2_4_3"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3387,6 +3407,7 @@ self: super: { "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"; @@ -4058,6 +4079,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_1"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4295,6 +4317,7 @@ self: super: { "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"; @@ -4373,6 +4396,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5151,6 +5175,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_1_1"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5390,6 +5415,7 @@ self: super: { "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"; @@ -5466,6 +5492,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5557,6 +5584,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bzip" = dontDistribute super."pipes-bzip"; @@ -5778,6 +5806,7 @@ self: super: { "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"; @@ -5965,6 +5994,7 @@ self: super: { "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"; @@ -6053,6 +6083,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_2"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6129,6 +6160,7 @@ self: super: { "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"; @@ -6291,6 +6323,7 @@ self: super: { "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"; @@ -6671,6 +6704,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -6750,6 +6784,7 @@ self: super: { "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"; @@ -6817,6 +6852,7 @@ self: super: { "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"; @@ -6901,7 +6937,6 @@ self: super: { "text-region" = dontDistribute super."text-region"; "text-register-machine" = dontDistribute super."text-register-machine"; "text-render" = dontDistribute super."text-render"; - "text-show" = doDistribute super."text-show_2_1_2"; "text-show-instances" = dontDistribute super."text-show-instances"; "text-stream-decode" = dontDistribute super."text-stream-decode"; "text-utf7" = dontDistribute super."text-utf7"; @@ -7035,12 +7070,12 @@ self: super: { "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; "tracker" = dontDistribute super."tracker"; + "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7412,6 +7447,7 @@ self: super: { "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-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; @@ -7560,6 +7596,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_3_1"; "xml-enumerator" = dontDistribute super."xml-enumerator"; "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; "xml-extractors" = dontDistribute super."xml-extractors"; @@ -7660,6 +7697,7 @@ self: super: { "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"; @@ -7734,6 +7772,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 90bd4fed403..516852b98a0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -161,6 +161,8 @@ self: super: { "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"; @@ -848,6 +850,7 @@ self: super: { "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"; @@ -1251,6 +1254,7 @@ self: super: { "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops" = doDistribute super."atomic-primops_0_8_0_2"; "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; "atomic-write" = dontDistribute super."atomic-write"; @@ -1382,7 +1386,6 @@ self: super: { "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; "bidispec-extras" = dontDistribute super."bidispec-extras"; - "bifunctors" = doDistribute super."bifunctors_5_2"; "bighugethesaurus" = dontDistribute super."bighugethesaurus"; "billboard-parser" = dontDistribute super."billboard-parser"; "billeksah-forms" = dontDistribute super."billeksah-forms"; @@ -1525,6 +1528,7 @@ self: super: { "board-games" = dontDistribute super."board-games"; "bogre-banana" = dontDistribute super."bogre-banana"; "bond" = dontDistribute super."bond"; + "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"; @@ -1611,6 +1615,7 @@ self: super: { "cabal-ghci" = dontDistribute super."cabal-ghci"; "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install" = doDistribute super."cabal-install_1_22_8_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; @@ -1679,6 +1684,7 @@ self: super: { "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"; @@ -1726,6 +1732,7 @@ self: super: { "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"; @@ -1784,6 +1791,9 @@ self: super: { "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; + "classy-prelude" = doDistribute super."classy-prelude_0_12_5_1"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -1908,10 +1918,12 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_2"; "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-extra" = doDistribute super."conduit-extra_1_1_10_1"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; @@ -1995,6 +2007,7 @@ self: super: { "coverage" = dontDistribute super."coverage"; "cpio-conduit" = dontDistribute super."cpio-conduit"; "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"; @@ -2022,6 +2035,7 @@ self: super: { "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; "critbit" = dontDistribute super."critbit"; + "criterion" = doDistribute super."criterion_1_1_0_0"; "criterion-plus" = dontDistribute super."criterion-plus"; "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; @@ -2202,6 +2216,7 @@ self: super: { "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"; @@ -2580,6 +2595,7 @@ self: super: { "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"; @@ -2755,6 +2771,8 @@ self: super: { "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"; @@ -2968,6 +2986,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3285,6 +3304,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hOpenPGP" = doDistribute super."hOpenPGP_2_4_3"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3383,6 +3403,7 @@ self: super: { "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"; @@ -4052,6 +4073,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_1"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4289,6 +4311,7 @@ self: super: { "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"; @@ -4366,6 +4389,7 @@ self: super: { "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; "json-encoder" = dontDistribute super."json-encoder"; "json-enumerator" = dontDistribute super."json-enumerator"; @@ -5143,6 +5167,7 @@ self: super: { "nc-indicators" = dontDistribute super."nc-indicators"; "ncurses" = dontDistribute super."ncurses"; "neat" = dontDistribute super."neat"; + "neat-interpolation" = doDistribute super."neat-interpolation_0_3_1_1"; "needle" = dontDistribute super."needle"; "neet" = dontDistribute super."neet"; "nehe-tuts" = dontDistribute super."nehe-tuts"; @@ -5382,6 +5407,7 @@ self: super: { "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"; @@ -5458,6 +5484,7 @@ self: super: { "pasty" = dontDistribute super."pasty"; "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; + "path" = doDistribute super."path_0_5_3"; "path-io" = doDistribute super."path-io_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; @@ -5549,6 +5576,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bzip" = dontDistribute super."pipes-bzip"; @@ -5770,6 +5798,7 @@ self: super: { "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"; @@ -5957,6 +5986,7 @@ self: super: { "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"; @@ -6045,6 +6075,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_2"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6121,6 +6152,7 @@ self: super: { "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"; @@ -6283,6 +6315,7 @@ self: super: { "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"; @@ -6663,6 +6696,7 @@ self: super: { "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; "streamed" = dontDistribute super."streamed"; + "streaming-commons" = doDistribute super."streaming-commons_0_1_15_1"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -6742,6 +6776,7 @@ self: super: { "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"; @@ -6809,6 +6844,7 @@ self: super: { "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"; @@ -6893,7 +6929,6 @@ self: super: { "text-region" = dontDistribute super."text-region"; "text-register-machine" = dontDistribute super."text-register-machine"; "text-render" = dontDistribute super."text-render"; - "text-show" = doDistribute super."text-show_2_1_2"; "text-show-instances" = dontDistribute super."text-show-instances"; "text-stream-decode" = dontDistribute super."text-stream-decode"; "text-utf7" = dontDistribute super."text-utf7"; @@ -7027,12 +7062,12 @@ self: super: { "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; "tracker" = dontDistribute super."tracker"; + "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; "transf" = dontDistribute super."transf"; "transformations" = dontDistribute super."transformations"; "transformers-abort" = dontDistribute super."transformers-abort"; - "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; "transformers-compose" = dontDistribute super."transformers-compose"; "transformers-convert" = dontDistribute super."transformers-convert"; "transformers-free" = dontDistribute super."transformers-free"; @@ -7402,6 +7437,7 @@ self: super: { "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-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; @@ -7548,6 +7584,7 @@ self: super: { "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit" = doDistribute super."xml-conduit_1_3_3_1"; "xml-enumerator" = dontDistribute super."xml-enumerator"; "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; "xml-extractors" = dontDistribute super."xml-extractors"; @@ -7648,6 +7685,7 @@ self: super: { "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"; @@ -7722,6 +7760,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 09e2ef0ec8e..4d3f9edbf7b 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -750,8 +750,8 @@ self: { pname = "Agda"; version = "2.4.2.5"; sha256 = "959658a372d93b735d92191b372d221461026c98de4f92e56d198b576dfb67ee"; - revision = "1"; - editedCabalFile = "85d09d8a607a351be092c5e168c35b8c303b20765ceb0f01cd34956c44ba7f5a"; + revision = "2"; + editedCabalFile = "9c7786cfae8d92deb077650a31f41d15b8e1c8f15450419c268fd16162753515"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -2575,6 +2575,7 @@ self: { HUnit old-time process QuickCheck regex-posix test-framework test-framework-hunit test-framework-quickcheck2 unix ]; + doCheck = false; homepage = "http://www.haskell.org/cabal/"; description = "A framework for packaging Haskell software"; license = stdenv.lib.licenses.bsd3; @@ -2804,7 +2805,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Chart" = callPackage + "Chart_1_5_4" = callPackage ({ mkDerivation, array, base, colour, data-default-class, lens, mtl , old-locale, operational, time, vector }: @@ -2819,9 +2820,10 @@ self: { homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "A library for generating 2D Charts and Plots"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Chart_1_6" = callPackage + "Chart" = callPackage ({ mkDerivation, array, base, colour, data-default-class, lens, mtl , old-locale, operational, time, vector }: @@ -2836,7 +2838,6 @@ self: { homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "A library for generating 2D Charts and Plots"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Chart-cairo_1_5_1" = callPackage @@ -2858,7 +2859,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Chart-cairo" = callPackage + "Chart-cairo_1_5_4" = callPackage ({ mkDerivation, array, base, cairo, Chart, colour , data-default-class, lens, mtl, old-locale, operational, time }: @@ -2870,12 +2871,14 @@ self: { array base cairo Chart colour data-default-class lens mtl old-locale operational time ]; + jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Cairo backend for Charts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Chart-cairo_1_6" = callPackage + "Chart-cairo" = callPackage ({ mkDerivation, array, base, cairo, Chart, colour , data-default-class, lens, mtl, old-locale, operational, time }: @@ -2887,11 +2890,9 @@ self: { array base cairo Chart colour data-default-class lens mtl old-locale operational time ]; - jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Cairo backend for Charts"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Chart-diagrams_1_3_2" = callPackage @@ -2961,7 +2962,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Chart-diagrams" = callPackage + "Chart-diagrams_1_5_4" = callPackage ({ mkDerivation, base, blaze-markup, bytestring, Chart, colour , containers, data-default-class, diagrams-core, diagrams-lib , diagrams-postscript, diagrams-svg, lens, lucid-svg, mtl @@ -2979,12 +2980,14 @@ self: { diagrams-svg lens lucid-svg mtl old-locale operational SVGFonts text time ]; + jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Diagrams backend for Charts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Chart-diagrams_1_6" = callPackage + "Chart-diagrams" = callPackage ({ mkDerivation, base, blaze-markup, bytestring, Chart, colour , containers, data-default-class, diagrams-core, diagrams-lib , diagrams-postscript, diagrams-svg, lens, lucid-svg, mtl @@ -3000,11 +3003,9 @@ self: { diagrams-svg lens lucid-svg mtl old-locale operational SVGFonts text time ]; - jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Diagrams backend for Charts"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Chart-gtk" = callPackage @@ -3019,7 +3020,6 @@ self: { array base cairo Chart Chart-cairo colour data-default-class gtk mtl old-locale time ]; - jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Utility functions for using the chart library with GTK"; license = stdenv.lib.licenses.bsd3; @@ -6975,8 +6975,8 @@ self: { ({ mkDerivation, base, directory, gtk3, process, temporary }: mkDerivation { pname = "Gifcurry"; - version = "0.1.0.6"; - sha256 = "73a6b620ced2f499d52563803fc5684d4470947713328afe347df63ce115772f"; + version = "0.1.1.0"; + sha256 = "21f72f6c440eec80cb2e7df3fc8ed65124b64ab45ba55b4adf5dfccdca0e257a"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -13287,7 +13287,6 @@ self: { base data-default ghc-prim kan-extensions mmorph monad-products mtl parallel random transformers transformers-compat ]; - jailbreak = true; homepage = "http://alkalisoftware.net"; description = "Methods for composing monads"; license = stdenv.lib.licenses.bsd3; @@ -13347,7 +13346,6 @@ self: { libraryHaskellDepends = [ base mtl random transformers transformers-compat ]; - jailbreak = true; description = "Random-number generation monad"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; @@ -13366,7 +13364,6 @@ self: { libraryHaskellDepends = [ base mtl random transformers transformers-compat ]; - jailbreak = true; description = "Random-number generation monad"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; @@ -13383,7 +13380,6 @@ self: { libraryHaskellDepends = [ base mtl random transformers transformers-compat ]; - jailbreak = true; description = "Random-number generation monad"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; @@ -18100,7 +18096,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "Spock-worker" = callPackage + "Spock-worker_0_2_1_3" = callPackage ({ mkDerivation, base, containers, HTF, lifted-base, mtl, Spock , stm, text, time, transformers, vector }: @@ -18116,6 +18112,25 @@ self: { homepage = "http://github.com/agrafix/Spock-worker"; description = "Background workers for Spock"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "Spock-worker" = callPackage + ({ mkDerivation, base, containers, errors, HTF, lifted-base, mtl + , Spock, stm, text, time, transformers, vector + }: + mkDerivation { + pname = "Spock-worker"; + version = "0.3.0.0"; + sha256 = "f5ec5c09125a6dd6c6cd0534a1eb7bc0d6bfe9908f7328d999bf14bd785835f3"; + libraryHaskellDepends = [ + base containers errors lifted-base mtl Spock stm text time + transformers vector + ]; + testHaskellDepends = [ base containers HTF stm vector ]; + homepage = "http://github.com/agrafix/Spock-worker"; + description = "Background workers for Spock"; + license = stdenv.lib.licenses.mit; }) {}; "SpreadsheetML" = callPackage @@ -22494,6 +22509,8 @@ self: { pname = "aeson-compat"; version = "0.3.1.0"; sha256 = "9275040d031433eb0006bce8228a0828e058d547c7d07d61ab0b22154286d736"; + revision = "1"; + editedCabalFile = "88dde146e4177a807888b7058f8e24d057fa826205a005ade669ce1fc395f4a2"; libraryHaskellDepends = [ aeson attoparsec base bytestring containers exceptions hashable nats scientific text time time-locale-compat unordered-containers @@ -24001,8 +24018,8 @@ self: { ({ mkDerivation, base, containers, mtl, syb, vector }: mkDerivation { pname = "alloy"; - version = "1.2.1"; - sha256 = "db73b7f02b642aec6a007c1542874d1bb674e482bc0d19f916a9410f466c7601"; + version = "1.2.2"; + sha256 = "f0a389f7008687b6244b7d6bb5598e1d0bd1e089c96c7a45cfc0f0160feac343"; libraryHaskellDepends = [ base containers mtl syb vector ]; description = "Generic programming library"; license = stdenv.lib.licenses.bsd3; @@ -30960,7 +30977,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "atomic-primops" = callPackage + "atomic-primops_0_8_0_2" = callPackage ({ mkDerivation, base, ghc-prim, primitive }: mkDerivation { pname = "atomic-primops"; @@ -30970,6 +30987,19 @@ self: { homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; description = "A safe approach to CAS and other atomic ops in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "atomic-primops" = callPackage + ({ mkDerivation, base, ghc-prim, primitive }: + mkDerivation { + pname = "atomic-primops"; + version = "0.8.0.3"; + sha256 = "1dbf0ac681bec29ee51125be1303536f54dc8640af9d57a92fc184152a38c997"; + libraryHaskellDepends = [ base ghc-prim primitive ]; + homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; + description = "A safe approach to CAS and other atomic ops in Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "atomic-primops-foreign" = callPackage @@ -34287,6 +34317,25 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "basic-prelude_0_5_1" = callPackage + ({ mkDerivation, base, bytestring, containers, filepath, hashable + , lifted-base, ReadArgs, safe, text, transformers + , unordered-containers, vector + }: + mkDerivation { + pname = "basic-prelude"; + version = "0.5.1"; + sha256 = "0c15557a2f561a7b2472e6a34386d22917e603c14fa54d5a2069feef66b985f2"; + libraryHaskellDepends = [ + base bytestring containers filepath hashable lifted-base ReadArgs + safe text transformers unordered-containers vector + ]; + 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 ({ mkDerivation, base, deepseq, generics-sop, QuickCheck, text }: mkDerivation { @@ -34960,14 +35009,13 @@ self: { testHaskellDepends = [ base hspec QuickCheck transformers transformers-compat ]; - jailbreak = true; homepage = "http://github.com/ekmett/bifunctors/"; description = "Bifunctors"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bifunctors_5_2" = callPackage + "bifunctors" = callPackage ({ mkDerivation, base, comonad, containers, hspec, QuickCheck , semigroups, tagged, template-haskell, transformers , transformers-compat @@ -34983,14 +35031,13 @@ self: { testHaskellDepends = [ base hspec QuickCheck transformers transformers-compat ]; - jailbreak = true; + doHaddock = false; homepage = "http://github.com/ekmett/bifunctors/"; description = "Bifunctors"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bifunctors" = callPackage + "bifunctors_5_2_1" = callPackage ({ mkDerivation, base, comonad, containers, hspec, QuickCheck , semigroups, tagged, template-haskell, transformers , transformers-compat @@ -35006,10 +35053,11 @@ self: { testHaskellDepends = [ base hspec QuickCheck transformers transformers-compat ]; - doHaddock = false; + jailbreak = true; homepage = "http://github.com/ekmett/bifunctors/"; description = "Bifunctors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bighugethesaurus" = callPackage @@ -35525,8 +35573,8 @@ self: { pname = "binary-orphans"; version = "0.1.4.0"; sha256 = "0a952a7521747a7aacf4aa1638674130262f2efacb7121727c1932d49017f742"; - revision = "3"; - editedCabalFile = "b81b44514f6b9e69bb1cb36484268470dd9268112d974960fb6070a4bb1f307c"; + revision = "4"; + editedCabalFile = "5c473d152fd0cc986ec5330e6138d3c3b62b29f2d3ae7ebfad0832ba82593ce6"; libraryHaskellDepends = [ aeson base binary hashable scientific semigroups tagged text text-binary time unordered-containers vector @@ -38489,7 +38537,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bloodhound" = callPackage + "bloodhound_0_10_0_0" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring, containers , data-default-class, derive, directory, doctest, doctest-prop , errors, exceptions, filepath, hashable, hspec, http-client @@ -38518,6 +38566,37 @@ self: { homepage = "https://github.com/bitemyapp/bloodhound"; description = "ElasticSearch client library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "bloodhound" = callPackage + ({ mkDerivation, aeson, base, blaze-builder, bytestring, containers + , data-default-class, derive, directory, doctest, doctest-prop + , errors, exceptions, filepath, hashable, hspec, http-client + , http-types, mtl, mtl-compat, network-uri, QuickCheck + , quickcheck-properties, scientific, semigroups, text, time + , transformers, unordered-containers, vector + }: + mkDerivation { + pname = "bloodhound"; + version = "0.11.0.0"; + sha256 = "df3c708675ad1e113aa31f6d1492bcf55dbef6c7e86e6202b118670a6fcbb939"; + libraryHaskellDepends = [ + aeson base blaze-builder bytestring containers data-default-class + exceptions hashable http-client http-types mtl mtl-compat + network-uri scientific semigroups text time transformers + unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring containers derive directory doctest + doctest-prop errors filepath hspec http-client http-types mtl + QuickCheck quickcheck-properties semigroups text time + unordered-containers vector + ]; + jailbreak = true; + homepage = "https://github.com/bitemyapp/bloodhound"; + description = "ElasticSearch client library for Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "bloomfilter" = callPackage @@ -38683,6 +38762,7 @@ self: { testHaskellDepends = [ array base containers QuickCheck random transformers utility-ht ]; + jailbreak = true; homepage = "http://code.haskell.org/~thielema/games/"; description = "Three games for inclusion in a web server"; license = "GPL"; @@ -38736,6 +38816,26 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "bond-haskell-compiler" = callPackage + ({ mkDerivation, aeson, base, bond, bytestring, cmdargs, directory + , filepath, haskell-src-exts, monad-loops + }: + mkDerivation { + pname = "bond-haskell-compiler"; + version = "0.1.0.0"; + sha256 = "06bbfd191a7a2d901df2862196ae4e518306af9c363e908fd03802d7dfe27ba5"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bond filepath haskell-src-exts ]; + executableHaskellDepends = [ + aeson base bond bytestring cmdargs directory filepath monad-loops + ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/rblaze/bond-haskell-compiler#readme"; + description = "Bond code generator for Haskell"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "bool-extras" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -39308,6 +39408,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "brick_0_5" = callPackage + ({ mkDerivation, base, containers, contravariant, data-default + , deepseq, lens, template-haskell, text, text-zipper, transformers + , vector, vty + }: + mkDerivation { + pname = "brick"; + version = "0.5"; + sha256 = "70819394a586d768e31bbf34b225ce642f682b625256ebe3c8651ee203f5e942"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers contravariant data-default deepseq lens + template-haskell text text-zipper transformers vector vty + ]; + executableHaskellDepends = [ + base data-default lens text vector vty + ]; + homepage = "https://github.com/jtdaugherty/brick/"; + description = "A declarative terminal user interface library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "brillig" = callPackage ({ mkDerivation, base, binary, cmdargs, containers, directory , filepath, ListZipper, text @@ -41675,7 +41799,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; - "cabal-install" = callPackage + "cabal-install_1_22_8_0" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, containers , directory, extensible-exceptions, filepath, HTTP, HUnit, mtl , network, network-uri, pretty, process, QuickCheck, random @@ -41706,10 +41830,11 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "The command-line interface for Cabal and Hackage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; - "cabal-install_1_22_9_0" = callPackage + "cabal-install" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, containers , directory, extensible-exceptions, filepath, HTTP, HUnit, mtl , network, network-uri, pretty, process, QuickCheck, random @@ -41732,6 +41857,7 @@ self: { pretty process QuickCheck regex-posix stm test-framework test-framework-hunit test-framework-quickcheck2 time unix zlib ]; + doCheck = false; postInstall = '' mkdir $out/etc mv bash-completion $out/etc/bash_completion.d @@ -41739,7 +41865,6 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "The command-line interface for Cabal and Hackage"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; @@ -43407,6 +43532,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "casa-abbreviations-and-acronyms" = callPackage + ({ mkDerivation, base, directory, doctest, filepath, QuickCheck + , template-haskell + }: + mkDerivation { + pname = "casa-abbreviations-and-acronyms"; + version = "0.0.1"; + sha256 = "5ebea4d5c229fbbf97fac6cd91016ef41fe712995d6f8719db330c2753e0ec8a"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ + base directory doctest filepath QuickCheck template-haskell + ]; + homepage = "https://github.com/tonymorris/casa-abbreviations-and-acronyms"; + description = "CASA Abbreviations and Acronyms"; + license = "unknown"; + }) {}; + "casadi-bindings" = callPackage ({ mkDerivation, base, binary, casadi, casadi-bindings-core , casadi-bindings-internal, cereal, containers, doctest, linear @@ -44293,19 +44435,19 @@ self: { "cblrepo" = callPackage ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, Cabal , containers, directory, filepath, mtl, optparse-applicative - , process, safe, stringsearch, tar, transformers, unix, Unixutils - , utf8-string, zlib + , process, safe, stringsearch, tar, text, transformers, unix + , Unixutils, utf8-string, zlib }: mkDerivation { pname = "cblrepo"; - version = "0.19.1"; - sha256 = "e06276a14157bf82b86f3a534bc51620134253b1e9472e676616cec58ab8b436"; + version = "0.20.0"; + sha256 = "0cc8cf5888d0dc87be47a2e11c641e8f3c8f64f3e09b242694c74b69a1b093e5"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ aeson ansi-wl-pprint base bytestring Cabal containers directory filepath mtl optparse-applicative process safe stringsearch tar - transformers unix Unixutils utf8-string zlib + text transformers unix Unixutils utf8-string zlib ]; jailbreak = true; description = "Tool to maintain a database of CABAL packages and their dependencies"; @@ -44790,7 +44932,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cgi" = callPackage + "cgi_3001_2_2_3" = callPackage ({ mkDerivation, base, bytestring, containers, exceptions, mtl , multipart, network, network-uri, old-locale, old-time, parsec , xhtml @@ -44806,6 +44948,26 @@ self: { homepage = "https://github.com/cheecheeo/haskell-cgi"; description = "A library for writing CGI programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cgi" = callPackage + ({ mkDerivation, base, bytestring, containers, doctest, exceptions + , mtl, multipart, network, network-uri, parsec, QuickCheck, time + , xhtml + }: + mkDerivation { + pname = "cgi"; + version = "3001.3.0.0"; + sha256 = "917d08354d9b613def8412fcb096d6adab62d62379a4f761c6cd3021d8bb644b"; + libraryHaskellDepends = [ + base bytestring containers exceptions mtl multipart network + network-uri parsec time xhtml + ]; + testHaskellDepends = [ base doctest QuickCheck ]; + homepage = "https://github.com/cheecheeo/haskell-cgi"; + description = "A library for writing CGI programs"; + license = stdenv.lib.licenses.bsd3; }) {}; "cgi-undecidable" = callPackage @@ -46059,7 +46221,6 @@ self: { lens lens-aeson mtl mtl-compat QuickCheck tasty tasty-hunit tasty-th transformers-compat ]; - jailbreak = true; homepage = "http://clafer.org"; description = "Compiles Clafer models to other formats: Alloy, JavaScript, JSON, HTML, Dot"; license = stdenv.lib.licenses.mit; @@ -46092,7 +46253,6 @@ self: { array base clafer cmdargs directory filepath HUnit tasty tasty-hunit tasty-th transformers transformers-compat ]; - jailbreak = true; homepage = "http://clafer.org"; description = "claferIG is an interactive tool that generates instances of Clafer models"; license = stdenv.lib.licenses.mit; @@ -46112,7 +46272,6 @@ self: { network-uri process SHA split time transformers transformers-compat utf8-string ]; - jailbreak = true; homepage = "http://github.com/gsdlab/claferwiki"; description = "A wiki-based IDE for literate modeling with Clafer"; license = stdenv.lib.licenses.mit; @@ -47428,7 +47587,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "classy-prelude" = callPackage + "classy-prelude_0_12_5_1" = callPackage ({ mkDerivation, base, basic-prelude, bifunctors, bytestring , chunked-data, containers, dlist, enclosed-exceptions, exceptions , ghc-prim, hashable, hspec, lifted-base, mono-traversable, mtl @@ -47453,6 +47612,34 @@ self: { homepage = "https://github.com/snoyberg/classy-prelude"; description = "A typeclass-based Prelude"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "classy-prelude" = callPackage + ({ mkDerivation, base, basic-prelude, bifunctors, bytestring + , chunked-data, containers, dlist, enclosed-exceptions, exceptions + , ghc-prim, hashable, hspec, lifted-base, mono-traversable, mtl + , mutable-containers, primitive, QuickCheck, semigroups, stm, text + , time, time-locale-compat, transformers, unordered-containers + , vector, vector-instances + }: + mkDerivation { + pname = "classy-prelude"; + version = "0.12.6"; + sha256 = "85abaa21998914465e553421aacaf64b0dc734c5e785d3974e24027c5b33e333"; + libraryHaskellDepends = [ + base basic-prelude bifunctors bytestring chunked-data containers + dlist enclosed-exceptions exceptions ghc-prim hashable lifted-base + mono-traversable mtl mutable-containers primitive semigroups stm + text time time-locale-compat transformers unordered-containers + vector vector-instances + ]; + testHaskellDepends = [ + base containers hspec QuickCheck transformers unordered-containers + ]; + homepage = "https://github.com/snoyberg/classy-prelude"; + description = "A typeclass-based Prelude"; + license = stdenv.lib.licenses.mit; }) {}; "classy-prelude-conduit_0_10_2" = callPackage @@ -47643,7 +47830,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "classy-prelude-conduit" = callPackage + "classy-prelude-conduit_0_12_5" = callPackage ({ mkDerivation, base, bytestring, classy-prelude, conduit , conduit-combinators, hspec, monad-control, QuickCheck, resourcet , transformers, void @@ -47659,6 +47846,29 @@ self: { testHaskellDepends = [ base bytestring conduit hspec QuickCheck transformers ]; + jailbreak = true; + homepage = "https://github.com/snoyberg/classy-prelude"; + description = "conduit instances for classy-prelude"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "classy-prelude-conduit" = callPackage + ({ mkDerivation, base, bytestring, classy-prelude, conduit + , conduit-combinators, hspec, monad-control, QuickCheck, resourcet + , transformers, void + }: + mkDerivation { + pname = "classy-prelude-conduit"; + version = "0.12.6"; + sha256 = "afaee71828145632914ebe83d5f635367ed702a95a1d327dadac13daa93d69ee"; + libraryHaskellDepends = [ + base bytestring classy-prelude conduit conduit-combinators + monad-control resourcet transformers void + ]; + testHaskellDepends = [ + base bytestring conduit hspec QuickCheck transformers + ]; homepage = "https://github.com/snoyberg/classy-prelude"; description = "conduit instances for classy-prelude"; license = stdenv.lib.licenses.mit; @@ -47832,7 +48042,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "classy-prelude-yesod" = callPackage + "classy-prelude-yesod_0_12_5" = callPackage ({ mkDerivation, aeson, base, classy-prelude , classy-prelude-conduit, data-default, http-conduit, http-types , persistent, yesod, yesod-newsfeed, yesod-static @@ -47846,6 +48056,27 @@ self: { http-conduit http-types persistent yesod yesod-newsfeed yesod-static ]; + jailbreak = true; + homepage = "https://github.com/snoyberg/classy-prelude"; + description = "Provide a classy prelude including common Yesod functionality"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "classy-prelude-yesod" = callPackage + ({ mkDerivation, aeson, base, classy-prelude + , classy-prelude-conduit, data-default, http-conduit, http-types + , persistent, yesod, yesod-newsfeed, yesod-static + }: + mkDerivation { + pname = "classy-prelude-yesod"; + version = "0.12.6"; + sha256 = "db65c7f0d49a4edf0c27bce0e614ffcbc54dc37afd08d368f239322240f60839"; + libraryHaskellDepends = [ + aeson base classy-prelude classy-prelude-conduit data-default + http-conduit http-types persistent yesod yesod-newsfeed + yesod-static + ]; homepage = "https://github.com/snoyberg/classy-prelude"; description = "Provide a classy prelude including common Yesod functionality"; license = stdenv.lib.licenses.mit; @@ -51138,7 +51369,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "conduit" = callPackage + "conduit_1_2_6_2" = callPackage ({ mkDerivation, base, containers, exceptions, hspec, lifted-base , mmorph, mtl, QuickCheck, resourcet, safe, transformers , transformers-base @@ -51158,6 +51389,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.3"; + sha256 = "6816ba600c8cbd14ce9fe89f8e101dedf10dda43d2a178576324678c1722d589"; + 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 @@ -51747,7 +52001,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "conduit-extra" = callPackage + "conduit-extra_1_1_10_1" = callPackage ({ mkDerivation, async, attoparsec, base, blaze-builder, bytestring , bytestring-builder, conduit, directory, exceptions, filepath , hspec, monad-control, network, primitive, process, resourcet, stm @@ -51770,6 +52024,32 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Batteries included conduit: adapters for common libraries"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "conduit-extra" = callPackage + ({ mkDerivation, async, attoparsec, base, blaze-builder, bytestring + , bytestring-builder, conduit, directory, exceptions, filepath + , hspec, monad-control, network, primitive, process, resourcet, stm + , streaming-commons, text, transformers, transformers-base + }: + mkDerivation { + pname = "conduit-extra"; + version = "1.1.11"; + sha256 = "670009f95b16d74d1ffab5fe7f9e667249384cdddf80b8eda32413e11861ea2f"; + libraryHaskellDepends = [ + attoparsec base blaze-builder bytestring conduit directory + exceptions filepath monad-control network primitive process + resourcet stm streaming-commons text transformers transformers-base + ]; + testHaskellDepends = [ + async attoparsec base blaze-builder bytestring bytestring-builder + conduit exceptions hspec process resourcet stm streaming-commons + text transformers transformers-base + ]; + homepage = "http://github.com/snoyberg/conduit"; + description = "Batteries included conduit: adapters for common libraries"; + license = stdenv.lib.licenses.mit; }) {}; "conduit-iconv" = callPackage @@ -54072,7 +54352,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cpphs" = callPackage + "cpphs_1_19_3" = callPackage ({ mkDerivation, base, directory, old-locale, old-time, polyparse }: mkDerivation { @@ -54090,6 +54370,27 @@ self: { homepage = "http://projects.haskell.org/cpphs/"; description = "A liberalised re-implementation of cpp, the C pre-processor"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cpphs" = callPackage + ({ mkDerivation, base, directory, old-locale, old-time, polyparse + }: + mkDerivation { + pname = "cpphs"; + version = "1.20.1"; + sha256 = "bd6eab851ec39ed5c5e4b0eb0b956f5892a36dedabcdf127a1ffa84c8e4f6017"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base directory old-locale old-time polyparse + ]; + executableHaskellDepends = [ + base directory old-locale old-time polyparse + ]; + homepage = "http://projects.haskell.org/cpphs/"; + description = "A liberalised re-implementation of cpp, the C pre-processor"; + license = "LGPL"; }) {}; "cprng-aes" = callPackage @@ -54752,7 +55053,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "criterion" = callPackage + "criterion_1_1_0_0" = callPackage ({ mkDerivation, aeson, ansi-wl-pprint, base, binary, bytestring , cassava, containers, deepseq, directory, filepath, Glob, hastache , HUnit, mtl, mwc-random, optparse-applicative, parsec, QuickCheck @@ -54782,9 +55083,10 @@ self: { homepage = "http://www.serpentine.com/criterion"; description = "Robust, reliable performance measurement and analysis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "criterion_1_1_1_0" = callPackage + "criterion" = callPackage ({ mkDerivation, aeson, ansi-wl-pprint, base, binary, bytestring , cassava, containers, deepseq, directory, filepath, Glob, hastache , HUnit, mtl, mwc-random, optparse-applicative, parsec, QuickCheck @@ -54814,7 +55116,6 @@ self: { homepage = "http://www.serpentine.com/criterion"; description = "Robust, reliable performance measurement and analysis"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "criterion-plus" = callPackage @@ -56696,12 +56997,12 @@ self: { ({ mkDerivation, array, attoparsec, base, base16-bytestring, binary , bytestring, cmdargs, containers, cryptohash, curl, data-ordlist , directory, filepath, FindBin, hashable, haskeline, html, HTTP - , HUnit, mmap, mtl, network, network-uri, old-locale, old-time - , parsec, process, QuickCheck, random, regex-applicative - , regex-compat-tdfa, sandi, shelly, split, tar, terminfo - , test-framework, test-framework-hunit, test-framework-quickcheck2 - , text, time, transformers, transformers-compat, unix, unix-compat - , utf8-string, vector, zip-archive, zlib + , HUnit, mmap, mtl, network, network-uri, old-time, parsec, process + , QuickCheck, random, regex-applicative, regex-compat-tdfa, sandi + , shelly, split, tar, terminfo, test-framework + , test-framework-hunit, test-framework-quickcheck2, text, time + , transformers, transformers-compat, unix, unix-compat, utf8-string + , vector, zip-archive, zlib }: mkDerivation { pname = "darcs"; @@ -56715,9 +57016,9 @@ self: { libraryHaskellDepends = [ array attoparsec base base16-bytestring binary bytestring containers cryptohash data-ordlist directory filepath hashable - haskeline html HTTP mmap mtl network network-uri old-locale - old-time parsec process random regex-applicative regex-compat-tdfa - sandi tar terminfo text time transformers transformers-compat unix + haskeline html HTTP mmap mtl network network-uri old-time parsec + process random regex-applicative regex-compat-tdfa sandi tar + terminfo text time transformers transformers-compat unix unix-compat utf8-string vector zip-archive zlib ]; librarySystemDepends = [ curl ]; @@ -56729,7 +57030,6 @@ self: { test-framework-hunit test-framework-quickcheck2 text unix-compat zip-archive zlib ]; - jailbreak = true; postInstall = '' mkdir -p $out/etc/bash_completion.d mv contrib/darcs_completion $out/etc/bash_completion.d/darcs @@ -57340,8 +57640,8 @@ self: { ({ mkDerivation, base, deepseq, QuickCheck }: mkDerivation { pname = "data-clist"; - version = "0.0.7.4"; - sha256 = "769f40b42d01d6e917a15fdfd381daafaabaed8d550bd7f85e6d45cb1cb2d96e"; + version = "0.1.0.0"; + sha256 = "f22ba783032ad904fc797ee3ff9d015a43cf26b7670addf4d3b74f5d6f359f45"; libraryHaskellDepends = [ base deepseq QuickCheck ]; homepage = "https://github.com/sw17ch/data-clist"; description = "Simple functional ring type"; @@ -57759,8 +58059,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "data-fix"; - version = "0.0.1"; - sha256 = "f93a17bedc61402014fa8b7ffdea2dfe3cee13866e4d5ec6356a8ab433452027"; + version = "0.0.2"; + sha256 = "27335dc34276f3915a42db3e49d6e63abf8eb4a673b302651acdd6f4933b2248"; libraryHaskellDepends = [ base ]; homepage = "https://github.com/anton-k/data-fix"; description = "Fixpoint data types"; @@ -58863,8 +59163,8 @@ self: { }: mkDerivation { pname = "dbmigrations"; - version = "1.1"; - sha256 = "fe8075f25f1b55a55e792e654b8708e7f093c78b2cd75c1f1867efbf1a3cc2bc"; + version = "1.1.1"; + sha256 = "d36742052ed45f933e7883bb542c070c881685df721e526d4abc25e7a1444c9f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -59021,8 +59321,8 @@ self: { }: mkDerivation { pname = "dbus-th"; - version = "0.1.1.1"; - sha256 = "6c113c42bc87a9c874f0a0d408368aa021b197f88e2d0a2ce8ecb4e6503db36b"; + version = "0.1.2.0"; + sha256 = "58560b8ae7215786b6d632e05a0ab74665abc59b66e18555493dd937cbee4909"; libraryHaskellDepends = [ base containers dbus syb template-haskell text ]; @@ -59030,6 +59330,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "dbus-th-introspection" = callPackage + ({ mkDerivation, base, cmdargs, containers, dbus, dbus-th + , template-haskell + }: + mkDerivation { + pname = "dbus-th-introspection"; + version = "0.1.0.0"; + sha256 = "42c5e05f11789d9c738b5ce9495e0a25f15738db85637c49a5bb03c1ed768481"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers dbus dbus-th template-haskell + ]; + executableHaskellDepends = [ + base cmdargs containers dbus dbus-th template-haskell + ]; + jailbreak = true; + description = "Generate bindings for DBus calls by using DBus introspection and dbus-th"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "dclabel" = callPackage ({ mkDerivation, base, bytestring, cereal, containers, QuickCheck , quickcheck-instances, test-framework, test-framework-quickcheck2 @@ -64015,20 +64336,19 @@ self: { "distributed-process" = callPackage ({ mkDerivation, base, binary, bytestring, containers - , data-accessor, deepseq, distributed-static, ghc-prim, hashable - , mtl, network-transport, random, rank1dynamic, stm, syb + , data-accessor, deepseq, distributed-static, exceptions, ghc-prim + , hashable, mtl, network-transport, random, rank1dynamic, stm, syb , template-haskell, time, transformers }: mkDerivation { pname = "distributed-process"; - version = "0.6.0"; - sha256 = "d79f7e24e7b2896681f9f4b798da0e987742caab4c34917a0d04f40f9aef6b5b"; - revision = "2"; - editedCabalFile = "3931f513026c2190a6117df582f6ff72d06898b69fddfafe65c25d2d0460f140"; + version = "0.6.1"; + sha256 = "e533facdab2311bdfdea2dbb58e8920ad8121af36417ba98489146e5c224d555"; libraryHaskellDepends = [ base binary bytestring containers data-accessor deepseq - distributed-static ghc-prim hashable mtl network-transport random - rank1dynamic stm syb template-haskell time transformers + distributed-static exceptions ghc-prim hashable mtl + network-transport random rank1dynamic stm syb template-haskell time + transformers ]; doCheck = false; homepage = "http://haskell-distributed.github.com/"; @@ -64342,8 +64662,8 @@ self: { }: mkDerivation { pname = "distributed-process-lifted"; - version = "0.2.0.0"; - sha256 = "c0c323de903c6f6770c9e95e4c3dbbfc9295f55ad309220fd64710dae3a5e27f"; + version = "0.2.0.1"; + sha256 = "9f2d96e2148bdc3be54365810f2e8689e7ab2d133d6b8248701d997a92a32950"; libraryHaskellDepends = [ base deepseq distributed-process distributed-process-monad-control lifted-base monad-control mtl network-transport transformers @@ -64354,7 +64674,6 @@ self: { network-transport network-transport-tcp rematch test-framework test-framework-hunit transformers ]; - jailbreak = true; homepage = "https://github.com/jeremyjh/distributed-process-lifted"; description = "monad-control style typeclass and transformer instances for Process monad"; license = stdenv.lib.licenses.bsd3; @@ -64366,13 +64685,12 @@ self: { }: mkDerivation { pname = "distributed-process-monad-control"; - version = "0.5.1.1"; - sha256 = "dab2eb3396e4afa5fdf9f84dd51a3e6bf634c2971a28c782946cc9f4b0e7fa43"; + version = "0.5.1.2"; + sha256 = "284ff6a793a78e4d587cd5f408520b259e2e9d36ec9c69a161abe3103a18e0c7"; libraryHaskellDepends = [ base distributed-process monad-control transformers transformers-base ]; - jailbreak = true; homepage = "http://haskell-distributed.github.io"; description = "Orphan instances for MonadBase and MonadBaseControl"; license = stdenv.lib.licenses.bsd3; @@ -64702,8 +65020,8 @@ self: { }: mkDerivation { pname = "distributed-process-zookeeper"; - version = "0.2.0.0"; - sha256 = "b14f2f6a6f8f0e37bee40fd57a6e4c3491cf687a1de65f593fbac94962a912ed"; + version = "0.2.1.0"; + sha256 = "98e74ca698daf1434fda5ac2cb277e8849080ef897e907716a196c1348c84bcd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -64717,7 +65035,6 @@ self: { lifted-base monad-control network network-transport network-transport-tcp transformers ]; - jailbreak = true; homepage = "https://github.com/jeremyjh/distributed-process-zookeeper"; description = "A Zookeeper back-end for Cloud Haskell"; license = stdenv.lib.licenses.bsd3; @@ -65838,13 +66155,14 @@ self: { }) {}; "download" = callPackage - ({ mkDerivation, base, bytestring, feed, tagsoup, xml }: + ({ mkDerivation, base, bytestring, feed, hspec, tagsoup, xml }: mkDerivation { pname = "download"; - version = "0.3.2"; - sha256 = "839f46eae433b824e7013b84cfd253134a718319949447ad2b6cb28411760b5a"; + version = "0.3.2.3"; + sha256 = "8fa68c80182f763202a9301443613fe642af64b1d48251ba01b4d63c83715fc2"; libraryHaskellDepends = [ base bytestring feed tagsoup xml ]; - homepage = "http://code.haskell.org/~dons/code/download"; + testHaskellDepends = [ base hspec ]; + homepage = "https://github.com/psibi/download"; description = "High-level file download based on URLs"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -70054,7 +70372,6 @@ self: { libraryHaskellDepends = [ base safe transformers transformers-compat ]; - jailbreak = true; description = "Simplified error-handling"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -70870,7 +71187,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "eventstore" = callPackage + "eventstore_0_10_0_2" = callPackage ({ mkDerivation, aeson, async, base, bytestring, cereal, containers , network, protobuf, random, stm, tasty, tasty-hunit, text, time , unordered-containers, uuid @@ -70891,6 +71208,32 @@ self: { description = "EventStore TCP Client"; license = stdenv.lib.licenses.bsd3; platforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "eventstore" = callPackage + ({ mkDerivation, aeson, array, async, base, bytestring, cereal + , containers, dns, 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"; + libraryHaskellDepends = [ + aeson array async base bytestring cereal containers dns http-client + network protobuf random semigroups stm text time + unordered-containers uuid + ]; + testHaskellDepends = [ + aeson base stm tasty tasty-hunit text time + ]; + doCheck = false; + homepage = "http://github.com/YoEight/eventstore"; + description = "EventStore TCP Client"; + license = stdenv.lib.licenses.bsd3; + platforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "every-bit-counts" = callPackage @@ -71137,7 +71480,6 @@ self: { base HUnit test-framework test-framework-hunit transformers transformers-compat ]; - jailbreak = true; description = "Type classes and monads for unchecked extensible exceptions"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -75070,8 +75412,8 @@ self: { }: mkDerivation { pname = "fit"; - version = "0.5.1"; - sha256 = "ab192e41436054b04b476670748d43ff486fc90c5f80e01397bf51103fdbf278"; + version = "0.5.2"; + sha256 = "2e5ef15c5b4ea60f9861377a133801a3e2c28dcff74fa7aa5f9d8e6b115f3cf7"; libraryHaskellDepends = [ attoparsec base bytestring containers contravariant mtl text ]; @@ -76131,7 +76473,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fn" = callPackage + "fn_0_2_0_2" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, directory , filepath, hspec, http-types, text, unordered-containers, wai , wai-extra @@ -76151,9 +76493,10 @@ self: { homepage = "http://github.com/dbp/fn#readme"; description = "A functional web framework"; license = stdenv.lib.licenses.isc; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fn_0_3_0_0" = callPackage + "fn" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, directory , filepath, hspec, http-types, text, unordered-containers, wai , wai-extra @@ -76173,7 +76516,6 @@ self: { homepage = "http://github.com/dbp/fn#readme"; description = "A functional web framework"; license = stdenv.lib.licenses.isc; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fn-extra_0_2_0_0" = callPackage @@ -76194,7 +76536,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fn-extra" = callPackage + "fn-extra_0_2_0_1" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, either, fn, heist , http-types, lens, mtl, text, wai, wai-util, xmlhtml }: @@ -76209,9 +76551,10 @@ self: { homepage = "http://github.com/dbp/fn#readme"; description = "Extras for Fn, a functional web framework"; license = stdenv.lib.licenses.isc; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fn-extra_0_3_0_0" = callPackage + "fn-extra" = callPackage ({ mkDerivation, base, blaze-builder, bytestring , digestive-functors, directory, either, fn, heist, http-types , lens, mtl, resourcet, text, wai, wai-extra, wai-util, xmlhtml @@ -76228,7 +76571,6 @@ self: { homepage = "http://github.com/dbp/fn#readme"; description = "Extras for Fn, a functional web framework"; license = stdenv.lib.licenses.isc; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "focus_0_1_3" = callPackage @@ -78041,8 +78383,8 @@ self: { ({ mkDerivation, base, directory }: mkDerivation { pname = "frown"; - version = "0.6.2.2"; - sha256 = "d061880b6b3fca4f2a5c054f5669d9c0747139386c47ccf57db4d5521c02c447"; + version = "0.6.2.3"; + sha256 = "fcca75244343a976a397f7d50687a80d41192e9eaa47d77799d11892f5fe400c"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base directory ]; @@ -80239,8 +80581,8 @@ self: { }: mkDerivation { pname = "geojson"; - version = "1.3.0"; - sha256 = "1adba5e0bcfc4efad8ed9742279d78cc85d45be845257dd64999f66a872dd9a1"; + version = "1.3.1"; + sha256 = "b4f6624c79d7f1ba66519b3711c2f67b682c6c7b126fb7b4ccf87edd4c7f9661"; libraryHaskellDepends = [ aeson base lens semigroups text transformers validation vector ]; @@ -81440,7 +81782,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ghcid" = callPackage + "ghcid_0_5" = callPackage ({ mkDerivation, ansi-terminal, base, cmdargs, containers , directory, extra, filepath, fsnotify, process, tasty, tasty-hunit , terminal-size, time @@ -81468,9 +81810,10 @@ self: { homepage = "https://github.com/ndmitchell/ghcid#readme"; description = "GHCi based bare bones IDE"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ghcid_0_5_1" = callPackage + "ghcid" = callPackage ({ mkDerivation, ansi-terminal, base, cmdargs, containers , directory, extra, filepath, fsnotify, process, tasty, tasty-hunit , terminal-size, time @@ -81492,10 +81835,10 @@ self: { ansi-terminal base cmdargs containers directory extra filepath fsnotify process tasty tasty-hunit terminal-size time ]; + doCheck = false; homepage = "https://github.com/ndmitchell/ghcid#readme"; description = "GHCi based bare bones IDE"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghcjs-codemirror" = callPackage @@ -82979,15 +83322,14 @@ self: { }: mkDerivation { pname = "gitignore"; - version = "1.0.1"; - sha256 = "14bf2fb4a56ec53514986536c1b63bd5c0b1404f5c9f7b7d645cf7733585520f"; + version = "1.1"; + sha256 = "59cc0668488d3fc587b48b04293cd67fcefde64125fefc4f1d0f5682b9401084"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ aeson base base64-bytestring bytestring http-conduit network safe text ]; - jailbreak = true; homepage = "https://github.com/relrod/gitignore"; description = "Apply GitHub .gitignore templates to already existing repositories."; license = stdenv.lib.licenses.bsd3; @@ -88971,7 +89313,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hOpenPGP" = callPackage + "hOpenPGP_2_4_3" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , bifunctors, binary, binary-conduit, byteable, bytestring, bzlib , conduit, conduit-extra, containers, crypto-cipher-types @@ -89009,6 +89351,47 @@ self: { homepage = "http://floss.scru.org/hOpenPGP/"; description = "native Haskell implementation of OpenPGP (RFC4880)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hOpenPGP" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring + , bifunctors, binary, binary-conduit, byteable, bytestring, bzlib + , conduit, conduit-extra, containers, crypto-cipher-types + , cryptonite, data-default-class, errors, hashable + , incremental-parser, ixset-typed, lens, memory, monad-loops + , nettle, network, network-uri, newtype, openpgp-asciiarmor + , QuickCheck, quickcheck-instances, resourcet, securemem + , semigroups, split, tasty, tasty-hunit, tasty-quickcheck, text + , time, time-locale-compat, transformers, unordered-containers + , wl-pprint-extras, zlib + }: + mkDerivation { + pname = "hOpenPGP"; + version = "2.4.4"; + sha256 = "6d137b38a2a60f711fd34612849f34a1731271c6a2cc83aa57c37cfea1f5a806"; + libraryHaskellDepends = [ + aeson attoparsec base base64-bytestring bifunctors binary + binary-conduit byteable bytestring bzlib conduit conduit-extra + containers crypto-cipher-types cryptonite data-default-class errors + hashable incremental-parser ixset-typed lens memory monad-loops + nettle network network-uri newtype openpgp-asciiarmor resourcet + securemem semigroups split text time time-locale-compat + transformers unordered-containers wl-pprint-extras zlib + ]; + testHaskellDepends = [ + aeson attoparsec base bifunctors binary binary-conduit byteable + bytestring bzlib conduit conduit-extra containers + crypto-cipher-types cryptonite data-default-class errors hashable + incremental-parser ixset-typed lens memory monad-loops nettle + network network-uri newtype QuickCheck quickcheck-instances + resourcet securemem semigroups split tasty tasty-hunit + tasty-quickcheck text time time-locale-compat transformers + unordered-containers wl-pprint-extras zlib + ]; + homepage = "http://floss.scru.org/hOpenPGP/"; + description = "native Haskell implementation of OpenPGP (RFC4880)"; + license = stdenv.lib.licenses.mit; }) {}; "hPDB_1_2_0" = callPackage @@ -91694,6 +92077,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "handwriting" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, directory + , filepath, lens, lens-aeson, random, split, text, transformers + , wreq + }: + mkDerivation { + pname = "handwriting"; + version = "0.1.0.0"; + sha256 = "ce50861bc2b6957e34cc52d05cb6f7837806988bcc82edc30123e1525bdc79f9"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring containers lens lens-aeson split text + transformers wreq + ]; + executableHaskellDepends = [ + base bytestring directory filepath random text + ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/ismailmustafa/handwriting-haskell#readme"; + description = "API Client for the handwriting.io API."; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hangman" = callPackage ({ mkDerivation, base, mtl, random, utility-ht }: mkDerivation { @@ -91784,8 +92191,8 @@ self: { }: mkDerivation { pname = "haphviz"; - version = "0.1.2.0"; - sha256 = "d7dcb9cc3c345a3886206fc2c50ce375fbafea5c44124602a6124d144d172f8e"; + version = "0.2.0.0"; + sha256 = "352fd5f9b696341f33ef262a15df817d3831f0bea09de1d5babb34d4388e238d"; libraryHaskellDepends = [ base mtl text ]; testHaskellDepends = [ base checkers hspec QuickCheck quickcheck-text text @@ -92484,7 +92891,6 @@ self: { testHaskellDepends = [ base bytestring containers HUnit parsec zlib ]; - jailbreak = true; homepage = "http://happstack.com"; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; @@ -92515,7 +92921,6 @@ self: { testHaskellDepends = [ base bytestring containers HUnit parsec zlib ]; - jailbreak = true; homepage = "http://happstack.com"; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; @@ -98674,21 +99079,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hedis_0_7_1" = callPackage - ({ mkDerivation, attoparsec, base, BoundedChan, bytestring - , bytestring-lexing, deepseq, HUnit, mtl, network, resource-pool + "hedis_0_7_6" = 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.1"; - sha256 = "741dce86d4a331c64f7720ad9650e5af77ccb8c0a3301266287ae07093f7a0a0"; + version = "0.7.6"; + sha256 = "5108932156140465b41915fc043dc6e23491480576c48a4a81dd9bbb570f5cbe"; libraryHaskellDepends = [ - attoparsec base BoundedChan bytestring bytestring-lexing deepseq - mtl network resource-pool time vector + attoparsec base bytestring bytestring-lexing deepseq mtl network + resource-pool time vector ]; testHaskellDepends = [ - base bytestring HUnit mtl test-framework test-framework-hunit time + base bytestring HUnit mtl slave-thread test-framework + test-framework-hunit time ]; homepage = "https://github.com/informatikr/hedis"; description = "Client library for the Redis datastore: supports full command set, pipelining"; @@ -100541,8 +100947,8 @@ self: { }: mkDerivation { pname = "higher-leveldb"; - version = "0.3.0.0"; - sha256 = "668557a64c3df44ab1ddb3f9ffd9bdaf2a88fb6f56b7712daf8ee8418370f051"; + version = "0.3.0.1"; + sha256 = "42d99bd80aa8ca53b537529a580ba9222ad840f50bc7d300120254165cb888fa"; libraryHaskellDepends = [ base bytestring cereal data-default leveldb-haskell lifted-base monad-control mtl resourcet transformers transformers-base @@ -100551,7 +100957,6 @@ self: { base bytestring cereal hspec leveldb-haskell lifted-base monad-control mtl process resourcet transformers transformers-base ]; - jailbreak = true; homepage = "https://github.com/jeremyjh/higher-leveldb"; description = "A rich monadic API for working with leveldb databases"; license = stdenv.lib.licenses.bsd3; @@ -105560,6 +105965,7 @@ self: { array base containers cpphs filemanip filepath Glob haskell-src-exts optparse-applicative split ]; + jailbreak = true; homepage = "http://github.com/luqui/hothasktags"; description = "Generates ctags for Haskell, incorporating import lists and qualified imports"; license = stdenv.lib.licenses.bsd3; @@ -110902,7 +111308,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {com_err = null; zephyr = null;}; - "htaglib" = callPackage + "htaglib_1_0_1" = callPackage ({ mkDerivation, base, bytestring, directory, filepath, HUnit , taglib, test-framework, test-framework-hunit, text }: @@ -110918,6 +111324,25 @@ self: { homepage = "https://github.com/mrkkrp/htaglib"; description = "Bindings to TagLib, audio meta-data library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) taglib;}; + + "htaglib" = callPackage + ({ mkDerivation, base, bytestring, directory, filepath, HUnit + , taglib, test-framework, test-framework-hunit, text + }: + mkDerivation { + pname = "htaglib"; + version = "1.0.2"; + sha256 = "dbf110578fb4f30426a538756efa6b0bb9af5650c9d3752732973c9725385478"; + libraryHaskellDepends = [ base bytestring text ]; + librarySystemDepends = [ taglib ]; + testHaskellDepends = [ + base directory filepath HUnit test-framework test-framework-hunit + ]; + homepage = "https://github.com/mrkkrp/htaglib"; + description = "Bindings to TagLib, audio meta-data library"; + license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) taglib;}; "htags" = callPackage @@ -113107,8 +113532,8 @@ self: { }: mkDerivation { pname = "http-test"; - version = "0.2.4"; - sha256 = "03e5ea74bc05ce46b2cfabae00c307db86fdc31dc6636d33cb32655f67b4c71b"; + version = "0.2.5"; + sha256 = "06254d86b26a7df3ac6e5bee7e8c4cf74bdde12e825567a10ca81c8ae6fdb3a3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -117503,13 +117928,11 @@ self: { }: mkDerivation { pname = "indentation"; - version = "0.2.1.1"; - sha256 = "72134a7c01812ccadacf1c5db86e40892136e7bf583b85c083b088cec19e65f1"; - revision = "1"; - editedCabalFile = "642875a7d7d3b8bd626f1671ff1dad1a8584bfa0fab236e5e404d8b26345317e"; + version = "0.2.1.2"; + sha256 = "dd7161daaf85a26af3ac18113760ef2af69c6d2ccef6e3febab103cd299205df"; libraryHaskellDepends = [ base mtl parsec parsers trifecta ]; testHaskellDepends = [ base parsec tasty tasty-hunit trifecta ]; - homepage = "https://bitbucket.org/adamsmd/indentation"; + homepage = "https://bitbucket.org/mdmkolbe/indentation"; description = "Indentation sensitive parsing combinators for Parsec and Trifecta"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -118606,8 +119029,8 @@ self: { }: mkDerivation { pname = "intricacy"; - version = "0.6"; - sha256 = "8cd3cdd44e80f65f79c88a3a18580ce4bf02dc5086652f8af46ec90d18cadb42"; + version = "0.6.1"; + sha256 = "da202b4ce7d57dd675695fedfbf5bbc2a203d160e72c5fae8994a7bb7eca254c"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -119472,6 +119895,28 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "irc-dcc" = callPackage + ({ mkDerivation, attoparsec, base, binary, bytestring, errors + , hspec-attoparsec, io-streams, iproute, irc-ctcp, network, path + , tasty, tasty-hspec, transformers, utf8-string + }: + mkDerivation { + pname = "irc-dcc"; + version = "1.0.0"; + sha256 = "5cb2dc63d786b76a6d6145a2b6e5599855284c1c3d9609a59f21842905d9cd3f"; + libraryHaskellDepends = [ + attoparsec base binary bytestring errors io-streams iproute + irc-ctcp network path transformers utf8-string + ]; + testHaskellDepends = [ + attoparsec base binary bytestring hspec-attoparsec iproute irc-ctcp + network path tasty tasty-hspec utf8-string + ]; + homepage = "https://github.com/JanGe/irc-dcc"; + description = "A DCC message parsing and helper library for IRC clients"; + license = stdenv.lib.licenses.mit; + }) {}; + "irc-fun-bot" = callPackage ({ mkDerivation, aeson, auto-update, base, case-insensitive, clock , containers, data-default-class, fast-logger, formatting @@ -120422,8 +120867,8 @@ self: { }: mkDerivation { pname = "jammittools"; - version = "0.5.0.2"; - sha256 = "2d633a0410423ad12840449bb809f3bc3ffbc9aae7db6b365379b02ebeb3829c"; + version = "0.5.0.3"; + sha256 = "90917b080f69f47982c0c8851e7a7781e1627b42f291f11f6543214da2a7a1b4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -120432,7 +120877,6 @@ self: { vector xml ]; executableHaskellDepends = [ base boxes directory filepath ]; - jailbreak = true; homepage = "https://github.com/mtolly/jammittools"; description = "Export sheet music and audio from Windows/Mac app Jammit"; license = "GPL"; @@ -121412,7 +121856,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "json-autotype" = callPackage + "json-autotype_1_0_10" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, directory , filepath, GenericPretty, hashable, hflags, hint, lens, mtl , pretty, process, QuickCheck, scientific, smallcheck, text @@ -121442,9 +121886,10 @@ 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_1_0_11" = callPackage + "json-autotype" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, directory , filepath, GenericPretty, hashable, hflags, hint, lens, mmap, mtl , pretty, process, QuickCheck, scientific, smallcheck, text @@ -121474,7 +121919,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 @@ -122299,8 +122743,8 @@ self: { }: mkDerivation { pname = "jukebox"; - version = "0.2.3"; - sha256 = "e57562e66b77b22f9297f5bc9e8c0e0fb00d6073f3ab0a04839284db5c6f67f9"; + version = "0.2.7"; + sha256 = "7b52f0890ed569f5962fbbb3fa9a340496711b4ca13fb4ab6bb843aea64828ab"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -125379,7 +125823,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "language-c-quote" = callPackage + "language-c-quote_0_11_4" = callPackage ({ mkDerivation, alex, array, base, bytestring, containers , exception-mtl, exception-transformers, filepath, happy , haskell-src-meta, HUnit, mainland-pretty, mtl, srcloc, syb @@ -125403,6 +125847,32 @@ self: { homepage = "http://www.cs.drexel.edu/~mainland/"; description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "language-c-quote" = callPackage + ({ mkDerivation, alex, array, base, bytestring, containers + , exception-mtl, exception-transformers, filepath, happy + , haskell-src-meta, HUnit, mainland-pretty, mtl, srcloc, syb + , symbol, template-haskell, test-framework, test-framework-hunit + }: + mkDerivation { + pname = "language-c-quote"; + version = "0.11.4.1"; + sha256 = "37c2183ddbf95ee21d298e241266a09f73ac74065e51a0cf2fb28b45aefa9591"; + libraryHaskellDepends = [ + array base bytestring containers exception-mtl + exception-transformers filepath haskell-src-meta mainland-pretty + mtl srcloc syb symbol template-haskell + ]; + libraryToolDepends = [ alex happy ]; + testHaskellDepends = [ + base bytestring HUnit mainland-pretty srcloc symbol test-framework + test-framework-hunit + ]; + homepage = "http://www.cs.drexel.edu/~mainland/"; + description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; + license = stdenv.lib.licenses.bsd3; }) {}; "language-cil" = callPackage @@ -127086,6 +127556,7 @@ self: { leksah-server ltk monad-loops QuickCheck stm text transformers webkitgtk3 ]; + jailbreak = true; homepage = "http://www.leksah.org"; description = "Haskell IDE written in Haskell"; license = "GPL"; @@ -129302,6 +129773,8 @@ self: { pname = "linear"; version = "1.20.3"; sha256 = "50f63a5b6019acb53ae06886749dea80443b18876c2990ca5376578c94537ac4"; + revision = "1"; + editedCabalFile = "3c3139b3d84be69cc9ec8b122cbce075d498076a4e5b4e4f8bfbda34523b91de"; libraryHaskellDepends = [ adjunctions base binary bytes cereal containers deepseq distributive ghc-prim hashable lens reflection semigroupoids @@ -129331,6 +129804,8 @@ self: { pname = "linear"; version = "1.20.4"; sha256 = "7bd91c482611f9b7226ec346a9630d2cf1975672b3a67e1b52ae24cdd039ddd3"; + revision = "1"; + editedCabalFile = "0f9612cde0983a35d53d29dee617abdd1d350f602ac1da7f3fcfbbc3012572b1"; libraryHaskellDepends = [ adjunctions base base-orphans binary bytes cereal containers deepseq distributive ghc-prim hashable lens reflection @@ -132312,6 +132787,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "lucid_2_9_5" = callPackage + ({ mkDerivation, base, bifunctors, blaze-builder, bytestring + , containers, hashable, hspec, HUnit, mmorph, mtl, parsec, text + , transformers, unordered-containers + }: + mkDerivation { + pname = "lucid"; + version = "2.9.5"; + sha256 = "ae73ed5490f11f23252e98b3b8c4aa4b86acc0019370e1a54e5957ebf948cbb8"; + libraryHaskellDepends = [ + base blaze-builder bytestring containers hashable mmorph mtl text + transformers unordered-containers + ]; + testHaskellDepends = [ + base bifunctors hspec HUnit mtl parsec text + ]; + 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 ({ mkDerivation, base, hspec, lucid, QuickCheck , quickcheck-instances, text @@ -132900,8 +133397,8 @@ self: { }: mkDerivation { pname = "machinecell"; - version = "3.0.1"; - sha256 = "a018aa83f998b5c94daf1886269fe442566039c26060e4705095b40fa3639236"; + version = "3.1.0"; + sha256 = "0dde8e806b5418ac6c5610a3ed65dcd54ddc5f7232c516be31a5b375f6e67feb"; libraryHaskellDepends = [ arrows base free mtl profunctors semigroups ]; @@ -136884,8 +137381,8 @@ self: { }: mkDerivation { pname = "milena"; - version = "0.5.0.0"; - sha256 = "fbae487cc6e61fa6cde0ba79b4d0df28c75e1af9c0d75970b7685a7beb18b63a"; + version = "0.5.0.1"; + sha256 = "2fe50795fe7a1826d1a24e66f5f31823cc83621de5137dd98196e2ce7420db10"; libraryHaskellDepends = [ base bytestring cereal containers digest lens lifted-base mtl murmur-hash network random resource-pool semigroups transformers @@ -136894,7 +137391,6 @@ self: { base bytestring lens mtl network QuickCheck semigroups tasty tasty-hspec tasty-quickcheck ]; - jailbreak = true; description = "A Kafka client for Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -138185,7 +138681,6 @@ self: { libraryHaskellDepends = [ base transformers transformers-base transformers-compat ]; - jailbreak = true; homepage = "https://github.com/basvandijk/monad-control"; description = "Lift control operations, like exception catching, through monad transformers"; license = stdenv.lib.licenses.bsd3; @@ -138270,7 +138765,6 @@ self: { libraryHaskellDepends = [ base monad-parallel transformers transformers-compat ]; - jailbreak = true; homepage = "http://trac.haskell.org/SCC/wiki/monad-coroutine"; description = "Coroutine monad transformer for suspending and resuming monadic computations"; license = "GPL"; @@ -138934,7 +139428,6 @@ self: { libraryHaskellDepends = [ base parallel transformers transformers-compat ]; - jailbreak = true; homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; description = "Parallel execution of monadic computations"; license = stdenv.lib.licenses.bsd3; @@ -138951,7 +139444,6 @@ self: { libraryHaskellDepends = [ base parallel transformers transformers-compat ]; - jailbreak = true; homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; description = "Parallel execution of monadic computations"; license = stdenv.lib.licenses.bsd3; @@ -142137,13 +142629,12 @@ self: { }: mkDerivation { pname = "mvc"; - version = "1.1.1"; - sha256 = "b97122c1df6b5eb569e75cbc2a4c84a06e8ab942f68110a2f56b9cdac1bd34f5"; + version = "1.1.2"; + sha256 = "26b6c80efce2c38db22c46c27ba07f2d7bad0d3cddf6093b9d51d649643f8fcf"; libraryHaskellDepends = [ async base contravariant foldl managed mmorph pipes pipes-concurrency transformers ]; - jailbreak = true; description = "Model-view-controller"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -142209,8 +142700,8 @@ self: { ({ mkDerivation, base, mwc-random, primitive, transformers }: mkDerivation { pname = "mwc-probability"; - version = "1.1.3"; - sha256 = "a7190d8f2b12d5aff0344a1bdc5a85386cb12960fe31e346b14806e615773363"; + version = "1.2.1"; + sha256 = "c06d839399b1bd64db11288f017badb13bea2e87afb22bd3ff1888a6171574fd"; libraryHaskellDepends = [ base mwc-random primitive transformers ]; homepage = "http://github.com/jtobin/mwc-probability"; description = "Sampling function-based probability distributions"; @@ -143321,7 +143812,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "neat-interpolation" = callPackage + "neat-interpolation_0_3_1_1" = callPackage ({ mkDerivation, base, base-prelude, HTF, parsec, template-haskell , text }: @@ -143336,9 +143827,10 @@ self: { homepage = "https://github.com/nikita-volkov/neat-interpolation"; description = "A quasiquoter for neat and simple multiline text interpolation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "neat-interpolation_0_3_2" = callPackage + "neat-interpolation" = callPackage ({ mkDerivation, base, base-prelude, HTF, parsec, template-haskell , text }: @@ -143353,7 +143845,6 @@ self: { homepage = "https://github.com/nikita-volkov/neat-interpolation"; description = "A quasiquoter for neat and simple multiline text interpolation"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "needle" = callPackage @@ -146164,8 +146655,8 @@ self: { ({ mkDerivation, base, containers, numeric-prelude, primes }: mkDerivation { pname = "np-extras"; - version = "0.3.0.1"; - sha256 = "15ac78e4ba39331eee1b4db52dd822e2adabb3770c0e24d1ae58ed8b9141b2a6"; + version = "0.3.1"; + sha256 = "3e0a363aa70842155dfe0046f0e96c3feac56f7e543f6307a9d764b4af1991d1"; libraryHaskellDepends = [ base containers numeric-prelude primes ]; description = "NumericPrelude extras"; license = stdenv.lib.licenses.bsd3; @@ -148686,7 +149177,6 @@ self: { libraryHaskellDepends = [ ansi-wl-pprint base process transformers transformers-compat ]; - jailbreak = true; homepage = "https://github.com/pcapriotti/optparse-applicative"; description = "Utilities and combinators for parsing command line options"; license = stdenv.lib.licenses.bsd3; @@ -148704,7 +149194,6 @@ self: { libraryHaskellDepends = [ ansi-wl-pprint base process transformers transformers-compat ]; - jailbreak = true; homepage = "https://github.com/pcapriotti/optparse-applicative"; description = "Utilities and combinators for parsing command line options"; license = stdenv.lib.licenses.bsd3; @@ -149089,6 +149578,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "osm-conduit" = callPackage + ({ mkDerivation, base, conduit, exceptions, hspec, resourcet, text + , transformers, xml-conduit, xml-types + }: + mkDerivation { + pname = "osm-conduit"; + version = "0.1.0.0"; + sha256 = "df65ea545cfea5c2f274248670769a970709f2b7799b7384df4ce7211d7451f2"; + libraryHaskellDepends = [ + base conduit exceptions resourcet text transformers xml-conduit + xml-types + ]; + testHaskellDepends = [ + base conduit exceptions hspec resourcet text xml-conduit xml-types + ]; + homepage = "http://github.com/przembot/osm-conduit#readme"; + description = "Parse and operate on OSM data in efficient way"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "osm-download" = callPackage ({ mkDerivation, base, bytestring, conduit, containers , data-default, directory, gps, http-conduit, http-types @@ -150406,26 +150915,29 @@ self: { "pandoc-crossref" = callPackage ({ mkDerivation, base, bytestring, containers, data-accessor - , data-accessor-transformers, data-default, hspec, mtl, pandoc - , pandoc-types, process, yaml + , data-accessor-template, data-accessor-transformers, data-default + , hspec, mtl, pandoc, pandoc-types, process, roman-numerals, syb + , template-haskell, yaml }: mkDerivation { pname = "pandoc-crossref"; - version = "0.1.6.5"; - sha256 = "6b92a2730ed28c0242b81e47c0e21902321f98eb2b580d2114d906ca89a451e2"; + version = "0.2.0.0"; + sha256 = "e7039ced02eaaec80f0814d1d242dd06002d76dc3bed784fd18e50ddec77e3bd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base bytestring containers data-accessor data-accessor-transformers - data-default mtl pandoc pandoc-types yaml + base bytestring containers data-accessor data-accessor-template + data-accessor-transformers data-default mtl pandoc pandoc-types + roman-numerals syb template-haskell yaml ]; executableHaskellDepends = [ base bytestring containers data-default mtl pandoc pandoc-types yaml ]; testHaskellDepends = [ - base bytestring containers data-accessor data-accessor-transformers - data-default hspec mtl pandoc pandoc-types process yaml + base bytestring containers data-accessor data-accessor-template + data-accessor-transformers data-default hspec mtl pandoc + pandoc-types process roman-numerals syb template-haskell yaml ]; description = "Pandoc filter for cross-references"; license = stdenv.lib.licenses.gpl2; @@ -151766,7 +152278,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "path" = callPackage + "path_0_5_3" = callPackage ({ mkDerivation, base, exceptions, filepath, hspec, HUnit, mtl , template-haskell }: @@ -151780,6 +152292,24 @@ self: { testHaskellDepends = [ base hspec HUnit mtl ]; description = "Path"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "path" = callPackage + ({ mkDerivation, base, deepseq, exceptions, filepath, hspec, HUnit + , mtl, template-haskell + }: + mkDerivation { + pname = "path"; + version = "0.5.7"; + sha256 = "5b631abc6cedcb634ec6886d43291e01c694d8088c5faee13a3b64010beb05ab"; + libraryHaskellDepends = [ + base deepseq exceptions filepath template-haskell + ]; + testHaskellDepends = [ base hspec HUnit mtl ]; + doHaddock = false; + description = "Support for well-typed paths"; + license = stdenv.lib.licenses.bsd3; }) {}; "path-extra" = callPackage @@ -151826,14 +152356,14 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "path-io_1_0_1" = callPackage + "path-io_1_1_0" = callPackage ({ mkDerivation, base, directory, exceptions, filepath, hspec, path , temporary, time, transformers }: mkDerivation { pname = "path-io"; - version = "1.0.1"; - sha256 = "92e4763c88c21d46d009baedb14eb724699b583bc6675b4513bb35186f421336"; + version = "1.1.0"; + sha256 = "b94af45683e0c39d259fac8cad906957b97991a3cdac45e067fd1dc9baebe59f"; libraryHaskellDepends = [ base directory exceptions filepath path temporary time transformers ]; @@ -155483,8 +156013,8 @@ self: { }: mkDerivation { pname = "pinchot"; - version = "0.12.0.0"; - sha256 = "5fbbb77f122dbb51fac0004b607b486e317df08b17dfcaccb8dd7d300f4980de"; + version = "0.14.0.0"; + sha256 = "5b7ff31987e51ff69fe75b950ac3b4d27c4d7b530b15ea3f8057b314834aad10"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -155672,7 +156202,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pipes-aeson" = callPackage + "pipes-aeson_0_4_1_5" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, pipes , pipes-attoparsec, pipes-bytestring, pipes-parse, transformers }: @@ -155687,6 +156217,24 @@ self: { homepage = "https://github.com/k0001/pipes-aeson"; description = "Encode and decode JSON streams using Aeson and Pipes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes-aeson" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, pipes + , pipes-attoparsec, pipes-bytestring, pipes-parse, transformers + }: + mkDerivation { + pname = "pipes-aeson"; + version = "0.4.1.6"; + sha256 = "fb91280e7e12c1ea1c78a36b264eafea707d08e7cd52c792a06b194ff78b03dc"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring pipes pipes-attoparsec + pipes-bytestring pipes-parse transformers + ]; + homepage = "https://github.com/k0001/pipes-aeson"; + description = "Encode and decode JSON streams using Aeson and Pipes"; + license = stdenv.lib.licenses.bsd3; }) {}; "pipes-async" = callPackage @@ -161826,6 +162374,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "psql-helpers" = callPackage + ({ mkDerivation, base, postgresql-simple }: + mkDerivation { + pname = "psql-helpers"; + version = "0.1.0.0"; + sha256 = "f13ca642072477d3ab0246c514e3fc78e0c5cb419345240fbad994ed2a3219f4"; + libraryHaskellDepends = [ base postgresql-simple ]; + homepage = "http://github.com/agrafix/psql-helpers#readme"; + description = "A small collection of helper functions to generate postgresql queries"; + license = stdenv.lib.licenses.mit; + }) {}; + "psqueues_0_2_0_2" = callPackage ({ mkDerivation, array, base, deepseq, ghc-prim, hashable, HUnit , QuickCheck, tagged, test-framework, test-framework-hunit @@ -166452,6 +167012,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "reflex-orphans" = callPackage + ({ mkDerivation, base, deepseq, dependent-map, mtl, ref-tf, reflex + , tasty, tasty-hunit, these + }: + mkDerivation { + pname = "reflex-orphans"; + version = "0.1.0.1"; + sha256 = "bcebc4227af7a3a3e5b3293d135c1f7085bee563bbc7542b73ca8f8d88c7fdea"; + 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; + }) {}; + "reflex-transformers" = callPackage ({ mkDerivation, base, containers, lens, mtl, reflex, semigroups , stateWriter, transformers @@ -168137,8 +168713,8 @@ self: { ({ mkDerivation, base, containers, haskeline, mtl, process }: mkDerivation { pname = "repline"; - version = "0.1.4.0"; - sha256 = "32ae73f4343e5b4a0530259a5b23f35ff784d00e62a6adb50dc656ff2e1d119b"; + version = "0.1.5.0"; + sha256 = "9e807cf92d5f8a8e68787f6d93597bac41ace50997305105451bf852ce7ce3a4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers haskeline mtl ]; @@ -168619,7 +169195,6 @@ self: { transformers transformers-base transformers-compat ]; testHaskellDepends = [ base hspec lifted-base transformers ]; - jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; @@ -168640,7 +169215,6 @@ self: { transformers transformers-base transformers-compat ]; testHaskellDepends = [ base hspec lifted-base transformers ]; - jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; @@ -168661,7 +169235,6 @@ self: { transformers transformers-base transformers-compat ]; testHaskellDepends = [ base hspec lifted-base transformers ]; - jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; @@ -168682,7 +169255,6 @@ self: { transformers transformers-base transformers-compat ]; testHaskellDepends = [ base hspec lifted-base transformers ]; - jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; @@ -168709,7 +169281,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "resourcet" = callPackage + "resourcet_1_1_7_2" = callPackage ({ mkDerivation, base, containers, exceptions, hspec, lifted-base , mmorph, monad-control, mtl, transformers, transformers-base , transformers-compat @@ -168726,6 +169298,26 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "resourcet" = callPackage + ({ mkDerivation, base, containers, exceptions, hspec, lifted-base + , mmorph, monad-control, mtl, transformers, transformers-base + , transformers-compat + }: + mkDerivation { + pname = "resourcet"; + version = "1.1.7.3"; + sha256 = "fccc5a897abb38156e61c801e8e0eba29f31a8ec1ad81598dec134ed1c20e1bf"; + libraryHaskellDepends = [ + base containers exceptions lifted-base mmorph monad-control mtl + transformers transformers-base transformers-compat + ]; + testHaskellDepends = [ base hspec lifted-base transformers ]; + homepage = "http://github.com/snoyberg/conduit"; + description = "Deterministic allocation and freeing of scarce resources"; + license = stdenv.lib.licenses.bsd3; }) {}; "respond" = callPackage @@ -168888,7 +169480,6 @@ self: { monad-control mtl resourcet rest-types tostring transformers transformers-base transformers-compat uri-encode utf8-string ]; - jailbreak = true; description = "Utility library for use in generated API client libraries"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -168911,7 +169502,6 @@ self: { monad-control mtl resourcet rest-types tostring transformers transformers-base transformers-compat uri-encode utf8-string ]; - jailbreak = true; description = "Utility library for use in generated API client libraries"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -171521,6 +172111,33 @@ self: { license = stdenv.lib.licenses.publicDomain; }) {}; + "rss-conduit" = callPackage + ({ mkDerivation, base, bytestring, conduit, conduit-extra + , conduit-parse, containers, data-default, exceptions, foldl, hlint + , lens-simple, mono-traversable, parsers, QuickCheck + , quickcheck-instances, resourcet, safe, tasty, tasty-hunit + , tasty-quickcheck, text, time, timerep, uri-bytestring + , xml-conduit, xml-conduit-parse, xml-types + }: + mkDerivation { + pname = "rss-conduit"; + version = "0.2.0.0"; + sha256 = "feff18d16f9c23e3180a7a4ae9efebcce52cdc8b8ad78791948dba33f5af53a6"; + libraryHaskellDepends = [ + base conduit conduit-parse containers exceptions foldl lens-simple + mono-traversable parsers safe text time timerep uri-bytestring + xml-conduit xml-conduit-parse xml-types + ]; + testHaskellDepends = [ + base bytestring conduit conduit-extra conduit-parse data-default + exceptions hlint lens-simple mono-traversable parsers QuickCheck + quickcheck-instances resourcet tasty tasty-hunit tasty-quickcheck + text time uri-bytestring xml-conduit xml-conduit-parse xml-types + ]; + description = "Streaming parser/renderer for the RSS 2.0 standard."; + license = "unknown"; + }) {}; + "rss2irc" = callPackage ({ mkDerivation, base, bytestring, cabal-file-th, cmdargs , containers, deepseq, feed, http-client, http-conduit, http-types @@ -173735,7 +174352,6 @@ self: { async base data-default-class directory hspec hspec-wai http-types lifted-base network text wai ]; - jailbreak = true; homepage = "https://github.com/scotty-web/scotty"; description = "Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp"; license = stdenv.lib.licenses.bsd3; @@ -174517,8 +175133,8 @@ self: { }: mkDerivation { pname = "secp256k1"; - version = "0.4.4"; - sha256 = "33532973312cafa00b12f5fe21ed65bd89810bd8e19be95b29c5d5aa0b9946d2"; + version = "0.4.5"; + sha256 = "0e01ac093dc418a2d9b4f3a6dafa2c527220b9e79861921119898391b9a43b2b"; libraryHaskellDepends = [ base base16-bytestring binary bytestring entropy largeword mtl QuickCheck string-conversions @@ -174528,7 +175144,7 @@ self: { mtl QuickCheck string-conversions test-framework test-framework-hunit test-framework-quickcheck2 ]; - homepage = "http://github.com/haskoin/secp256k1#readme"; + homepage = "http://github.com/haskoin/secp256k1-haskell#readme"; description = "Bindings for secp256k1 library from Bitcoin Core"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -174907,7 +175523,6 @@ self: { distributive semigroups tagged transformers transformers-compat ]; testHaskellDepends = [ base directory doctest filepath ]; - jailbreak = true; doCheck = false; homepage = "http://github.com/ekmett/semigroupoids"; description = "Semigroupoids: Category sans id"; @@ -176248,6 +176863,34 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-haxl-client" = callPackage + ({ mkDerivation, aeson, async, attoparsec, base, bytestring + , deepseq, either, exceptions, hashable, haxl, 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-haxl-client"; + version = "0.1.0.0"; + sha256 = "c9433881ea1aa4ff0f1eb99356cb223b7d7595859f3a1abac936488f1b18fc59"; + revision = "1"; + editedCabalFile = "9c5cd1e5bd9ba4fdb1b07de37a7aad75bd8f32d64a7f59f5cee3ec86975dbee9"; + libraryHaskellDepends = [ + aeson async attoparsec base bytestring either exceptions hashable + haxl http-client http-client-tls http-media http-types network-uri + safe servant string-conversions text transformers + ]; + testHaskellDepends = [ + aeson base bytestring deepseq either haxl hspec http-client + http-client-tls http-media http-types HUnit network QuickCheck + servant servant-server text wai warp + ]; + homepage = "http://github.com/ElvishJerricco/servant-haxl-client/"; + description = "automatical derivation of querying functions for servant webservices"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "servant-jquery_0_2_2_1" = callPackage ({ mkDerivation, aeson, base, filepath, hspec, language-ecmascript , lens, servant, servant-server, stm, transformers, warp @@ -184095,6 +184738,8 @@ self: { pname = "species"; version = "0.3.4.2"; sha256 = "9e1683448aa2152561c65b02fb832e366ce9f47542e5e963abd82d5e08eeb11f"; + revision = "1"; + editedCabalFile = "397aa0a55ea7021bec1f866b9dde980b9ae67319ae2838339f865babf856c431"; libraryHaskellDepends = [ base containers multiset-comb np-extras numeric-prelude template-haskell @@ -186944,7 +187589,6 @@ self: { libraryHaskellDepends = [ base mtl transformers transformers-compat ]; - jailbreak = true; description = "Simple State-like monad transformer with saveable and restorable state"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -188572,7 +189216,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "streaming-commons" = callPackage + "streaming-commons_0_1_15_1" = callPackage ({ mkDerivation, array, async, base, blaze-builder, bytestring , deepseq, directory, hspec, network, process, QuickCheck, random , stm, text, transformers, unix, zlib @@ -188592,6 +189236,29 @@ self: { homepage = "https://github.com/fpco/streaming-commons"; description = "Common lower-level functions needed by various streaming data libraries"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "streaming-commons" = callPackage + ({ mkDerivation, array, async, base, blaze-builder, bytestring + , deepseq, directory, hspec, network, process, QuickCheck, random + , stm, text, transformers, unix, zlib + }: + mkDerivation { + pname = "streaming-commons"; + version = "0.1.15.2"; + sha256 = "230ad154608ce7c081d1367c77216c85ac47a05623903d45ce693dcea67d499d"; + libraryHaskellDepends = [ + array async base blaze-builder bytestring directory network process + random stm text transformers unix zlib + ]; + testHaskellDepends = [ + array async base blaze-builder bytestring deepseq hspec network + QuickCheck text unix zlib + ]; + homepage = "https://github.com/fpco/streaming-commons"; + description = "Common lower-level functions needed by various streaming data libraries"; + license = stdenv.lib.licenses.mit; }) {}; "streaming-histogram" = callPackage @@ -190767,6 +191434,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "symengine-hs" = callPackage + ({ mkDerivation, base, gmp, gmpxx, symengine }: + mkDerivation { + pname = "symengine-hs"; + version = "0.1.1.0"; + sha256 = "f4aa385e16a13007aaa369dfa771c8e3880ed00139a02fbc1d20d346a0d20156"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base ]; + executableHaskellDepends = [ base ]; + executableSystemDepends = [ gmp gmpxx symengine ]; + testHaskellDepends = [ base ]; + testSystemDepends = [ gmp gmpxx symengine ]; + homepage = "http://github.com/bollu/symengine.hs#readme"; + description = "SymEngine symbolic mathematics engine for Haskell"; + license = stdenv.lib.licenses.mit; + }) {inherit (pkgs) gmp; inherit (pkgs) gmpxx; symengine = null;}; + "sync" = callPackage ({ mkDerivation, base, stm }: mkDerivation { @@ -192674,6 +193359,43 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "task-distribution" = callPackage + ({ mkDerivation, async, base, binary, bytestring, containers + , directory, distributed-process + , distributed-process-simplelocalnet, distributed-static, filepath + , hadoop-rpc, hashable, hint, hslogger, hspec, json, packman + , process, rank1dynamic, split, strings, temporary, text, time + , transformers, vector, zlib + }: + mkDerivation { + pname = "task-distribution"; + version = "0.1.0.0"; + sha256 = "70c40ecf27e8a170029b0fedf8ca0b2ffde6c6bd96d79a2310e3a1678a4e4fa4"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + async base binary bytestring 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 + distributed-process filepath hadoop-rpc hslogger json process split + strings temporary text time vector zlib + ]; + testHaskellDepends = [ + base binary bytestring directory distributed-process + distributed-process-simplelocalnet distributed-static filepath + hadoop-rpc hint hslogger hspec packman process rank1dynamic split + temporary text transformers vector + ]; + homepage = "http://github.com/michaxm/task-distribution#readme"; + description = "Initial project template from stack"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "taskpool" = callPackage ({ mkDerivation, async, base, containers, fgl, hspec, stm , transformers @@ -193573,8 +194295,8 @@ self: { }: mkDerivation { pname = "telegram-api"; - version = "0.2.1.0"; - sha256 = "02e564a45e095053f36e77772fc8dd9847b65f95087d47c6d50b96418f373a4f"; + version = "0.2.1.1"; + sha256 = "fd2ca89b40cdf7128c8739e5d3ff32278c5ab30aa9de21e8ab5a4ff0a2867705"; libraryHaskellDepends = [ aeson base either servant servant-client text ]; @@ -194520,7 +195242,6 @@ self: { hspec-expectations-lifted mtl process QuickCheck regex-posix template-haskell text transformers transformers-compat unix ]; - jailbreak = true; homepage = "http://gree.github.io/haskell-test-sandbox/"; description = "Sandbox for system tests"; license = stdenv.lib.licenses.bsd3; @@ -195574,7 +196295,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "text-show_2_1_2" = callPackage + "text-show" = callPackage ({ mkDerivation, array, base, base-compat, base-orphans, bifunctors , bytestring, bytestring-builder, containers, generic-deriving , ghc-prim, hspec, integer-gmp, nats, QuickCheck @@ -195598,14 +196319,12 @@ self: { quickcheck-instances tagged text transformers transformers-compat void ]; - jailbreak = true; homepage = "https://github.com/RyanGlScott/text-show"; description = "Efficient conversion of values into Text"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "text-show" = callPackage + "text-show_3_0_1" = callPackage ({ mkDerivation, array, base, base-compat, base-orphans, bifunctors , bytestring, bytestring-builder, containers, generic-deriving , ghc-prim, hspec, integer-gmp, nats, QuickCheck @@ -195628,9 +196347,11 @@ self: { integer-gmp nats QuickCheck quickcheck-instances semigroups tagged template-haskell text th-lift transformers transformers-compat void ]; + jailbreak = true; homepage = "https://github.com/RyanGlScott/text-show"; description = "Efficient conversion of values into Text"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-show-instances" = callPackage @@ -195660,6 +196381,7 @@ self: { transformers transformers-compat unix unordered-containers vector xhtml ]; + jailbreak = true; homepage = "https://github.com/RyanGlScott/text-show-instances"; description = "Additional instances for text-show"; license = stdenv.lib.licenses.bsd3; @@ -198959,7 +199681,7 @@ self: { license = "LGPL"; }) {}; - "tracy" = callPackage + "tracy_0_1_2_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "tracy"; @@ -198968,6 +199690,18 @@ self: { libraryHaskellDepends = [ base ]; description = "Convenience wrappers for non-intrusive debug tracing"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tracy" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "tracy"; + version = "0.1.3.0"; + sha256 = "9c298b7ff70dd4f5aaf839e7bccbc9810f0235833bb5b723babe0838eac5d301"; + libraryHaskellDepends = [ base ]; + description = "Convenience wrappers for non-intrusive debug tracing"; + license = stdenv.lib.licenses.mit; }) {}; "trajectory" = callPackage @@ -199147,7 +199881,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "transformers-compat_0_4_0_4" = callPackage + "transformers-compat" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { pname = "transformers-compat"; @@ -199158,10 +199892,9 @@ self: { homepage = "http://github.com/ekmett/transformers-compat/"; description = "A small compatibility shim exposing the new types from transformers 0.3 and 0.4 to older Haskell platforms."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "transformers-compat" = callPackage + "transformers-compat_0_5_1_4" = callPackage ({ mkDerivation, base, ghc-prim, transformers }: mkDerivation { pname = "transformers-compat"; @@ -199171,6 +199904,7 @@ self: { homepage = "http://github.com/ekmett/transformers-compat/"; description = "A small compatibility shim exposing the new types from transformers 0.3 and 0.4 to older Haskell platforms."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transformers-compose" = callPackage @@ -200387,37 +201121,21 @@ self: { }) {}; "turtle-options" = callPackage - ({ mkDerivation, base, optional-args, parsec, text, turtle }: - mkDerivation { - pname = "turtle-options"; - version = "0.1.0.2"; - sha256 = "6c1b02d67663d8849aa41c0e54ef824e013abbd6e89c71fb14c34aeb6434c8fd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base optional-args parsec text turtle ]; - executableHaskellDepends = [ base turtle ]; - testHaskellDepends = [ base ]; - homepage = "http://github.com/githubuser/turtle-options#readme"; - description = "Collection of command line options and parsers for these options"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "turtle-options_0_1_0_3" = callPackage ({ mkDerivation, base, HUnit, optional-args, parsec, text, turtle }: mkDerivation { pname = "turtle-options"; - version = "0.1.0.3"; - sha256 = "d77e55a1a0b3ae2a5117e20780e5b98aab183ff65e9f532a03040d6b050a14d8"; + version = "0.1.0.4"; + sha256 = "c2c76b0bc0bc93397827c12b6f049e682afe702f9f662a1b0818e8e221d51ace"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base optional-args parsec text turtle ]; executableHaskellDepends = [ base turtle ]; testHaskellDepends = [ base HUnit parsec ]; + doCheck = false; homepage = "https://github.com/elaye/turtle-options#readme"; description = "Collection of command line options and parsers for these options"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tweak" = callPackage @@ -201532,8 +202250,8 @@ self: { }: mkDerivation { pname = "type-unary"; - version = "0.2.21"; - sha256 = "93ed75c592bfd4916cd89654ed15ea6d7df1fd83bf9e91f43c6e343a403ca627"; + version = "0.3.0"; + sha256 = "14083b3bdcefd7a25dd459178818602e18a1c3fa22a1017c8f58f7ee0e5f04e9"; libraryHaskellDepends = [ applicative-numbers base constraints newtype ty vector-space ]; @@ -209416,7 +210134,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-middleware-throttle" = callPackage + "wai-middleware-throttle_0_2_0_2" = callPackage ({ mkDerivation, base, bytestring, containers, hashable, hlint , hspec, http-types, HUnit, network, stm, token-bucket , transformers, wai, wai-extra @@ -209436,6 +210154,28 @@ self: { doCheck = false; description = "WAI Middleware for Request Throttling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-middleware-throttle" = callPackage + ({ mkDerivation, base, bytestring, containers, hashable, hspec + , http-types, HUnit, network, stm, token-bucket, transformers, wai + , wai-extra + }: + mkDerivation { + pname = "wai-middleware-throttle"; + version = "0.2.1.0"; + sha256 = "862ac07bb8c8e21b4f56a6398444e2e6bdf9512a198ae394fa9d023f7cfcf87c"; + libraryHaskellDepends = [ + base containers hashable http-types network stm token-bucket + transformers wai + ]; + testHaskellDepends = [ + base bytestring hspec http-types HUnit stm transformers wai + wai-extra + ]; + description = "WAI Middleware for Request Throttling"; + license = stdenv.lib.licenses.bsd3; }) {}; "wai-middleware-verbs" = callPackage @@ -211920,8 +212660,10 @@ self: { }: mkDerivation { pname = "webapi"; - version = "0.1.0.0"; - sha256 = "c0d16e251abc585bcf5f3f65a7e8c24039efc08c335515af9c491bc48c2e2465"; + version = "0.2.0.0"; + sha256 = "473b1051b0833d90d5485f467cfaa69bc7777a24973cf0628ec0d006da60500b"; + revision = "1"; + editedCabalFile = "e374eaff480d32831ea7ec5cddfdaed5c58ed38a1517635a8ec5fbb321956535"; libraryHaskellDepends = [ aeson base binary blaze-builder bytestring bytestring-lexing bytestring-trie case-insensitive containers cookie exceptions @@ -211929,8 +212671,8 @@ self: { QuickCheck resourcet text time transformers vector wai wai-extra ]; testHaskellDepends = [ - base bytestring hspec hspec-wai http-types QuickCheck text time - vector wai wai-extra warp + aeson base bytestring case-insensitive hspec hspec-wai http-media + http-types QuickCheck text time vector wai wai-extra warp ]; jailbreak = true; homepage = "http://byteally.github.io/webapi/"; @@ -215714,7 +216456,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xml-conduit" = callPackage + "xml-conduit_1_3_3_1" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html , blaze-markup, bytestring, conduit, conduit-extra, containers , data-default, deepseq, hspec, HUnit, monad-control, resourcet @@ -215736,9 +216478,10 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the conduit package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xml-conduit_1_3_4" = callPackage + "xml-conduit" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html , blaze-markup, bytestring, conduit, conduit-extra, containers , data-default, deepseq, hspec, HUnit, monad-control, resourcet @@ -215760,7 +216503,6 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the conduit package"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-conduit-parse" = callPackage @@ -221559,6 +222301,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "yesod-form-richtext" = callPackage + ({ mkDerivation, base, blaze-builder, blaze-html, shakespeare, text + , xss-sanitize, yesod-core, yesod-form + }: + mkDerivation { + pname = "yesod-form-richtext"; + version = "0.1.0.0"; + sha256 = "b404fed16d56aac153e2f7a6c512f1b02653edb77bfea7e5331eac08ac6c11d1"; + libraryHaskellDepends = [ + base blaze-builder blaze-html shakespeare text xss-sanitize + yesod-core yesod-form + ]; + homepage = "http://github.com/geraldus/yesod-form-richtext#readme"; + description = "Various rich-text WYSIWYG editors for Yesod forms"; + license = stdenv.lib.licenses.mit; + }) {}; + "yesod-gitrepo_0_1_1_0" = callPackage ({ mkDerivation, base, directory, enclosed-exceptions, http-types , lifted-base, process, system-filepath, temporary, text, wai @@ -224047,6 +224806,33 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "zip" = callPackage + ({ mkDerivation, base, bytestring, bzlib-conduit, case-insensitive + , cereal, conduit, conduit-extra, containers, digest, exceptions + , filepath, hspec, mtl, path, path-io, plan-b, QuickCheck + , resourcet, semigroups, text, time, transformers + }: + mkDerivation { + pname = "zip"; + version = "0.1.0"; + sha256 = "77dff5313dbab62d8078708acbdf2369277cbe757044bd20b0f5dffa5ef13a05"; + revision = "2"; + editedCabalFile = "3f8587754a06ce6e0b4f68bf54dd91f1dc9c0384eaffa065a553fff7a6ba8bad"; + libraryHaskellDepends = [ + base bytestring bzlib-conduit case-insensitive cereal conduit + conduit-extra containers digest exceptions filepath mtl path + path-io plan-b resourcet semigroups text time transformers + ]; + testHaskellDepends = [ + base bytestring conduit containers exceptions filepath hspec path + path-io QuickCheck text time transformers + ]; + jailbreak = true; + homepage = "https://github.com/mrkkrp/zip"; + description = "Operations on zip archives"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "zip-archive_0_2_3_5" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers , digest, directory, filepath, HUnit, mtl, old-time, pretty From f7bf249b2be4845a3b758d1271e836020a33ea2f Mon Sep 17 00:00:00 2001 From: Michael Raitza Date: Tue, 8 Mar 2016 10:04:04 +0000 Subject: [PATCH 0088/1059] boost: Fix compilation for static builds. The 'runtime-link=' feature must not be set in addition to 'link=' for boost-1.55 when building only the statically linked libraries. Fixes errors that targets were defined multiple times. --- pkgs/development/libraries/boost/generic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index 90e60d59da0..b28668e7b30 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -58,7 +58,7 @@ let "--layout=${layout}" "variant=${variant}" "threading=${threading}" - "runtime-link=${runtime-link}" + ] ++ optional (link != "static") "runtime-link=${runtime-link}" ++ [ "link=${link}" "${cflags}" ] ++ optional (variant == "release") "debug-symbols=off"; From e91b9bede0e75a9a434859425c312053ecc881f2 Mon Sep 17 00:00:00 2001 From: Sander van der Burg Date: Tue, 8 Mar 2016 10:48:42 +0000 Subject: [PATCH 0089/1059] runLatex: always include basic texlive stuff (thanks to vcunat) --- pkgs/tools/typesetting/tex/nix/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/typesetting/tex/nix/default.nix b/pkgs/tools/typesetting/tex/nix/default.nix index 5cd5515400d..ce5c025475a 100644 --- a/pkgs/tools/typesetting/tex/nix/default.nix +++ b/pkgs/tools/typesetting/tex/nix/default.nix @@ -17,7 +17,9 @@ rec { assert generatePDF -> !generatePS; let - tex = pkgs.texlive.combine texPackages; + tex = pkgs.texlive.combine + # always include basic stuff you need for LaTeX + ({inherit (pkgs.texlive) scheme-basic;} // texPackages); in pkgs.stdenv.mkDerivation { From f70d678ec46dde4956c2cd92c5f2a84c37ca194e Mon Sep 17 00:00:00 2001 From: Wander Nauta Date: Tue, 8 Mar 2016 11:39:58 +0100 Subject: [PATCH 0090/1059] diction: init at 1.11 --- pkgs/tools/text/diction/default.nix | 21 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 23 insertions(+) create mode 100644 pkgs/tools/text/diction/default.nix diff --git a/pkgs/tools/text/diction/default.nix b/pkgs/tools/text/diction/default.nix new file mode 100644 index 00000000000..51366c36bc6 --- /dev/null +++ b/pkgs/tools/text/diction/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "diction-1.11"; + + src = fetchurl { + url = "mirror://gnu/diction/${name}.tar.gz"; + sha256 = "1xi4l1x1vvzmzmbhpx0ghmfnwwrhabjwizrpyylmy3fzinzz3him"; + }; + + meta = { + description = "GNU style and diction utilities"; + longDescription = '' + Diction and style are two old standard Unix commands. Diction identifies + wordy and commonly misused phrases. Style analyses surface + characteristics of a document, including sentence length and other + readability measures. + ''; + license = stdenv.lib.licenses.gpl3Plus; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index edaab187b4c..331879971e3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1384,6 +1384,8 @@ let di = callPackage ../tools/system/di { }; + diction = callPackage ../tools/text/diction { }; + diffoscope = callPackage ../tools/misc/diffoscope { jdk = jdk7; pythonPackages = python3Packages; From 74c69387db1531783f4256b397d90bc16f24a0db Mon Sep 17 00:00:00 2001 From: zimbatm Date: Tue, 8 Mar 2016 10:55:39 +0000 Subject: [PATCH 0091/1059] flvtool2: fix installation The rubygems.org source doesn't exist anymore. It was also depending on ruby 1.8 to work correctly. --- pkgs/tools/video/flvtool2/default.nix | 31 ++++++++------------------- 1 file changed, 9 insertions(+), 22 deletions(-) diff --git a/pkgs/tools/video/flvtool2/default.nix b/pkgs/tools/video/flvtool2/default.nix index dbda4e11770..65bc240af00 100644 --- a/pkgs/tools/video/flvtool2/default.nix +++ b/pkgs/tools/video/flvtool2/default.nix @@ -1,28 +1,15 @@ -{ stdenv, fetchurl, ruby }: +{ buildRubyGem, lib, ruby_2_2 }: -stdenv.mkDerivation rec { - name = "flvtool2-1.0.6"; - - src = fetchurl { - url = "http://rubyforge.org/frs/download.php/17497/${name}.tgz"; - sha256 = "1pbsf0fvqrs6xzfkqal020bplb68dfiz6c5sfcz36k255v7c5w9a"; - }; - - buildInputs = [ ruby ]; - - configurePhase = - '' - substituteInPlace bin/flvtool2 --replace "/usr/bin/env ruby" "ruby -I$out/lib/ruby/site_ruby/1.8" - ruby setup.rb config --prefix=$out --siterubyver=$out/lib/ruby/site_ruby/1.8 - ''; - - installPhase = - '' - ruby setup.rb install - ''; +buildRubyGem rec { + ruby = ruby_2_2; + name = "${gemName}-${version}"; + gemName = "flvtool2"; + version = "1.0.6"; + sha256 = "0xsla1061pi4ryh3jbvwsbs8qchprchbqjy7652g2g64v37i74qj"; meta = { - homepage = http://www.inlet-media.de/flvtool2/; + homepage = https://github.com/unnu/flvtool2; description = "A tool to manipulate Macromedia Flash Video files"; + platforms = ruby.meta.platforms; }; } From 48dde66cd740ecfae65df7cd54df4193c67c47b3 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Tue, 8 Mar 2016 13:35:03 +0100 Subject: [PATCH 0092/1059] communi: fix output paths --- .../networking/irc/communi/default.nix | 19 +++++++++++++++---- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/networking/irc/communi/default.nix b/pkgs/applications/networking/irc/communi/default.nix index 05a59719902..65a526b88af 100644 --- a/pkgs/applications/networking/irc/communi/default.nix +++ b/pkgs/applications/networking/irc/communi/default.nix @@ -1,5 +1,4 @@ -{ fetchgit, libcommuni, qt5, stdenv -}: +{ fetchgit, libcommuni, makeQtWrapper, qt5, stdenv }: stdenv.mkDerivation rec { name = "communi-${version}"; @@ -11,20 +10,32 @@ stdenv.mkDerivation rec { sha256 = "0gk6gck09zb44qfsal7bs4ln2vl9s9x3vfxh7jvfc7mmf7l3sspd"; }; + nativeBuildInputs = [ makeQtWrapper ]; + buildInputs = [ libcommuni qt5.qtbase ]; enableParallelBuild = true; configurePhase = '' export QMAKEFEATURES=${libcommuni}/features - qmake -r COMMUNI_INSTALL_PREFIX=$out + qmake -r \ + COMMUNI_INSTALL_PREFIX=$out \ + COMMUNI_INSTALL_BINS=$out/bin \ + COMMUNI_INSTALL_PLUGINS=$out/lib/communi/plugins \ + COMMUNI_INSTALL_ICONS=$out/share/icons/hicolor \ + COMMUNI_INSTALL_DESKTOP=$out/share/applications \ + COMMUNI_INSTALL_THEMES=$out/share/communi/themes + ''; + + postInstall = '' + wrapQtProgram "$out/bin/communi" ''; meta = with stdenv.lib; { description = "A simple and elegant cross-platform IRC client"; homepage = https://github.com/communi/communi-desktop; license = licenses.bsd3; - platforms = platforms.all; maintainers = with maintainers; [ hrdinka ]; + platforms = platforms.all; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 331879971e3..507fb957a84 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11729,7 +11729,7 @@ let pulseaudioSupport = config.pulseaudio or false; }; - communi = callPackage ../applications/networking/irc/communi { }; + communi = qt5.callPackage ../applications/networking/irc/communi { }; CompBus = callPackage ../applications/audio/CompBus { }; From c5ec5bc84aa5ad236e0d49714fb31b5e4b389daf Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Mon, 7 Mar 2016 12:42:11 +0100 Subject: [PATCH 0093/1059] libretro-mednafen-psx: init at 2016-03-04 --- pkgs/misc/emulators/retroarch/cores.nix | 12 ++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 13 insertions(+) diff --git a/pkgs/misc/emulators/retroarch/cores.nix b/pkgs/misc/emulators/retroarch/cores.nix index 332357e317e..35a55a8933a 100644 --- a/pkgs/misc/emulators/retroarch/cores.nix +++ b/pkgs/misc/emulators/retroarch/cores.nix @@ -158,6 +158,18 @@ in buildPhase = "make"; }; + mednafen-psx = (mkLibRetroCore rec { + core = "mednafen-psx"; + src = fetchRetro { + repo = "beetle-psx-libretro"; + rev = "20c9b0eb0062b8768cc40aca0e2b2d626f1002a2"; + sha256 = "1dhql8zy9wv55m1lgvqv412087cqmlw7zwcsmxkl3r4z199dsh3m"; + }; + description = "Port of Mednafen's PSX Engine core to libretro"; + }).override { + buildPhase = "make"; + }; + mupen64plus = (mkLibRetroCore rec { core = "mupen64plus"; src = fetchRetro { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7c81b48f31f..e43ca2d3244 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14079,6 +14079,7 @@ let ++ optional (cfg.enableGenesisPlusGX or false) genesis-plus-gx ++ optional (cfg.enableMAME or false) mame ++ optional (cfg.enableMednafenPCEFast or false) mednafen-pce-fast + ++ optional (cfg.enableMednafenPSX or false) mednafen-psx ++ optional (cfg.enableMupen64Plus or false) mupen64plus ++ optional (cfg.enableNestopia or false) nestopia ++ optional (cfg.enablePicodrive or false) picodrive From f1d9be699d811577d74b5793df5cb369bccc371b Mon Sep 17 00:00:00 2001 From: Mathias Schreck Date: Tue, 8 Mar 2016 14:31:10 +0100 Subject: [PATCH 0094/1059] galen: 2.2.1 -> 2.2.3 --- pkgs/development/tools/galen/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/galen/default.nix b/pkgs/development/tools/galen/default.nix index 169c8fdd68a..7ff283176e1 100644 --- a/pkgs/development/tools/galen/default.nix +++ b/pkgs/development/tools/galen/default.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { pname = "galen"; - version = "2.2.1"; + version = "2.2.3"; name = "${pname}-${version}"; inherit jdk; src = fetchurl { - url = "https://github.com/galenframework/galen/releases/download/galen-2.2.1/galen-bin-${version}.zip"; - sha256 = "0zwrh3bxcgkwip6z9lvy3hn53kfr99cdij64c57ff8d95xilclhb"; + url = "https://github.com/galenframework/galen/releases/download/galen-${version}/galen-bin-${version}.zip"; + sha256 = "13kvxbw68g82rv8bp9g4fkrrsd7nag1a4bspilqi2wnxc51c8mqq"; }; buildInputs = [ unzip ]; From 8522f816c6ce384c38fdbc79c7c97c5a78092920 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Tue, 8 Mar 2016 14:18:37 +0100 Subject: [PATCH 0095/1059] pythonPackages.geoalchemy2: init at 0.3.0.dev1 --- pkgs/top-level/python-packages.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ade98083aa3..0dbeafcc8c2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18413,6 +18413,24 @@ in modules // { }; }; + geoalchemy2 = buildPythonPackage rec { + name = "GeoAlchemy2-${version}"; + version = "0.3.0.dev1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/G/GeoAlchemy2/${name}.tar.gz"; + sha256 = "1j95p860ikpcpcirs5791yjpy8rf18zsz7vvsdy6v3x32hkim0k6"; + }; + + propagatedBuildInputs = with self ; [ sqlalchemy shapely ]; + + meta = { + homepage = http://geoalchemy.org/; + license = licenses.mit; + description = "Toolkit for working with spatial databases"; + }; + }; + geopy = buildPythonPackage rec { name = "geopy-${version}"; version = "1.11.0"; From c5695bc8be27c5aed9a887c1917adb3d05a071a4 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Tue, 8 Mar 2016 15:40:17 +0100 Subject: [PATCH 0096/1059] transmission: 2.90 -> 2.92 --- pkgs/applications/networking/p2p/transmission/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/p2p/transmission/default.nix b/pkgs/applications/networking/p2p/transmission/default.nix index dbd23195a1c..eb8c5350a6f 100644 --- a/pkgs/applications/networking/p2p/transmission/default.nix +++ b/pkgs/applications/networking/p2p/transmission/default.nix @@ -4,7 +4,7 @@ }: let - version = "2.90"; + version = "2.92"; in with { inherit (stdenv.lib) optional optionals optionalString; }; @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "https://transmission.cachefly.net/transmission-${version}.tar.xz"; - sha256 = "1lig7y9fhmv2ajgq1isj9wqgpcgignzlczs3dy95ahb8h6pqrzv9"; + sha256 = "0pykmhi7pdmzq47glbj8i2im6iarp4wnj4l1pyvsrnba61f0939s"; }; buildInputs = [ pkgconfig intltool file openssl curl libevent inotify-tools zlib ] From 910049d8ffe5d673022e782520ff6e335cacc7b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 29 Feb 2016 16:06:26 +0100 Subject: [PATCH 0097/1059] perlPackages.ArchiveTar: generate-from-cpan --- 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 af668f5251a..2fda895ce82 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -370,6 +370,18 @@ let self = _self // overrides; _self = with self; { }; }; + ArchiveTar = buildPerlPackage { + name = "Archive-Tar-2.04"; + src = fetchurl { + url = mirror://cpan/authors/id/B/BI/BINGOS/Archive-Tar-2.04.tar.gz; + sha256 = "c3741bba06a468a5a4db6a79d772c55cf2f6673cf33241a6e6a758707a71d293"; + }; + meta = { + description = "Manipulates TAR archives"; + license = "perl"; + }; + }; + ArchiveZip = buildPerlPackage { name = "Archive-Zip-1.16"; src = fetchurl { From fd09362c1d72a783308e05f8d7cfa525c7b0f371 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 29 Feb 2016 16:12:47 +0100 Subject: [PATCH 0098/1059] perlPackages.IOSocketIP: nix-generate-from-cpan --- 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 2fda895ce82..3a664de7d2a 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -6089,6 +6089,18 @@ let self = _self // overrides; _self = with self; { }; }; + IOSocketIP = buildPerlPackage { + name = "IO-Socket-IP-0.37"; + src = fetchurl { + url = mirror://cpan/authors/id/P/PE/PEVANS/IO-Socket-IP-0.37.tar.gz; + sha256 = "2adc5f0b641d41f662b4d99c0795780c62f9af9119884d053265fc8858ae6f7b"; + }; + meta = { + description = "Family-neutral IP socket supporting both IPv4 and IPv6"; + license = "perl"; + }; + }; + IOSocketInet6 = buildPerlPackage rec { name = "IO-Socket-INET6-2.72"; src = fetchurl { From 87fcd97ceaf7e9467ebe2e2a5b2e6032df87c90e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 29 Feb 2016 16:30:34 +0100 Subject: [PATCH 0099/1059] perlPackages.FCGIProcManager: nix-generate-from-cpan --- 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 3a664de7d2a..49b36864bb5 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -4694,6 +4694,18 @@ let self = _self // overrides; _self = with self; { buildInputs = [ ]; }; + FCGIProcManager = buildPerlPackage { + name = "FCGI-ProcManager-0.25"; + src = fetchurl { + url = mirror://cpan/authors/id/A/AR/ARODLAND/FCGI-ProcManager-0.25.tar.gz; + sha256 = "b9ae1146e2638f3aa477c9ab3ceb728f92c5e36e4cce8f0b5847efad601d024d"; + }; + meta = { + description = "A perl-based FastCGI process manager"; + license = "unknown"; + }; + }; + FennecLite = buildPerlModule { name = "Fennec-Lite-0.004"; src = fetchurl { From 7974c7d6a1291d342269f4843cee7ab2e4d8f796 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 29 Feb 2016 16:30:59 +0100 Subject: [PATCH 0100/1059] perlPackages.LocaleMsgfmt: nix-generate-from-cpan --- 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 49b36864bb5..4772480c64a 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -6764,6 +6764,18 @@ let self = _self // overrides; _self = with self; { }; }; + LocaleMsgfmt = buildPerlPackage { + name = "Locale-Msgfmt-0.15"; + src = fetchurl { + url = mirror://cpan/authors/id/A/AZ/AZAWAWI/Locale-Msgfmt-0.15.tar.gz; + sha256 = "c3276831cbeecf58be02081bcc180bd348daa35da21a7737b7b038a59f643ab4"; + }; + meta = { + description = "Compile .po files to .mo files"; + license = "perl"; + }; + }; + LocalePO = buildPerlPackage { name = "Locale-PO-0.23"; src = fetchurl { From 15030ed2917c206a28b5b5ba8be6a644fb7d3306 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 1 Mar 2016 10:43:54 +0100 Subject: [PATCH 0101/1059] foswiki: init the package at 2.1.0 --- pkgs/servers/foswiki/default.nix | 42 ++++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 44 insertions(+) create mode 100644 pkgs/servers/foswiki/default.nix diff --git a/pkgs/servers/foswiki/default.nix b/pkgs/servers/foswiki/default.nix new file mode 100644 index 00000000000..c5831325958 --- /dev/null +++ b/pkgs/servers/foswiki/default.nix @@ -0,0 +1,42 @@ +{ stdenv, fetchurl, perlPackages }: + +perlPackages.buildPerlPackage rec { + name = "foswiki-${version}"; + version = "2.1.0"; + + src = fetchurl { + url = "mirror://sourceforge/foswiki/${version}/Foswiki-${version}.tgz"; + sha256 = "03286pb966h99zgickm2f20rgnqwp9wga5wfkdvirv084kjdh8vp"; + }; + + buildInputs = with perlPackages; [ + # minimum requirements from INSTALL.html#System_Requirements + AlgorithmDiff ArchiveTar AuthenSASL CGI CGISession CryptPasswdMD5 + DigestSHA EmailMIME Encode Error FileCopyRecursive HTMLParser HTMLTree + IOSocketIP IOSocketSSL JSON + LocaleMaketext LocaleMaketextLexicon LocaleMsgfmt + LWP URI perlPackages.version + /*# optional dependencies + libapreq2 DBI DBDmysql DBDPg DBDSQLite FCGI FCGIProcManager + CryptSMIME CryptX509 ConvertPEM + */ + ]; + + preConfigure = '' + touch Makefile.PL + patchShebangs . + ''; + configureScript = "bin/configure"; + + # there's even no makefile + doCheck = false; + installPhase = ''cp -r . "$out" ''; # TODO: some fixups will be needed for running it + + meta = with stdenv.lib; { + description = "An open, programmable collaboration platform"; + homepage = http://foswiki.org; + license = licenses.gpl2Plus; + platforms = platforms.linux; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 507fb957a84..ac33fb72b59 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9570,6 +9570,8 @@ let fleet = callPackage ../servers/fleet { }; + foswiki = callPackage ../servers/foswiki { }; + freepops = callPackage ../servers/mail/freepops { }; freeswitch = callPackage ../servers/sip/freeswitch { }; From 1952d5d5f7c1d02ec5a64940bdc144b5e419bca8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Fri, 4 Mar 2016 15:14:39 +0100 Subject: [PATCH 0102/1059] nixos/foswiki: basic working service definition Activation is as simple as: services.httpd = { enable = true; adminAddr = "nobody@example.com"; extraSubservices = [ { serviceType = "foswiki"; } ]; }; --- .../web-servers/apache-httpd/foswiki.nix | 78 +++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 nixos/modules/services/web-servers/apache-httpd/foswiki.nix diff --git a/nixos/modules/services/web-servers/apache-httpd/foswiki.nix b/nixos/modules/services/web-servers/apache-httpd/foswiki.nix new file mode 100644 index 00000000000..8c1ac8935a4 --- /dev/null +++ b/nixos/modules/services/web-servers/apache-httpd/foswiki.nix @@ -0,0 +1,78 @@ +{ config, pkgs, lib, serverInfo, ... }: +let + inherit (pkgs) foswiki; + inherit (serverInfo.serverConfig) user group; + inherit (config) vardir; +in +{ + options.vardir = lib.mkOption { + type = lib.types.path; + default = "/var/www/foswiki"; + description = "The directory where variable foswiki data will be stored and served from."; + }; + + # TODO: this will probably need to be better customizable + extraConfig = + let httpd-conf = pkgs.runCommand "foswiki-httpd.conf" + { preferLocalBuild = true; } + '' + substitute '${foswiki}/foswiki_httpd_conf.txt' "$out" \ + --replace /var/www/foswiki/ "${vardir}/" + ''; + in + '' + RewriteEngine on + RewriteRule /foswiki/(.*) ${vardir}/$1 + + + Require all granted + + + Include ${httpd-conf} + + Options FollowSymlinks + + ''; + + /** This handles initial setup and updates. + It will probably need some tweaking, maybe per-site. */ + startupScript = pkgs.writeScript "foswiki_startup.sh" ( + let storeLink = "${vardir}/package"; in + '' + [ -e '${storeLink}' ] || needs_setup=1 + mkdir -p '${vardir}' + cd '${vardir}' + ln -sf -T '${foswiki}' '${storeLink}' + + if [ -n "$needs_setup" ]; then # do initial setup + mkdir -p bin lib + # setup most of data/ as copies only + cp -r '${foswiki}'/data '${vardir}/' + rm -r '${vardir}'/data/{System,mime.types} + ln -sr -t '${vardir}/data/' '${storeLink}'/data/{System,mime.types} + + ln -sr '${storeLink}/locale' . + + mkdir pub + ln -sr '${storeLink}/pub/System' pub/ + + mkdir templates + ln -sr '${storeLink}'/templates/* templates/ + + ln -sr '${storeLink}/tools' . + + mkdir -p '${vardir}'/working/{logs,tmp} + ln -sr '${storeLink}/working/README' working/ # used to check dir validity + + chown -R '${user}:${group}' . + chmod +w -R . + fi + + # bin/* and lib/* shall always be overwritten, in case files are added + ln -srf '${storeLink}'/bin/* '${vardir}/bin/' + ln -srf '${storeLink}'/lib/* '${vardir}/lib/' + '' + /* Symlinking bin/ one-by-one ensures that ${vardir}/lib/LocalSite.cfg + is used instead of ${foswiki}/... */ + ); +} From d37729f4b8978af3ed2776cf706884f116997fb5 Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Tue, 8 Mar 2016 16:39:17 +0100 Subject: [PATCH 0103/1059] modules/cupsd: clarify how to set gutenprint --- nixos/modules/services/printing/cupsd.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/printing/cupsd.nix b/nixos/modules/services/printing/cupsd.nix index 80d11565e47..9fb854e50cf 100644 --- a/nixos/modules/services/printing/cupsd.nix +++ b/nixos/modules/services/printing/cupsd.nix @@ -238,7 +238,8 @@ in example = literalExample "[ pkgs.splix ]"; description = '' CUPS drivers to use. Drivers provided by CUPS, cups-filters, Ghostscript - and Samba are added unconditionally. + and Samba are added unconditionally. For adding Gutenprint, see + gutenprint. ''; }; From 588a237e9ed427a14972fdef43b165308301142d Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 8 Mar 2016 15:47:17 +0100 Subject: [PATCH 0104/1059] cabal2nix: update to version 20160308 --- pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix | 4 ++-- .../tools/haskell/cabal2nix/distribution-nixpkgs.nix | 4 ++-- pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix b/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix index 68c85fb2951..87dc173dd87 100644 --- a/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix +++ b/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix @@ -6,12 +6,12 @@ mkDerivation rec { pname = "cabal2nix"; - version = "20151217"; + version = "20160308"; src = fetchFromGitHub { owner = "nixos"; repo = "cabal2nix"; rev = "v${version}"; - sha256 = "1140ym5j1prvzyfw8q784dr0hwvfw6s4h63j3a4j67cawa2dbkr5"; + sha256 = "02lj3x0rgpxvaimwbbjjgwm4ka0wkk4x5h35jjygz6bkr5lv3m52"; }; postUnpack = "sourceRoot+=/${pname}"; isLibrary = false; diff --git a/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix b/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix index 7aac407e3ce..5aa4370b26f 100644 --- a/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix +++ b/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix @@ -11,8 +11,8 @@ mkDerivation rec { src = fetchFromGitHub { owner = "nixos"; repo = "cabal2nix"; - rev = "v20151217"; - sha256 = "1140ym5j1prvzyfw8q784dr0hwvfw6s4h63j3a4j67cawa2dbkr5"; + rev = "v20160308"; + sha256 = "02lj3x0rgpxvaimwbbjjgwm4ka0wkk4x5h35jjygz6bkr5lv3m52"; }; postUnpack = "sourceRoot+=/${pname}"; libraryHaskellDepends = [ diff --git a/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix b/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix index b2b3b46581a..ce1d9303cdc 100644 --- a/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix +++ b/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix @@ -7,12 +7,12 @@ mkDerivation rec { pname = "hackage2nix"; - version = "20151217"; + version = "20160308"; src = fetchFromGitHub { owner = "nixos"; repo = "cabal2nix"; rev = "v${version}"; - sha256 = "1140ym5j1prvzyfw8q784dr0hwvfw6s4h63j3a4j67cawa2dbkr5"; + sha256 = "02lj3x0rgpxvaimwbbjjgwm4ka0wkk4x5h35jjygz6bkr5lv3m52"; }; postUnpack = "sourceRoot+=/${pname}"; isLibrary = false; From efb76ae10bfa484205d5bd9bbb58c1d32654d984 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 8 Mar 2016 17:58:16 +0100 Subject: [PATCH 0105/1059] mksh: 52 -> 52c Changes: https://www.mirbsd.org/mksh.htm#clog --- pkgs/shells/mksh/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/shells/mksh/default.nix b/pkgs/shells/mksh/default.nix index dc5f437977c..696777c7f1f 100644 --- a/pkgs/shells/mksh/default.nix +++ b/pkgs/shells/mksh/default.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { name = "mksh-${version}"; - version = "52"; + version = "52c"; src = fetchurl { urls = [ "http://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R${version}.tgz" "http://pub.allbsd.org/MirOS/dist/mir/mksh/mksh-R${version}.tgz" ]; - sha256 = "13vnncwfx4zq3yi7llw3p6miw0px1bm5rrps3y1nlfn6sb6zbhj5"; + sha256 = "19ivsic15903hv3ipzk0kvkaxardw7b99s8l5iw3y415lz71ld66"; }; buildInputs = [ groff ]; From e714c804975cf88a639b316adbf6e30cba5b4616 Mon Sep 17 00:00:00 2001 From: Octavian Cerna Date: Tue, 8 Mar 2016 19:20:57 +0200 Subject: [PATCH 0106/1059] raspberrypifw: Patch the ELF binaries to set the correct dynamic linker and RPATH. --- pkgs/os-specific/linux/firmware/raspberrypi/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/os-specific/linux/firmware/raspberrypi/default.nix b/pkgs/os-specific/linux/firmware/raspberrypi/default.nix index 4d875d15d48..dc0b061af14 100644 --- a/pkgs/os-specific/linux/firmware/raspberrypi/default.nix +++ b/pkgs/os-specific/linux/firmware/raspberrypi/default.nix @@ -17,6 +17,11 @@ in stdenv.mkDerivation { cp -R boot/* $out/share/raspberrypi/boot cp -R hardfp/opt/vc/* $out cp opt/vc/LICENCE $out/share/raspberrypi + + for f in $out/bin/*; do + patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$f" + patchelf --set-rpath "$out/lib" "$f" + done ''; meta = { From e0b541acc75d7e9a186d9b67938c33efc5c09d8f Mon Sep 17 00:00:00 2001 From: John Chee Date: Tue, 8 Mar 2016 12:02:44 -0800 Subject: [PATCH 0107/1059] lastpass-cli: 0.7.0 -> 0.9.0 --- pkgs/tools/security/lastpass-cli/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/lastpass-cli/default.nix b/pkgs/tools/security/lastpass-cli/default.nix index 01495156810..bfd1343f5e5 100644 --- a/pkgs/tools/security/lastpass-cli/default.nix +++ b/pkgs/tools/security/lastpass-cli/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "lastpass-cli-${version}"; - version = "0.7.0"; + version = "0.9.0"; src = fetchFromGitHub { owner = "lastpass"; repo = "lastpass-cli"; rev = "v${version}"; - sha256 = "18dn4sx173666w6aaqhwcya5x2z3q0fmhg8h76lgdmx8adrhzdzc"; + sha256 = "1iaz36bcyss2kahhlm92l7yh26rxvs12wnkkh1289yarl5wi0yld"; }; buildInputs = [ From 9e86984fe066c09236aa0acd09e23babb66292e8 Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Tue, 8 Mar 2016 15:14:25 -0500 Subject: [PATCH 0108/1059] openssh: decouple gssapi patch from kerberos The GSSAPI patch is useful but maintained by Debian, not upstream, and can be slow to update. To avoid breaking openssh_with_kerberos when the openssh version is bumped but the GSSAPI patch has not been updated, don't enable the GSSAPI patch implicitly but require it to be explicitly enabled. --- pkgs/tools/networking/openssh/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/networking/openssh/default.nix b/pkgs/tools/networking/openssh/default.nix index 4a1efbb0335..054174393ec 100644 --- a/pkgs/tools/networking/openssh/default.nix +++ b/pkgs/tools/networking/openssh/default.nix @@ -2,12 +2,13 @@ , etcDir ? null , hpnSupport ? false , withKerberos ? false -, withGssapiPatches ? withKerberos +, withGssapiPatches ? false , kerberos , linkOpenssl? true }: assert withKerberos -> kerberos != null; +assert withGssapiPatches -> withKerberos; let @@ -24,6 +25,8 @@ let in with stdenv.lib; stdenv.mkDerivation rec { + # Please ensure that openssh_with_kerberos still builds when + # bumping the version here! name = "openssh-7.2p1"; src = fetchurl { From ce74aac132fd460674ef58b9324c8574e9c82f4b Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Tue, 8 Mar 2016 16:11:56 -0500 Subject: [PATCH 0109/1059] openssh: update GSSAPI patch to openssh 7.2 --- pkgs/tools/networking/openssh/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/openssh/default.nix b/pkgs/tools/networking/openssh/default.nix index 054174393ec..08a3dbc58f7 100644 --- a/pkgs/tools/networking/openssh/default.nix +++ b/pkgs/tools/networking/openssh/default.nix @@ -18,8 +18,8 @@ let }; gssapiSrc = fetchpatch { - url = "http://anonscm.debian.org/cgit/pkg-ssh/openssh.git/plain/debian/patches/gssapi.patch?h=debian/7.1p2-2"; - sha256 = "05nsch879nlpyyiwm240wlq9rasy71j9d03j1rfi8kp865zhjfbm"; + url = "https://anonscm.debian.org/cgit/pkg-ssh/openssh.git/plain/debian/patches/gssapi.patch?id=46961f5704f8e86cea3e99253faad55aef4d8f35"; + sha256 = "01mf2vx1gavypbdx06mcbmcrkm2smff0h3jfmr61k6h6j3xk88y5"; }; in From 0ced8f386c191919a89cdc529119bfefd6e07499 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Tue, 8 Mar 2016 21:28:08 +0000 Subject: [PATCH 0110/1059] rq: package removed rq only compiles with ruby 1.8 which we don't distribute anymore. the source is dead. there is a 1.9 branch over https://github.com/pjotrp/rq that hasn't been touched for 4 years. --- .../networking/cluster/rq/default.nix | 36 ------------------- .../networking/cluster/rq/rq.patch | 12 ------- pkgs/top-level/all-packages.nix | 2 -- 3 files changed, 50 deletions(-) delete mode 100644 pkgs/applications/networking/cluster/rq/default.nix delete mode 100644 pkgs/applications/networking/cluster/rq/rq.patch diff --git a/pkgs/applications/networking/cluster/rq/default.nix b/pkgs/applications/networking/cluster/rq/default.nix deleted file mode 100644 index fdf11adfb6c..00000000000 --- a/pkgs/applications/networking/cluster/rq/default.nix +++ /dev/null @@ -1,36 +0,0 @@ -{stdenv, fetchurl, sqlite, ruby }: - -# Package builds rq with all dependencies into one blob. This to ascertain -# the combination of packages works. - -stdenv.mkDerivation { - name = "rq-3.4.0"; - src = fetchurl { - url = http://www.codeforpeople.com/lib/ruby/rq/rq-3.4.0.tgz; - sha256 = "1g8wiv83dcn4vzk9wjjzs9vjnwzwpy4h84h34cj32wfz793wfb8b"; - }; - - buildInputs = [ ruby ]; - - # patch checks for existing stdin file - sent it upstream - patches = [ ./rq.patch ]; - - buildPhase = '' - cd all - ./install.sh $out - cd .. - ''; - - installPhase = '' - ''; - - meta = { - license = stdenv.lib.licenses.ruby; - homepage = "http://www.codeforpeople.com/lib/ruby/rq/"; - description = "Simple cluster queue runner"; - longDescription = "rq creates instant linux clusters by managing priority work queues, even on a multi-core single machine. This cluster runner is easy to install and easy to manage, contrasting with the common complicated solutions."; - pkgMaintainer = "Pjotr Prins"; - # rq installs a separate Ruby interpreter, which has lower priority - priority = "10"; - }; -} diff --git a/pkgs/applications/networking/cluster/rq/rq.patch b/pkgs/applications/networking/cluster/rq/rq.patch deleted file mode 100644 index d57c7d0a71a..00000000000 --- a/pkgs/applications/networking/cluster/rq/rq.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -r b58e759f84db lib/rq/jobrunner.rb ---- a/lib/rq/jobrunner.rb Sun Sep 28 13:33:06 2008 +0200 -+++ b/lib/rq/jobrunner.rb Sun Sep 28 13:35:09 2008 +0200 -@@ -85,7 +85,7 @@ unless defined? $__rq_jobrunner__ - - command = - if @sh_like -- sin = "0<#{ @stdin }" if @stdin -+ sin = "0<#{ @stdin }" if @stdin and File.exist?(@stdin) - sout = "1>#{ @stdout }" if @stdout - serr = "2>#{ @stderr }" if @stderr - "( PATH=#{ path }:$PATH #{ command } ;) #{ sin } #{ sout } #{ serr }" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c540ff849c8..d13ef023af5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5574,8 +5574,6 @@ let rubygems = hiPrio (callPackage ../development/interpreters/ruby/rubygems.nix {}); - rq = callPackage ../applications/networking/cluster/rq { }; - scsh = callPackage ../development/interpreters/scsh { }; scheme48 = callPackage ../development/interpreters/scheme48 { }; From 153468aa5e49896ac60b3373bc3c9d52cfe88cea Mon Sep 17 00:00:00 2001 From: taku0 Date: Wed, 9 Mar 2016 09:06:42 +0900 Subject: [PATCH 0111/1059] firefox-bin: 44.0.2 -> 45.0 --- .../browsers/firefox-bin/sources.nix | 360 +++++++++--------- 1 file changed, 181 insertions(+), 179 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/sources.nix b/pkgs/applications/networking/browsers/firefox-bin/sources.nix index 31ec6f313a8..6ae91e165a9 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/sources.nix @@ -4,185 +4,187 @@ # ruby generate_sources.rb > sources.nix { - version = "44.0.2"; + version = "45.0"; sources = [ - { locale = "ach"; arch = "linux-i686"; sha256 = "2d0ab9fba584576d67ccb600339efeb5ad7aac1629b2d7865e121825b1a5a6d5"; } - { locale = "ach"; arch = "linux-x86_64"; sha256 = "188b9aab64ab1beda84dbe7b36d899210472a3e445dd827b64ca7083ae3c0b32"; } - { locale = "af"; arch = "linux-i686"; sha256 = "e6b5fb28e5ad03240f0e156c81db1df16bfaf99a946ffab9672c06d8561de9c3"; } - { locale = "af"; arch = "linux-x86_64"; sha256 = "c2856308c9e87bf82f621c5d4c96e9c5a70e5ebb86a8e4ba8ecb4d08c1ae98ec"; } - { locale = "an"; arch = "linux-i686"; sha256 = "f138b17a230e9b42b334d3900bebf23156fe1dec1f4ec75f9a3b94348523e241"; } - { locale = "an"; arch = "linux-x86_64"; sha256 = "82d24b07dc8d887837e8fbd610c2feb1ff4975917d8a19836ec0d0db56522de8"; } - { locale = "ar"; arch = "linux-i686"; sha256 = "b530e58161331bff3222083298ddc5af0055c6b3337b58b1a4eb1d5d4e348d62"; } - { locale = "ar"; arch = "linux-x86_64"; sha256 = "67c0e4ce7dfe54d0e4fedb168342ea86a82458e2d3ce6aca78b4497f4e813bfd"; } - { locale = "as"; arch = "linux-i686"; sha256 = "f17e991e97e85b981c3191a0becad6df457a29b7042d31a667fd227dadc24e80"; } - { locale = "as"; arch = "linux-x86_64"; sha256 = "2d955443b785a65d2f9f914232d521aeb9082b4dead8fedc89cfa29329ab8e2a"; } - { locale = "ast"; arch = "linux-i686"; sha256 = "c9e2784047b58eddfd72c1e56964eea8ac098240436d029665bc940c7b8d8f8d"; } - { locale = "ast"; arch = "linux-x86_64"; sha256 = "4bd5cc7c34f0a1fc1e2e899942c4ebec6bdab2fbd9e3d331ecc0c67a6f8c16e4"; } - { locale = "az"; arch = "linux-i686"; sha256 = "1789f6c5524314df239e4b4beb677adf48ce926a097128e053b352067d13016f"; } - { locale = "az"; arch = "linux-x86_64"; sha256 = "4881ccb7521512b4275faa2598efda6bbcc3d7838b6200e79c8fcae358d32c23"; } - { locale = "be"; arch = "linux-i686"; sha256 = "e9e31e92e0732188f6c4494023de260e5b64e97c56ff07857b290355c50e25f4"; } - { locale = "be"; arch = "linux-x86_64"; sha256 = "00ef0cea013cdb8606d8786bb5a21e502a6054ab57b2fad4d24161c47768f418"; } - { locale = "bg"; arch = "linux-i686"; sha256 = "6428fa1d4f2bd0b703f207a1571e425f8076438954f955f60c0e8c1525743823"; } - { locale = "bg"; arch = "linux-x86_64"; sha256 = "fc156d3d76582c95eb6a0a7ee88dbdbd6c99d46ca42b011e1d789b0552bb5885"; } - { locale = "bn-BD"; arch = "linux-i686"; sha256 = "d0b69158e5ce85eec29dc70c4942bfc76eaf2d8e3359c45de5783d39fe1ccaf0"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "928575b759e4ae89d3e5ee475ffa18c69e945846981102d540de01c9bd87582e"; } - { locale = "bn-IN"; arch = "linux-i686"; sha256 = "a92a902e4380ddda37b8e70922e91ee029d47f866adea53220dd76182c52b596"; } - { locale = "bn-IN"; arch = "linux-x86_64"; sha256 = "022b9ff7141cd89df35477d357df74556bc4a24639141d21111eccfbf8e2f98c"; } - { locale = "br"; arch = "linux-i686"; sha256 = "c398c00b98edcaa2618363637075ccf749a4d3567dfdae070b4b0cbe23832f56"; } - { locale = "br"; arch = "linux-x86_64"; sha256 = "60f471fdf1b71072751396049f12a198c73d11892ec69fc142f925a12c6515f4"; } - { locale = "bs"; arch = "linux-i686"; sha256 = "d9e3c1b5c94ad207071cea86295ef3f98d4bd9201e896f6b9d67a2e475ea2898"; } - { locale = "bs"; arch = "linux-x86_64"; sha256 = "2ea3bb1c14a849b5039b633963687629839174ea886d3f8314f67eddafa2b16b"; } - { locale = "ca"; arch = "linux-i686"; sha256 = "bf1c1c3aaa900d66c4684cf48623bb0c9e0313cd919ad0e67e8a2e3ca5987aa6"; } - { locale = "ca"; arch = "linux-x86_64"; sha256 = "30c0217722c599ed8fc0e713e0b763a01dc0da37dc2f290a2a4d02cb2a86b6a3"; } - { locale = "cs"; arch = "linux-i686"; sha256 = "5ebd809827cdc85da0e6c973855c60426ab98e2cb898c030acd403577d3bb78a"; } - { locale = "cs"; arch = "linux-x86_64"; sha256 = "a1d55b7c54fd7eb89bcf5dbdadcaea0f5d2da7110a090c424c52a55ae23150f2"; } - { locale = "cy"; arch = "linux-i686"; sha256 = "55df045619bbe01af6f33c6cd563d6097b9c9023ab9133fa7def0800cc9aec83"; } - { locale = "cy"; arch = "linux-x86_64"; sha256 = "2ddb8bcd515aad4ddb029cf4e5c49e771aa1da14394924c4ec532c5125b7ca7b"; } - { locale = "da"; arch = "linux-i686"; sha256 = "b322bef3e95b24337f294b2786fc5a819d954adb43f98dee69674d41fd234b5c"; } - { locale = "da"; arch = "linux-x86_64"; sha256 = "3e5164351808ef2f8f4e9cea6bb1121c4d3394de56536d17869a56df3b783d3b"; } - { locale = "de"; arch = "linux-i686"; sha256 = "a404bf7c19dbc65adea8872b8bd080a17417bc0f1ffa3015513d86750b2903a9"; } - { locale = "de"; arch = "linux-x86_64"; sha256 = "3590e100bf84f2734d1b3c81508d8fa137fd100bdd1e764ae5da1f88602d5b9d"; } - { locale = "dsb"; arch = "linux-i686"; sha256 = "c4be1a5cc431f3aeb26694bfd0749da0dfc85c119f75b551e69083a384042833"; } - { locale = "dsb"; arch = "linux-x86_64"; sha256 = "36f451bb07af47aff7c930a2810ef628e3382f92560efbe396133735275f7075"; } - { locale = "el"; arch = "linux-i686"; sha256 = "736ee0dffe7c5dc0d5abc7755a83e29da718901252034ee503775fc3f11e31c1"; } - { locale = "el"; arch = "linux-x86_64"; sha256 = "1638e1fd69d1887bbfd2de95ffe7945f52934055f8e15eb919d9ccac930959e0"; } - { locale = "en-GB"; arch = "linux-i686"; sha256 = "1f9c8404fd01c1cac530c0e2b1fb488a2b4f7a02d8c2f0e568e0db050dc66f18"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "4f7491b919ca7a0563cd3444bd4a1abf48a4448ccdd743c5b5eb58584e5b1e94"; } - { locale = "en-US"; arch = "linux-i686"; sha256 = "abe3e5d23cf557ee81e7064d6d1b2d3a8f6b6e1a5f80947fc7229f0b2b631380"; } - { locale = "en-US"; arch = "linux-x86_64"; sha256 = "a4b439e28274feb4bf5494ba180143e6b8617428a63d11fa2fd0e650dda41908"; } - { locale = "en-ZA"; arch = "linux-i686"; sha256 = "9de2931e926e0b0667f6916283a7ef019d1c067b29d6bd5b4b903fdf87ad9c17"; } - { locale = "en-ZA"; arch = "linux-x86_64"; sha256 = "6ada8b6a9a2b19f9515a1aaf63ad66cf35a1ab5491fc8ffc86a17fe1378ab553"; } - { locale = "eo"; arch = "linux-i686"; sha256 = "92db868c78ae49a8275d217327ca442ef6733b955ddc5b4940183c9a596da3de"; } - { locale = "eo"; arch = "linux-x86_64"; sha256 = "2e8267fb43ba6b7636c98fe386c35ddb9032265565844dcbc90f3dba18a2bc05"; } - { locale = "es-AR"; arch = "linux-i686"; sha256 = "6343bacb35c929c8f7c5cb554aa0e5f67100032c71bc24203b663409e45cbf40"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "0b5a07e745aab7d1e0bb8bcf0afe12ab71a88679024ef6e9edd53bab7518df7f"; } - { locale = "es-CL"; arch = "linux-i686"; sha256 = "7288765c2222624e69b367ab83686c21a348330a8f26eff7c6ea8dca03a3aabf"; } - { locale = "es-CL"; arch = "linux-x86_64"; sha256 = "543778259a5d7c4198c8125b72f9e66e9ae98b398bc3b07ac0e103f07ab7ef2c"; } - { locale = "es-ES"; arch = "linux-i686"; sha256 = "c1aec91c45591eaa6df8b15ba13ea58d15ab2cce20361719ea2549896d26ea1f"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "ee3b11c04ca280ff77e3cedd3dc2040b7b1722384639c02507bedc927c7b558b"; } - { locale = "es-MX"; arch = "linux-i686"; sha256 = "8adb9435f57da461150d8b283161760683e46b068eaade916119c2240f0a9c66"; } - { locale = "es-MX"; arch = "linux-x86_64"; sha256 = "b624c4345794a22a7c63b4f6b7a1ed6f52472fa5cba4173f69f3c12ee3b4cbe1"; } - { locale = "et"; arch = "linux-i686"; sha256 = "efb6c6753e8a9d8174e8bd1ae7cbf3f75b479e5da3ebe07dbbbb4ac140e60eb9"; } - { locale = "et"; arch = "linux-x86_64"; sha256 = "c84bb0597fa14e8a7a2d086f24d71ad2f3c04b3fca794b76977d1a4cb1aea479"; } - { locale = "eu"; arch = "linux-i686"; sha256 = "d116553c492ec41b811befb35393553b9174da3960034ce5106558befbf9728a"; } - { locale = "eu"; arch = "linux-x86_64"; sha256 = "16c922f152d5e14c46277e23d30cfe0792c8e9828b8862df603aeff242c7ec96"; } - { locale = "fa"; arch = "linux-i686"; sha256 = "744ad5a8cb4473d502d1db50b6bf343e23525927b3a982677dd8a68aea111b3f"; } - { locale = "fa"; arch = "linux-x86_64"; sha256 = "968fea07386b96215af400524062447245fa038766caf0b133c932db6f105077"; } - { locale = "ff"; arch = "linux-i686"; sha256 = "0fdf06aa42cbd4d031fdad74d8ac9d6056708fc783180d72c5806cc45c5b8eec"; } - { locale = "ff"; arch = "linux-x86_64"; sha256 = "bfb65ec25192288b2f04f94bdcc9ce36a40a27c8a1f35f728f932c071b6756ce"; } - { locale = "fi"; arch = "linux-i686"; sha256 = "334c121cbd9a1469996ebc5535d838e3fecfcc419861cc70d5cdeb0cd584d5f5"; } - { locale = "fi"; arch = "linux-x86_64"; sha256 = "44883a9b819a24bef03c3322681e1b9f3fe61779e382a740900dfc16a5f7db06"; } - { locale = "fr"; arch = "linux-i686"; sha256 = "cd196dff293aabc39156e82deb5163e139a4b0173de92a2ba72df49bb4b0afe5"; } - { locale = "fr"; arch = "linux-x86_64"; sha256 = "77da207f48d7af908cb5e95767e61a2e6c04f1851e55430820ff8207da172361"; } - { locale = "fy-NL"; arch = "linux-i686"; sha256 = "39e8da569f2a6f67abac7782a938a906c810f8474fbb2c799dd26fb846c82707"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "44dbf644b3f96dd607e5c88eece8aaafd61ec42af9f7ba4c6ed06a272a45fa4a"; } - { locale = "ga-IE"; arch = "linux-i686"; sha256 = "783532acf3967f94232f42c9cd559e288db499c0ff74776543b59d71d281a74c"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "39509082dbeb935f481e95d6038943a17c5053f7001fbf71bdb0edea536adb9d"; } - { locale = "gd"; arch = "linux-i686"; sha256 = "dd73e1bf159f3d437d69306c5daeb7a06c951d6c5841315363c354f9aa1570c5"; } - { locale = "gd"; arch = "linux-x86_64"; sha256 = "a2fb4aa1ba4a50bdb308e8c12090158c5e040ae85617171786e93852d4f48de5"; } - { locale = "gl"; arch = "linux-i686"; sha256 = "8ac3fd13e0f173aa1dfffd44c91511bd457c6a751daa978fbaae3f9901427cae"; } - { locale = "gl"; arch = "linux-x86_64"; sha256 = "cf52827a18b400f8c3e426b00e2984bd5835014f3e97e9c1279f0b285ca5a5dc"; } - { locale = "gu-IN"; arch = "linux-i686"; sha256 = "1ef44836085733b52c338fdcaea78e7df5f78a0f0f470b9de3ac7b13e3ec4844"; } - { locale = "gu-IN"; arch = "linux-x86_64"; sha256 = "374280216142897536979fff6f876253caaf0eeb12a3d12d17b013e7ab3ba722"; } - { locale = "he"; arch = "linux-i686"; sha256 = "1dcca6ae796da1a1317a4f094f06369242cdf7c0f8ce3df7c9fabd22910996ab"; } - { locale = "he"; arch = "linux-x86_64"; sha256 = "e032513a673ba091207996b8a6a6b9da6ef05d5c080a93ed326fc4ac4ca6976a"; } - { locale = "hi-IN"; arch = "linux-i686"; sha256 = "2057287b406513a332d162f03f75ef7ff4c83834809163c8b870d9e5ab3f8cdf"; } - { locale = "hi-IN"; arch = "linux-x86_64"; sha256 = "8d19043416484c382fc9caec5dff4914fbc28feefd41a089591ef2b21f822a43"; } - { locale = "hr"; arch = "linux-i686"; sha256 = "995a6dd027a5a6b2123c62b74f524db53940e2c8fa6c7254dc41dca236f7889b"; } - { locale = "hr"; arch = "linux-x86_64"; sha256 = "4410e7d1cbce028de083b82ee68f442d27c2219544ec1be72ef2c274cb7c445a"; } - { locale = "hsb"; arch = "linux-i686"; sha256 = "0dcb0de11e35475cab33e11b08b88ff766915d7d98ceeb466a0fee90883ebaed"; } - { locale = "hsb"; arch = "linux-x86_64"; sha256 = "1695167eea386aec4fca23bb0bf4e5b83876a22f8c584f4e81886be229e9a43b"; } - { locale = "hu"; arch = "linux-i686"; sha256 = "31026a26c9fa9b3777c2f9dd1d55da7e0204e4d98586f887b67588ccb86c3843"; } - { locale = "hu"; arch = "linux-x86_64"; sha256 = "82d8fbe932765f100a116b6d572035297be2f027b4f0e0ba84ef88cb4b651000"; } - { locale = "hy-AM"; arch = "linux-i686"; sha256 = "864c112f13628bd9bc715a6a405dc92c3f8027b0e505722d819b84775fb27066"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "dddd71e651056c373225baab9bb190810f8ed6849abfa76587fcd05cc5060d89"; } - { locale = "id"; arch = "linux-i686"; sha256 = "3425906d6513d3e06286b9b3c62c30d702a47a3d7a31638a58f926e2fa4a254f"; } - { locale = "id"; arch = "linux-x86_64"; sha256 = "095d970add8bf54fc2fb2581532013f4792f648b58fa12d49a6a859f26a0e579"; } - { locale = "is"; arch = "linux-i686"; sha256 = "f3687eb0e7ce24e14621345543abdf2b92435466ededc98a4ec4a117c4593c3c"; } - { locale = "is"; arch = "linux-x86_64"; sha256 = "dbac8774c64e6c978a3eb900cf61d85a210d0c39c28df4a21e4295ba5febd0ea"; } - { locale = "it"; arch = "linux-i686"; sha256 = "62091c6f5214f4717462d9e2f6bacd7f30417b7e714de3fdec6fc2f703970eb7"; } - { locale = "it"; arch = "linux-x86_64"; sha256 = "480b9ffd4326a9a2e2002510027a15d4fdaf8ba1ea023ee6e55b2aa78b119a6c"; } - { locale = "ja"; arch = "linux-i686"; sha256 = "ef143bf31fa67cab3ccafc0083d81ffa8997e3365312b12312623755eb24f48d"; } - { locale = "ja"; arch = "linux-x86_64"; sha256 = "f74808de8fb999dceb067b3fda64e891c37bde7190e9eff68f1693f5b5feae0d"; } - { locale = "kk"; arch = "linux-i686"; sha256 = "a532d49011b632aa83f6b881b39c74bcb66fab0237e3e4f8682445aa0a053d4c"; } - { locale = "kk"; arch = "linux-x86_64"; sha256 = "7f32ee329e8281e89472b092248a26e1d38089bdc9830d2d1d0b1af8230ca20b"; } - { locale = "km"; arch = "linux-i686"; sha256 = "34ecf596b0870aca2db30513ef5d6522d86caf70fce38b23a7bff08c55551b69"; } - { locale = "km"; arch = "linux-x86_64"; sha256 = "6e7efd621e941674038887d1e8d90c36d0ac06a095386caa01d228494228be14"; } - { locale = "kn"; arch = "linux-i686"; sha256 = "062ebd6b27ef9094e65e60ad64be30470ed58eb2d92f247a87a781b97e0654d9"; } - { locale = "kn"; arch = "linux-x86_64"; sha256 = "e88428b1cd2e1919336dda303d8795bd02e4967ba8c6d2830205f68fa4c528d0"; } - { locale = "ko"; arch = "linux-i686"; sha256 = "6c43a7f86f908cccc7ca3a7ed45f95ea84b69e4a21ff1e1d58136ea19bf7bd2c"; } - { locale = "ko"; arch = "linux-x86_64"; sha256 = "9db2bfd818d82ee0c9bc35b6fd651ad8fe80f8d73d51326fde25fc4c2aaa295c"; } - { locale = "lij"; arch = "linux-i686"; sha256 = "be87fc2a6863f33f9ff9ad2990e1e6425a65002f2ee411a254dde80cbd5a31c4"; } - { locale = "lij"; arch = "linux-x86_64"; sha256 = "9cfb239df8195cfa355bc8ddaf63accd865de21086c5bc3180b2ad9886445f3e"; } - { locale = "lt"; arch = "linux-i686"; sha256 = "11e18e6baac8f31c62a301e8ee51056c707ca47332fbeb6f3492e8eaffa25c57"; } - { locale = "lt"; arch = "linux-x86_64"; sha256 = "3bb4dca607abc4e08300dfa61667d2f2b06661f47cf0029d078e14fa4686d4b8"; } - { locale = "lv"; arch = "linux-i686"; sha256 = "bc484992f230229ab4ab6d47fab9664f43341ad1202010f5dea91d2d78200c85"; } - { locale = "lv"; arch = "linux-x86_64"; sha256 = "42bdc60ad7edf2ed3e82f765abfc3815f98095adc2988f8d809a8834eada63ef"; } - { locale = "mai"; arch = "linux-i686"; sha256 = "628f0685185f91e695af5ce9a536d9263305cfd747683ef33dccd0c90f3e1bfb"; } - { locale = "mai"; arch = "linux-x86_64"; sha256 = "688c33b159b4fcd23fb4c6d3a7f845d03929b4a8b02eaa2ebb93682b396c73a2"; } - { locale = "mk"; arch = "linux-i686"; sha256 = "a59b2a8ee82513ef78f3509afc4dba75ec3128f0f42c657bbbfbad117b981b36"; } - { locale = "mk"; arch = "linux-x86_64"; sha256 = "3058ff9ac581a65ee0713fe3707f8b98eace0f833b8e7b901fa397538e9503f0"; } - { locale = "ml"; arch = "linux-i686"; sha256 = "43c80f530ad3eaf7c138e16b23b9eb32afc1f774374fe213f580cf68e4d0e245"; } - { locale = "ml"; arch = "linux-x86_64"; sha256 = "43f061317f9eb5a174cd13539bb3972535b552113d38c05d9888e7a37346ef22"; } - { locale = "mr"; arch = "linux-i686"; sha256 = "30c0ee68eadffcc95271f1e7c1c1b0151ee21ca3744fad61a723a9a6bfb751b0"; } - { locale = "mr"; arch = "linux-x86_64"; sha256 = "d9dd27af41ca021f323499be556d208f69b706aff079c8d7392c7f19092705d8"; } - { locale = "ms"; arch = "linux-i686"; sha256 = "adb5e1968c66378ff9b59dc57c00a2c953ad1f54f67e1bc40abc499bcf79653f"; } - { locale = "ms"; arch = "linux-x86_64"; sha256 = "3e4b43a88b3aa2887673e1962fa4ccbd895640113e683c849a3c9733677e1fe1"; } - { locale = "nb-NO"; arch = "linux-i686"; sha256 = "f4be0cff21abdc80fba10db2bf781fecfb4e503c70cb95a8b083c5f7123f8dc8"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "e9b191268a6694805a5ba86559e798c9a4e29eae39a7f64dab92a925fb31611d"; } - { locale = "nl"; arch = "linux-i686"; sha256 = "581c73084993be0bf1ab23bb468674d062fb98e99573d823e977a263b4cfaa91"; } - { locale = "nl"; arch = "linux-x86_64"; sha256 = "3fd8929341ae048187379b7648ec8e008ace53e4a5f0af1421ecabcb5ad3bf61"; } - { locale = "nn-NO"; arch = "linux-i686"; sha256 = "b2104d5895a727903f6a273888989887542ad9e61c998cc651bb24d64efc6cfd"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "1bf582e66da985cbb01c22f865fc291196c55b14d2f84516f68f184ea842a664"; } - { locale = "or"; arch = "linux-i686"; sha256 = "1ffbc776fb3ae030e6dedea009b71873bff57f9294e63331404b53e1ba36499c"; } - { locale = "or"; arch = "linux-x86_64"; sha256 = "b988f433a238b2cb3766042d911a1f002a5f91a47dbed5b937f70cb59ed060d2"; } - { locale = "pa-IN"; arch = "linux-i686"; sha256 = "6ba4941b5bef7b860194114c2704662a42f9f3007a0b634662e42f38c0aa601a"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "0d9920d4b358cfdcf8cdf4b2d2e07ceb191709eee9dbae4c59f9dbfcfffbf0f5"; } - { locale = "pl"; arch = "linux-i686"; sha256 = "e080fb35bf49f9eb2fc39a435a188164eedf2ea7a24f8e950d62567620a91954"; } - { locale = "pl"; arch = "linux-x86_64"; sha256 = "cc37624f0c1e82d2de2048129f58e85fe8a518ee4b0ebdbee0a5205517602cf9"; } - { locale = "pt-BR"; arch = "linux-i686"; sha256 = "d19bf65889c686cbb284e697e8ba1315b6ec004b57096725fb576898ef105346"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "0d00d2d0bbc6045117c4df93045f70ebe0468e004504a06dfc508bfca6c6df1f"; } - { locale = "pt-PT"; arch = "linux-i686"; sha256 = "5225afadf2ea62792376dfda1d2b3533d986f1ee3a281781a5be294b8883ac8b"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "0c1d841ba80e32d51d41c99b551e68c6b591e97af4ccee4d7c7d6ef03f8707ea"; } - { locale = "rm"; arch = "linux-i686"; sha256 = "2cc9200a132c967a7158f5422dad8f4b2d90dfc7e46ada305daebabc44806de8"; } - { locale = "rm"; arch = "linux-x86_64"; sha256 = "0dff628773d4f2e24b767501b9c768586a27e82c0e8b259ef1cc676985ad0125"; } - { locale = "ro"; arch = "linux-i686"; sha256 = "500142fe612fe6144a14ebaad486da04050940a755e205297473c1be6b9dc428"; } - { locale = "ro"; arch = "linux-x86_64"; sha256 = "f3a57abec8553c8b9d8db9fb5600cd7b6e1189ebf0225df96608eaf2863e41b3"; } - { locale = "ru"; arch = "linux-i686"; sha256 = "1266ed09db881af90794bef049cdfee777d7179026de8c0de2931275f3f288e9"; } - { locale = "ru"; arch = "linux-x86_64"; sha256 = "0f1b44177633149aaa31574ba3cf343971bd4e11ac6b4bb92a5875b6a30a42af"; } - { locale = "si"; arch = "linux-i686"; sha256 = "e027afd86b00379c12e014b8d0d11a05811c598f53490edf7070e7acccbf0d79"; } - { locale = "si"; arch = "linux-x86_64"; sha256 = "518c19c5351a2c1bd05afe63e9d8c2a0be3a9cedccf7aa1d84d1af9de7ecf7fd"; } - { locale = "sk"; arch = "linux-i686"; sha256 = "e3dcda7406d00166a601b77fbdf0b84181ba5372f760eb08d5476fe9d219caef"; } - { locale = "sk"; arch = "linux-x86_64"; sha256 = "019c03ecd24f394b0ff76aff5cd9f0db017ffd3b8dd65388c4f5ee3188e77a6c"; } - { locale = "sl"; arch = "linux-i686"; sha256 = "a88391cc29643277f9d8c58a205ac959af825326b61c16361d4def6f7da31235"; } - { locale = "sl"; arch = "linux-x86_64"; sha256 = "fcf45e13a0bc543988495a83e5e96400707564d2ed4fcd0579219c999ee71e83"; } - { locale = "son"; arch = "linux-i686"; sha256 = "a75e273e01df51ffbe2c8666545f1e6f4d00af373d7aac08978947d7afc1e5f4"; } - { locale = "son"; arch = "linux-x86_64"; sha256 = "9f28df29d980e6c7467e99b2b81740cb078ce8e6896fe4e2a6b1473770e6bef5"; } - { locale = "sq"; arch = "linux-i686"; sha256 = "2243773d7d38608e17233e1d98e4fc1ca19f40f27a3e87557ad7fbd958c080ba"; } - { locale = "sq"; arch = "linux-x86_64"; sha256 = "c18faf9d8971c43db18fcc66329a85018a04e8cf4819c4843d826bc86414cadb"; } - { locale = "sr"; arch = "linux-i686"; sha256 = "0cd5e6a3910923aed9a88fafd95bc11263de7359c38685e209212339bb2f50dc"; } - { locale = "sr"; arch = "linux-x86_64"; sha256 = "1ec48c65323b15332932060ec5193908d89715736bd0abd88472dc05e639a62a"; } - { locale = "sv-SE"; arch = "linux-i686"; sha256 = "6718eb3e71a3d4f5487b80bbd784fd61422345f94d3271f6de6f6feab9e2f6da"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "5b356a6334d424b5e47ea4b1c32403a858ff5dc8727bbc0b2f72e6a29c9b625f"; } - { locale = "ta"; arch = "linux-i686"; sha256 = "fdb4e36497a61af9badb848a067eff4e4dada7dfffefbfe6bb7266ad89a8707a"; } - { locale = "ta"; arch = "linux-x86_64"; sha256 = "de5f0b871425412f9f261eff5b1abb3ddbd40f588647fd8e174e2d6c5ba17b90"; } - { locale = "te"; arch = "linux-i686"; sha256 = "0cc82774a46580c9e2f890848f705b1dc4effac197a902f9d244f0b6f6258650"; } - { locale = "te"; arch = "linux-x86_64"; sha256 = "65ceda67a572053dd4d9e15b9bd47c91364651736417414d4ca4a0a7ded9775a"; } - { locale = "th"; arch = "linux-i686"; sha256 = "1c0084ed26218713c4606ab073bf09de888051e9dcc49652a87fb58209a8c614"; } - { locale = "th"; arch = "linux-x86_64"; sha256 = "5a70e29d282961e27350d26cf164472fe51247db1d7d1228dca693423c32d0a6"; } - { locale = "tr"; arch = "linux-i686"; sha256 = "f7fa2029a36eda63544beebb6534fc2f8432c87d7a8d08d4c8927275e659b686"; } - { locale = "tr"; arch = "linux-x86_64"; sha256 = "1e3744f5908164e163818522fa902bd57edb62837b2b399983ea5a4ed487cda8"; } - { locale = "uk"; arch = "linux-i686"; sha256 = "0f465eda0f7e87eef88bc17b3e6868ad90a270e6993d327fecca532637442df4"; } - { locale = "uk"; arch = "linux-x86_64"; sha256 = "6530af36cfab509fff37519b435c7939110c000dbdd94000fe964283a14b1622"; } - { locale = "uz"; arch = "linux-i686"; sha256 = "7ee5997bcb4915c3907cee90e350e3bc2b67965975faecffa738a728cf2e12e3"; } - { locale = "uz"; arch = "linux-x86_64"; sha256 = "d7b34e36bcb423977a2a7667504c096730ca684c9f2e861b17e8f0174f5bb0d0"; } - { locale = "vi"; arch = "linux-i686"; sha256 = "e9497a8eed98ec34b31e3b1ec7086a4d219121f0edf21fd8f6a01599afa41f12"; } - { locale = "vi"; arch = "linux-x86_64"; sha256 = "b94fbaee83014b88490bf19cc37dbda87fb9260ed5879be3b688a2abbe709a87"; } - { locale = "xh"; arch = "linux-i686"; sha256 = "d5a86db6b9f3bb5162a86f976cbbc01f542a924c05729eb54a2c24dabc711065"; } - { locale = "xh"; arch = "linux-x86_64"; sha256 = "d765b2d324e89119fee522ad8972031c8727841c2fa2700d010be7d23633bbbc"; } - { locale = "zh-CN"; arch = "linux-i686"; sha256 = "fb3bbc44952207f42112c291dccb82f02fbd23bba7b54b06a1047809d2bb18d2"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "255d19959cb0e0efbcb2eeceb39b43bbb567ab2474af4da6675574a0110781e1"; } - { locale = "zh-TW"; arch = "linux-i686"; sha256 = "cfc90ac621dc57d7eb922c564aa3a7d5ad7f2aacc95196606d34cba7b7e30d1a"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "ff119be821acb8f99a485a60de506123c76a7a3a13ac678576248f97ff1ab882"; } + { 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"; } ]; } From 973219c97327a59d787fab9e41aee78e12d30f51 Mon Sep 17 00:00:00 2001 From: Mango Chutney Date: Wed, 9 Mar 2016 01:22:19 +0000 Subject: [PATCH 0112/1059] vsftpd.nix: Add possibility to add RSA key file --- nixos/modules/services/networking/vsftpd.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/nixos/modules/services/networking/vsftpd.nix b/nixos/modules/services/networking/vsftpd.nix index e7301e9ef5f..7ec484941ed 100644 --- a/nixos/modules/services/networking/vsftpd.nix +++ b/nixos/modules/services/networking/vsftpd.nix @@ -85,6 +85,9 @@ let ssl_enable=YES rsa_cert_file=${cfg.rsaCertFile} ''} + ${optionalString (cfg.rsaKeyFile != null) '' + rsa_private_key_file=${cfg.rsaKeyFile} + ''} ${optionalString (cfg.userlistFile != null) '' userlist_file=${cfg.userlistFile} ''} @@ -147,6 +150,12 @@ in description = "RSA certificate file."; }; + rsaKeyFile = mkOption { + type = types.nullOr types.path; + default = null; + description = "RSA private key file."; + }; + anonymousUmask = mkOption { type = types.string; default = "077"; From e3ae435aad201ed5a4e0de551f20a77582a550e3 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Wed, 9 Mar 2016 02:51:46 +0100 Subject: [PATCH 0113/1059] dnscrypt-proxy service: fix default resolver name The "opendns" resolver has changed name to "cisco", causing the default dnscrypt-proxy configuration to fail. --- nixos/modules/services/networking/dnscrypt-proxy.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/dnscrypt-proxy.nix b/nixos/modules/services/networking/dnscrypt-proxy.nix index c724ee979c2..9082c5e7892 100644 --- a/nixos/modules/services/networking/dnscrypt-proxy.nix +++ b/nixos/modules/services/networking/dnscrypt-proxy.nix @@ -49,7 +49,7 @@ in ''; }; resolverName = mkOption { - default = "opendns"; + default = "cisco"; type = types.nullOr types.string; description = '' The name of the upstream DNSCrypt resolver to use. See From e7cfccbcc2416b39e03b771527673b718dfb3bce Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Wed, 9 Mar 2016 04:10:19 +0100 Subject: [PATCH 0114/1059] dnscrypt-proxy service: fix apparmor profile The daemon additionally requires libcap, liblz4, and libattr. --- nixos/modules/services/networking/dnscrypt-proxy.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/modules/services/networking/dnscrypt-proxy.nix b/nixos/modules/services/networking/dnscrypt-proxy.nix index 9082c5e7892..9bb28838878 100644 --- a/nixos/modules/services/networking/dnscrypt-proxy.nix +++ b/nixos/modules/services/networking/dnscrypt-proxy.nix @@ -130,6 +130,9 @@ in ${pkgs.xz}/lib/liblzma.so.* mr, ${pkgs.libgcrypt}/lib/libgcrypt.so.* mr, ${pkgs.libgpgerror}/lib/libgpg-error.so.* mr, + ${pkgs.libcap}/lib/libcap.so.* mr, + ${pkgs.lz4}/lib/liblz4.so.* mr, + ${pkgs.attr}/lib/libattr.so.* mr, ${resolverListFile} r, } From 1371084ae1f29f8890e65bcc872c1b1eedf17def Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Sat, 5 Mar 2016 18:11:21 -0500 Subject: [PATCH 0115/1059] goPackages: make it easier to automate updates This moves all of the revision and sha256 data to separate JSON file. --- pkgs/top-level/go-packages.json | 1704 +++++++++++++++++++++++++++++++ pkgs/top-level/go-packages.nix | 1518 +++++---------------------- 2 files changed, 1946 insertions(+), 1276 deletions(-) create mode 100644 pkgs/top-level/go-packages.json diff --git a/pkgs/top-level/go-packages.json b/pkgs/top-level/go-packages.json new file mode 100644 index 00000000000..95e46093d56 --- /dev/null +++ b/pkgs/top-level/go-packages.json @@ -0,0 +1,1704 @@ +{ + "10gen": { + "openssl": { + "rev": "4c6dbafa5ec35b3ffc6a1b1e1fe29c3eba2053ec", + "sha256": "1033c9vgv9lf8ks0qjy0ylsmx1hizqxa6izalma8vi30np6ka6zn" + } + }, + "18F": { + "hmacauth": { + "rev": "9232a6386b737d7d1e5c1c6e817aa48d5d8ee7cd", + "sha256": "056mcqrf2bv0g9gn2ixv19srk613h4sasl99w9375mpvmadb3pz1" + } + }, + "9fans": { + "go": { + "rev": "65b8cf069318223b1e722b4b36e729e5e9bb9eab", + "sha256": "0kzyxhs2xf0339nlnbm9gc365b2svyyjxnr86rphx5m072r32ims" + } + }, + "AcalephStorage": { + "consul-alerts": { + "rev": "6eb4bc556d5f926dbf15d86170664d35d504ae54", + "sha256": "191bmxix3nl4pr26hcdfxa9qpv5dzggjvi86h2slajgyd2rzn23b" + } + }, + "AdRoll": { + "hologram": { + "rev": "63014b81675e1228818bf36ef6ef0028bacad24b", + "sha256": "0k8g7dwrkxdvmzs4aa8zz39qa8r2danc4x40hrblcgjhfcwzxrzr" + } + }, + "BurntSushi": { + "toml": { + "rev": "056c9bc7be7190eaa7715723883caffa5f8fa3e4", + "sha256": "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw" + } + }, + "EricChiang": { + "pup": { + "rev": "9693b292601dd24dab3c04bc628f9ae3fa72f831", + "sha256": "04j3fy1vk6xap8ad7k3c05h9b5mg2n1vy9vcyg9rs02cb13d3sy0" + } + }, + "GeertJohan": { + "go.incremental": { + "rev": "92fd0ce4a694213e8b3dfd2d39b16e51d26d0fbf", + "sha256": "160cspmq73bk6cvisa6kq1dwrrp1yqpkrpq8dl69wcnaf91cbnml" + }, + "go.rice": { + "rev": "4f3c5af2322e393f305d9674845bc36cd1dea589", + "sha256": "01q2d5iwibwdl68gn8sg6dm7byc42hax3zmiqgmdw63ir1fsv4ag" + } + }, + "GoogleCloudPlatform": { + "gcloud-golang": { + "rev": "6335269abf9002cf5a84613c13cda6010842b834", + "sha256": "15xrqxna5ms0r634k3bfzyymn431dvqcjwbsap8ay60x371kzbwf" + } + }, + "Masterminds": { + "cookoo": { + "rev": "v1.2.0", + "sha256": "1mxqnxddny43k1shsvd39sfzfs0d20gv3vm9lcjp04g3b0rplck1" + }, + "glide": { + "rev": "0.6.1", + "sha256": "1v66c2igm8lmljqrrsyq3cl416162yc5l597582bqsnhshj2kk4m" + }, + "vcs": { + "rev": "1.4.0", + "sha256": "0590ww2av4407y7zy3bcmnr8i74fv00k9zzcxcpjxivl6qszna0d" + } + }, + "PuerkitoBio": { + "goquery": { + "rev": "f065786d418c9d22a33cad33decd59277af31471", + "sha256": "0bskm3nja1v3pmg7g8nqjkmpwz5p72h1h81y076x1z17zrjaw585" + }, + "purell": { + "rev": "d69616f51cdfcd7514d6a380847a152dfc2a749d", + "sha256": "0nma5i25j0y223ns7482lx4klcfhfwdr8v6r9kzrs0pwlq64ghs0" + } + }, + "Sirupsen": { + "logrus": { + "rev": "v0.9.0", + "sha256": "1m6vvd4pg4lwglhk54lv5mf6cc8h7bi0d9zb3gar4crz531r66y4" + } + }, + "aarzilli": { + "sandblast": { + "rev": "694d24817b9b7b8bacb6d458b7989b30d7fe3555", + "sha256": "1pj0bic3x89v44nr8ycqxwnafkiz3cr5kya4wfdfj5ldbs5xnq9l" + } + }, + "agl": { + "ed25519": { + "rev": "d2b94fd789ea21d12fac1a4443dd3a3f79cda72c", + "sha256": "1s8k6vdkmmh3lncfv6gza4dxjsfsdwsmma3sbhqispc0142h3qw3" + }, + "go-gtk": { + "rev": "6937b8d28cf70d583346220b966074cfd3a2e233", + "sha256": "0jnhsv7ypyhprpy0fndah22v2pbbavr3db6f9wxl1vf34qkns3p4" + }, + "pond": { + "rev": "bce6e0dc61803c23699c749e29a83f81da3c41b2", + "sha256": "1dmgbg4ak3jkbgmxh0lr4hga1nl623mh7pvsgby1rxl4ivbzwkh4" + }, + "xmpp-client": { + "rev": "525bd26cf5f56ec5aee99464714fd1d019c119ff", + "sha256": "0a1r08zs723ikcskmn6ylkdi3frcd0i0lkx30i9q39ilf734v253" + } + }, + "agtorre": { + "gocolorize": { + "rev": "v1.0.0", + "sha256": "1dj7s8bgw9qky344d0k9gz661c0m317a08a590184drw7m51hy9p" + } + }, + "akavel": { + "rsrc": { + "rev": "ba14da1f827188454a4591717fff29999010887f", + "sha256": "0g9fj10xnxcv034c8hpcgbhswv6as0d8l176c5nfgh1lh6klmmzc" + } + }, + "akhenakh": { + "gozim": { + "rev": "ea9b7c39cb1d13bd8bf19ba4dc4e2a16bab52f14", + "sha256": "1n50fdd56r3s1sgjbpa72nvdh50gfpf6fq55c077w2p3bxn6p8k6" + } + }, + "alecthomas": { + "kingpin": { + "rev": "21551c2a6259a8145110ca80a36e25c9d7624032", + "sha256": "1zhpqc4qxsw9lc1b4dwk5r42k9r702ihzrabs3mnsphvm9jx4l59" + }, + "template": { + "rev": "14fd436dd20c3cc65242a9f396b61bfc8a3926fc", + "sha256": "19rzvvcgvr1z2wz9xpqsmlm8syizbpxjp5zbzgakvrqlajpbjvx2" + }, + "units": { + "rev": "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a", + "sha256": "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl" + } + }, + "andybalholm": { + "cascadia": { + "rev": "54abbbf07a45a3ef346ebe903e0715d9a3c19352", + "sha256": "1z21w6p5bp7mi2pvicvcqc871k9s8a6262pkwyjm2qfc859c203m" + } + }, + "antonlindstrom": { + "mesos_stats": { + "rev": "0c6ea494c19bedc67ebb85ce3d187ec21050e920", + "sha256": "18ggyjf4nyn77gkn16wg9krp4dsphgzdgcr3mdflv6mvbr482ar4" + } + }, + "armon": { + "circbuf": { + "rev": "f092b4f207b6e5cce0569056fba9e1a2735cb6cf", + "sha256": "06kwwdwa3hskdh6ws7clj1vim80dyc3ldim8k9y5qpd30x0avn5s" + }, + "go-metrics": { + "rev": "b2d95e5291cdbc26997d1301a5e467ecbb240e25", + "sha256": "1jvdf98jlbyzbb9w159nifvv8fihrcs66drnl8pilqdjpmkmyyck" + }, + "go-radix": { + "rev": "fbd82e84e2b13651f3abc5ffd26b65ba71bc8f93", + "sha256": "16y64r1v054c2ln0bi5mrqq1cmvy6d6pnxk1glb8lw2g31ksa80c" + }, + "gomdb": { + "rev": "151f2e08ef45cb0e57d694b2562f351955dff572", + "sha256": "02wdhgfarmmwfbc75snd1dh6p9k9c1y2135apdm6mkr062qlxx61" + } + }, + "asciinema": { + "asciinema": { + "rev": "v1.1.1", + "sha256": "0k48k8815k433s25lh8my2swl89kczp0m2gbqzjlpy1xwmk06nxc" + } + }, + "aws": { + "aws-sdk-go": { + "rev": "127313c1b41e534a0456a68b6b3a16712dacb35d", + "sha256": "0gd4nzv5jl02qi7g0y8lv6jadk0p52bpbl1r7pfgy8mn1vfxs37m" + } + }, + "aybabtme": { + "rgbterm": { + "rev": "c07e2f009ed2311e9c35bca12ec00b38ccd48283", + "sha256": "1qph7drds44jzx1whqlrh1hs58k0wv0v58zyq2a81hmm72gsgzam" + } + }, + "beevik": { + "ntp": { + "rev": "0a5264e2563429030eb922f258229ae3fee5b5dc", + "sha256": "03fvgbjf2aprjj1s6wdc35wwa7k1w5phkixzvp5n1j21sf6w4h24" + } + }, + "beorn7": { + "perks": { + "rev": "b965b613227fddccbfffe13eae360ed3fa822f8d", + "sha256": "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk" + } + }, + "bitly": { + "go-hostpool": { + "rev": "d0e59c22a56e8dadfed24f74f452cea5a52722d2", + "sha256": "14ph12krn5zlg00vh9g6g08lkfjxnpw46nzadrfb718yl1hgyk3g" + }, + "go-simplejson": { + "rev": "18db6e68d8fd9cbf2e8ebe4c81a78b96fd9bf05a", + "sha256": "0lj9cxyncchlw6p35j0yym5q5waiz0giw6ri41qdwm8y3dghwwiy" + }, + "nsq": { + "rev": "v0.3.5", + "sha256": "1r7jgplzn6bgwhd4vn8045n6cmm4iqbzssbjgj7j1c28zbficy2f" + }, + "oauth2_proxy": { + "rev": "10f47e325b782a60b8689653fa45360dee7fbf34", + "sha256": "13f6kaq15f6ial9gqzrsx7i94jhd5j70js2k93qwxcw1vkh1b6si" + }, + "timer_metrics": { + "rev": "afad1794bb13e2a094720aeb27c088aa64564895", + "sha256": "1b717vkwj63qb5kan4b92kx4rg6253l5mdb3lxpxrspy56a6rl0c" + } + }, + "bkaradzic": { + "go-lz4": { + "rev": "74ddf82598bc4745b965729e9c6a463bedd33049", + "sha256": "1vdid8v0c2v2qhrg9rzn3l7ya1h34jirrxfnir7gv7w6s4ivdvc1" + } + }, + "blang": { + "semver": { + "rev": "31b736133b98f26d5e078ec9eb591666edfd091f", + "sha256": "19ifi0na4cj23q3h8xv89mx7p48y0ciymhmlrq9milm0xz80wk10" + } + }, + "blevesearch": { + "bleve": { + "rev": "fc34a97875840b2ae24517e7d746b69bdae9be90", + "sha256": "0ny7nvilrxmmzcdvpivwyrjkynnhc22c5gdrxzs421jly35jw8jx" + }, + "go-porterstemmer": { + "rev": "23a2c8e5cf1f380f27722c6d2ae8896431dc7d0e", + "sha256": "0rcfbrad79xd114h3dhy5d3zs3b5bcgqwm3h5ih1lk69zr9wi91d" + }, + "segment": { + "rev": "db70c57796cc8c310613541dfade3dce627d09c7", + "sha256": "09xfdlcc6bsrr5grxp6fgnw9p4cf6jc0wwa9049fd1l0zmhj2m1g" + } + }, + "bmizerany": { + "assert": { + "rev": "e17e99893cb6509f428e1728281c2ad60a6b31e3", + "sha256": "1lfrvqqmb09y6pcr76yjv4r84cshkd4s7fpmiy7268kfi2cvqnpc" + }, + "pat": { + "rev": "b8a35001b773c267eb260a691f4e5499a3531600", + "sha256": "11zxd45rvjm6cn3wzbi18wy9j4vr1r1hgg6gzlqnxffiizkycxmz" + }, + "perks": { + "rev": "d9a9656a3a4b1c2864fdb44db2ef8619772d92aa", + "sha256": "0f39b3zfm1zd6xcvlm6szgss026qs84n2j9y5bnb3zxzdkxb9w9n" + } + }, + "boltdb": { + "bolt": { + "rev": "957d850b5158a4eebf915476058e720f43459584", + "sha256": "193adhhsqdy0kyq1l1fi8pg2n6pwyrw4h607qm78qyi26f8i7vzf" + } + }, + "bradfitz": { + "gomemcache": { + "rev": "72a68649ba712ee7c4b5b4a943a626bcd7d90eb8", + "sha256": "1r8fpzwhakq8fsppc33n4iivq1pz47xhs0h6bv4x5qiip5mswwvg" + }, + "http2": { + "rev": "f8202bc903bda493ebba4aa54922d78430c2c42f", + "sha256": "0cza2126jbji5vijwk4dxs05hifnff04xcr0vhxvafs6hz3sacvr" + } + }, + "braintree": { + "manners": { + "rev": "0.4.0", + "sha256": "07985pbfhwlhbglr9zwh2wx8kkp0wzqr1lf0xbbxbhga4hn9q3ak" + } + }, + "bugsnag": { + "bugsnag-go": { + "rev": "v1.0.3", + "sha256": "1ymi5hrvd2nyfwfd12xll43gn00ii3bjb5ma9dfhaaxv2asi3ajx" + }, + "panicwrap": { + "rev": "e5f9854865b9778a45169fc249e99e338d4d6f27", + "sha256": "01afviklmgm25i82c0z9xkjgbrh0j1fm9a1adqfd2jqv0cm41k9d" + } + }, + "calmh": { + "du": { + "rev": "3c0690cca16228b97741327b1b6781397afbdb24", + "sha256": "1mv6mkbslfc8giv47kyl97ny0igb3l7jya5hc75sm54xi6g205wa" + }, + "logger": { + "rev": "c96f6a1a8c7b6bf2f4860c667867d90174799eb2", + "sha256": "1f67xbvvf210g5cqa84l12s00ynfbkjinhl8y6m88yrdb025v1vg" + }, + "luhn": { + "rev": "0c8388ff95fa92d4094011e5a04fc99dea3d1632", + "sha256": "1hfj1lx7wdpifn16zqrl4xml6cj5gxbn6hfz1f46g2a6bdf0gcvs" + }, + "xdr": { + "rev": "e467b5aeb65ca8516fb3925c84991bf1d7cc935e", + "sha256": "1bi4b2xkjzcr0vq1wxz14i9943k71sj092dam0gdmr9yvdrg0nra" + } + }, + "ccpaging": { + "log4go": { + "rev": "cb4cc51cd03958183d3b637d0750497d88c2f7a8", + "sha256": "0l9f86zzhla9hq35q4xhgs837283qrm4gxbp5lrwwls54ifiq7k2" + } + }, + "chai2010": { + "gettext-go": { + "rev": "783c0fb3da95b06dd89c4ba2771f1dc289ecc27c", + "sha256": "1iz4wjxc3zkj0xkfs88ig670gb08p1sd922l0ig2cxpjcfjp1y99" + } + }, + "cheggaaa": { + "pb": { + "rev": "e648e12b78cedf14ebb2fc1855033f07b034cfbb", + "sha256": "03k4cars7hcqqgdsd0minfls2p7gjpm8q6y8vknh1s68kvxd4xam" + } + }, + "cihub": { + "seelog": { + "rev": "c510775bb50d98213cfafca75a4bc5e3fddc8d8f", + "sha256": "1f0rwgqlffv1a7b05736a4gf4l9dn80wsfyqcnz6qd2skhwnzv29" + } + }, + "codegangsta": { + "cli": { + "rev": "142e6cd241a4dfbf7f07a018f1f8225180018da4", + "sha256": "1w8naax4gvkkxw5h31a2c2dwniw5hj92nv0hn6ybdlavffyax9h5" + } + }, + "coreos": { + "etcd": { + "rev": "v2.1.2", + "sha256": "1d3wl9rqbhkkdhfkjfrzjfcwz8hx315zbjbmij3pf62bc1p5nh60" + }, + "flannel": { + "rev": "v0.5.3", + "sha256": "0d9khv0bczvsaqnz16p546m4r5marmnkcrdhi0f3ajnwxb776r9p" + }, + "go-etcd": { + "rev": "9847b93751a5fbaf227b893d172cee0104ac6427", + "sha256": "1ihq01ayqzxvn6hca5j00vl189vi5lm78f0fy2wpk5mrm3xi01l4" + }, + "go-log": { + "rev": "70d039bee4b0e389e5be560491d8291708506f59", + "sha256": "1s95xmmhcgw4ascf4zr8c4ij2n4s3mr881nxcpmc61g0gb722b13" + }, + "go-systemd": { + "rev": "2688e91251d9d8e404e86dd8f096e23b2f086958", + "sha256": "0c1k3y5msc1xplhx0ksa7g08yqjaavns8s5zrfg4ig8az30gwlpa" + } + }, + "cpuguy83": { + "go-md2man": { + "rev": "71acacd42f85e5e82f70a55327789582a5200a90", + "sha256": "0hmkrq4gdzb6mwllmh4p1y7vrz7hyr8xqagpk9nyr5dhygvnnq2v" + } + }, + "cstrahan": { + "go-repo-root": { + "rev": "90041e5c7dc634651549f96814a452f4e0e680f9", + "sha256": "1rlzp8kjv0a3dnfhyqcggny0ad648j5csr2x0siq5prahlp48mg4" + } + }, + "daaku": { + "go.zipexe": { + "rev": "a5fe2436ffcb3236e175e5149162b41cd28bd27d", + "sha256": "0vi5pskhifb6zw78w2j97qbhs09zmrlk4b48mybgk5b3sswp6510" + } + }, + "darkcrux": { + "gopherduty": { + "rev": "f4906ce7e59b33a50bfbcba93e2cf58778c11fb9", + "sha256": "11w1yqc16fxj5q1y5ha5m99j18fg4p9lyqi542x2xbrmjqqialcf" + } + }, + "davecgh": { + "go-spew": { + "rev": "5215b55f46b2b919f50a1df0eaa5886afe4e3b3d", + "sha256": "15h9kl73rdbzlfmsdxp13jja5gs7sknvqkpq2qizq3qv3nr1x8dk" + } + }, + "daviddengcn": { + "go-colortext": { + "rev": "13eaeb896f5985a1ab74ddea58707a73d875ba57", + "sha256": "0618xs9lc5xfp5zkkb5j47dr7i30ps3zj5fj0zpv8afqh2cc689x" + } + }, + "dchest": { + "cssmin": { + "rev": "fb8d9b44afdc258bfff6052d3667521babcb2239", + "sha256": "09sdijfx5d05z4cd5k6lhl7k3kbpdf2amzlngv15h5v0fff9qw4s" + } + }, + "deis": { + "deis": { + "rev": "v1.12.2", + "sha256": "03lznzcij3gn08kqj2p6skifcdv5aw09dm6zxgvqw7nxx2n1j2ib" + } + }, + "dgnorton": { + "goback": { + "rev": "a49ca3c0a18f50ae0b8a247e012db4385e516cf4", + "sha256": "1nyg6sckwd0iafs9vcmgbga2k3hid2q0avhwj29qbdhj3l78xi47" + } + }, + "discordianfish": { + "nginx_exporter": { + "rev": "2cf16441591f6b6e58a8c0439dcaf344057aea2b", + "sha256": "0p9j0bbr2lr734980x2p8d67lcify21glwc5k3i3j4ri4vadpxvc" + } + }, + "docopt": { + "docopt-go": { + "rev": "854c423c810880e30b9fecdabb12d54f4a92f9bb", + "sha256": "1sddkxgl1pwlipfvmv14h8vg9b9wq1km427j1gjarhb5yfqhh3l1" + } + }, + "dustin": { + "go-humanize": { + "rev": "8929fe90cee4b2cb9deb468b51fb34eba64d1bf0", + "sha256": "1g155kxjh6hd3ibx41nbpj6f7h5bh54zgl9dr53xzg2xlxljgjy0" + } + }, + "dustinkirkland": { + "golang-petname": { + "rev": "13f8b3a4326b9a6579358543cffe82713c1d6ce4", + "sha256": "1xx6lpv1r2sji8m9w35a2fkr9v4vsgvxrrahcq9bdg75qvadq91d" + } + }, + "eckardt": { + "influxdb-go": { + "rev": "8b71952efc257237e077c5d0672e936713bad38f", + "sha256": "1hzrqiigwcwd5f6zqpzqffddfffvd52an712kbv54ji16a7kk6j8" + } + }, + "ehmry": { + "go-bencode": { + "rev": "v1.1.1", + "sha256": "1wlyv6cvwb6dxvmqwkwnra6cr78kf8dx6x8hybgrznwc29h1vhw8" + } + }, + "eknkc": { + "amber": { + "rev": "144da19a9994994c069f0693294a66dd310e14a4", + "sha256": "079wwdq4cn9i1vx5zik16z4bmghkc7zmmvbrp1q6y4cnpmq95rqk" + } + }, + "elazarl": { + "go-bindata-assetfs": { + "rev": "d5cac425555ca5cf00694df246e04f05e6a55150", + "sha256": "636ce247ff6f85c14f38a421f46662fa77bdc29762692e1f72b3cd1f9d7a1d17" + }, + "goproxy": { + "rev": "2624781dc373cecd1136cafdaaaeba6c9bb90e96", + "sha256": "1zz425y8byjaa9i7mslc9anz9w2jc093fjl0562rmm5hh4rc5x5f" + } + }, + "emicklei": { + "go-restful": { + "rev": "892402ba11a2e2fd5e1295dd633481f27365f14d", + "sha256": "0gr9f53vayc6501a1kaw4p3h9pgf376cgxsfnr3f2dvp0xacvw8x" + } + }, + "encryptio": { + "git-annex-remote-b2": { + "rev": "v0.2", + "sha256": "1139rzdvlj3hanqsccfinprvrzf4qjc5n4f0r21jp9j24yhjs6j2" + } + }, + "etsy": { + "hound": { + "rev": "0a364935ba9db53e6f3f5563b02fcce242e0930f", + "sha256": "0jhnjskpm15nfa1cvx0h214lx72zjvnkjwrbgwgqqyn9afrihc7q" + } + }, + "exercism": { + "cli": { + "rev": "v2.2.1", + "sha256": "13kwcxd7m3xv42j50nlm9dd08865dxji41glfvnb4wwq9yicyn4g" + } + }, + "fatih": { + "color": { + "rev": "9aae6aaa22315390f03959adca2c4d395b02fcef", + "sha256": "1vjcgx4xc0h4870qzz4mrh1l0f07wr79jm8pnbp6a2yd41rm8wjp" + }, + "pool": { + "rev": "v2.0.0", + "sha256": "1jlrakgnpvhi2ny87yrsj1gyrcncfzdhypa9i2mlvvzqlj4r0dn0" + }, + "structs": { + "rev": "a9f7daa9c2729e97450c2da2feda19130a367d8f", + "sha256": "0pyrc7svc826g37al3db19n5l4r2m9h1mlhjh3hz2r41xfaqia50" + } + }, + "feyeleanor": { + "raw": { + "rev": "724aedf6e1a5d8971aafec384b6bde3d5608fba4", + "sha256": "0z4dcnadgk0fbxxd14dqa1wzzr0v3ksqlzd0swzs2mipim5wjgsz" + }, + "sets": { + "rev": "6c54cb57ea406ff6354256a4847e37298194478f", + "sha256": "1l3hyl8kmwb9k6qi8x4w54g2cmydap0g3cqvs47bhvm47rg1j1zc" + }, + "slices": { + "rev": "bb44bb2e4817fe71ba7082d351fd582e7d40e3ea", + "sha256": "1miqhzqgww41d8xbvmxfzx9rsfxgw742nqz96mhjkxpadrxg870v" + } + }, + "flosch": { + "pongo2": { + "rev": "5e81b817a0c48c1c57cdf1a9056cf76bdee02ca9", + "sha256": "0fd7d79644zmcirsb1gvhmh0l5vb5nyxmkzkvqpmzzcg6yfczph8" + } + }, + "franela": { + "goreq": { + "rev": "72c51a544272e007ab3da4f7d9ac959b7af7af03", + "sha256": "0dnqbijdzp2dgsf6m934nadixqbv73q0zkqglaa956zzw0pyhcxp" + } + }, + "garyburd": { + "redigo": { + "rev": "535138d7bcd717d6531c701ef5933d98b1866257", + "sha256": "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v" + } + }, + "getsentry": { + "raven-go": { + "rev": "74c334d7b8aaa4fd1b4fc6aa428c36fed1699e28", + "sha256": "1356a7h8zp1mcywnr0y83w0h4qdblp65rcf9slbx667n8x2rzda8" + } + }, + "github": { + "git-lfs": { + "rev": "v1.1.1", + "sha256": "1m7kii57jrsb22m5x9v8xa3s1qmipfkpk6cscgxrbrj7g0a75fnc" + } + }, + "go-asn1-ber": { + "asn1-ber": { + "rev": "f4b6f4a84f5cde443d1925b5ec185ee93c2bdc72", + "sha256": "0qdyax6yw3hvplzqc2ykpihi3m5y4nii581ay0mxy9c54bzs2nk9" + } + }, + "go-check": { + "check": { + "rev": "871360013c92e1c715c2de6d06b54899468a8a2d", + "sha256": "1qhji81yxz3map937bf8lyp8j2qpwlbnag5pr5pf0qw3li2nciah" + } + }, + "go-inf": { + "inf": { + "rev": "c85f1217d51339c0fa3a498cc8b2075de695dae6", + "sha256": "1ykdk410vca8i35db2fp6qqcfx0bmx95k0xqd15wzsl0xjmyjk3y" + } + }, + "go-ldap": { + "ldap": { + "rev": "83e65426fd1c06626e88aa8a085e5bfed0208e29", + "sha256": "179lwaf0hvczl8g4xzkpcpzq25p1b23f7399bx5zl55iin62d8yz" + } + }, + "go-mgo": { + "mgo": { + "rev": "r2015.06.03", + "sha256": "1bwqbngdy0ghwpvarsz8rlrirdmjrda44aghihpfmin06hxy3zcd" + } + }, + "go-sql-driver": { + "mysql": { + "rev": "fb7299726d2e68745a8805b14f2ff44b5c2cfa84", + "sha256": "185af0x475hq2wmm2zdvxjyslkplf8zzqijdxa937zqxq63qiw4w" + } + }, + "go-tomb": { + "tomb": { + "rev": "14b3d72120e8d10ea6e6b7f87f7175734b1faab8", + "sha256": "1nza31jvkpka5431c4bdbirvjdy36b1b55sbzljqhqih25jrcjx5" + } + }, + "go-yaml": { + "yaml": { + "rev": "7ad95dd0798a40da1ccdff6dff35fd177b5edf40", + "sha256": "0d4jh46jq2yjg5dp00l7yl9ilhly7k4mfvi4harafd5ap5k9wnpb" + } + }, + "goamz": { + "goamz": { + "rev": "2a8fed5e89ab9e16210fc337d1aac780e8c7bbb7", + "sha256": "0rlinp0cvgw66qjndg4padr5s0wd3n7kjfggkx6czqj9bqaxcz4b" + } + }, + "gocql": { + "gocql": { + "rev": "53ea371a152ac188443fd3479f822ffecb0e9363", + "sha256": "0rqykhqgx7lrggcjyh053c3qddf130sgvsm27gndjv29rjrm874f" + } + }, + "godbus": { + "dbus": { + "rev": "a5942dec6340eb0d57f43f2003c190ce06e43dea", + "sha256": "1vk31wal7ncvjwvnb8q1myrkihv1np46f3q8dndi5k0csflbxxdf" + } + }, + "gogo": { + "protobuf": { + "rev": "932b70afa8b0bf4a8e167fdf0c3367cebba45903", + "sha256": "1djhv9ckqhyjnnqajjv8ivcwpmjdnml30l6zhgbjcjwdyz3nyzhx" + } + }, + "golang": { + "appengine": { + "rev": "72f4367c4f14a20a98dcc8b762953b40788407be", + "sha256": "1phjkb0f0xp08db3irbf5wzdsxzsddsig5wv70wvmnr44ijllh4f" + }, + "crypto": { + "rev": "575fdbe86e5dd89229707ebec0575ce7d088a4a6", + "sha256": "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa" + }, + "glog": { + "rev": "fca8c8854093a154ff1eb580aae10276ad6b1b5f", + "sha256": "1nr2q0vas0a2f395f4shjxqpas18mjsf8yhgndsav7svngpbbpg8" + }, + "groupcache": { + "rev": "604ed5785183e59ae2789449d89e73f3a2a77987", + "sha256": "1jh862mmgss71wls4yxv633agr7dk7y6h36npwqxbmhbz5c2q28l" + }, + "image": { + "rev": "8ab1ac6834edd43d91cbe24272897a87ce7e835e", + "sha256": "1ckr7yh5dx2kbvp9mis7i090ss9qcz46sazrj9f2hw4jj5g3y7dr" + }, + "lint": { + "rev": "7b7f4364ff76043e6c3610281525fabc0d90f0e4", + "sha256": "1bj7zv534hyh87bp2vsbhp94qijc5nixb06li1dzfz9n0wcmlqw9" + }, + "net": { + "rev": "ea47fc708ee3e20177f3ca3716217c4ab75942cb", + "sha256": "0x1pmg97n7l62vak9qnjdjrrfl98jydhv6j0w3jkk4dycdlzn30d" + }, + "oauth2": { + "rev": "397fe7649477ff2e8ced8fc0b2696f781e53745a", + "sha256": "0fza0l7iwh6llkq2yzqn7dxi138vab0da64lnghfj1p71fprjzn8" + }, + "protobuf": { + "rev": "59b73b37c1e45995477aae817e4a653c89a858db", + "sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa" + }, + "snappy": { + "rev": "723cc1e459b8eea2dea4583200fd60757d40097a", + "sha256": "0bprq0qb46f5511b5scrdqqzskqqi2z8b4yh3216rv0n1crx536h" + }, + "sys": { + "rev": "d9157a9621b69ad1d8d77a1933590c416593f24f", + "sha256": "1asdbp7rj1j1m1aar1a022wpcwbml6zih6cpbxaw7b2m8v8is931" + }, + "text": { + "rev": "5eb8d4684c4796dd36c74f6452f2c0fa6c79597e", + "sha256": "1cjwm2pv42dbfqc6ylr7jmma902zg4gng5aarqrbjf1k2nf2vs14" + }, + "tools": { + "rev": "b48dc8da98ae78c3d11f220e7d327304c84e623a", + "sha256": "187p3jjxrw2qjnzqwwrq7f9w10zh6vcnwnfl3q7ms8rbiffpjy5c" + } + }, + "google": { + "codesearch": { + "rev": "a45d81b686e85d01f2838439deaf72126ccd5a96", + "sha256": "12bv3yz0l3bmsxbasfgv7scm9j719ch6pmlspv4bd4ix7wjpyhny" + }, + "git-appraise": { + "rev": "v0.3", + "sha256": "124hci9whsvlcywsfz5y20kkj3nhy176a1d5s1lkvsga09yxq6wm" + }, + "go-github": { + "rev": "34fb8ee07214d23c3035c95691fe9069705814d6", + "sha256": "0ygh0f6p679r095l4bym8q4l45w2l3d8r3hx9xrnnppxq59i2395" + }, + "go-querystring": { + "rev": "547ef5ac979778feb2f760cdb5f4eae1a2207b86", + "sha256": "00ani7fhydcmlsm3n93nmj1hcqp2wmzvihnb1gdzynif1hw0530y" + }, + "google-api-go-client": { + "rev": "a5c3e2a4792aff40e59840d9ecdff0542a202a80", + "sha256": "1kigddnbyrl9ddpj5rs8njvf1ck54ipi4q1282k0d6b3am5qfbj8" + } + }, + "gorilla": { + "context": { + "rev": "215affda49addc4c8ef7e2534915df2c8c35c6cd", + "sha256": "1ybvjknncyx1f112mv28870n0l7yrymsr0861vzw10gc4yn1h97g" + }, + "mux": { + "rev": "5a8a0400500543e28b2886a8c52d21a435815411", + "sha256": "15w1bw14vx157r6v98fhy831ilnbzdsm5xzvs23j8hw6gnknzaw1" + }, + "websocket": { + "rev": "6eb6ad425a89d9da7a5549bc6da8f79ba5c17844", + "sha256": "0gljdfxqc94yb1kpqqrm5p94ph9dsxrzcixhdj6m92cwwa7z7p99" + } + }, + "gosuri": { + "uilive": { + "rev": "1b9b73fa2b2cc24489b1aba4d29a82b12cd0a71f", + "sha256": "0669f21hd5cw74irrfakdpvxn608cd5xy6s2nyp5kgcy2ijrq4ab" + }, + "uiprogress": { + "rev": "fd1c82df78a6c1f5ddbd3b6ec46407ea0acda1ad", + "sha256": "1s61vp2h6n1d8y1zqr2ca613ch5n18rx28waz6a8im94sgzzawp7" + } + }, + "grpc": { + "grpc-go": { + "rev": "d455e65570c07e6ee7f23275063fbf34660ea616", + "sha256": "08vra95hc8ihnj353680zhiqrv3ssw5yywkrifzb1zwl0l3cs2hr" + } + }, + "hanwen": { + "go-fuse": { + "rev": "324ea173d0a4d90e0e97c464a6ad33f80c9587a8", + "sha256": "0r5amgnpb4g7b6kpz42vnj01w515by4yhy64s5lqf3snzjygaycf" + }, + "go-mtpfs": { + "rev": "3ef47f91c38cf1da3e965e37debfc81738e9cd94", + "sha256": "1f7lcialkpkwk01f7yxw77qln291sqjkspb09mh0yacmrhl231g8" + }, + "usb": { + "rev": "69aee4530ac705cec7c5344418d982aaf15cf0b1", + "sha256": "01k0c2g395j65vm1w37mmrfkg6nm900khjrrizzpmx8f8yf20dky" + } + }, + "hashicorp": { + "aws-sdk-go": { + "rev": "e6ea0192eee4640f32ec73c0cbb71f63e4f2b65a", + "sha256": "1qrc2jl38marbarnl31sag7s0h18j2wx1cxkcqin5m1pqg62p4cn" + }, + "consul": { + "rev": "v0.5.2", + "sha256": "0p3lc1p346a5ipvkf15l94gn1ml3m7zz6bx0viark3hsv0a7iij7" + }, + "consul-migrate": { + "rev": "678fb10cdeae25ab309e99e655148f0bf65f9710", + "sha256": "18zqyzbc3pny700fnh4hi45i5mlsramqykikcr7lgyx7id6alf16" + }, + "consul-template": { + "rev": "v0.9.0", + "sha256": "1k64rjskzn7cxn7rxab978847jq8gr4zj4cnzgznhn44nzasgymj" + }, + "errwrap": { + "rev": "7554cd9344cec97297fa6649b055a8c98c2a1e55", + "sha256": "0kmv0p605di6jc8i1778qzass18m0mv9ks9vxxrfsiwcp4la82jf" + }, + "go-checkpoint": { + "rev": "88326f6851319068e7b34981032128c0b1a6524d", + "sha256": "1npasn9lmvx57nw3wkswwvl5k0wmn01jpalbwv832x5wq4r0nsz4" + }, + "go-multierror": { + "rev": "56912fb08d85084aa318edcf2bba735b97cf35c5", + "sha256": "0s01cqdab2f7fxkkjjk2wqx05a1shnwlvfn45h2pi3i4gapvcn0r" + }, + "go-syslog": { + "rev": "42a2b573b664dbf281bd48c3cc12c086b17a39ba", + "sha256": "1j53m2wjyczm9m55znfycdvm4c8vfniqgk93dvzwy8vpj5gm6sb3" + }, + "golang-lru": { + "rev": "7f9ef20a0256f494e24126014135cf893ab71e9e", + "sha256": "165x0p8plr3fwn4r1d11m3pxa3r8dhyk98z7x6ah35lf63jm2cwv" + }, + "hcl": { + "rev": "54864211433d45cb780682431585b3e573b49e4a", + "sha256": "07l2dydzjpdgm2d4a72hkmincn455j3nrafg6hs3c23bkvizj950" + }, + "logutils": { + "rev": "0dc08b1671f34c4250ce212759ebd880f743d883", + "sha256": "0rynhjwvacv9ibl2k4fwz0xy71d583ac4p33gm20k9yldqnznc7r" + }, + "mdns": { + "rev": "2b439d37011456df8ff83a70ffd1cd6046410113", + "sha256": "17zwk212zmyramnjylpvvrvbbsz0qb5crkhly6yiqkyll3qzpb96" + }, + "memberlist": { + "rev": "6025015f2dc659ca2c735112d37e753bda6e329d", + "sha256": "01s2gwnbgvwz4wshz9d4za0p12ji4fnapnlmz3jwfcmcwjpyqfb7" + }, + "net-rpc-msgpackrpc": { + "rev": "d377902b7aba83dd3895837b902f6cf3f71edcb2", + "sha256": "05q8qlf42ygafcp8zdyx7y7kv9vpjrxnp8ak4qcszz9kgl2cg969" + }, + "raft": { + "rev": "a8065f298505708bf60f518c09178149f3c06f21", + "sha256": "122mjijphas7ybbvssxv1r36sb8i907gdr9kvplnx6yg9w52j3mn" + }, + "raft-boltdb": { + "rev": "d1e82c1ec3f15ee991f7cc7ffd5b67ff6f5bbaee", + "sha256": "0p609w6x0h6bapx4b0d91dxnp2kj7dv0534q4blyxp79shv2a8ia" + }, + "raft-mdb": { + "rev": "4ec3694ffbc74d34f7532e70ef2e9c3546a0c0b0", + "sha256": "15l4n6zygwn3h118m2945h9jxkryaxxcgy8xij2rxjhzrzpfyj3i" + }, + "scada-client": { + "rev": "c26580cfe35393f6f4bf1b9ba55e6afe33176bae", + "sha256": "0s8xg49fa7d2d0vv8pi37f43rjrgkb7w6x6ydkikz1v8ccg05p3b" + }, + "serf": { + "rev": "668982d8f90f5eff4a766583c1286393c1d27f68", + "sha256": "1h05h5xhaj27r1mh5zshnykax29lqjhfc0bx4v9swiwb873c24qk" + }, + "vault": { + "rev": "v0.2.0", + "sha256": "133fwhzk8z3xb6mf6scmn5rbl6g4vqg4g4n6zw620fsn9wy1b9ni" + }, + "yamux": { + "rev": "b2e55852ddaf823a85c67f798080eb7d08acd71d", + "sha256": "0mr87my5m8lgc0byjcddlclxg34d07cpi9p78ps3rhzq7p37g533" + } + }, + "howeyc": { + "gopass": { + "rev": "10b54de414cc9693221d5ff2ae14fd2fbf1b0ac1", + "sha256": "0lsi89zx1i2f5vhm66zqn2drs7xi7ff8r1xlp6m58r99dddws57s" + } + }, + "ikawaha": { + "kagome": { + "rev": "1bbdbdd590e13a8c2f4508c67a079113cd7b9f51", + "sha256": "1isnjdkn9hnrkp5g37p2k5bbsrx0ma32v3icwlmwwyc5mppa4blb" + } + }, + "inconshreveable": { + "go-update": { + "rev": "d8b0b1d421aa1cbf392c05869f8abbc669bb7066", + "sha256": "0cvkik2w368fzimx3y29ncfgw7004qkbdf2n3jy5czvzn35q7dpa" + }, + "go-vhost": { + "rev": "c4c28117502e4bf00960c8282b2d1c51c865fe2c", + "sha256": "1rway6sls6fl2s2jk20ajj36rrlzh9944ncc9pdd19kifix54z32" + }, + "log15": { + "rev": "dc7890abeaadcb6a79a9a5ee30bc1897bbf97713", + "sha256": "15wgicl078h931n90rksgbqmfixvbfxywk3m8qkaln34v69x4vgp" + }, + "mousetrap": { + "rev": "9dbb96d2c3a964935b0870b5abaea13c98b483aa", + "sha256": "1f9g8vm18qv1rcb745a4iahql9vfrz0jni9mnzriab2wy1pfdl5b" + }, + "muxado": { + "rev": "f693c7e88ba316d1a0ae3e205e22a01aa3ec2848", + "sha256": "1vgiwwxhgx9c899f6ikvrs0w6vfsnypzalcqyr0mqm2w816r9hhs" + }, + "ngrok": { + "rev": "1.7.1", + "sha256": "1r4nc9knp0nxg4vglg7v7jbyd1nh1j2590l720ahll8a4fbsx5a4" + } + }, + "influxdb": { + "gomdb": { + "rev": "29fe330c5ab33c4e48470bd4b980bf522471190a", + "sha256": "0yg1jpr7lcaqh6i8n9wbs9r128kk541qjv06r9a6fp9vj56rqr3m" + }, + "influxdb": { + "rev": "v0.8.8", + "sha256": "0xpigp76rlsxqj93apjzkbi98ha5g4678j584l6hg57p711gqsdv" + } + }, + "inversepath": { + "interlock": { + "rev": "v2016.01.14", + "sha256": "0wabx6vqdxh2aprsm2rd9mh71q7c2xm6xk9a6r1bn53r9dh5wrsb" + } + }, + "ipfs": { + "go-ipfs": { + "rev": "7070b4d878baad57dcc8da80080dd293aa46cabd", + "sha256": "1b7aimnbz287fy7p27v3qdxnz514r5142v3jihqxanbk9g384gcd" + } + }, + "jacobsa": { + "oglematchers": { + "rev": "4fc24f97b5b74022c2a3f4ca7eed57ca29083d3e", + "sha256": "1jjvss4cmcd505aqhsyag15lmzjycgwwml9mfdigprxv3v8f3pnq" + }, + "oglemock": { + "rev": "d054ecee522bdce4481690cdeb09d1b4c44da4e1", + "sha256": "1sn6hj34c54x0svr68vcgm2l725x03ccpq6h3ypi3hrvzg349ykw" + }, + "ogletest": { + "rev": "7de485607c3f215cf92c1f793b5d5a7de46ec3c7", + "sha256": "0y4y20a84rhmp66x9d7nzlygiabky98wlbvx56h1hknm08gpskiz" + } + }, + "janimo": { + "textsecure": { + "rev": "505e129c42fc4c5cb2d105520cef7c04fa3a6b64", + "sha256": "0sdcqd89dlic0bllb6mjliz4x54rxnm1r3xqd5qdp936n7xs3mc6" + } + }, + "jehiah": { + "json2csv": { + "rev": "d82e60e6dc2a7d3bcf15314d1ecbebeffaacf0c6", + "sha256": "1fw0qqaz2wj9d4rj2jkfj7rb25ra106p4znfib69p4d3qibfjcsn" + } + }, + "jessevdk": { + "go-flags": { + "rev": "1b89bf73cd2c3a911d7b2a279ab085c4a18cf539", + "sha256": "027nglc5xx1cm03z9sisg0iqrhwcj6gh5z254rrpl8p4fwrxx680" + } + }, + "jmhodges": { + "levigo": { + "rev": "1ddad808d437abb2b8a55a950ec2616caa88969b", + "sha256": "1lmafyk7nglhig3n471jq4hmnqf45afj5ldb2jx0253f5ii4r2yq" + } + }, + "joho": { + "godotenv": { + "rev": "4ed13390c0acd2ff4e371e64d8b97c8954138243", + "sha256": "1wzgws4dnlavi14aw3jzdl3mdr348skgqaq8xx4j8l68irfqyh0p" + } + }, + "jstemmer": { + "gotags": { + "rev": "be986a34e20634775ac73e11a5b55916085c48e7", + "sha256": "071wyq90b06xlb3bb0l4qjz1gf4nnci4bcngiddfcxf2l41w1vja" + } + }, + "jteeuwen": { + "go-bindata": { + "rev": "a0ff2567cfb70903282db057e799fd826784d41d", + "sha256": "0d6zxv0hgh938rf59p1k5lj0ymrb8kcps2vfrb9kaarxsvg7y69v" + } + }, + "jtolds": { + "gls": { + "rev": "9a4a02dbe491bef4bab3c24fd9f3087d6c4c6690", + "sha256": "1gvgkx7llklz6plapb95fcql7d34i6j7anlvksqhdirpja465jnm" + } + }, + "juju": { + "ratelimit": { + "rev": "772f5c38e468398c4511514f4f6aa9a4185bc0a0", + "sha256": "02rs61ay6sq499lxxszjsrxp33m6zklds1xrmnr5fk73vpqfa28p" + } + }, + "julienschmidt": { + "httprouter": { + "rev": "6aacfd5ab513e34f7e64ea9627ab9670371b34e7", + "sha256": "00rrjysmq898qcrf2hfwfh9s70vwvmjx2kp5w03nz1krxa4zhrkl" + } + }, + "junegunn": { + "fzf": { + "rev": "0.11.1", + "sha256": "1zw1kq4d5sb1qia44q04i33yii9qwlwlwz8vxhln03d4631mhsra" + }, + "go-runewidth": { + "rev": "travisish", + "sha256": "07d612val59sibqly5d6znfkp4h4gjd77783jxvmiq6h2fwb964k" + }, + "go-shellwords": { + "rev": "35d512af75e283aae4ca1fc3d44b159ed66189a4", + "sha256": "c792abe5fda48d0dfbdc32a84edb86d884a0ccbd9ed49ad48a30cda5ba028a22" + } + }, + "kamilchm": { + "go2nix": { + "rev": "4c552dadd855e3694ed3499feb46dca9cd855f60", + "sha256": "1pwnm1vrjxvgl17pk9n1k5chmhgwxkrwp2s1bzi64xf12anibj63" + } + }, + "kardianos": { + "osext": { + "rev": "29ae4ffbc9a6fe9fb2bc5029050ce6996ea1d3bc", + "sha256": "1mawalaz84i16njkz6f9fd5jxhcbxkbsjnav3cmqq2dncv2hyv8a" + } + }, + "kelseyhightower": { + "confd": { + "rev": "v0.9.0", + "sha256": "0rz533575hdcln8ciqaz79wbnga3czj243g7fz8869db6sa7jwlr" + } + }, + "kimor79": { + "gollectd": { + "rev": "cf6dec97343244b5d8a5485463675d42f574aa2d", + "sha256": "1f3ml406cprzjc192csyr2af4wcadkc74kg8n4c0zdzglxxfsqxa" + } + }, + "kothar": { + "go-backblaze": { + "rev": "373819725fc560fa962c6cd883b533d2ebec4844", + "sha256": "1kmlwfnnfd4h46bb9pz2gw1hxqm1pzkwvidfmnc0zkrilaywk6fx" + } + }, + "kr": { + "binarydist": { + "rev": "9955b0ab8708602d411341e55fffd7e0700f86bd", + "sha256": "11wncbbbrdcxl5ff3h6w8vqfg4bxsf8709mh6vda0cv236flkyn3" + }, + "pretty": { + "rev": "bc9499caa0f45ee5edb2f0209fbd61fbf3d9018f", + "sha256": "1m61y592qsnwsqn76v54mm6h2pcvh4wlzbzscc1ag645x0j33vvl" + }, + "pty": { + "rev": "67e2db24c831afa6c64fc17b4a143390674365ef", + "sha256": "1l3z3wbb112ar9br44m8g838z0pq2gfxcp5s3ka0xvm1hjvanw2d" + }, + "text": { + "rev": "6807e777504f54ad073ecef66747de158294b639", + "sha256": "1wkszsg08zar3wgspl9sc8bdsngiwdqmg3ws4y0bh02sjx5a4698" + } + }, + "kylelemons": { + "go-gypsy": { + "rev": "42fc2c7ee9b8bd0ff636cd2d7a8c0a49491044c5", + "sha256": "04iy8rdk19n7i18bqipknrcb8lsy1vr4d1iqyxsxq6rmb7298iwj" + } + }, + "lib": { + "pq": { + "rev": "0dad96c0b94f8dee039aa40467f767467392a0af", + "sha256": "06c38iy37251mh8jy9s8n97b01pjnqpq8ii77nnmqh1dsph37jz4" + } + }, + "lsegal": { + "gucumber": { + "rev": "e8116c9c66e641e9f81fc0a79fac923dfc646378", + "sha256": "1ic1lsv05da6qv8xmf94lpbmaisxi8mwbv7bh2k1y78lh43yncah" + } + }, + "lxc": { + "go-lxc": { + "rev": "a0fa4019e64b385dfa2fb8abcabcdd2f66871639", + "sha256": "0fkkmn7ynmzpr7j0ha1qsmh3k86ncxcbajmcb90hs0k0iaaiaahz" + }, + "lxd": { + "rev": "lxd-0.17", + "sha256": "1yi3dr1bgdplc6nya10k5jsj3psbf3077vqad8x8cjza2z9i48fp" + } + }, + "magiconair": { + "properties": { + "rev": "v1.5.6", + "sha256": "043jhba7qbbinsij3yc475s1i42sxaqsb82mivh9gncpvnmnf6cl" + } + }, + "mailgun": { + "vulcand": { + "rev": "v0.8.0-beta.3", + "sha256": "08mal9prwlsav63r972q344zpwqfql6qw6v4ixbn1h3h32kk3ic6" + } + }, + "martingallagher": { + "gawp": { + "rev": "488705639109de54d38974cc31353d34cc2cd609", + "sha256": "0iqqd63nqdijdskdb9f0jwnm6akkh1p2jw4p2w7r1dbaqz1znyay" + } + }, + "mattn": { + "go-colorable": { + "rev": "40e4aedc8fabf8c23e040057540867186712faa5", + "sha256": "0pwc0s5lvz209dcyamv1ba1xl0c1r5hpxwlq0w5j2xcz8hzrcwkl" + }, + "go-isatty": { + "rev": "ae0b1f8f8004be68d791a576e3d8e7648ab41449", + "sha256": "0qrcsh7j9mxcaspw8lfxh9hhflz55vj4aq1xy00v78301czq6jlj" + }, + "go-sqlite3": { + "rev": "b4142c444a8941d0d92b0b7103a24df9cd815e42", + "sha256": "0xq2y4am8dz9w9aaq24s1npg1sn8pf2gn4nki73ylz2fpjwq9vla" + }, + "goreman": { + "rev": "d3e62509ccf23e47a390447886c51b1d89d0934b", + "sha256": "153hf4dq4jh1yv35pv30idmxhc917qzl590qy5394l48d4rapgb5" + } + }, + "matttproud": { + "golang_protobuf_extensions": { + "rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a", + "sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj" + } + }, + "mesos": { + "mesos-go": { + "rev": "d98afa618cc9a9251758916f49ce87f9051b69a4", + "sha256": "01ab0jf3cfb1rdwwb21r38rcfr5vp86pkfk28mws8298mlzbpri7" + } + }, + "mesosphere": { + "mesos-dns": { + "rev": "v0.1.2", + "sha256": "0zs6lcgk43j7jp370qnii7n55cd9pa8gl56r8hy4nagfvlvrcm02" + } + }, + "michaelmacinnis": { + "adapted": { + "rev": "eaea06aaff855227a71b1c58b18bc6de822e3e77", + "sha256": "0f28sn5mj48087zhjdrph2sjcznff1i1lwnwplx32bc5ax8nx5xm" + }, + "oh": { + "rev": "f3e482f664e76dcf98d5f94dd93c216da300b78e", + "sha256": "1j5g37jjl1kxri44ihb1bsrzx4al07dvl4s5dglb2m7bjia6iqs2" + } + }, + "miekg": { + "dns": { + "rev": "e59f851c912767b1db587dcabee6e6652e495c75", + "sha256": "1zcj4drmmskwvjy5ld54qd8a34ls9651ysl3q7c2bcambax5r0hp" + }, + "mmark": { + "rev": "eacb2132c31a489033ebb068432892ba791a2f1b", + "sha256": "0wsi6fb6f1qi1a8yv858bkgn8pmsspw2k6dx5fx38kvg8zsb4l1a" + } + }, + "mitchellh": { + "cli": { + "rev": "8102d0ed5ea2709ade1243798785888175f6e415", + "sha256": "08mj1l94pww72jy34gk9a483hpic0rrackskfw13r3ycy997w7m2" + }, + "copystructure": { + "rev": "6fc66267e9da7d155a9d3bd489e00dad02666dc6", + "sha256": "193s5vhw68d8npjyf5yvc5j24crazvy7d5dk316hl7590qrmbxrd" + }, + "go-homedir": { + "rev": "1f6da4a72e57d4e7edd4a7295a585e0a3999a2d4", + "sha256": "1l5lrsjrnwxn299mhvyxvz8hd0spkx0d31gszm4cyx21bg1xsiy9" + }, + "gox": { + "rev": "e8e6fd4fe12510cc46893dff18c5188a6a6dc549", + "sha256": "14jb2vgfr6dv7zlw8i3ilmp125m5l28ljv41a66c9b8gijhm48k1" + }, + "iochan": { + "rev": "b584a329b193e206025682ae6c10cdbe03b0cd77", + "sha256": "1fcwdhfci41ibpng2j4c1bqfng578cwzb3c00yw1lnbwwhaq9r6b" + }, + "mapstructure": { + "rev": "281073eb9eb092240d33ef253c404f1cca550309", + "sha256": "1zjx9fv29639sp1fn84rxs830z7gp7bs38yd5y1hl5adb8s5x1mh" + }, + "reflectwalk": { + "rev": "eecf4c70c626c7cfbb95c90195bc34d386c74ac6", + "sha256": "1nm2ig7gwlmf04w7dbqd8d7p64z2030fnnfbgnd56nmd7dz8gpxq" + } + }, + "mongodb": { + "mongo-tools": { + "rev": "4fcfd3e57415de95c0c016def07b95bca63cccb4", + "sha256": "0rm7bnb81hr0byxhvagwv8an1bky882nz68cmm2kbznzyprvhyaa" + } + }, + "mreiferson": { + "go-options": { + "rev": "7c174072188d0cfbe6f01bb457626abb22bdff52", + "sha256": "0ksyi2cb4k6r2fxamljg42qbz5hdcb9kv5i7y6cx4ajjy0xznwgm" + }, + "go-snappystream": { + "rev": "028eae7ab5c4c9e2d1cb4c4ca1e53259bbe7e504", + "sha256": "0jdd5whp74nvg35d9hzydsi3shnb1vrnd7shi9qz4wxap7gcrid6" + } + }, + "nsf": { + "gocode": { + "rev": "680a0fbae5119fb0dbea5dca1d89e02747a80de0", + "sha256": "1ay2xakz4bcn8r3ylicbj753gjljvv4cj9l4wfly55cj1vjybjpv" + }, + "termbox-go": { + "rev": "9aecf65084a5754f12d27508fa2e6ed56851953b", + "sha256": "16sak07bgvmax4zxfrd4jia1dgygk733xa8vk8cdx28z98awbfsh" + } + }, + "nsqio": { + "go-nsq": { + "rev": "v1.0.4", + "sha256": "06hrkwk84w8rshkanvfgmgbiml7n06ybv192dvibhwgk2wz2dl46" + } + }, + "odeke-em": { + "cache": { + "rev": "b51b08cb6cf889deda6c941a5205baecfd16f3eb", + "sha256": "1rmm1ky7irqypqjkk6qcd2n0xkzpaggdxql9dp9i9qci5rvvwwd4" + }, + "cli-spinner": { + "rev": "610063bb4aeef25f7645b3e6080456655ec0fb33", + "sha256": "13wzs2qrxd72ah32ym0ppswhvyimjw5cqaq3q153y68vlvxd048c" + }, + "command": { + "rev": "91ca5ec5e9a1bc2668b1ccbe0967e04a349e3561", + "sha256": "1ghckzr8h99ckagpmb15p61xazdjmf9mjmlym634hsr9vcj84v62" + }, + "drive": { + "rev": "6dc2f1e83032ea3911fa6147b846ee93f18dc544", + "sha256": "07s4nhfcr6vznf1amvl3a4wq2hn9zq871rcppfi4i6zs7iw2ay1v" + }, + "dts": { + "rev": "ec2daabf2f9078e887405f7bcddb3d79cb65502d", + "sha256": "0vq3cz4ab9vdsz9s0jjlp7z27w218jjabjzsh607ps4i8m5d441s" + }, + "exponential-backoff": { + "rev": "96e25d36ae36ad09ac02cbfe653b44c4043a8e09", + "sha256": "1as21p2jj8xpahvdxqwsw2i1s3fll14dlc9j192iq7xl1ybwpqs6" + }, + "extractor": { + "rev": "801861aedb854c7ac5e1329e9713023e9dc2b4d4", + "sha256": "036zmnqxy48h6mxiwywgxix2p4fqvl4svlmcp734ri2rbq3cmxs1" + }, + "google-api-go-client": { + "rev": "30f4c144b02321ebbc712f35dc95c3e72a5a7fdc", + "sha256": "1fidlljxnd82i2r9yia0b9gh0vv3hwb5k65papnvw7sqpc4sriby" + }, + "log": { + "rev": "cad53c4565a0b0304577bd13f3862350bdc5f907", + "sha256": "059c933qjikxlvaywzpzljqnab19svymbv6x32pc7khw156fh48w" + }, + "meddler": { + "rev": "d2b51d2b40e786ab5f810d85e65b96404cf33570", + "sha256": "0m0fqrn3kxy4swyk4ja1y42dn1i35rq9j85y11wb222qppy2342x" + }, + "pretty-words": { + "rev": "9d37a7fcb4ae6f94b288d371938482994458cecb", + "sha256": "1466wjhrg9lhqmzil1vf8qj16fxk32b5kxlcccyw2x6dybqa6pkl" + }, + "ripper": { + "rev": "bd1a682568fcb8a480b977bb5851452fc04f9ccb", + "sha256": "010jsclnmkaywdlyfqdmq372q7kh3qbz2zra0c4wn91qnkmkrnw1" + }, + "statos": { + "rev": "f27d6ab69b62abd9d9fe80d355e23a3e45d347d6", + "sha256": "17cpks8bi9i7p8j38x0wy60jb9g39wbzszcmhx4hlq6yzxr04jvs" + }, + "xon": { + "rev": "d580be739d723da4f6378083128f93017b8ab295", + "sha256": "07a7zj01d4a23xqp01m48jp2v5mw49islf4nbq2rj13sd5w4s6sc" + } + }, + "olekukonko": { + "tablewriter": { + "rev": "bc39950e081b457853031334b3c8b95cdfe428ba", + "sha256": "0n4gqjc2dqmnbpqgi9i8vrwdk4mkgyssc7l2n4r5bqx0n3nxpbps" + } + }, + "onsi": { + "ginkgo": { + "rev": "5ed93e443a4b7dfe9f5e95ca87e6082e503021d2", + "sha256": "0ghrx5qmgvgb8cbvsj53v1ir4j9agilg4wyhpk5ikqdv6mmqly4h" + }, + "gomega": { + "rev": "8adf9e1730c55cdc590de7d49766cb2acc88d8f2", + "sha256": "1rf6cxn50d1pji3pv4q372s395r5nxwcgp405z2r2mfdkri4v3w4" + } + }, + "opennota": { + "urlesc": { + "rev": "5fa9ff0392746aeae1c4b37fcc42c65afa7a9587", + "sha256": "0dppkmfs0hb5vcqli191x9yss5vvlx29qxjcywhdfirc89rn0sni" + } + }, + "opsgenie": { + "opsgenie-go-sdk": { + "rev": "c6e1235dfed2126eb9b562c4d776baf55ccd23e3", + "sha256": "1prvnjiqmhnp9cggp9f6882yckix2laqik35fcj32117ry26p4jm" + } + }, + "paulrosania": { + "go-charset": { + "rev": "61cdee49014dc952076b5852ce4707137eb36b64", + "sha256": "0jp6rwxlgl66dipk6ssk8ly55jxncvsxs7jc3abgdrhr3rzccab8" + } + }, + "pborman": { + "uuid": { + "rev": "cccd189d45f7ac3368a0d127efb7f4d08ae0b655", + "sha256": "0hswk9ihv3js5blp9pk2bpig64zkmyp5p1zhmgydfhb0dr2w8iad" + } + }, + "peterbourgon": { + "g2s": { + "rev": "ec76db4c1ac16400ac0e17ca9c4840e1d23da5dc", + "sha256": "1p4p8755v2nrn54rik7yifpg9szyg44y5rpp0kryx4ycl72307rj" + } + }, + "peterh": { + "liner": { + "rev": "ad1edfd30321d8f006ccf05f1e0524adeb943060", + "sha256": "0c24d9j1gnq7r982h1l2isp3d37379qw155hr8ihx9i2mhpfz317" + } + }, + "pmezard": { + "go-difflib": { + "rev": "d8ed2627bdf02c080bf22230dbb337003b7aba2d", + "sha256": "0w1jp4k4zbnrxh3jvh8fgbjgqpf2hg31pbj8fb32kh26px9ldpbs" + } + }, + "pmylund": { + "go-cache": { + "rev": "93d85800f2fa6bd0a739e7bd612bfa3bc008b72d", + "sha256": "08wfwm7nk381lv6a95p0hfgqwaksn0vhzz1xxdncjdw6w71isyy7" + } + }, + "prometheus": { + "alertmanager": { + "rev": "0.1.0", + "sha256": "1ya465bns6cj2lqbipmfm13wz8kxii5h9mm7lc0ba1xv26xx5zs7" + }, + "client_golang": { + "rev": "0.7.0", + "sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna" + }, + "client_model": { + "rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6", + "sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9" + }, + "collectd_exporter": { + "rev": "0.1.0", + "sha256": "165zsdn0lffb6fvxz75szmm152a6wmia5skb96k1mv59qbmn9fi1" + }, + "haproxy_exporter": { + "rev": "0.4.0", + "sha256": "0cwls1d4hmzjkwc50mjkxjb4sa4q6yq581wlc5sg9mdvl6g91zxr" + }, + "log": { + "rev": "439e5db48fbb50ebbaf2c816030473a62f505f55", + "sha256": "1fl23gsw2hn3c1y91qckr661sybqcw2gqnd1gllxn3hp6p2w6hxv" + }, + "mesos_exporter": { + "rev": "0.1.0", + "sha256": "059az73j717gd960g4jigrxnvqrjh9jw1c324xpwaafa0bf10llm" + }, + "mysqld_exporter": { + "rev": "0.1.0", + "sha256": "10xnyxyb6saz8pq3ijp424hxy59cvm1b5c9zcbw7ddzzkh1f6jd9" + }, + "node_exporter": { + "rev": "0.11.0", + "sha256": "149fs9yxnbiyd4ww7bxsv730mcskblpzb3cs4v12jnq2v84a4kk4" + }, + "procfs": { + "rev": "c91d8eefde16bd047416409eb56353ea84a186e4", + "sha256": "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r" + }, + "prom2json": { + "rev": "0.1.0", + "sha256": "0wwh3mz7z81fwh8n78sshvj46akcgjhxapjgfic5afc4nv926zdl" + }, + "prometheus": { + "rev": "0.17.0", + "sha256": "176198krna2i37dfhwsqi7m36sqn175yiny6n52vj27mc9s8ggzx" + }, + "prometheus_cli": { + "rev": "0.3.0", + "sha256": "1qxqrcbd0d4mrjrgqz882jh7069nn5gz1b84rq7d7z1f1dqhczxn" + }, + "pushgateway": { + "rev": "0.1.1", + "sha256": "17q5z9msip46wh3vxcsq9lvvhbxg75akjjcr2b29zrky8bp2m230" + }, + "statsd_bridge": { + "rev": "0.1.0", + "sha256": "1fndpmd1k0a3ar6f7zpisijzc60f2dng5399nld1i1cbmd8jybjr" + } + }, + "rakyll": { + "statik": { + "rev": "274df120e9065bdd08eb1120e0375e3dc1ae8465", + "sha256": "0llk7bxmk66wdiy42h32vj1jfk8zg351xq21hwhrq7gkfljghffp" + } + }, + "rcrowley": { + "go-metrics": { + "rev": "1ce93efbc8f9c568886b2ef85ce305b2217b3de3", + "sha256": "06gg72krlmd0z3zdq6s716blrga95pyj8dc2f2psfbknbkyrkfqa" + } + }, + "remyoudompheng": { + "go-liblzma": { + "rev": "e74be71c3c60411922b5424e875d7692ea638b78", + "sha256": "12lwjmdcv2l98097rhvjvd2yz8jl741hxcg29i1c18grwmwxa7nf" + } + }, + "restic": { + "restic": { + "rev": "4d7e802c44369b40177cd52938bc5b0930bd2be1", + "sha256": "0lf40539dy2xa5l1xy1kyn1vk3w0fmapa1h65ciksrdhn89ilrxv" + } + }, + "revel": { + "revel": { + "rev": "v0.12.0", + "sha256": "1g88fw5lqh3a9qmx182s64zk3h1s1mx8bljyghissmd9z505pbzf" + } + }, + "rfjakob": { + "gocryptfs": { + "rev": "v0.5", + "sha256": "0jsdz8y7a1fkyrfwg6353c9r959qbqnmf2cjh57hp26w1za5bymd" + } + }, + "robfig": { + "config": { + "rev": "0f78529c8c7e3e9a25f15876532ecbc07c7d99e6", + "sha256": "0xmxy8ay0wzd307x7xba3rmigvr6rjlpfk9fmn6ir2nc97ifv3i0" + }, + "go-cache": { + "rev": "9fc39e0dbf62c034ec4e45e6120fc69433a3ec51", + "sha256": "032nh3y43bpzpcm7bdkxfh55aydvzc2jzhigvy5gd9f648m4j9ha" + }, + "pathtree": { + "rev": "41257a1839e945fce74afd070e02bab2ea2c776a", + "sha256": "087hvskjx1zw815h1617i135vwsn5288v579mz6yral91wbn0kvi" + } + }, + "rogpeppe": { + "godef": { + "rev": "ea14e800fd7d16918be88dae9f0195f7bd688586", + "sha256": "1wkvsz8nqwyp36wbm8vcw4449sfs46894nskrfj9qbsrjijvamyc" + }, + "govers": { + "rev": "3b5f175f65d601d06f48d78fcbdb0add633565b9", + "sha256": "0din5a7nff6hpc4wg0yad2nwbgy4q1qaazxl8ni49lkkr4hyp8pc" + } + }, + "russross": { + "blackfriday": { + "rev": "d18b67ae0afd61dae240896eae1785f00709aa31", + "sha256": "1l78hz8k1ixry5fjw29834jz1q5ysjcpf6kx2ggjj1s6xh0bfzvf" + } + }, + "ryanuber": { + "columnize": { + "rev": "44cb4788b2ec3c3d158dd3d1b50aba7d66f4b59a", + "sha256": "1qrqr76cw58x2hkjic6h88na5ihgvkmp8mqapj8kmjcjzdxkzhr9" + } + }, + "samuel": { + "go-zookeeper": { + "rev": "5bb5cfc093ad18a28148c578f8632cfdb4d802e4", + "sha256": "1kpx1ymh7rds0b2km291idnyqi0zck74nd8hnk72crgz7wmpqv6z" + } + }, + "satori": { + "go.uuid": { + "rev": "6b8e5b55d20d01ad47ecfe98e5171688397c61e9", + "sha256": "0injxzds41v8nc0brvyrrjl66fk3hycz6im38s5r9ccbwlp68p44" + } + }, + "shiena": { + "ansicolor": { + "rev": "a5e2b567a4dd6cc74545b8a4f27c9d63b9e7735b", + "sha256": "0gwplb1b4fvav1vjf4b2dypy5rcp2w41vrbxkd1dsmac870cy75p" + } + }, + "shurcooL": { + "sanitized_anchor_name": { + "rev": "10ef21a441db47d8b13ebcc5fd2310f636973c77", + "sha256": "1cnbzcf47cn796rcjpph1s64qrabhkv5dn9sbynsy7m9zdwr5f01" + } + }, + "skratchdot": { + "open-golang": { + "rev": "c8748311a7528d0ba7330d302adbc5a677ef9c9e", + "sha256": "0qhn2d00v3m9fiqk9z7swdm599clc6j7rnli983s8s1byyp0x3ac" + } + }, + "skynetservices": { + "skydns": { + "rev": "2.5.2b", + "sha256": "01vac6bd71wky5jbd5k4a0x665bjn1cpmw7p655jrdcn5757c2lv" + } + }, + "smartystreets": { + "assertions": { + "rev": "1.5.0", + "sha256": "0i5d72mb4rp69qjlp2zpnwgpd3dximyx609np74ckrsgbcgr58jz" + }, + "goconvey": { + "rev": "1.5.0", + "sha256": "0i5d72mb4rp69qjlp2zpnwgpd3dximyx609np74ckrsgbcgr58jz" + } + }, + "soundcloud": { + "go-runit": { + "rev": "a9148323a615e2e1c93b7a9893914a360b4945c8", + "sha256": "00f2rfhsaqj2wjanh5qp73phx7x12a5pwd7lc0rjfv68l6sgpg2v" + } + }, + "spacemonkeygo": { + "flagfile": { + "rev": "871ce569c29360f95d7596f90aa54d5ecef75738", + "sha256": "1y6wf1s51c90qc1aki8qikkw1wqapzjzr690xrmnrngsfpdyvkrc" + }, + "openssl": { + "rev": "71f9da2a482c2b7bc3507c3fabaf714d6bb8b75d", + "sha256": "1byxwiq4mcbsj0wgaxqmyndp6jjn5gm8fjlsxw9bg0f33a3kn5jk" + }, + "spacelog": { + "rev": "ae95ccc1eb0c8ce2496c43177430efd61930f7e4", + "sha256": "1i1awivsix0ch0vg6rwvx0536ziyw6phcx45b1rmrclp6b6dyacy" + } + }, + "spf13": { + "afero": { + "rev": "90b5a9bd18a72dbf3e27160fc47acfaac6c08389", + "sha256": "1xqvbwny61j85psymcs8hggmqyyg4yq3q4cssnvnvbsl3aq8kn4k" + }, + "cast": { + "rev": "ee815aaf958c707ad07547cd62150d973710f747", + "sha256": "144xwvmjbrv59zjj1gnq5j9qpy62dgyfamxg5l3smdwfwa8vpf5i" + }, + "cobra": { + "rev": "ee6224d01f6a83f543ae90f881b703cf195782ba", + "sha256": "0skmq1lmkh2xzl731a2sfcnl2xbcy9v1050pcf10dahwqzsbx6ij" + }, + "fsync": { + "rev": "c2544e79b93fda5653255f907a30fba1c2ac2638", + "sha256": "0hzfk2f8pm756j10zgsk8b8gbfylcf8h6q4djz0ka9zpg76s26lz" + }, + "hugo": { + "rev": "v0.15", + "sha256": "1v0z9ar5kakhib3c3c43ddwd1ga4b8icirg6kk3cnaqfckd638l5" + }, + "jwalterweatherman": { + "rev": "c2aa07df593850a04644d77bb757d002e517a296", + "sha256": "0m8867afsvka5gp2idrmlarpjg7kxx7qacpwrz1wl8y3zxyn3945" + }, + "nitro": { + "rev": "24d7ef30a12da0bdc5e2eb370a79c659ddccf0e8", + "sha256": "143sbpx0jdgf8f8ayv51x6l4jg6cnv6nps6n60qxhx4vd90s6mib" + }, + "pflag": { + "rev": "08b1a584251b5b62f458943640fc8ebd4d50aaa5", + "sha256": "139d08cq06jia0arc6cikdnhnaqms07xfay87pzq5ym86fv0agiq" + }, + "viper": { + "rev": "e37b56e207dda4d79b9defe0548e960658ee8b6b", + "sha256": "0q0hkla23hgvc3ab6qdlrfwxa8lnhy2s2mh2c8zrh632gp8d6prl" + } + }, + "stathat": { + "go": { + "rev": "01d012b9ee2ecc107cb28b6dd32d9019ed5c1d77", + "sha256": "0mrn70wjfcs4rfkmga3hbfqmbjk33skcsc8pyqxp02bzpwdpc4bi" + } + }, + "steveyen": { + "gtreap": { + "rev": "0abe01ef9be25c4aedc174758ec2d917314d6d70", + "sha256": "03z5j8myrpmd0jk834l318xnyfm0n4rg15yq0d35y7j1aqx26gvk" + } + }, + "stgraber": { + "lxd-go-systemd": { + "rev": "a3dcd1d0480ee0ae9ec354f1632202bfba715e03", + "sha256": "006dhy3j8ld0kycm8hrjxvakd7xdn1b6z2dsjp1l4sqrxdmm188w" + } + }, + "stretchr": { + "objx": { + "rev": "cbeaeb16a013161a98496fad62933b1d21786672", + "sha256": "1xn7iibjik77h6h0jilfvcjkkzaqz45baf44p3rb2i03hbmkqkp1" + }, + "testify": { + "rev": "089c7181b8c728499929ff09b62d3fdd8df8adff", + "sha256": "03dzxkxbs298pvfsjz4kdadfaf9jkzsdhshqmg4p12wbyaj09s4p" + } + }, + "syncthing": { + "protocol": { + "rev": "84365882de255d2204d0eeda8dee288082a27f98", + "sha256": "07xjs43lpd51pc339f8x487yhs39riysj3ifbjxsx329kljbflwx" + }, + "relaysrv": { + "rev": "7fe1fdd8c751df165ea825bc8d3e895f118bb236", + "sha256": "0qy14pa0z2dq5mix5ylv2raabwxqwj31g5kkz905wzki6d4j5lnp" + }, + "syncthing": { + "rev": "v0.12.19", + "sha256": "11ij8whaqrrzriavxa08jpsmbd1zkc2qxsni1nbgszw2hymmv38g" + } + }, + "syndtr": { + "goleveldb": { + "rev": "1a9d62f03ea92815b46fcaab357cfd4df264b1a0", + "sha256": "04ywbif36fiah4fw0x2abr5q3p4fdhi6q57d5icc2mz03q889vhb" + }, + "gosnappy": { + "rev": "ce8acff4829e0c2458a67ead32390ac0a381c862", + "sha256": "0ywa52kcii8g2a9lbqcx8ghdf6y56lqq96sl5nl9p6h74rdvmjr7" + } + }, + "tbruyelle": { + "hipchat-go": { + "rev": "1dd13e154219c15e2611fe46adbb6bf65db419b7", + "sha256": "060wg5yjlh28v03mvm80kwgxyny6cyj7zjpcdg032b8b1sz9z81s" + } + }, + "thejerf": { + "suture": { + "rev": "v1.0.1", + "sha256": "094ksr2nlxhvxr58nbnzzk0prjskb21r86jmxqjr3rwg4rkwn6d4" + } + }, + "thorduri": { + "pushover": { + "rev": "a8420a1935479cc266bda685cee558e86dad4b9f", + "sha256": "0j4k43ppka20hmixlwhhz5mhv92p6wxbkvdabs4cf7k8jpk5argq" + } + }, + "tobi": { + "airbrake-go": { + "rev": "5b5e269e1bc398d43f67e43dafff3414a59cd5a2", + "sha256": "1bps4y3vpphpj63mshjg2aplh579cvqac0hz7qzvac0d1fqcgkdz" + } + }, + "tools": { + "godep": { + "rev": "5598a9815350896a2cdf9f4f1d0a3003ab9677fb", + "sha256": "0zc1ah5cvaqa3zw0ska89a40x445vwl1ixz8v42xi3zicx16ibwz" + } + }, + "ugorji": { + "go": { + "rev": "03e33114d4d60a1f37150325e15f51b0fa6fc4f6", + "sha256": "01kdzgx23cgb4k867m1pvsw14hhdr9jf2frqy6i4j4221055m57v" + } + }, + "vaughan0": { + "go-ini": { + "rev": "a98ad7ee00ec53921f08832bc06ecf7fd600e6a1", + "sha256": "1l1isi3czis009d9k5awsj4xdxgbxn4n9yqjc1ac7f724x6jacfa" + } + }, + "vincent-petithory": { + "i3cat": { + "rev": "b9ba886a7c769994ccd8d4627978ef4b51fcf576", + "sha256": "1xlm5c9ajdb71985nq7hcsaraq2z06przbl6r4ykvzi8w2lwgv72" + }, + "structfield": { + "rev": "01a738558a47fbf16712994d1737fb31c77e7d11", + "sha256": "1kyx71z13mf6hc8ly0j0b9zblgvj5lzzvgnc3fqh61wgxrsw24dw" + } + }, + "vitrun": { + "qart": { + "rev": "ccb109cf25f0cd24474da73b9fee4e7a3e8a8ce0", + "sha256": "0bhp768b8ha6f25dmhwn9q8m2lkbn4qnjf8n7pizk25jn5zjdvc8" + } + }, + "vmihailenco": { + "bufio": { + "rev": "24e7e48f60fc2d9e99e43c07485d9fff42051e66", + "sha256": "0x46qnf2f15v7m0j2dcb16raxjamk5rdc7hqwgyxfr1sqmmw3983" + }, + "msgpack": { + "rev": "9dbd4ac30c0b67927f0fb5557fb8341047bd35f7", + "sha256": "0nq9yb85hi3c35kwyl38ywv95vd8n7aywmj78wwylglld22nfmw2" + } + }, + "willf": { + "bitset": { + "rev": "bb0da3785c4fe9d26f6029c77c8fce2aa4d0b291", + "sha256": "1d4z2hjjs9jk6aysi4mf50p8lbbzag4ir4y1f0z4sz8gkwagh7b7" + } + }, + "xordataexchange": { + "crypt": { + "rev": "749e360c8f236773f28fc6d3ddfce4a470795227", + "sha256": "17g9122b8bmbdpshyzhl7cxsp0nvhk0rc6syc92djavggmbpl6ig" + } + }, + "yosssi": { + "ace": { + "rev": "899eede6af0d99400b2c8886d86fd8d351074d37", + "sha256": "0xdzqfzaipyaa973j41yq9lbijw36kyaz523sw05kci4r5ivq4f5" + }, + "gohtml": { + "rev": "ccf383eafddde21dfe37c6191343813822b30e6b", + "sha256": "1cghwgnx0zjdrqxzxw71riwiggd2rjs2i9p2ljhh76q3q3fd4s9f" + } + }, + "yudai": { + "gotty": { + "rev": "v0.0.10", + "sha256": "0gvnbr61d5si06ik2j075jg00r9b94ryfgg06nqxkf10dp8lgi09" + } + } +} diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 888ffe474f2..4a97a54544c 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -6,24 +6,29 @@ let isGo14 = go.meta.branch == "1.4"; + # When adding entries to the json file, please use `jq . < go-packages.json --sort-keys` + # to canonicallize the data. + ghPackages = builtins.fromJSON (builtins.readFile ./go-packages.json); + self = _self // overrides; _self = with self; { inherit go buildGoPackage; - buildFromGitHub = { rev, date ? null, owner, repo, sha256, name ? repo, goPackagePath ? "github.com/${owner}/${repo}", ... }@args: buildGoPackage (args // { - inherit rev goPackagePath; + buildFromGitHub = { rev ? ghPackages."${owner}"."${repo}".rev, date ? null + , sha256 ? ghPackages."${owner}"."${repo}".sha256 + , owner, repo , name ? repo, goPackagePath ? "github.com/${owner}/${repo}" + , ... }@args: buildGoPackage (args // { + inherit rev goPackagePath sha256; name = "${name}-${if date != null then date else if builtins.stringLength rev != 40 then rev else stdenv.lib.strings.substring 0 7 rev}"; - src = fetchFromGitHub { inherit rev owner repo sha256; }; + src = args.src or (fetchFromGitHub { inherit rev owner repo sha256; }); }); ## OFFICIAL GO PACKAGES crypto = buildFromGitHub { - rev = "575fdbe86e5dd89229707ebec0575ce7d088a4a6"; date = "2015-08-29"; owner = "golang"; repo = "crypto"; - sha256 = "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa"; goPackagePath = "golang.org/x/crypto"; goPackageAliases = [ "code.google.com/p/go.crypto" @@ -32,37 +37,29 @@ let }; glog = buildFromGitHub { - rev = "fca8c8854093a154ff1eb580aae10276ad6b1b5f"; date = "2015-07-31"; owner = "golang"; repo = "glog"; - sha256 = "1nr2q0vas0a2f395f4shjxqpas18mjsf8yhgndsav7svngpbbpg8"; }; codesearch = buildFromGitHub { - rev = "a45d81b686e85d01f2838439deaf72126ccd5a96"; date = "2015-06-17"; owner = "google"; repo = "codesearch"; - sha256 = "12bv3yz0l3bmsxbasfgv7scm9j719ch6pmlspv4bd4ix7wjpyhny"; }; image = buildFromGitHub { - rev = "8ab1ac6834edd43d91cbe24272897a87ce7e835e"; date = "2015-08-23"; owner = "golang"; repo = "image"; - sha256 = "1ckr7yh5dx2kbvp9mis7i090ss9qcz46sazrj9f2hw4jj5g3y7dr"; goPackagePath = "golang.org/x/image"; goPackageAliases = [ "github.com/golang/image" ]; }; net_go15 = buildFromGitHub { - rev = "62ac18b461605b4be188bbc7300e9aa2bc836cd4"; date = "2015-11-04"; owner = "golang"; repo = "net"; - sha256 = "0lwwvbbwbf3yshxkfhn6z20gd45dkvnmw2ms36diiy34krgy402p"; goPackagePath = "golang.org/x/net"; goPackageAliases = [ "code.google.com/p/go.net" @@ -74,11 +71,9 @@ let }; net_go14 = buildFromGitHub { - rev = "ea47fc708ee3e20177f3ca3716217c4ab75942cb"; date = "2015-08-29"; owner = "golang"; repo = "net"; - sha256 = "0x1pmg97n7l62vak9qnjdjrrfl98jydhv6j0w3jkk4dycdlzn30d"; goPackagePath = "golang.org/x/net"; goPackageAliases = [ "code.google.com/p/go.net" @@ -92,11 +87,9 @@ let net = if isGo14 then net_go14 else net_go15; oauth2 = buildFromGitHub { - rev = "397fe7649477ff2e8ced8fc0b2696f781e53745a"; date = "2015-06-23"; owner = "golang"; repo = "oauth2"; - sha256 = "0fza0l7iwh6llkq2yzqn7dxi138vab0da64lnghfj1p71fprjzn8"; goPackagePath = "golang.org/x/oauth2"; goPackageAliases = [ "github.com/golang/oauth2" ]; propagatedBuildInputs = [ net gcloud-golang-compute-metadata ]; @@ -104,30 +97,24 @@ let protobuf = buildFromGitHub { - rev = "59b73b37c1e45995477aae817e4a653c89a858db"; date = "2015-08-23"; owner = "golang"; repo = "protobuf"; - sha256 = "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa"; goPackagePath = "github.com/golang/protobuf"; goPackageAliases = [ "code.google.com/p/goprotobuf" ]; }; snappy = buildFromGitHub { - rev = "723cc1e459b8eea2dea4583200fd60757d40097a"; date = "2015-07-21"; owner = "golang"; repo = "snappy"; - sha256 = "0bprq0qb46f5511b5scrdqqzskqqi2z8b4yh3216rv0n1crx536h"; goPackageAliases = [ "code.google.com/p/snappy-go/snappy" ]; }; sys = buildFromGitHub { - rev = "d9157a9621b69ad1d8d77a1933590c416593f24f"; date = "2015-02-01"; owner = "golang"; repo = "sys"; - sha256 = "1asdbp7rj1j1m1aar1a022wpcwbml6zih6cpbxaw7b2m8v8is931"; goPackagePath = "golang.org/x/sys"; goPackageAliases = [ "github.com/golang/sys" @@ -135,21 +122,17 @@ let }; text = buildFromGitHub { - rev = "5eb8d4684c4796dd36c74f6452f2c0fa6c79597e"; date = "2015-08-27"; owner = "golang"; repo = "text"; - sha256 = "1cjwm2pv42dbfqc6ylr7jmma902zg4gng5aarqrbjf1k2nf2vs14"; goPackagePath = "golang.org/x/text"; goPackageAliases = [ "github.com/golang/text" ]; }; tools = buildFromGitHub { - rev = "b48dc8da98ae78c3d11f220e7d327304c84e623a"; date = "2015-08-24"; owner = "golang"; repo = "tools"; - sha256 = "187p3jjxrw2qjnzqwwrq7f9w10zh6vcnwnfl3q7ms8rbiffpjy5c"; goPackagePath = "golang.org/x/tools"; goPackageAliases = [ "code.google.com/p/go.tools" ]; @@ -186,97 +169,66 @@ let ## THIRD PARTY ace = buildFromGitHub { - rev = "899eede6af0d99400b2c8886d86fd8d351074d37"; owner = "yosssi"; repo = "ace"; - sha256 = "0xdzqfzaipyaa973j41yq9lbijw36kyaz523sw05kci4r5ivq4f5"; buildInputs = [ gohtml ]; }; adapted = buildFromGitHub { - rev = "eaea06aaff855227a71b1c58b18bc6de822e3e77"; date = "2015-06-03"; owner = "michaelmacinnis"; repo = "adapted"; - sha256 = "0f28sn5mj48087zhjdrph2sjcznff1i1lwnwplx32bc5ax8nx5xm"; propagatedBuildInputs = [ sys ]; }; afero = buildFromGitHub { - rev = "90b5a9bd18a72dbf3e27160fc47acfaac6c08389"; owner = "spf13"; repo = "afero"; - sha256 = "1xqvbwny61j85psymcs8hggmqyyg4yq3q4cssnvnvbsl3aq8kn4k"; propagatedBuildInputs = [ text ]; }; airbrake-go = buildFromGitHub { - rev = "5b5e269e1bc398d43f67e43dafff3414a59cd5a2"; owner = "tobi"; repo = "airbrake-go"; - sha256 = "1bps4y3vpphpj63mshjg2aplh579cvqac0hz7qzvac0d1fqcgkdz"; }; amber = buildFromGitHub { - rev = "144da19a9994994c069f0693294a66dd310e14a4"; owner = "eknkc"; repo = "amber"; - sha256 = "079wwdq4cn9i1vx5zik16z4bmghkc7zmmvbrp1q6y4cnpmq95rqk"; }; ansicolor = buildFromGitHub { - rev = "a5e2b567a4dd6cc74545b8a4f27c9d63b9e7735b"; owner = "shiena"; repo = "ansicolor"; - sha256 = "0gwplb1b4fvav1vjf4b2dypy5rcp2w41vrbxkd1dsmac870cy75p"; }; asciinema = buildFromGitHub { - rev = "v1.1.1"; owner = "asciinema"; repo = "asciinema"; - sha256 = "0k48k8815k433s25lh8my2swl89kczp0m2gbqzjlpy1xwmk06nxc"; }; - asn1-ber = buildGoPackage rec { - rev = "f4b6f4a84f5cde443d1925b5ec185ee93c2bdc72"; - name = "asn1-ber-${stdenv.lib.strings.substring 0 7 rev}"; + asn1-ber = buildFromGitHub rec { + owner = "go-asn1-ber"; + repo = "asn1-ber"; goPackagePath = "github.com/go-asn1-ber/asn1-ber"; goPackageAliases = [ "github.com/nmcclain/asn1-ber" "github.com/vanackere/asn1-ber" "gopkg.in/asn1-ber.v1" ]; - - src = fetchFromGitHub { - inherit rev; - owner = "go-asn1-ber"; - repo = "asn1-ber"; - sha256 = "0qdyax6yw3hvplzqc2ykpihi3m5y4nii581ay0mxy9c54bzs2nk9"; - }; }; - assertions = buildGoPackage rec { - version = "1.5.0"; - name = "assertions-${version}"; - goPackagePath = "github.com/smartystreets/assertions"; - src = fetchurl { - name = "${name}.tar.gz"; - url = "https://github.com/smartystreets/assertions/archive/${version}.tar.gz"; - sha256 = "1s4b0v49yv7jmy4izn7grfqykjrg7zg79dg5hsqr3x40d5n7mk02"; - }; + assertions = buildFromGitHub rec { + owner = "smartystreets"; + repo = "assertions"; buildInputs = [ oglematchers ]; propagatedBuildInputs = [ goconvey ]; doCheck = false; }; aws-sdk-go = buildFromGitHub { - #rev = "a28ecdc9741b7905b5198059c94aed20868ffc08"; - rev = "127313c1b41e534a0456a68b6b3a16712dacb35d"; owner = "aws"; repo = "aws-sdk-go"; - #sha256 = "1kgnp5f5c5phmihh8krar9rbkfg0lk73imjhjvkhxirhw04g3n5j"; - sha256 = "0gd4nzv5jl02qi7g0y8lv6jadk0p52bpbl1r7pfgy8mn1vfxs37m"; goPackageAliases = [ "github.com/awslabs/aws-sdk-go" ]; @@ -291,10 +243,8 @@ let }; hashicorp.aws-sdk-go = buildFromGitHub { - rev = "e6ea0192eee4640f32ec73c0cbb71f63e4f2b65a"; owner = "hashicorp"; repo = "aws-sdk-go"; - sha256 = "1qrc2jl38marbarnl31sag7s0h18j2wx1cxkcqin5m1pqg62p4cn"; propagatedBuildInputs = [ go-ini ]; subPackages = [ "./aws" @@ -305,189 +255,126 @@ let }; bleve = buildFromGitHub { - rev = "fc34a97875840b2ae24517e7d746b69bdae9be90"; date = "2016-01-19"; owner = "blevesearch"; repo = "bleve"; - sha256 = "0ny7nvilrxmmzcdvpivwyrjkynnhc22c5gdrxzs421jly35jw8jx"; buildFlags = [ "-tags all" ]; propagatedBuildInputs = [ protobuf goleveldb kagome gtreap bolt text rcrowley.go-metrics bitset segment go-porterstemmer ]; }; binarydist = buildFromGitHub { - rev = "9955b0ab8708602d411341e55fffd7e0700f86bd"; owner = "kr"; repo = "binarydist"; - sha256 = "11wncbbbrdcxl5ff3h6w8vqfg4bxsf8709mh6vda0cv236flkyn3"; }; bitset = buildFromGitHub { - rev = "bb0da3785c4fe9d26f6029c77c8fce2aa4d0b291"; date = "2016-01-13"; owner = "willf"; repo = "bitset"; - sha256 = "1d4z2hjjs9jk6aysi4mf50p8lbbzag4ir4y1f0z4sz8gkwagh7b7"; }; blackfriday = buildFromGitHub { - rev = "d18b67ae0afd61dae240896eae1785f00709aa31"; owner = "russross"; repo = "blackfriday"; - sha256 = "1l78hz8k1ixry5fjw29834jz1q5ysjcpf6kx2ggjj1s6xh0bfzvf"; propagatedBuildInputs = [ sanitized_anchor_name ]; }; bolt = buildFromGitHub { - rev = "957d850b5158a4eebf915476058e720f43459584"; owner = "boltdb"; repo = "bolt"; - sha256 = "193adhhsqdy0kyq1l1fi8pg2n6pwyrw4h607qm78qyi26f8i7vzf"; }; bufio = buildFromGitHub { - rev = "24e7e48f60fc2d9e99e43c07485d9fff42051e66"; owner = "vmihailenco"; repo = "bufio"; - sha256 = "0x46qnf2f15v7m0j2dcb16raxjamk5rdc7hqwgyxfr1sqmmw3983"; }; - bugsnag-go = buildGoPackage rec { - rev = "v1.0.3"; - name = "bugsnag-go-${rev}"; - goPackagePath = "github.com/bugsnag/bugsnag-go"; - - src = fetchFromGitHub { - inherit rev; - owner = "bugsnag"; - repo = "bugsnag-go"; - sha256 = "1ymi5hrvd2nyfwfd12xll43gn00ii3bjb5ma9dfhaaxv2asi3ajx"; - }; - + bugsnag-go = buildFromGitHub { + owner = "bugsnag"; + repo = "bugsnag-go"; propagatedBuildInputs = [ panicwrap revel ]; }; - cascadia = buildGoPackage rec { - rev = "54abbbf07a45a3ef346ebe903e0715d9a3c19352"; #master - name = "cascadia-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/andybalholm/cascadia"; + cascadia = buildFromGitHub rec { + owner = "andybalholm"; + repo = "cascadia"; goPackageAliases = [ "code.google.com/p/cascadia" ]; propagatedBuildInputs = [ net ]; buildInputs = propagatedBuildInputs; doCheck = true; - - src = fetchFromGitHub { - inherit rev; - owner = "andybalholm"; - repo = "cascadia"; - sha256 = "1z21w6p5bp7mi2pvicvcqc871k9s8a6262pkwyjm2qfc859c203m"; - }; }; cast = buildFromGitHub { - rev = "ee815aaf958c707ad07547cd62150d973710f747"; owner = "spf13"; repo = "cast"; - sha256 = "144xwvmjbrv59zjj1gnq5j9qpy62dgyfamxg5l3smdwfwa8vpf5i"; buildInputs = [ jwalterweatherman ]; }; - check-v1 = buildGoPackage rec { - rev = "871360013c92e1c715c2de6d06b54899468a8a2d"; - name = "check-v1-${stdenv.lib.strings.substring 0 7 rev}"; + check-v1 = buildFromGitHub { + owner = "go-check"; + repo = "check"; goPackagePath = "gopkg.in/check.v1"; - src = fetchgit { - inherit rev; - url = "https://github.com/go-check/check.git"; - sha256 = "0i83qjmd4ri9mrfddhsbpj9nb43rf2j9803k030fj155j31klwcx"; - }; }; circbuf = buildFromGitHub { - rev = "f092b4f207b6e5cce0569056fba9e1a2735cb6cf"; owner = "armon"; repo = "circbuf"; - sha256 = "06kwwdwa3hskdh6ws7clj1vim80dyc3ldim8k9y5qpd30x0avn5s"; }; cli = buildFromGitHub { - rev = "8102d0ed5ea2709ade1243798785888175f6e415"; owner = "mitchellh"; repo = "cli"; - sha256 = "08mj1l94pww72jy34gk9a483hpic0rrackskfw13r3ycy997w7m2"; propagatedBuildInputs = [ crypto ]; }; cli-spinner = buildFromGitHub { - rev = "610063bb4aeef25f7645b3e6080456655ec0fb33"; owner = "odeke-em"; repo = "cli-spinner"; - sha256 = "13wzs2qrxd72ah32ym0ppswhvyimjw5cqaq3q153y68vlvxd048c"; }; cobra = buildFromGitHub { - rev = "ee6224d01f6a83f543ae90f881b703cf195782ba"; owner = "spf13"; repo = "cobra"; - sha256 = "0skmq1lmkh2xzl731a2sfcnl2xbcy9v1050pcf10dahwqzsbx6ij"; propagatedBuildInputs = [ pflag-spf13 mousetrap go-md2man viper ]; }; cli-go = buildFromGitHub { - rev = "142e6cd241a4dfbf7f07a018f1f8225180018da4"; owner = "codegangsta"; repo = "cli"; - sha256 = "1w8naax4gvkkxw5h31a2c2dwniw5hj92nv0hn6ybdlavffyax9h5"; }; columnize = buildFromGitHub { - rev = "44cb4788b2ec3c3d158dd3d1b50aba7d66f4b59a"; owner = "ryanuber"; repo = "columnize"; - sha256 = "1qrqr76cw58x2hkjic6h88na5ihgvkmp8mqapj8kmjcjzdxkzhr9"; }; command = buildFromGitHub { - rev = "91ca5ec5e9a1bc2668b1ccbe0967e04a349e3561"; owner = "odeke-em"; repo = "command"; - sha256 = "1ghckzr8h99ckagpmb15p61xazdjmf9mjmlym634hsr9vcj84v62"; }; copystructure = buildFromGitHub { - rev = "6fc66267e9da7d155a9d3bd489e00dad02666dc6"; owner = "mitchellh"; repo = "copystructure"; - sha256 = "193s5vhw68d8npjyf5yvc5j24crazvy7d5dk316hl7590qrmbxrd"; buildInputs = [ reflectwalk ]; }; - confd = buildGoPackage rec { - rev = "v0.9.0"; - name = "confd-${rev}"; - goPackagePath = "github.com/kelseyhightower/confd"; - preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace"; - src = fetchFromGitHub { - inherit rev; - owner = "kelseyhightower"; - repo = "confd"; - sha256 = "0rz533575hdcln8ciqaz79wbnga3czj243g7fz8869db6sa7jwlr"; - }; + confd = buildFromGitHub { + owner = "kelseyhightower"; + repo = "confd"; + preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/$goPackagePath/Godeps/_workspace"; subPackages = [ "./" ]; }; config = buildFromGitHub { - rev = "0f78529c8c7e3e9a25f15876532ecbc07c7d99e6"; owner = "robfig"; repo = "config"; - sha256 = "0xmxy8ay0wzd307x7xba3rmigvr6rjlpfk9fmn6ir2nc97ifv3i0"; }; consul = buildFromGitHub { - rev = "v0.5.2"; owner = "hashicorp"; repo = "consul"; - sha256 = "0p3lc1p346a5ipvkf15l94gn1ml3m7zz6bx0viark3hsv0a7iij7"; buildInputs = [ circbuf armon.go-metrics go-radix gomdb bolt consul-migrate go-checkpoint @@ -501,16 +388,15 @@ let }; consul-api = buildFromGitHub { - inherit (consul) rev owner repo sha256; + inherit (consul) owner repo; + inherit (consul) src; subPackages = [ "api" ]; }; consul-alerts = buildFromGitHub { - rev = "6eb4bc556d5f926dbf15d86170664d35d504ae54"; date = "2015-08-09"; owner = "AcalephStorage"; repo = "consul-alerts"; - sha256 = "191bmxix3nl4pr26hcdfxa9qpv5dzggjvi86h2slajgyd2rzn23b"; renameImports = '' # Remove all references to included dependency store @@ -527,25 +413,15 @@ let }; consul-migrate = buildFromGitHub { - rev = "678fb10cdeae25ab309e99e655148f0bf65f9710"; date = "2015-05-19"; owner = "hashicorp"; repo = "consul-migrate"; - sha256 = "18zqyzbc3pny700fnh4hi45i5mlsramqykikcr7lgyx7id6alf16"; buildInputs = [ raft raft-boltdb raft-mdb ]; }; - consul-template = buildGoPackage rec { - rev = "v0.9.0"; - name = "consul-template-${rev}"; - goPackagePath = "github.com/hashicorp/consul-template"; - - src = fetchFromGitHub { - inherit rev; - owner = "hashicorp"; - repo = "consul-template"; - sha256 = "1k64rjskzn7cxn7rxab978847jq8gr4zj4cnzgznhn44nzasgymj"; - }; + consul-template = buildFromGitHub { + owner = "hashicorp"; + repo = "consul-template"; # We just want the consul api not all of consul and vault extraSrcs = [ @@ -556,31 +432,19 @@ let buildInputs = [ go-multierror go-syslog hcl logutils mapstructure ]; }; - context = buildGoPackage rec { - rev = "215affda49addc4c8ef7e2534915df2c8c35c6cd"; - name = "config-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/gorilla/context"; - - src = fetchFromGitHub { - inherit rev; - owner = "gorilla"; - repo = "context"; - sha256 = "1ybvjknncyx1f112mv28870n0l7yrymsr0861vzw10gc4yn1h97g"; - }; + context = buildFromGitHub rec { + owner = "gorilla"; + repo = "context"; }; cookoo = buildFromGitHub { - rev = "v1.2.0"; owner = "Masterminds"; repo = "cookoo"; - sha256 = "1mxqnxddny43k1shsvd39sfzfs0d20gv3vm9lcjp04g3b0rplck1"; }; crypt = buildFromGitHub { - rev = "749e360c8f236773f28fc6d3ddfce4a470795227"; owner = "xordataexchange"; repo = "crypt"; - sha256 = "17g9122b8bmbdpshyzhl7cxsp0nvhk0rc6syc92djavggmbpl6ig"; preBuild = '' substituteInPlace go/src/github.com/xordataexchange/crypt/backend/consul/consul.go \ --replace 'github.com/armon/consul-api' 'github.com/hashicorp/consul/api' \ @@ -590,30 +454,18 @@ let }; cssmin = buildFromGitHub { - rev = "fb8d9b44afdc258bfff6052d3667521babcb2239"; owner = "dchest"; repo = "cssmin"; - sha256 = "09sdijfx5d05z4cd5k6lhl7k3kbpdf2amzlngv15h5v0fff9qw4s"; }; - dbus = buildGoPackage rec { - rev = "a5942dec6340eb0d57f43f2003c190ce06e43dea"; - name = "dbus-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/godbus/dbus"; - - src = fetchFromGitHub { - inherit rev; - owner = "godbus"; - repo = "dbus"; - sha256 = "1vk31wal7ncvjwvnb8q1myrkihv1np46f3q8dndi5k0csflbxxdf"; - }; + dbus = buildFromGitHub { + owner = "godbus"; + repo = "dbus"; }; deis = buildFromGitHub { - rev = "v1.12.2"; owner = "deis"; repo = "deis"; - sha256 = "03lznzcij3gn08kqj2p6skifcdv5aw09dm6zxgvqw7nxx2n1j2ib"; subPackages = [ "client" ]; buildInputs = [ docopt-go crypto yaml-v2 ]; postInstall = '' @@ -624,25 +476,19 @@ let }; dns = buildFromGitHub { - rev = "e59f851c912767b1db587dcabee6e6652e495c75"; date = "2015-07-22"; owner = "miekg"; repo = "dns"; - sha256 = "1zcj4drmmskwvjy5ld54qd8a34ls9651ysl3q7c2bcambax5r0hp"; }; docopt-go = buildFromGitHub { - rev = "854c423c810880e30b9fecdabb12d54f4a92f9bb"; owner = "docopt"; repo = "docopt-go"; - sha256 = "1sddkxgl1pwlipfvmv14h8vg9b9wq1km427j1gjarhb5yfqhh3l1"; }; drive = buildFromGitHub { - rev = "6dc2f1e83032ea3911fa6147b846ee93f18dc544"; owner = "odeke-em"; repo = "drive"; - sha256 = "07s4nhfcr6vznf1amvl3a4wq2hn9zq871rcppfi4i6zs7iw2ay1v"; subPackages = [ "cmd/drive" ]; buildInputs = [ pb go-isatty command dts odeke-em.log statos xon odeke-em.google-api-go-client @@ -653,143 +499,99 @@ let }; cache = buildFromGitHub { - rev = "b51b08cb6cf889deda6c941a5205baecfd16f3eb"; owner = "odeke-em"; repo = "cache"; - sha256 = "1rmm1ky7irqypqjkk6qcd2n0xkzpaggdxql9dp9i9qci5rvvwwd4"; }; exercism = buildFromGitHub { - rev = "v2.2.1"; name = "exercism"; owner = "exercism"; repo = "cli"; - sha256 = "13kwcxd7m3xv42j50nlm9dd08865dxji41glfvnb4wwq9yicyn4g"; buildInputs = [ net cli-go osext ]; }; exponential-backoff = buildFromGitHub { - rev = "96e25d36ae36ad09ac02cbfe653b44c4043a8e09"; owner = "odeke-em"; repo = "exponential-backoff"; - sha256 = "1as21p2jj8xpahvdxqwsw2i1s3fll14dlc9j192iq7xl1ybwpqs6"; }; extractor = buildFromGitHub { - rev = "801861aedb854c7ac5e1329e9713023e9dc2b4d4"; owner = "odeke-em"; repo = "extractor"; - sha256 = "036zmnqxy48h6mxiwywgxix2p4fqvl4svlmcp734ri2rbq3cmxs1"; }; open-golang = buildFromGitHub { - rev = "c8748311a7528d0ba7330d302adbc5a677ef9c9e"; owner = "skratchdot"; repo = "open-golang"; - sha256 = "0qhn2d00v3m9fiqk9z7swdm599clc6j7rnli983s8s1byyp0x3ac"; }; pretty-words = buildFromGitHub { - rev = "9d37a7fcb4ae6f94b288d371938482994458cecb"; owner = "odeke-em"; repo = "pretty-words"; - sha256 = "1466wjhrg9lhqmzil1vf8qj16fxk32b5kxlcccyw2x6dybqa6pkl"; }; meddler = buildFromGitHub { - rev = "d2b51d2b40e786ab5f810d85e65b96404cf33570"; owner = "odeke-em"; repo = "meddler"; - sha256 = "0m0fqrn3kxy4swyk4ja1y42dn1i35rq9j85y11wb222qppy2342x"; }; dts = buildFromGitHub { - rev = "ec2daabf2f9078e887405f7bcddb3d79cb65502d"; owner = "odeke-em"; repo = "dts"; - sha256 = "0vq3cz4ab9vdsz9s0jjlp7z27w218jjabjzsh607ps4i8m5d441s"; }; du = buildFromGitHub { - rev = "3c0690cca16228b97741327b1b6781397afbdb24"; date = "2015-08-05"; owner = "calmh"; repo = "du"; - sha256 = "1mv6mkbslfc8giv47kyl97ny0igb3l7jya5hc75sm54xi6g205wa"; }; - ed25519 = buildGoPackage rec { - rev = "d2b94fd789ea21d12fac1a4443dd3a3f79cda72c"; - name = "ed25519-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/agl/ed25519"; - src = fetchgit { - inherit rev; - url = "git://${goPackagePath}.git"; - sha256 = "83e3010509805d1d315c7aa85a356fda69d91b51ff99ed98a503d63adb3613e9"; - }; + ed25519 = buildFromGitHub { + owner = "agl"; + repo = "ed25519"; }; errwrap = buildFromGitHub { - rev = "7554cd9344cec97297fa6649b055a8c98c2a1e55"; owner = "hashicorp"; repo = "errwrap"; - sha256 = "0kmv0p605di6jc8i1778qzass18m0mv9ks9vxxrfsiwcp4la82jf"; }; etcd = buildFromGitHub { - rev = "v2.1.2"; owner = "coreos"; repo = "etcd"; - sha256 = "1d3wl9rqbhkkdhfkjfrzjfcwz8hx315zbjbmij3pf62bc1p5nh60"; - }; - - fsnotify.v0 = buildGoPackage rec { - rev = "v0.9.3"; - name = "fsnotify.v0-${rev}"; - goPackagePath = "gopkg.in/fsnotify.v0"; - goPackageAliases = [ "github.com/howeyc/fsnotify" ]; - - src = fetchFromGitHub { - inherit rev; - owner = "go-fsnotify"; - repo = "fsnotify"; - sha256 = "15wqjpkfzsxnaxbz6y4r91hw6812g3sc4ipagxw1bya9klbnkdc9"; - }; }; flannel = buildFromGitHub { - rev = "v0.5.3"; owner = "coreos"; repo = "flannel"; - sha256 = "0d9khv0bczvsaqnz16p546m4r5marmnkcrdhi0f3ajnwxb776r9p"; }; - fsnotify.v1 = buildGoPackage rec { - rev = "v1.2.0"; - name = "fsnotify.v1-${rev}"; - goPackagePath = "gopkg.in/fsnotify.v1"; + fsnotify.v0 = buildFromGitHub { + rev = "v0.9.3"; + owner = "go-fsnotify"; + repo = "fsnotify"; + sha256 = "15wqjpkfzsxnaxbz6y4r91hw6812g3sc4ipagxw1bya9klbnkdc9"; + goPackagePath = "gopkg.in/fsnotify.v0"; + goPackageAliases = [ "github.com/howeyc/fsnotify" ]; + }; - src = fetchFromGitHub { - inherit rev; - owner = "go-fsnotify"; - repo = "fsnotify"; - sha256 = "1308z1by82fbymcra26wjzw7lpjy91kbpp2skmwqcq4q1iwwzvk2"; - }; + fsnotify.v1 = buildFromGitHub rec { + rev = "v1.2.0"; + owner = "go-fsnotify"; + repo = "fsnotify"; + sha256 = "1308z1by82fbymcra26wjzw7lpjy91kbpp2skmwqcq4q1iwwzvk2"; + goPackagePath = "gopkg.in/fsnotify.v1"; }; fsync = buildFromGitHub { - rev = "c2544e79b93fda5653255f907a30fba1c2ac2638"; owner = "spf13"; repo = "fsync"; - sha256 = "0hzfk2f8pm756j10zgsk8b8gbfylcf8h6q4djz0ka9zpg76s26lz"; buildInputs = [ afero ]; }; fzf = buildFromGitHub { - rev = "0.11.1"; owner = "junegunn"; repo = "fzf"; - sha256 = "1zw1kq4d5sb1qia44q04i33yii9qwlwlwz8vxhln03d4631mhsra"; buildInputs = [ crypto ginkgo gomega junegunn.go-runewidth go-shellwords pkgs.ncurses text @@ -801,18 +603,14 @@ let }; g2s = buildFromGitHub { - rev = "ec76db4c1ac16400ac0e17ca9c4840e1d23da5dc"; owner = "peterbourgon"; repo = "g2s"; - sha256 = "1p4p8755v2nrn54rik7yifpg9szyg44y5rpp0kryx4ycl72307rj"; }; gawp = buildFromGitHub { - rev = "488705639109de54d38974cc31353d34cc2cd609"; date = "2015-08-31"; owner = "martingallagher"; repo = "gawp"; - sha256 = "0iqqd63nqdijdskdb9f0jwnm6akkh1p2jw4p2w7r1dbaqz1znyay"; dontInstallSrc = true; buildInputs = [ fsnotify.v1 yaml-v2 ]; @@ -826,10 +624,8 @@ let }; gcloud-golang = buildFromGitHub { - rev = "6335269abf9002cf5a84613c13cda6010842b834"; owner = "GoogleCloudPlatform"; repo = "gcloud-golang"; - sha256 = "15xrqxna5ms0r634k3bfzyymn431dvqcjwbsap8ay60x371kzbwf"; goPackagePath = "google.golang.org/cloud"; buildInputs = [ net oauth2 protobuf google-api-go-client grpc ]; excludedPackages = "oauth2"; @@ -843,22 +639,13 @@ let }; gettext-go = buildFromGitHub { - rev = "783c0fb3da95b06dd89c4ba2771f1dc289ecc27c"; owner = "chai2010"; repo = "gettext-go"; - sha256 = "1iz4wjxc3zkj0xkfs88ig670gb08p1sd922l0ig2cxpjcfjp1y99"; }; - ginkgo = buildGoPackage rec { - rev = "5ed93e443a4b7dfe9f5e95ca87e6082e503021d2"; - name = "ginkgo-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/onsi/ginkgo"; - src = fetchFromGitHub { - inherit rev; - owner = "onsi"; - repo = "ginkgo"; - sha256 = "0ghrx5qmgvgb8cbvsj53v1ir4j9agilg4wyhpk5ikqdv6mmqly4h"; - }; + ginkgo = buildFromGitHub { + owner = "onsi"; + repo = "ginkgo"; subPackages = [ "./" ]; # don't try to build test fixtures }; @@ -866,23 +653,17 @@ let buildInputs = [ go go-backblaze ]; owner = "encryptio"; repo = "git-annex-remote-b2"; - rev = "v0.2"; - sha256 = "1139rzdvlj3hanqsccfinprvrzf4qjc5n4f0r21jp9j24yhjs6j2"; }; git-appraise = buildFromGitHub { - rev = "v0.3"; owner = "google"; repo = "git-appraise"; - sha256 = "124hci9whsvlcywsfz5y20kkj3nhy176a1d5s1lkvsga09yxq6wm"; }; git-lfs = buildFromGitHub { date = "1.1.1"; # "date" is effectively "version" - rev = "v1.1.1"; owner = "github"; repo = "git-lfs"; - sha256 = "1m7kii57jrsb22m5x9v8xa3s1qmipfkpk6cscgxrbrj7g0a75fnc"; # Tests fail with 'lfstest-gitserver.go:46: main redeclared in this block' excludedPackages = [ "test" ]; @@ -899,44 +680,25 @@ let }; glide = buildFromGitHub { - rev = "0.6.1"; owner = "Masterminds"; repo = "glide"; - sha256 = "1v66c2igm8lmljqrrsyq3cl416162yc5l597582bqsnhshj2kk4m"; buildInputs = [ cookoo cli-go go-gypsy vcs ]; }; gls = buildFromGitHub { - rev = "9a4a02dbe491bef4bab3c24fd9f3087d6c4c6690"; owner = "jtolds"; repo = "gls"; - sha256 = "1gvgkx7llklz6plapb95fcql7d34i6j7anlvksqhdirpja465jnm"; }; - ugorji.go = buildGoPackage rec { - rev = "03e33114d4d60a1f37150325e15f51b0fa6fc4f6"; - name = "ugorji-go-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/ugorji/go"; + ugorji.go = buildFromGitHub { + owner = "ugorji"; + repo = "go"; goPackageAliases = [ "github.com/hashicorp/go-msgpack" ]; - - src = fetchFromGitHub { - inherit rev; - owner = "ugorji"; - repo = "go"; - sha256 = "01kdzgx23cgb4k867m1pvsw14hhdr9jf2frqy6i4j4221055m57v"; - }; }; - goamz = buildGoPackage rec { - rev = "2a8fed5e89ab9e16210fc337d1aac780e8c7bbb7"; - name = "goamz-${rev}"; - goPackagePath = "github.com/goamz/goamz"; - src = fetchFromGitHub { - inherit rev; - owner = "goamz"; - repo = "goamz"; - sha256 = "0rlinp0cvgw66qjndg4padr5s0wd3n7kjfggkx6czqj9bqaxcz4b"; - }; + goamz = buildFromGitHub { + owner = "goamz"; + repo = "goamz"; propagatedBuildInputs = [ go-ini ]; # These might need propagating too, but I haven't tested the entire library @@ -956,17 +718,13 @@ let }; dgnorton.goback = buildFromGitHub { - rev = "a49ca3c0a18f50ae0b8a247e012db4385e516cf4"; owner = "dgnorton"; repo = "goback"; - sha256 = "1nyg6sckwd0iafs9vcmgbga2k3hid2q0avhwj29qbdhj3l78xi47"; }; gocryptfs = buildFromGitHub { - rev = "v0.5"; owner = "rfjakob"; repo = "gocryptfs"; - sha256 = "0jsdz8y7a1fkyrfwg6353c9r959qbqnmf2cjh57hp26w1za5bymd"; buildInputs = [ crypto go-fuse openssl-spacemonkey ]; }; @@ -982,74 +740,49 @@ let }; gocql = buildFromGitHub { - rev = "53ea371a152ac188443fd3479f822ffecb0e9363"; owner = "gocql"; repo = "gocql"; - sha256 = "0rqykhqgx7lrggcjyh053c3qddf130sgvsm27gndjv29rjrm874f"; propagatedBuildInputs = [ inf snappy groupcache ]; }; gocode = buildFromGitHub { - rev = "680a0fbae5119fb0dbea5dca1d89e02747a80de0"; date = "2015-09-03"; owner = "nsf"; repo = "gocode"; - sha256 = "1ay2xakz4bcn8r3ylicbj753gjljvv4cj9l4wfly55cj1vjybjpv"; }; - gocolorize = buildGoPackage rec { - rev = "v1.0.0"; - name = "gocolorize-${rev}"; + gocolorize = buildFromGitHub rec { + owner = "agtorre"; + repo = "gocolorize"; goPackagePath = "github.com/agtorre/gocolorize"; - - src = fetchFromGitHub { - inherit rev; - owner = "agtorre"; - repo = "gocolorize"; - sha256 = "1dj7s8bgw9qky344d0k9gz661c0m317a08a590184drw7m51hy9p"; - }; }; - goconvey = buildGoPackage rec { - version = "1.5.0"; - name = "goconvey-${version}"; - goPackagePath = "github.com/smartystreets/goconvey"; - src = fetchurl { - name = "${name}.tar.gz"; - url = "https://github.com/smartystreets/goconvey/archive/${version}.tar.gz"; - sha256 = "0g3965cb8kg4kf9b0klx4pj9ycd7qwbw1jqjspy6i5d4ccd6mby4"; - }; + goconvey = buildFromGitHub rec { + owner = "smartystreets"; + repo = "goconvey"; buildInputs = [ oglematchers ]; doCheck = false; # please check again }; gohtml = buildFromGitHub { - rev = "ccf383eafddde21dfe37c6191343813822b30e6b"; owner = "yosssi"; repo = "gohtml"; - sha256 = "1cghwgnx0zjdrqxzxw71riwiggd2rjs2i9p2ljhh76q3q3fd4s9f"; propagatedBuildInputs = [ net ]; }; gomdb = buildFromGitHub { - rev = "151f2e08ef45cb0e57d694b2562f351955dff572"; owner = "armon"; repo = "gomdb"; - sha256 = "02wdhgfarmmwfbc75snd1dh6p9k9c1y2135apdm6mkr062qlxx61"; }; influx.gomdb = buildFromGitHub { - rev = "29fe330c5ab33c4e48470bd4b980bf522471190a"; owner = "influxdb"; repo = "gomdb"; - sha256 = "0yg1jpr7lcaqh6i8n9wbs9r128kk541qjv06r9a6fp9vj56rqr3m"; }; gotty = buildFromGitHub { - rev = "v0.0.10"; owner = "yudai"; repo = "gotty"; - sha256 = "0gvnbr61d5si06ik2j075jg00r9b94ryfgg06nqxkf10dp8lgi09"; buildInputs = [ cli-go go manners go-bindata-assetfs go-multierror structs websocket hcl pty ]; @@ -1062,158 +795,112 @@ let }; govers = buildFromGitHub { - rev = "3b5f175f65d601d06f48d78fcbdb0add633565b9"; date = "2015-01-09"; owner = "rogpeppe"; repo = "govers"; - sha256 = "0din5a7nff6hpc4wg0yad2nwbgy4q1qaazxl8ni49lkkr4hyp8pc"; dontRenameImports = true; }; golang-lru = buildFromGitHub { - rev = "7f9ef20a0256f494e24126014135cf893ab71e9e"; owner = "hashicorp"; repo = "golang-lru"; - sha256 = "165x0p8plr3fwn4r1d11m3pxa3r8dhyk98z7x6ah35lf63jm2cwv"; }; golang-petname = buildFromGitHub { - rev = "13f8b3a4326b9a6579358543cffe82713c1d6ce4"; owner = "dustinkirkland"; repo = "golang-petname"; - sha256 = "1xx6lpv1r2sji8m9w35a2fkr9v4vsgvxrrahcq9bdg75qvadq91d"; }; golang_protobuf_extensions = buildFromGitHub { - rev = "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a"; date = "2015-04-06"; owner = "matttproud"; repo = "golang_protobuf_extensions"; - sha256 = "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj"; buildInputs = [ protobuf ]; }; goleveldb = buildFromGitHub { - rev = "1a9d62f03ea92815b46fcaab357cfd4df264b1a0"; date = "2015-08-19"; owner = "syndtr"; repo = "goleveldb"; - sha256 = "04ywbif36fiah4fw0x2abr5q3p4fdhi6q57d5icc2mz03q889vhb"; propagatedBuildInputs = [ ginkgo gomega snappy ]; }; gollectd = buildFromGitHub { - rev = "cf6dec97343244b5d8a5485463675d42f574aa2d"; owner = "kimor79"; repo = "gollectd"; - sha256 = "1f3ml406cprzjc192csyr2af4wcadkc74kg8n4c0zdzglxxfsqxa"; }; gomega = buildFromGitHub { - rev = "8adf9e1730c55cdc590de7d49766cb2acc88d8f2"; owner = "onsi"; repo = "gomega"; - sha256 = "1rf6cxn50d1pji3pv4q372s395r5nxwcgp405z2r2mfdkri4v3w4"; }; gomemcache = buildFromGitHub { - rev = "72a68649ba712ee7c4b5b4a943a626bcd7d90eb8"; owner = "bradfitz"; repo = "gomemcache"; - sha256 = "1r8fpzwhakq8fsppc33n4iivq1pz47xhs0h6bv4x5qiip5mswwvg"; }; google-api-go-client = buildFromGitHub { - rev = "a5c3e2a4792aff40e59840d9ecdff0542a202a80"; date = "2015-08-19"; owner = "google"; repo = "google-api-go-client"; - sha256 = "1kigddnbyrl9ddpj5rs8njvf1ck54ipi4q1282k0d6b3am5qfbj8"; goPackagePath = "google.golang.org/api"; goPackageAliases = [ "github.com/google/google-api-client" ]; buildInputs = [ net ]; }; - odeke-em.google-api-go-client = buildGoPackage rec { - rev = "30f4c144b02321ebbc712f35dc95c3e72a5a7fdc"; - name = "odeke-em-google-api-go-client-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/odeke-em/google-api-go-client"; - src = fetchFromGitHub { - inherit rev; - owner = "odeke-em"; - repo = "google-api-go-client"; - sha256 = "1fidlljxnd82i2r9yia0b9gh0vv3hwb5k65papnvw7sqpc4sriby"; - }; + odeke-em.google-api-go-client = buildFromGitHub { + owner = "odeke-em"; + repo = "google-api-go-client"; buildInputs = [ net ]; propagatedBuildInputs = [ google-api-go-client ]; }; gopass = buildFromGitHub { - rev = "10b54de414cc9693221d5ff2ae14fd2fbf1b0ac1"; owner = "howeyc"; repo = "gopass"; - sha256 = "0lsi89zx1i2f5vhm66zqn2drs7xi7ff8r1xlp6m58r99dddws57s"; propagatedBuildInputs = [ crypto ]; }; gopherduty = buildFromGitHub { - rev = "f4906ce7e59b33a50bfbcba93e2cf58778c11fb9"; owner = "darkcrux"; repo = "gopherduty"; - sha256 = "11w1yqc16fxj5q1y5ha5m99j18fg4p9lyqi542x2xbrmjqqialcf"; }; goproxy = buildFromGitHub { - rev = "2624781dc373cecd1136cafdaaaeba6c9bb90e96"; date = "2015-07-26"; owner = "elazarl"; repo = "goproxy"; - sha256 = "1zz425y8byjaa9i7mslc9anz9w2jc093fjl0562rmm5hh4rc5x5f"; buildInputs = [ go-charset ]; }; goreq = buildFromGitHub { - rev = "72c51a544272e007ab3da4f7d9ac959b7af7af03"; date = "2015-08-18"; owner = "franela"; repo = "goreq"; - sha256 = "0dnqbijdzp2dgsf6m934nadixqbv73q0zkqglaa956zzw0pyhcxp"; }; gotags = buildFromGitHub { - rev = "be986a34e20634775ac73e11a5b55916085c48e7"; date = "2015-08-03"; owner = "jstemmer"; repo = "gotags"; - sha256 = "071wyq90b06xlb3bb0l4qjz1gf4nnci4bcngiddfcxf2l41w1vja"; }; gosnappy = buildFromGitHub { - rev = "ce8acff4829e0c2458a67ead32390ac0a381c862"; owner = "syndtr"; repo = "gosnappy"; - sha256 = "0ywa52kcii8g2a9lbqcx8ghdf6y56lqq96sl5nl9p6h74rdvmjr7"; }; - gox = buildGoPackage rec { - rev = "e8e6fd4fe12510cc46893dff18c5188a6a6dc549"; - name = "gox-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/mitchellh/gox"; - src = fetchFromGitHub { - inherit rev; - owner = "mitchellh"; - repo = "gox"; - sha256 = "14jb2vgfr6dv7zlw8i3ilmp125m5l28ljv41a66c9b8gijhm48k1"; - }; + gox = buildFromGitHub { + owner = "mitchellh"; + repo = "gox"; buildInputs = [ iochan ]; }; gozim = buildFromGitHub { - rev = "ea9b7c39cb1d13bd8bf19ba4dc4e2a16bab52f14"; date = "2016-01-15"; owner = "akhenakh"; repo = "gozim"; - sha256 = "1n50fdd56r3s1sgjbpa72nvdh50gfpf6fq55c077w2p3bxn6p8k6"; propagatedBuildInputs = [ bleve go-liblzma groupcache go-rice goquery ]; buildInputs = [ pkgs.zip ]; postInstall = '' @@ -1224,51 +911,28 @@ let dontStrip = true; }; - go-assert = buildGoPackage rec { - rev = "e17e99893cb6509f428e1728281c2ad60a6b31e3"; - name = "assert-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/bmizerany/assert"; - src = fetchFromGitHub { - inherit rev; - owner = "bmizerany"; - repo = "assert"; - sha256 = "1lfrvqqmb09y6pcr76yjv4r84cshkd4s7fpmiy7268kfi2cvqnpc"; - }; + go-assert = buildFromGitHub { + owner = "bmizerany"; + repo = "assert"; propagatedBuildInputs = [ pretty ]; }; go-backblaze = buildFromGitHub { - buildInputs = [ go-flags go-humanize uilive uiprogress ]; - goPackagePath = "gopkg.in/kothar/go-backblaze.v0"; - rev = "373819725fc560fa962c6cd883b533d2ebec4844"; owner = "kothar"; repo = "go-backblaze"; - sha256 = "1kmlwfnnfd4h46bb9pz2gw1hxqm1pzkwvidfmnc0zkrilaywk6fx"; + buildInputs = [ go-flags go-humanize uilive uiprogress ]; + goPackagePath = "gopkg.in/kothar/go-backblaze.v0"; }; - go-bencode = buildGoPackage rec { - version = "1.1.1"; - name = "go-bencode-${version}"; - goPackagePath = "github.com/ehmry/go-bencode"; - - src = fetchurl { - url = "https://${goPackagePath}/archive/v${version}.tar.gz"; - sha256 = "0y2kz2sg1f7mh6vn70kga5d0qhp04n01pf1w7k6s8j2nm62h24j6"; - }; + go-bencode = buildFromGitHub { + owner = "ehmry"; + repo = "go-bencode"; }; - go-bindata = buildGoPackage rec { - rev = "a0ff2567cfb70903282db057e799fd826784d41d"; + go-bindata = buildFromGitHub rec { + owner = "jteeuwen"; + repo = "go-bindata"; date = "2015-10-23"; - version = "${date}-${stdenv.lib.strings.substring 0 7 rev}"; - name = "go-bindata-${version}"; - goPackagePath = "github.com/jteeuwen/go-bindata"; - src = fetchFromGitHub { - inherit rev; - repo = "go-bindata"; - owner = "jteeuwen"; - sha256 = "0d6zxv0hgh938rf59p1k5lj0ymrb8kcps2vfrb9kaarxsvg7y69v"; - }; subPackages = [ "./" "go-bindata" ]; # don't build testdata @@ -1282,10 +946,8 @@ let }; go-bindata-assetfs = buildFromGitHub { - rev = "d5cac425555ca5cf00694df246e04f05e6a55150"; owner = "elazarl"; repo = "go-bindata-assetfs"; - sha256 = "636ce247ff6f85c14f38a421f46662fa77bdc29762692e1f72b3cd1f9d7a1d17"; date = "2015-08-13"; @@ -1297,36 +959,24 @@ let }; }; - pmylund.go-cache = buildGoPackage rec { - rev = "93d85800f2fa6bd0a739e7bd612bfa3bc008b72d"; - name = "go-cache-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/pmylund/go-cache"; + pmylund.go-cache = buildFromGitHub { + owner = "pmylund"; + repo = "go-cache"; goPackageAliases = [ "github.com/robfig/go-cache" "github.com/influxdb/go-cache" ]; - - src = fetchFromGitHub { - inherit rev; - owner = "pmylund"; - repo = "go-cache"; - sha256 = "08wfwm7nk381lv6a95p0hfgqwaksn0vhzz1xxdncjdw6w71isyy7"; - }; }; robfig.go-cache = buildFromGitHub { - rev = "9fc39e0dbf62c034ec4e45e6120fc69433a3ec51"; owner = "robfig"; repo = "go-cache"; - sha256 = "032nh3y43bpzpcm7bdkxfh55aydvzc2jzhigvy5gd9f648m4j9ha"; }; go-charset = buildFromGitHub { - rev = "61cdee49014dc952076b5852ce4707137eb36b64"; date = "2014-07-13"; owner = "paulrosania"; repo = "go-charset"; - sha256 = "0jp6rwxlgl66dipk6ssk8ly55jxncvsxs7jc3abgdrhr3rzccab8"; goPackagePath = "code.google.com/p/go-charset"; preBuild = '' @@ -1335,70 +985,47 @@ let }; go-checkpoint = buildFromGitHub { - rev = "88326f6851319068e7b34981032128c0b1a6524d"; owner = "hashicorp"; repo = "go-checkpoint"; - sha256 = "1npasn9lmvx57nw3wkswwvl5k0wmn01jpalbwv832x5wq4r0nsz4"; }; go-colorable = buildFromGitHub { - rev = "40e4aedc8fabf8c23e040057540867186712faa5"; owner = "mattn"; repo = "go-colorable"; - sha256 = "0pwc0s5lvz209dcyamv1ba1xl0c1r5hpxwlq0w5j2xcz8hzrcwkl"; }; go-colortext = buildFromGitHub { - rev = "13eaeb896f5985a1ab74ddea58707a73d875ba57"; owner = "daviddengcn"; repo = "go-colortext"; - sha256 = "0618xs9lc5xfp5zkkb5j47dr7i30ps3zj5fj0zpv8afqh2cc689x"; }; - go-etcd = buildGoPackage rec { - rev = "9847b93751a5fbaf227b893d172cee0104ac6427"; - name = "go-etcd-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/coreos/go-etcd"; - - src = fetchFromGitHub { - inherit rev; - owner = "coreos"; - repo = "go-etcd"; - sha256 = "1ihq01ayqzxvn6hca5j00vl189vi5lm78f0fy2wpk5mrm3xi01l4"; - }; - + go-etcd = buildFromGitHub { + owner = "coreos"; + repo = "go-etcd"; propagatedBuildInputs = [ ugorji.go ]; }; go-flags = buildFromGitHub { - rev = "1b89bf73cd2c3a911d7b2a279ab085c4a18cf539"; owner = "jessevdk"; repo = "go-flags"; - sha256 = "027nglc5xx1cm03z9sisg0iqrhwcj6gh5z254rrpl8p4fwrxx680"; }; go-fuse = buildFromGitHub rec { - rev = "324ea173d0a4d90e0e97c464a6ad33f80c9587a8"; date = "2015-07-27"; owner = "hanwen"; repo = "go-fuse"; - sha256 = "0r5amgnpb4g7b6kpz42vnj01w515by4yhy64s5lqf3snzjygaycf"; }; go-github = buildFromGitHub { - rev = "34fb8ee07214d23c3035c95691fe9069705814d6"; owner = "google"; repo = "go-github"; - sha256 = "0ygh0f6p679r095l4bym8q4l45w2l3d8r3hx9xrnnppxq59i2395"; buildInputs = [ oauth2 ]; propagatedBuildInputs = [ go-querystring ]; }; go-gtk-agl = buildFromGitHub { - rev = "6937b8d28cf70d583346220b966074cfd3a2e233"; owner = "agl"; repo = "go-gtk"; - sha256 = "0jnhsv7ypyhprpy0fndah22v2pbbavr3db6f9wxl1vf34qkns3p4"; # Examples require many go libs, and gtksourceview seems ready only for # gtk2 preConfigure = '' @@ -1410,383 +1037,261 @@ let }; go-gypsy = buildFromGitHub { - rev = "42fc2c7ee9b8bd0ff636cd2d7a8c0a49491044c5"; owner = "kylelemons"; repo = "go-gypsy"; - sha256 = "04iy8rdk19n7i18bqipknrcb8lsy1vr4d1iqyxsxq6rmb7298iwj"; }; go-homedir = buildFromGitHub { - rev = "1f6da4a72e57d4e7edd4a7295a585e0a3999a2d4"; owner = "mitchellh"; repo = "go-homedir"; - sha256 = "1l5lrsjrnwxn299mhvyxvz8hd0spkx0d31gszm4cyx21bg1xsiy9"; }; go-hostpool = buildFromGitHub { - rev = "d0e59c22a56e8dadfed24f74f452cea5a52722d2"; date = "2015-03-31"; owner = "bitly"; repo = "go-hostpool"; - sha256 = "14ph12krn5zlg00vh9g6g08lkfjxnpw46nzadrfb718yl1hgyk3g"; }; go-humanize = buildFromGitHub { - rev = "8929fe90cee4b2cb9deb468b51fb34eba64d1bf0"; owner = "dustin"; repo = "go-humanize"; - sha256 = "1g155kxjh6hd3ibx41nbpj6f7h5bh54zgl9dr53xzg2xlxljgjy0"; }; go-ini = buildFromGitHub { - rev = "a98ad7ee00ec53921f08832bc06ecf7fd600e6a1"; owner = "vaughan0"; repo = "go-ini"; - sha256 = "1l1isi3czis009d9k5awsj4xdxgbxn4n9yqjc1ac7f724x6jacfa"; }; go-incremental = buildFromGitHub { - rev = "92fd0ce4a694213e8b3dfd2d39b16e51d26d0fbf"; date = "2015-02-20"; owner = "GeertJohan"; repo = "go.incremental"; - sha256 = "160cspmq73bk6cvisa6kq1dwrrp1yqpkrpq8dl69wcnaf91cbnml"; }; go-isatty = buildFromGitHub { - rev = "ae0b1f8f8004be68d791a576e3d8e7648ab41449"; owner = "mattn"; repo = "go-isatty"; - sha256 = "0qrcsh7j9mxcaspw8lfxh9hhflz55vj4aq1xy00v78301czq6jlj"; }; go-liblzma = buildFromGitHub { - rev = "e74be71c3c60411922b5424e875d7692ea638b78"; date = "2016-01-01"; owner = "remyoudompheng"; repo = "go-liblzma"; - sha256 = "12lwjmdcv2l98097rhvjvd2yz8jl741hxcg29i1c18grwmwxa7nf"; propagatedBuildInputs = [ pkgs.lzma ]; }; - go-log = buildGoPackage rec { - rev = "70d039bee4b0e389e5be560491d8291708506f59"; - name = "go-log-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/coreos/go-log"; - - src = fetchFromGitHub { - inherit rev; - owner = "coreos"; - repo = "go-log"; - sha256 = "1s95xmmhcgw4ascf4zr8c4ij2n4s3mr881nxcpmc61g0gb722b13"; - }; - + go-log = buildFromGitHub { + owner = "coreos"; + repo = "go-log"; propagatedBuildInputs = [ osext go-systemd ]; }; go-lxc = buildFromGitHub { - rev = "a0fa4019e64b385dfa2fb8abcabcdd2f66871639"; owner = "lxc"; repo = "go-lxc"; - sha256 = "0fkkmn7ynmzpr7j0ha1qsmh3k86ncxcbajmcb90hs0k0iaaiaahz"; goPackagePath = "gopkg.in/lxc/go-lxc.v2"; nativeBuildInputs = [ pkgs.pkgconfig ]; buildInputs = [ pkgs.lxc ]; }; go-lz4 = buildFromGitHub { - rev = "74ddf82598bc4745b965729e9c6a463bedd33049"; owner = "bkaradzic"; repo = "go-lz4"; - sha256 = "1vdid8v0c2v2qhrg9rzn3l7ya1h34jirrxfnir7gv7w6s4ivdvc1"; }; rcrowley.go-metrics = buildFromGitHub { - rev = "1ce93efbc8f9c568886b2ef85ce305b2217b3de3"; date = "2015-08-22"; owner = "rcrowley"; repo = "go-metrics"; - sha256 = "06gg72krlmd0z3zdq6s716blrga95pyj8dc2f2psfbknbkyrkfqa"; propagatedBuildInputs = [ stathat ]; }; appengine = buildFromGitHub { - rev = "72f4367c4f14a20a98dcc8b762953b40788407be"; owner = "golang"; repo = "appengine"; - sha256 = "1phjkb0f0xp08db3irbf5wzdsxzsddsig5wv70wvmnr44ijllh4f"; goPackagePath = "google.golang.org/appengine"; buildInputs = [ protobuf net ]; }; - armon.go-metrics = buildGoPackage rec { - rev = "b2d95e5291cdbc26997d1301a5e467ecbb240e25"; - name = "armon.go-metrics-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/armon/go-metrics"; - - src = fetchFromGitHub { - inherit rev; - owner = "armon"; - repo = "go-metrics"; - sha256 = "1jvdf98jlbyzbb9w159nifvv8fihrcs66drnl8pilqdjpmkmyyck"; - }; - + armon.go-metrics = buildFromGitHub { + owner = "armon"; + repo = "go-metrics"; propagatedBuildInputs = [ prometheus.client_golang ]; }; go-md2man = buildFromGitHub { - rev = "71acacd42f85e5e82f70a55327789582a5200a90"; owner = "cpuguy83"; repo = "go-md2man"; - sha256 = "0hmkrq4gdzb6mwllmh4p1y7vrz7hyr8xqagpk9nyr5dhygvnnq2v"; propagatedBuildInputs = [ blackfriday ]; }; go-multierror = buildFromGitHub { - rev = "56912fb08d85084aa318edcf2bba735b97cf35c5"; owner = "hashicorp"; repo = "go-multierror"; - sha256 = "0s01cqdab2f7fxkkjjk2wqx05a1shnwlvfn45h2pi3i4gapvcn0r"; }; go-nsq = buildFromGitHub { - rev = "v1.0.4"; owner = "nsqio"; repo = "go-nsq"; - sha256 = "06hrkwk84w8rshkanvfgmgbiml7n06ybv192dvibhwgk2wz2dl46"; propagatedBuildInputs = [ go-simplejson go-snappystream ]; goPackageAliases = [ "github.com/bitly/go-nsq" ]; }; go-options = buildFromGitHub { - rev = "7c174072188d0cfbe6f01bb457626abb22bdff52"; date = "2014-12-20"; owner = "mreiferson"; repo = "go-options"; - sha256 = "0ksyi2cb4k6r2fxamljg42qbz5hdcb9kv5i7y6cx4ajjy0xznwgm"; }; go-porterstemmer = buildFromGitHub { - rev = "23a2c8e5cf1f380f27722c6d2ae8896431dc7d0e"; date = "2014-12-30"; owner = "blevesearch"; repo = "go-porterstemmer"; - sha256 = "0rcfbrad79xd114h3dhy5d3zs3b5bcgqwm3h5ih1lk69zr9wi91d"; }; go-querystring = buildFromGitHub { - rev = "547ef5ac979778feb2f760cdb5f4eae1a2207b86"; owner = "google"; repo = "go-querystring"; - sha256 = "00ani7fhydcmlsm3n93nmj1hcqp2wmzvihnb1gdzynif1hw0530y"; }; go-radix = buildFromGitHub { - rev = "fbd82e84e2b13651f3abc5ffd26b65ba71bc8f93"; owner = "armon"; repo = "go-radix"; - sha256 = "16y64r1v054c2ln0bi5mrqq1cmvy6d6pnxk1glb8lw2g31ksa80c"; }; - junegunn.go-runewidth = buildGoPackage rec { - rev = "travisish"; - name = "go-runewidth-${rev}"; - goPackagePath = "github.com/junegunn/go-runewidth"; - src = fetchFromGitHub { - inherit rev; - owner = "junegunn"; - repo = "go-runewidth"; - sha256 = "07d612val59sibqly5d6znfkp4h4gjd77783jxvmiq6h2fwb964k"; - }; + junegunn.go-runewidth = buildFromGitHub { + owner = "junegunn"; + repo = "go-runewidth"; }; - go-shellwords = buildGoPackage rec { - rev = "35d512af75e283aae4ca1fc3d44b159ed66189a4"; - name = "go-shellwords-${rev}"; - goPackagePath = "github.com/junegunn/go-shellwords"; - src = fetchFromGitHub { - inherit rev; - owner = "junegunn"; - repo = "go-shellwords"; - sha256 = "c792abe5fda48d0dfbdc32a84edb86d884a0ccbd9ed49ad48a30cda5ba028a22"; - }; + go-shellwords = buildFromGitHub { + owner = "junegunn"; + repo = "go-shellwords"; }; go-restful = buildFromGitHub { - rev = "892402ba11a2e2fd5e1295dd633481f27365f14d"; owner = "emicklei"; repo = "go-restful"; - sha256 = "0gr9f53vayc6501a1kaw4p3h9pgf376cgxsfnr3f2dvp0xacvw8x"; }; go-repo-root = buildFromGitHub { - rev = "90041e5c7dc634651549f96814a452f4e0e680f9"; date = "2014-09-11"; owner = "cstrahan"; repo = "go-repo-root"; - sha256 = "1rlzp8kjv0a3dnfhyqcggny0ad648j5csr2x0siq5prahlp48mg4"; buildInputs = [ tools ]; }; go-rice = buildFromGitHub { - rev = "4f3c5af2322e393f305d9674845bc36cd1dea589"; date = "2016-01-04"; owner = "GeertJohan"; repo = "go.rice"; - sha256 = "01q2d5iwibwdl68gn8sg6dm7byc42hax3zmiqgmdw63ir1fsv4ag"; propagatedBuildInputs = [ osext go-spew go-flags go-zipexe rsrc go-incremental ]; }; go-runit = buildFromGitHub { - rev = "a9148323a615e2e1c93b7a9893914a360b4945c8"; owner = "soundcloud"; repo = "go-runit"; - sha256 = "00f2rfhsaqj2wjanh5qp73phx7x12a5pwd7lc0rjfv68l6sgpg2v"; }; go-simplejson = buildFromGitHub { - rev = "18db6e68d8fd9cbf2e8ebe4c81a78b96fd9bf05a"; date = "2015-03-31"; owner = "bitly"; repo = "go-simplejson"; - sha256 = "0lj9cxyncchlw6p35j0yym5q5waiz0giw6ri41qdwm8y3dghwwiy"; }; go-snappystream = buildFromGitHub { - rev = "028eae7ab5c4c9e2d1cb4c4ca1e53259bbe7e504"; date = "2015-04-16"; owner = "mreiferson"; repo = "go-snappystream"; - sha256 = "0jdd5whp74nvg35d9hzydsi3shnb1vrnd7shi9qz4wxap7gcrid6"; }; go-spew = buildFromGitHub { - rev = "5215b55f46b2b919f50a1df0eaa5886afe4e3b3d"; date = "2015-11-05"; owner = "davecgh"; repo = "go-spew"; - sha256 = "15h9kl73rdbzlfmsdxp13jja5gs7sknvqkpq2qizq3qv3nr1x8dk"; }; go-sqlite3 = buildFromGitHub { - rev = "b4142c444a8941d0d92b0b7103a24df9cd815e42"; date = "2015-07-29"; owner = "mattn"; repo = "go-sqlite3"; - sha256 = "0xq2y4am8dz9w9aaq24s1npg1sn8pf2gn4nki73ylz2fpjwq9vla"; }; go-syslog = buildFromGitHub { - rev = "42a2b573b664dbf281bd48c3cc12c086b17a39ba"; owner = "hashicorp"; repo = "go-syslog"; - sha256 = "1j53m2wjyczm9m55znfycdvm4c8vfniqgk93dvzwy8vpj5gm6sb3"; }; - go-systemd = buildGoPackage rec { - rev = "2688e91251d9d8e404e86dd8f096e23b2f086958"; - name = "go-systemd-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/coreos/go-systemd"; - - src = fetchFromGitHub { - inherit rev; - owner = "coreos"; - repo = "go-systemd"; - sha256 = "0c1k3y5msc1xplhx0ksa7g08yqjaavns8s5zrfg4ig8az30gwlpa"; - }; - + go-systemd = buildFromGitHub { + owner = "coreos"; + repo = "go-systemd"; buildInputs = [ dbus ]; }; lxd-go-systemd = buildFromGitHub { - rev = "a3dcd1d0480ee0ae9ec354f1632202bfba715e03"; date = "2015-07-01"; owner = "stgraber"; repo = "lxd-go-systemd"; - sha256 = "006dhy3j8ld0kycm8hrjxvakd7xdn1b6z2dsjp1l4sqrxdmm188w"; buildInputs = [ dbus ]; }; go-update-v0 = buildFromGitHub { - rev = "d8b0b1d421aa1cbf392c05869f8abbc669bb7066"; owner = "inconshreveable"; repo = "go-update"; - sha256 = "0cvkik2w368fzimx3y29ncfgw7004qkbdf2n3jy5czvzn35q7dpa"; goPackagePath = "gopkg.in/inconshreveable/go-update.v0"; buildInputs = [ osext binarydist ]; }; go-uuid = buildFromGitHub { - rev = "6b8e5b55d20d01ad47ecfe98e5171688397c61e9"; date = "2015-07-22"; owner = "satori"; repo = "go.uuid"; - sha256 = "0injxzds41v8nc0brvyrrjl66fk3hycz6im38s5r9ccbwlp68p44"; }; go-vhost = buildFromGitHub { - rev = "c4c28117502e4bf00960c8282b2d1c51c865fe2c"; owner = "inconshreveable"; repo = "go-vhost"; - sha256 = "1rway6sls6fl2s2jk20ajj36rrlzh9944ncc9pdd19kifix54z32"; }; go-zipexe = buildFromGitHub { - rev = "a5fe2436ffcb3236e175e5149162b41cd28bd27d"; date = "2015-03-29"; owner = "daaku"; repo = "go.zipexe"; - sha256 = "0vi5pskhifb6zw78w2j97qbhs09zmrlk4b48mybgk5b3sswp6510"; }; go-zookeeper = buildFromGitHub { - rev = "5bb5cfc093ad18a28148c578f8632cfdb4d802e4"; date = "2015-06-02"; owner = "samuel"; repo = "go-zookeeper"; - sha256 = "1kpx1ymh7rds0b2km291idnyqi0zck74nd8hnk72crgz7wmpqv6z"; }; lint = buildFromGitHub { - rev = "7b7f4364ff76043e6c3610281525fabc0d90f0e4"; date = "2015-06-23"; owner = "golang"; repo = "lint"; - sha256 = "1bj7zv534hyh87bp2vsbhp94qijc5nixb06li1dzfz9n0wcmlqw9"; excludedPackages = "testdata"; buildInputs = [ tools ]; }; - goquery = buildGoPackage rec { - rev = "f065786d418c9d22a33cad33decd59277af31471"; #tag v.0.3.2 - name = "goquery-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/PuerkitoBio/goquery"; + goquery = buildFromGitHub { + owner = "PuerkitoBio"; + repo = "goquery"; propagatedBuildInputs = [ cascadia net ]; buildInputs = [ cascadia net ]; doCheck = true; - src = fetchFromGitHub { - inherit rev; - owner = "PuerkitoBio"; - repo = "goquery"; - sha256 = "0bskm3nja1v3pmg7g8nqjkmpwz5p72h1h81y076x1z17zrjaw585"; - }; }; groupcache = buildFromGitHub { - rev = "604ed5785183e59ae2789449d89e73f3a2a77987"; owner = "golang"; repo = "groupcache"; - sha256 = "1jh862mmgss71wls4yxv633agr7dk7y6h36npwqxbmhbz5c2q28l"; buildInputs = [ protobuf ]; }; grpc = buildFromGitHub { - rev = "d455e65570c07e6ee7f23275063fbf34660ea616"; date = "2015-08-29"; owner = "grpc"; repo = "grpc-go"; - sha256 = "08vra95hc8ihnj353680zhiqrv3ssw5yywkrifzb1zwl0l3cs2hr"; goPackagePath = "google.golang.org/grpc"; goPackageAliases = [ "github.com/grpc/grpc-go" ]; propagatedBuildInputs = [ http2 net protobuf oauth2 glog etcd ]; @@ -1794,73 +1299,38 @@ let }; gtreap = buildFromGitHub { - rev = "0abe01ef9be25c4aedc174758ec2d917314d6d70"; date = "2015-08-07"; owner = "steveyen"; repo = "gtreap"; - sha256 = "03z5j8myrpmd0jk834l318xnyfm0n4rg15yq0d35y7j1aqx26gvk"; goPackagePath = "github.com/steveyen/gtreap"; }; - gucumber = buildGoPackage rec { - rev = "e8116c9c66e641e9f81fc0a79fac923dfc646378"; - name = "gucumber-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/lsegal/gucumber"; - - src = fetchFromGitHub { - inherit rev; - owner = "lsegal"; - repo = "gucumber"; - sha256 = "1ic1lsv05da6qv8xmf94lpbmaisxi8mwbv7bh2k1y78lh43yncah"; - }; - + gucumber = buildFromGitHub { + owner = "lsegal"; + repo = "gucumber"; buildInputs = [ testify ]; propagatedBuildInputs = [ ansicolor ]; }; hcl = buildFromGitHub { - rev = "54864211433d45cb780682431585b3e573b49e4a"; owner = "hashicorp"; repo = "hcl"; - sha256 = "07l2dydzjpdgm2d4a72hkmincn455j3nrafg6hs3c23bkvizj950"; buildInputs = [ go-multierror ]; }; - hipchat-go = buildGoPackage rec { - rev = "1dd13e154219c15e2611fe46adbb6bf65db419b7"; - name = "hipchat-go-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/tbruyelle/hipchat-go"; - - src = fetchFromGitHub { - inherit rev; - owner = "tbruyelle"; - repo = "hipchat-go"; - sha256 = "060wg5yjlh28v03mvm80kwgxyny6cyj7zjpcdg032b8b1sz9z81s"; - }; + hipchat-go = buildFromGitHub { + owner = "tbruyelle"; + repo = "hipchat-go"; }; - hmacauth = buildGoPackage { - name = "hmacauth"; - goPackagePath = "github.com/18F/hmacauth"; - src = fetchFromGitHub { - rev = "9232a6386b737d7d1e5c1c6e817aa48d5d8ee7cd"; - owner = "18F"; - repo = "hmacauth"; - sha256 = "056mcqrf2bv0g9gn2ixv19srk613h4sasl99w9375mpvmadb3pz1"; - }; + hmacauth = buildFromGitHub { + owner = "18F"; + repo = "hmacauth"; }; - hound = buildGoPackage rec { - rev = "0a364935ba9db53e6f3f5563b02fcce242e0930f"; - name = "hound-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/etsy/hound"; - - src = fetchFromGitHub { - inherit rev; - owner = "etsy"; - repo = "hound"; - sha256 = "0jhnjskpm15nfa1cvx0h214lx72zjvnkjwrbgwgqqyn9afrihc7q"; - }; + hound = buildFromGitHub { + owner = "etsy"; + repo = "hound"; buildInputs = [ go-bindata.bin pkgs.nodejs pkgs.nodePackages.react-tools pkgs.python pkgs.rsync ]; postInstall = '' pushd go @@ -1871,41 +1341,27 @@ let ''; }; - hologram = buildGoPackage rec { - rev = "63014b81675e1228818bf36ef6ef0028bacad24b"; - name = "hologram-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/AdRoll/hologram"; - - src = fetchFromGitHub { - inherit rev; - owner = "AdRoll"; - repo = "hologram"; - sha256 = "0k8g7dwrkxdvmzs4aa8zz39qa8r2danc4x40hrblcgjhfcwzxrzr"; - }; + hologram = buildFromGitHub { + owner = "AdRoll"; + repo = "hologram"; buildInputs = [ crypto protobuf goamz rgbterm go-bindata go-homedir ldap g2s gox ]; }; http2 = buildFromGitHub rec { - rev = "f8202bc903bda493ebba4aa54922d78430c2c42f"; owner = "bradfitz"; repo = "http2"; - sha256 = "0cza2126jbji5vijwk4dxs05hifnff04xcr0vhxvafs6hz3sacvr"; buildInputs = [ crypto ]; }; httprouter = buildFromGitHub { - rev = "6aacfd5ab513e34f7e64ea9627ab9670371b34e7"; date = "2015-07-08"; owner = "julienschmidt"; repo = "httprouter"; - sha256 = "00rrjysmq898qcrf2hfwfh9s70vwvmjx2kp5w03nz1krxa4zhrkl"; }; hugo = buildFromGitHub { - rev = "v0.15"; owner = "spf13"; repo = "hugo"; - sha256 = "1v0z9ar5kakhib3c3c43ddwd1ga4b8icirg6kk3cnaqfckd638l5"; buildInputs = [ mapstructure text websocket cobra osext fsnotify.v1 afero jwalterweatherman cast viper yaml-v2 ace purell mmark blackfriday amber @@ -1914,19 +1370,15 @@ let }; i3cat = buildFromGitHub { - rev = "b9ba886a7c769994ccd8d4627978ef4b51fcf576"; date = "2015-03-21"; owner = "vincent-petithory"; repo = "i3cat"; - sha256 = "1xlm5c9ajdb71985nq7hcsaraq2z06przbl6r4ykvzi8w2lwgv72"; buildInputs = [ structfield ]; }; inf = buildFromGitHub { - rev = "c85f1217d51339c0fa3a498cc8b2075de695dae6"; owner = "go-inf"; repo = "inf"; - sha256 = "1ykdk410vca8i35db2fp6qqcfx0bmx95k0xqd15wzsl0xjmyjk3y"; goPackagePath = "gopkg.in/inf.v0"; goPackageAliases = [ "github.com/go-inf/inf" ]; }; @@ -1943,44 +1395,30 @@ let }; influxdb8-client = buildFromGitHub{ - rev = "v0.8.8"; owner = "influxdb"; repo = "influxdb"; - sha256 = "0xpigp76rlsxqj93apjzkbi98ha5g4678j584l6hg57p711gqsdv"; subPackages = [ "client" ]; }; - eckardt.influxdb-go = buildGoPackage rec { - rev = "8b71952efc257237e077c5d0672e936713bad38f"; - name = "influxdb-go-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/eckardt/influxdb-go"; - src = fetchgit { - inherit rev; - url = "https://${goPackagePath}.git"; - sha256 = "5318c7e1131ba2330c90a1b67855209e41d3c77811b1d212a96525b42d391f6e"; - }; + eckardt.influxdb-go = buildFromGitHub { + owner = "eckardt"; + repo = "influxdb-go"; }; flagfile = buildFromGitHub { - rev = "871ce569c29360f95d7596f90aa54d5ecef75738"; owner = "spacemonkeygo"; repo = "flagfile"; - sha256 = "1y6wf1s51c90qc1aki8qikkw1wqapzjzr690xrmnrngsfpdyvkrc"; }; iochan = buildFromGitHub { - rev = "b584a329b193e206025682ae6c10cdbe03b0cd77"; owner = "mitchellh"; repo = "iochan"; - sha256 = "1fcwdhfci41ibpng2j4c1bqfng578cwzb3c00yw1lnbwwhaq9r6b"; }; ipfs = buildFromGitHub{ - rev = "7070b4d878baad57dcc8da80080dd293aa46cabd"; date = "2016-01-12"; owner = "ipfs"; repo = "go-ipfs"; - sha256 = "1b7aimnbz287fy7p27v3qdxnz514r5142v3jihqxanbk9g384gcd"; disabled = isGo14; meta = with stdenv.lib; { description = "A global, versioned, peer-to-peer filesystem"; @@ -1989,25 +1427,19 @@ let }; json2csv = buildFromGitHub{ - rev = "d82e60e6dc2a7d3bcf15314d1ecbebeffaacf0c6"; owner = "jehiah"; repo = "json2csv"; - sha256 = "1fw0qqaz2wj9d4rj2jkfj7rb25ra106p4znfib69p4d3qibfjcsn"; }; jwalterweatherman = buildFromGitHub { - rev = "c2aa07df593850a04644d77bb757d002e517a296"; owner = "spf13"; repo = "jwalterweatherman"; - sha256 = "0m8867afsvka5gp2idrmlarpjg7kxx7qacpwrz1wl8y3zxyn3945"; }; kagome = buildFromGitHub { - rev = "1bbdbdd590e13a8c2f4508c67a079113cd7b9f51"; date = "2016-01-19"; owner = "ikawaha"; repo = "kagome"; - sha256 = "1isnjdkn9hnrkp5g37p2k5bbsrx0ma32v3icwlmwwyc5mppa4blb"; # I disable the parallel building, because otherwise each # spawned compile takes over 1.5GB of RAM. @@ -2017,118 +1449,75 @@ let goPackagePath = "github.com/ikawaha/kagome"; }; - ldap = buildGoPackage rec { - rev = "83e65426fd1c06626e88aa8a085e5bfed0208e29"; - name = "ldap-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/go-ldap/ldap"; + ldap = buildFromGitHub { + owner = "go-ldap"; + repo = "ldap"; goPackageAliases = [ "github.com/nmcclain/ldap" "github.com/vanackere/ldap" ]; - - src = fetchFromGitHub { - inherit rev; - owner = "go-ldap"; - repo = "ldap"; - sha256 = "179lwaf0hvczl8g4xzkpcpzq25p1b23f7399bx5zl55iin62d8yz"; - }; - propagatedBuildInputs = [ asn1-ber ]; }; - levigo = buildGoPackage rec { - rev = "1ddad808d437abb2b8a55a950ec2616caa88969b"; - name = "levigo-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/jmhodges/levigo"; - - src = fetchFromGitHub { - inherit rev; - owner = "jmhodges"; - repo = "levigo"; - sha256 = "1lmafyk7nglhig3n471jq4hmnqf45afj5ldb2jx0253f5ii4r2yq"; - }; - + levigo = buildFromGitHub { + owner = "jmhodges"; + repo = "levigo"; buildInputs = [ pkgs.leveldb ]; }; liner = buildFromGitHub { - rev = "ad1edfd30321d8f006ccf05f1e0524adeb943060"; owner = "peterh"; repo = "liner"; - sha256 = "0c24d9j1gnq7r982h1l2isp3d37379qw155hr8ihx9i2mhpfz317"; }; odeke-em.log = buildFromGitHub { - rev = "cad53c4565a0b0304577bd13f3862350bdc5f907"; owner = "odeke-em"; repo = "log"; - sha256 = "059c933qjikxlvaywzpzljqnab19svymbv6x32pc7khw156fh48w"; }; log15 = buildFromGitHub { - rev = "dc7890abeaadcb6a79a9a5ee30bc1897bbf97713"; owner = "inconshreveable"; repo = "log15"; - sha256 = "15wgicl078h931n90rksgbqmfixvbfxywk3m8qkaln34v69x4vgp"; goPackagePath = "gopkg.in/inconshreveable/log15.v2"; propagatedBuildInputs = [ go-colorable ]; }; - log4go = buildGoPackage rec { - rev = "cb4cc51cd03958183d3b637d0750497d88c2f7a8"; - name = "log4go-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/ccpaging/log4go"; + log4go = buildFromGitHub { + owner = "ccpaging"; + repo = "log4go"; goPackageAliases = [ "github.com/alecthomas/log4go" "code.google.com/p/log4go" ]; - - src = fetchFromGitHub { - inherit rev; - owner = "ccpaging"; - repo = "log4go"; - sha256 = "0l9f86zzhla9hq35q4xhgs837283qrm4gxbp5lrwwls54ifiq7k2"; - }; - propagatedBuildInputs = [ go-colortext ]; }; logger = buildFromGitHub { - rev = "c96f6a1a8c7b6bf2f4860c667867d90174799eb2"; date = "2015-05-23"; owner = "calmh"; repo = "logger"; - sha256 = "1f67xbvvf210g5cqa84l12s00ynfbkjinhl8y6m88yrdb025v1vg"; }; logrus = buildFromGitHub rec { - rev = "v0.9.0"; owner = "Sirupsen"; repo = "logrus"; - sha256 = "1m6vvd4pg4lwglhk54lv5mf6cc8h7bi0d9zb3gar4crz531r66y4"; propagatedBuildInputs = [ airbrake-go bugsnag-go raven-go ]; }; logutils = buildFromGitHub { - rev = "0dc08b1671f34c4250ce212759ebd880f743d883"; owner = "hashicorp"; repo = "logutils"; - sha256 = "0rynhjwvacv9ibl2k4fwz0xy71d583ac4p33gm20k9yldqnznc7r"; }; luhn = buildFromGitHub { - rev = "0c8388ff95fa92d4094011e5a04fc99dea3d1632"; date = "2015-01-13"; owner = "calmh"; repo = "luhn"; - sha256 = "1hfj1lx7wdpifn16zqrl4xml6cj5gxbn6hfz1f46g2a6bdf0gcvs"; }; lxd = buildFromGitHub { - rev = "lxd-0.17"; owner = "lxc"; repo = "lxd"; - sha256 = "1yi3dr1bgdplc6nya10k5jsj3psbf3077vqad8x8cjza2z9i48fp"; 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 @@ -2141,10 +1530,8 @@ let }; manners = buildFromGitHub { - rev = "0.4.0"; owner = "braintree"; repo = "manners"; - sha256 = "07985pbfhwlhbglr9zwh2wx8kkp0wzqr1lf0xbbxbhga4hn9q3ak"; meta = with stdenv.lib; { description = "A polite Go HTTP server that shuts down gracefully"; @@ -2155,62 +1542,31 @@ let }; mapstructure = buildFromGitHub { - rev = "281073eb9eb092240d33ef253c404f1cca550309"; owner = "mitchellh"; repo = "mapstructure"; - sha256 = "1zjx9fv29639sp1fn84rxs830z7gp7bs38yd5y1hl5adb8s5x1mh"; }; - mdns = buildGoPackage rec { - rev = "2b439d37011456df8ff83a70ffd1cd6046410113"; - name = "mdns-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/hashicorp/mdns"; - - src = fetchFromGitHub { - inherit rev; - owner = "hashicorp"; - repo = "mdns"; - sha256 = "17zwk212zmyramnjylpvvrvbbsz0qb5crkhly6yiqkyll3qzpb96"; - }; - + mdns = buildFromGitHub { + owner = "hashicorp"; + repo = "mdns"; propagatedBuildInputs = [ net dns ]; }; - memberlist = buildGoPackage rec { - rev = "6025015f2dc659ca2c735112d37e753bda6e329d"; - name = "memberlist-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/hashicorp/memberlist"; - - src = fetchFromGitHub { - inherit rev; - owner = "hashicorp"; - repo = "memberlist"; - sha256 = "01s2gwnbgvwz4wshz9d4za0p12ji4fnapnlmz3jwfcmcwjpyqfb7"; - }; - + memberlist = buildFromGitHub { + owner = "hashicorp"; + repo = "memberlist"; propagatedBuildInputs = [ ugorji.go armon.go-metrics ]; }; - memberlist_v2 = buildGoPackage rec { - rev = "165267096ca647f00cc0b59a8f1ede9a96cbfbb1"; - name = "memberlist-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/hashicorp/memberlist"; - - src = fetchFromGitHub { - inherit rev; - owner = "hashicorp"; - repo = "memberlist"; - sha256 = "09lh79xqy7q0gy23x22lpfwihb5acr750vxl2fx0i4b88kq1vrzh"; - }; - + memberlist_v2 = buildFromGitHub { + owner = "hashicorp"; + repo = "memberlist"; propagatedBuildInputs = [ ugorji.go armon.go-metrics ]; }; mesos-dns = buildFromGitHub { - rev = "v0.1.2"; owner = "mesosphere"; repo = "mesos-dns"; - sha256 = "0zs6lcgk43j7jp370qnii7n55cd9pa8gl56r8hy4nagfvlvrcm02"; # Avoid including the benchmarking test helper in the output: subPackages = [ "." ]; @@ -2219,49 +1575,34 @@ let }; mesos-go = buildFromGitHub { - rev = "d98afa618cc9a9251758916f49ce87f9051b69a4"; owner = "mesos"; repo = "mesos-go"; - sha256 = "01ab0jf3cfb1rdwwb21r38rcfr5vp86pkfk28mws8298mlzbpri7"; propagatedBuildInputs = [ gogo.protobuf glog net testify go-zookeeper objx uuid ]; excludedPackages = "test"; }; - mesos-stats = buildGoPackage rec { - rev = "0c6ea494c19bedc67ebb85ce3d187ec21050e920"; - name = "mesos-stats-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/antonlindstrom/mesos_stats"; - src = fetchFromGitHub { - inherit rev; - owner = "antonlindstrom"; - repo = "mesos_stats"; - sha256 = "18ggyjf4nyn77gkn16wg9krp4dsphgzdgcr3mdflv6mvbr482ar4"; - }; + mesos-stats = buildFromGitHub { + owner = "antonlindstrom"; + repo = "mesos_stats"; }; mgo = buildFromGitHub { - rev = "r2015.06.03"; owner = "go-mgo"; repo = "mgo"; - sha256 = "1bwqbngdy0ghwpvarsz8rlrirdmjrda44aghihpfmin06hxy3zcd"; goPackagePath = "gopkg.in/mgo.v2"; goPackageAliases = [ "github.com/go-mgo/mgo" ]; buildInputs = [ pkgs.cyrus_sasl tomb ]; }; mmark = buildFromGitHub { - rev = "eacb2132c31a489033ebb068432892ba791a2f1b"; owner = "miekg"; repo = "mmark"; - sha256 = "0wsi6fb6f1qi1a8yv858bkgn8pmsspw2k6dx5fx38kvg8zsb4l1a"; buildInputs = [ toml ]; }; mongo-tools = buildFromGitHub { - rev = "4fcfd3e57415de95c0c016def07b95bca63cccb4"; owner = "mongodb"; repo = "mongo-tools"; - sha256 = "0rm7bnb81hr0byxhvagwv8an1bky882nz68cmm2kbznzyprvhyaa"; buildInputs = [ gopass go-flags mgo openssl tomb ]; excludedPackages = "vendor"; @@ -2279,78 +1620,49 @@ let }; mousetrap = buildFromGitHub { - rev = "9dbb96d2c3a964935b0870b5abaea13c98b483aa"; owner = "inconshreveable"; repo = "mousetrap"; - sha256 = "1f9g8vm18qv1rcb745a4iahql9vfrz0jni9mnzriab2wy1pfdl5b"; }; - msgpack = buildGoPackage rec { - rev = "9dbd4ac30c0b67927f0fb5557fb8341047bd35f7"; - name = "msgpack-${stdenv.lib.strings.substring 0 7 rev}"; + msgpack = buildFromGitHub { + owner = "vmihailenco"; + repo = "msgpack"; goPackagePath = "gopkg.in/vmihailenco/msgpack.v2"; - - src = fetchFromGitHub { - inherit rev; - owner = "vmihailenco"; - repo = "msgpack"; - sha256 = "0nq9yb85hi3c35kwyl38ywv95vd8n7aywmj78wwylglld22nfmw2"; - }; }; mtpfs = buildFromGitHub { - rev = "3ef47f91c38cf1da3e965e37debfc81738e9cd94"; date = "2015-08-01"; owner = "hanwen"; repo = "go-mtpfs"; - sha256 = "1f7lcialkpkwk01f7yxw77qln291sqjkspb09mh0yacmrhl231g8"; - buildInputs = [ go-fuse usb ]; }; mux = buildFromGitHub { - rev = "5a8a0400500543e28b2886a8c52d21a435815411"; date = "2015-08-05"; owner = "gorilla"; repo = "mux"; - sha256 = "15w1bw14vx157r6v98fhy831ilnbzdsm5xzvs23j8hw6gnknzaw1"; propagatedBuildInputs = [ context ]; }; muxado = buildFromGitHub { - rev = "f693c7e88ba316d1a0ae3e205e22a01aa3ec2848"; owner = "inconshreveable"; repo = "muxado"; - sha256 = "1vgiwwxhgx9c899f6ikvrs0w6vfsnypzalcqyr0mqm2w816r9hhs"; }; mysql = buildFromGitHub { - rev = "fb7299726d2e68745a8805b14f2ff44b5c2cfa84"; owner = "go-sql-driver"; repo = "mysql"; - sha256 = "185af0x475hq2wmm2zdvxjyslkplf8zzqijdxa937zqxq63qiw4w"; }; - net-rpc-msgpackrpc = buildGoPackage rec { - rev = "d377902b7aba83dd3895837b902f6cf3f71edcb2"; - name = "net-rpc-msgpackrpc-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/hashicorp/net-rpc-msgpackrpc"; - - src = fetchFromGitHub { - inherit rev; - owner = "hashicorp"; - repo = "net-rpc-msgpackrpc"; - sha256 = "05q8qlf42ygafcp8zdyx7y7kv9vpjrxnp8ak4qcszz9kgl2cg969"; - }; - + net-rpc-msgpackrpc = buildFromGitHub { + owner = "hashicorp"; + repo = "net-rpc-msgpackrpc"; propagatedBuildInputs = [ ugorji.go ]; }; ngrok = buildFromGitHub { - rev = "1.7.1"; owner = "inconshreveable"; repo = "ngrok"; - sha256 = "1r4nc9knp0nxg4vglg7v7jbyd1nh1j2590l720ahll8a4fbsx5a4"; goPackagePath = "ngrok"; preConfigure = '' @@ -2371,17 +1683,13 @@ let }; nitro = buildFromGitHub { - rev = "24d7ef30a12da0bdc5e2eb370a79c659ddccf0e8"; owner = "spf13"; repo = "nitro"; - sha256 = "143sbpx0jdgf8f8ayv51x6l4jg6cnv6nps6n60qxhx4vd90s6mib"; }; nsq = buildFromGitHub { - rev = "v0.3.5"; owner = "bitly"; repo = "nsq"; - sha256 = "1r7jgplzn6bgwhd4vn8045n6cmm4iqbzssbjgj7j1c28zbficy2f"; excludedPackages = "bench"; @@ -2389,21 +1697,14 @@ let }; ntp = buildFromGitHub { - rev = "0a5264e2563429030eb922f258229ae3fee5b5dc"; owner = "beevik"; repo = "ntp"; - sha256 = "03fvgbjf2aprjj1s6wdc35wwa7k1w5phkixzvp5n1j21sf6w4h24"; }; - oauth2_proxy = buildGoPackage { + oauth2_proxy = buildFromGitHub { name = "oauth2_proxy"; - goPackagePath = "github.com/bitly/oauth2_proxy"; - src = fetchFromGitHub { - rev = "10f47e325b782a60b8689653fa45360dee7fbf34"; - owner = "bitly"; - repo = "oauth2_proxy"; - sha256 = "13f6kaq15f6ial9gqzrsx7i94jhd5j70js2k93qwxcw1vkh1b6si"; - }; + owner = "bitly"; + repo = "oauth2_proxy"; buildInputs = [ go-assert go-options go-simplejson toml fsnotify.v1 oauth2 google-api-go-client hmacauth @@ -2411,68 +1712,43 @@ let }; objx = buildFromGitHub { - rev = "cbeaeb16a013161a98496fad62933b1d21786672"; owner = "stretchr"; repo = "objx"; - sha256 = "1xn7iibjik77h6h0jilfvcjkkzaqz45baf44p3rb2i03hbmkqkp1"; }; - oglematchers = buildGoPackage rec { - rev = "4fc24f97b5b74022c2a3f4ca7eed57ca29083d3e"; - name = "oglematchers-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/jacobsa/oglematchers"; - src = fetchgit { - inherit rev; - url = "https://${goPackagePath}.git"; - sha256 = "4075ede31601adf8c4e92739693aebffa3718c641dfca75b09cf6b4bd6c26cc0"; - }; + oglematchers = buildFromGitHub { + owner = "jacobsa"; + repo = "oglematchers"; #goTestInputs = [ ogletest ]; doCheck = false; # infinite recursion }; - oglemock = buildGoPackage rec { - rev = "d054ecee522bdce4481690cdeb09d1b4c44da4e1"; - name = "oglemock-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/jacobsa/oglemock"; - src = fetchgit { - inherit rev; - url = "https://${goPackagePath}.git"; - sha256 = "685e7fc4308d118ae25467ba84c64754692a7772c77c197f38d8c1b63ea81da2"; - }; + oglemock = buildFromGitHub { + owner = "jacobsa"; + repo = "oglemock"; buildInputs = [ oglematchers ]; #goTestInputs = [ ogletest ]; - doCheck = false; # infinite recursion }; - ogletest = buildGoPackage rec { - rev = "7de485607c3f215cf92c1f793b5d5a7de46ec3c7"; - name = "ogletest-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/jacobsa/ogletest"; - src = fetchgit { - inherit rev; - url = "https://${goPackagePath}.git"; - sha256 = "0cfc43646d59dcea5772320f968aef2f565fb5c46068d8def412b8f635365361"; - }; + ogletest = buildFromGitHub { + owner = "jacobsa"; + repo = "ogletest"; buildInputs = [ oglemock oglematchers ]; doCheck = false; # check this again }; oh = buildFromGitHub { - rev = "f3e482f664e76dcf98d5f94dd93c216da300b78e"; date = "2016-02-23"; owner = "michaelmacinnis"; repo = "oh"; - sha256 = "1j5g37jjl1kxri44ihb1bsrzx4al07dvl4s5dglb2m7bjia6iqs2"; goPackageAliases = [ "github.com/michaelmacinnis/oh" ]; buildInputs = [ adapted liner ]; disabled = isGo14; }; openssl = buildFromGitHub { - rev = "4c6dbafa5ec35b3ffc6a1b1e1fe29c3eba2053ec"; owner = "10gen"; repo = "openssl"; - sha256 = "1033c9vgv9lf8ks0qjy0ylsmx1hizqxa6izalma8vi30np6ka6zn"; goPackageAliases = [ "github.com/spacemonkeygo/openssl" ]; nativeBuildInputs = [ pkgs.pkgconfig ]; buildInputs = [ pkgs.openssl ]; @@ -2485,31 +1761,24 @@ let # reintroduced for gocrytpfs as I don't understand the 10gen/spacemonkey split openssl-spacemonkey = buildFromGitHub rec { - rev = "71f9da2a482c2b7bc3507c3fabaf714d6bb8b75d"; - name = "openssl-${stdenv.lib.strings.substring 0 7 rev}"; owner = "spacemonkeygo"; repo = "openssl"; - sha256 = "1byxwiq4mcbsj0wgaxqmyndp6jjn5gm8fjlsxw9bg0f33a3kn5jk"; nativeBuildInputs = [ pkgs.pkgconfig ]; buildInputs = [ pkgs.openssl ]; propagatedBuildInputs = [ spacelog ]; }; opsgenie-go-sdk = buildFromGitHub { - rev = "c6e1235dfed2126eb9b562c4d776baf55ccd23e3"; date = "2015-08-24"; owner = "opsgenie"; repo = "opsgenie-go-sdk"; - sha256 = "1prvnjiqmhnp9cggp9f6882yckix2laqik35fcj32117ry26p4jm"; propagatedBuildInputs = [ seelog go-querystring goreq ]; excludedPackages = "samples"; }; osext = buildFromGitHub { - rev = "29ae4ffbc9a6fe9fb2bc5029050ce6996ea1d3bc"; owner = "kardianos"; repo = "osext"; - sha256 = "1mawalaz84i16njkz6f9fd5jxhcbxkbsjnav3cmqq2dncv2hyv8a"; goPackageAliases = [ "github.com/bugsnag/osext" "bitbucket.org/kardianos/osext" @@ -2517,67 +1786,45 @@ let }; pat = buildFromGitHub { - rev = "b8a35001b773c267eb260a691f4e5499a3531600"; owner = "bmizerany"; repo = "pat"; - sha256 = "11zxd45rvjm6cn3wzbi18wy9j4vr1r1hgg6gzlqnxffiizkycxmz"; }; pathtree = buildFromGitHub { - rev = "41257a1839e945fce74afd070e02bab2ea2c776a"; owner = "robfig"; repo = "pathtree"; - sha256 = "087hvskjx1zw815h1617i135vwsn5288v579mz6yral91wbn0kvi"; }; - panicwrap = buildGoPackage rec { - rev = "e5f9854865b9778a45169fc249e99e338d4d6f27"; - name = "panicwrap-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/bugsnag/panicwrap"; - - src = fetchFromGitHub { - inherit rev; - owner = "bugsnag"; - repo = "panicwrap"; - sha256 = "01afviklmgm25i82c0z9xkjgbrh0j1fm9a1adqfd2jqv0cm41k9d"; - }; - + panicwrap = buildFromGitHub { + owner = "bugsnag"; + repo = "panicwrap"; propagatedBuildInputs = [ osext ]; }; pb = buildFromGitHub { - rev = "e648e12b78cedf14ebb2fc1855033f07b034cfbb"; owner = "cheggaaa"; repo = "pb"; - sha256 = "03k4cars7hcqqgdsd0minfls2p7gjpm8q6y8vknh1s68kvxd4xam"; }; - perks = buildFromGitHub rec { + perks = buildFromGitHub { date = "2014-07-16"; owner = "bmizerany"; repo = "perks"; - rev = "d9a9656a3a4b1c2864fdb44db2ef8619772d92aa"; - sha256 = "0f39b3zfm1zd6xcvlm6szgss026qs84n2j9y5bnb3zxzdkxb9w9n"; }; beorn7.perks = buildFromGitHub rec { date = "2015-02-23"; owner = "beorn7"; repo = "perks"; - rev = "b965b613227fddccbfffe13eae360ed3fa822f8d"; - sha256 = "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk"; }; - pflag = buildGoPackage rec { + # XXX: why have does pflag seem to be a dupe of pflag-spf13? + pflag = buildFromGitHub { date = "20131112"; rev = "94e98a55fb412fcbcfc302555cb990f5e1590627"; - name = "pflag-${date}-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/spf13/pflag"; - src = fetchgit { - inherit rev; - url = "https://${goPackagePath}.git"; - sha256 = "0z8nzdhj8nrim8fz11magdl0wxnisix9p2kcvn5kkb3bg8wmxhbg"; - }; + owner = "spf13"; + repo = "pflag"; + sha256 = "0z8nzdhj8nrim8fz11magdl0wxnisix9p2kcvn5kkb3bg8wmxhbg"; doCheck = false; # bad import path in tests }; @@ -2592,10 +1839,8 @@ let isx86_64 = stdenv.lib.any (n: n == stdenv.system) stdenv.lib.platforms.x86_64; gui = true; # Might be implemented with nixpkgs config. in buildFromGitHub { - rev = "bce6e0dc61803c23699c749e29a83f81da3c41b2"; owner = "agl"; repo = "pond"; - sha256 = "1dmgbg4ak3jkbgmxh0lr4hga1nl623mh7pvsgby1rxl4ivbzwkh4"; buildInputs = [ net crypto protobuf ed25519 pkgs.trousers ] ++ stdenv.lib.optional isx86_64 pkgs.dclxvi @@ -2610,52 +1855,33 @@ let }; pongo2 = buildFromGitHub { - rev = "5e81b817a0c48c1c57cdf1a9056cf76bdee02ca9"; date = "2014-10-27"; owner = "flosch"; repo = "pongo2"; - sha256 = "0fd7d79644zmcirsb1gvhmh0l5vb5nyxmkzkvqpmzzcg6yfczph8"; goPackagePath = "gopkg.in/flosch/pongo2.v3"; }; - pool = buildGoPackage rec { - rev = "v2.0.0"; - name = "pq-${rev}"; + pool = buildFromGitHub { + owner = "fatih"; + repo = "pool"; goPackagePath = "gopkg.in/fatih/pool.v2"; - - src = fetchFromGitHub { - inherit rev; - owner = "fatih"; - repo = "pool"; - sha256 = "1jlrakgnpvhi2ny87yrsj1gyrcncfzdhypa9i2mlvvzqlj4r0dn0"; - }; }; pq = buildFromGitHub { - rev = "0dad96c0b94f8dee039aa40467f767467392a0af"; owner = "lib"; repo = "pq"; - sha256 = "06c38iy37251mh8jy9s8n97b01pjnqpq8ii77nnmqh1dsph37jz4"; }; - pretty = buildGoPackage rec { - rev = "bc9499caa0f45ee5edb2f0209fbd61fbf3d9018f"; - name = "pretty-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/kr/pretty"; - src = fetchFromGitHub { - inherit rev; - owner = "kr"; - repo = "pretty"; - sha256 = "1m61y592qsnwsqn76v54mm6h2pcvh4wlzbzscc1ag645x0j33vvl"; - }; + pretty = buildFromGitHub { + owner = "kr"; + repo = "pretty"; propagatedBuildInputs = [ kr.text ]; }; prometheus.alertmanager = buildFromGitHub rec { - rev = "0.1.0"; + rev = ghPackages.prometheus.alertmanager.rev; owner = "prometheus"; repo = "alertmanager"; - sha256 = "1ya465bns6cj2lqbipmfm13wz8kxii5h9mm7lc0ba1xv26xx5zs7"; buildInputs = [ # fsnotify.v0 @@ -2692,10 +1918,8 @@ let }; prometheus.client_golang = buildFromGitHub { - rev = "0.7.0"; owner = "prometheus"; repo = "client_golang"; - sha256 = "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna"; propagatedBuildInputs = [ goautoneg protobuf @@ -2707,10 +1931,8 @@ let }; prometheus.cli = buildFromGitHub { - rev = "0.3.0"; owner = "prometheus"; repo = "prometheus_cli"; - sha256 = "1qxqrcbd0d4mrjrgqz882jh7069nn5gz1b84rq7d7z1f1dqhczxn"; buildInputs = [ prometheus.client_model @@ -2727,19 +1949,15 @@ let }; prometheus.client_model = buildFromGitHub { - rev = "fa8ad6fec33561be4280a8f0514318c79d7f6cb6"; date = "2015-02-12"; owner = "prometheus"; repo = "client_model"; - sha256 = "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9"; buildInputs = [ protobuf ]; }; prometheus.collectd-exporter = buildFromGitHub { - rev = "0.1.0"; owner = "prometheus"; repo = "collectd_exporter"; - sha256 = "165zsdn0lffb6fvxz75szmm152a6wmia5skb96k1mv59qbmn9fi1"; buildInputs = [ prometheus.client_golang ]; meta = with stdenv.lib; { description = "Relay server for exporting metrics from collectd to Prometheus"; @@ -2751,10 +1969,8 @@ let }; prometheus.haproxy-exporter = buildFromGitHub { - rev = "0.4.0"; owner = "prometheus"; repo = "haproxy_exporter"; - sha256 = "0cwls1d4hmzjkwc50mjkxjb4sa4q6yq581wlc5sg9mdvl6g91zxr"; buildInputs = [ prometheus.client_golang ]; meta = with stdenv.lib; { description = "HAProxy Exporter for the Prometheus monitoring system"; @@ -2766,19 +1982,15 @@ let }; prometheus.log = buildFromGitHub { - rev = "439e5db48fbb50ebbaf2c816030473a62f505f55"; date = "2015-05-29"; owner = "prometheus"; repo = "log"; - sha256 = "1fl23gsw2hn3c1y91qckr661sybqcw2gqnd1gllxn3hp6p2w6hxv"; propagatedBuildInputs = [ logrus ]; }; prometheus.mesos-exporter = buildFromGitHub { - rev = "0.1.0"; owner = "prometheus"; repo = "mesos_exporter"; - sha256 = "059az73j717gd960g4jigrxnvqrjh9jw1c324xpwaafa0bf10llm"; buildInputs = [ mesos-stats prometheus.client_golang glog ]; meta = with stdenv.lib; { description = "Export Mesos metrics to Prometheus"; @@ -2790,10 +2002,8 @@ let }; prometheus.mysqld-exporter = buildFromGitHub { - rev = "0.1.0"; owner = "prometheus"; repo = "mysqld_exporter"; - sha256 = "10xnyxyb6saz8pq3ijp424hxy59cvm1b5c9zcbw7ddzzkh1f6jd9"; buildInputs = [ mysql prometheus.client_golang ]; meta = with stdenv.lib; { description = "Prometheus exporter for MySQL server metrics"; @@ -2805,11 +2015,9 @@ let }; prometheus.nginx-exporter = buildFromGitHub { - rev = "2cf16441591f6b6e58a8c0439dcaf344057aea2b"; date = "2015-06-01"; owner = "discordianfish"; repo = "nginx_exporter"; - sha256 = "0p9j0bbr2lr734980x2p8d67lcify21glwc5k3i3j4ri4vadpxvc"; buildInputs = [ prometheus.client_golang prometheus.log ]; meta = with stdenv.lib; { description = "Metrics relay from nginx stats to Prometheus"; @@ -2821,10 +2029,8 @@ let }; prometheus.node-exporter = buildFromGitHub { - rev = "0.11.0"; owner = "prometheus"; repo = "node_exporter"; - sha256 = "149fs9yxnbiyd4ww7bxsv730mcskblpzb3cs4v12jnq2v84a4kk4"; buildInputs = [ go-runit @@ -2847,18 +2053,14 @@ let }; prometheus.procfs = buildFromGitHub { - rev = "c91d8eefde16bd047416409eb56353ea84a186e4"; date = "2015-06-16"; owner = "prometheus"; repo = "procfs"; - sha256 = "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r"; }; prometheus.prom2json = buildFromGitHub { - rev = "0.1.0"; owner = "prometheus"; repo = "prom2json"; - sha256 = "0wwh3mz7z81fwh8n78sshvj46akcgjhxapjgfic5afc4nv926zdl"; buildInputs = [ golang_protobuf_extensions @@ -2876,10 +2078,9 @@ let }; prometheus.prometheus = buildFromGitHub rec { - rev = "0.17.0"; + rev = ghPackages.prometheus.prometheus.rev; owner = "prometheus"; repo = "prometheus"; - sha256 = "176198krna2i37dfhwsqi7m36sqn175yiny6n52vj27mc9s8ggzx"; buildInputs = [ # consul @@ -2927,10 +2128,9 @@ let }; prometheus.pushgateway = buildFromGitHub rec { - rev = "0.1.1"; + rev = ghPackages.prometheus.pushgateway.rev; owner = "prometheus"; repo = "pushgateway"; - sha256 = "17q5z9msip46wh3vxcsq9lvvhbxg75akjjcr2b29zrky8bp2m230"; buildInputs = [ protobuf @@ -2967,10 +2167,8 @@ let }; prometheus.statsd-bridge = buildFromGitHub { - rev = "0.1.0"; owner = "prometheus"; repo = "statsd_bridge"; - sha256 = "1fndpmd1k0a3ar6f7zpisijzc60f2dng5399nld1i1cbmd8jybjr"; buildInputs = [ fsnotify.v0 prometheus.client_golang ]; meta = with stdenv.lib; { description = "Receives StatsD-style metrics and exports them to Prometheus"; @@ -2982,17 +2180,13 @@ let }; properties = buildFromGitHub { - rev = "v1.5.6"; owner = "magiconair"; repo = "properties"; - sha256 = "043jhba7qbbinsij3yc475s1i42sxaqsb82mivh9gncpvnmnf6cl"; }; gogo.protobuf = buildFromGitHub { - rev = "932b70afa8b0bf4a8e167fdf0c3367cebba45903"; owner = "gogo"; repo = "protobuf"; - sha256 = "1djhv9ckqhyjnnqajjv8ivcwpmjdnml30l6zhgbjcjwdyz3nyzhx"; excludedPackages = "test"; goPackageAliases = [ "code.google.com/p/gogoprotobuf" @@ -3000,136 +2194,80 @@ let }; pty = buildFromGitHub { - rev = "67e2db24c831afa6c64fc17b4a143390674365ef"; owner = "kr"; repo = "pty"; - sha256 = "1l3z3wbb112ar9br44m8g838z0pq2gfxcp5s3ka0xvm1hjvanw2d"; }; purell = buildFromGitHub { - rev = "d69616f51cdfcd7514d6a380847a152dfc2a749d"; owner = "PuerkitoBio"; repo = "purell"; - sha256 = "0nma5i25j0y223ns7482lx4klcfhfwdr8v6r9kzrs0pwlq64ghs0"; propagatedBuildInputs = [ urlesc ]; }; pushover = buildFromGitHub { - rev = "a8420a1935479cc266bda685cee558e86dad4b9f"; owner = "thorduri"; repo = "pushover"; - sha256 = "0j4k43ppka20hmixlwhhz5mhv92p6wxbkvdabs4cf7k8jpk5argq"; }; qart = buildFromGitHub { - rev = "ccb109cf25f0cd24474da73b9fee4e7a3e8a8ce0"; owner = "vitrun"; repo = "qart"; - sha256 = "0bhp768b8ha6f25dmhwn9q8m2lkbn4qnjf8n7pizk25jn5zjdvc8"; }; - raft = buildGoPackage rec { - rev = "a8065f298505708bf60f518c09178149f3c06f21"; - name = "raft-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/hashicorp/raft"; - - src = fetchFromGitHub { - inherit rev; - owner = "hashicorp"; - repo = "raft"; - sha256 = "122mjijphas7ybbvssxv1r36sb8i907gdr9kvplnx6yg9w52j3mn"; - }; - + raft = buildFromGitHub rec { + owner = "hashicorp"; + repo = "raft"; propagatedBuildInputs = [ armon.go-metrics ugorji.go ]; }; - raft-boltdb = buildGoPackage rec { - rev = "d1e82c1ec3f15ee991f7cc7ffd5b67ff6f5bbaee"; - name = "raft-boltdb-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/hashicorp/raft-boltdb"; - - src = fetchFromGitHub { - inherit rev; - owner = "hashicorp"; - repo = "raft-boltdb"; - sha256 = "0p609w6x0h6bapx4b0d91dxnp2kj7dv0534q4blyxp79shv2a8ia"; - }; - + raft-boltdb = buildFromGitHub { + owner = "hashicorp"; + repo = "raft-boltdb"; propagatedBuildInputs = [ bolt ugorji.go raft ]; }; - raft-mdb = buildGoPackage rec { - rev = "4ec3694ffbc74d34f7532e70ef2e9c3546a0c0b0"; - name = "raft-mdb-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/hashicorp/raft-mdb"; - - src = fetchFromGitHub { - inherit rev; - owner = "hashicorp"; - repo = "raft-mdb"; - sha256 = "15l4n6zygwn3h118m2945h9jxkryaxxcgy8xij2rxjhzrzpfyj3i"; - }; - + raft-mdb = buildFromGitHub { + owner = "hashicorp"; + repo = "raft-mdb"; propagatedBuildInputs = [ gomdb ugorji.go raft ]; }; ratelimit = buildFromGitHub { - rev = "772f5c38e468398c4511514f4f6aa9a4185bc0a0"; date = "2015-06-19"; owner = "juju"; repo = "ratelimit"; - sha256 = "02rs61ay6sq499lxxszjsrxp33m6zklds1xrmnr5fk73vpqfa28p"; }; raw = buildFromGitHub { - rev = "724aedf6e1a5d8971aafec384b6bde3d5608fba4"; owner = "feyeleanor"; repo = "raw"; - sha256 = "0z4dcnadgk0fbxxd14dqa1wzzr0v3ksqlzd0swzs2mipim5wjgsz"; }; raven-go = buildFromGitHub { - rev = "74c334d7b8aaa4fd1b4fc6aa428c36fed1699e28"; date = "2015-07-21"; owner = "getsentry"; repo = "raven-go"; - sha256 = "1356a7h8zp1mcywnr0y83w0h4qdblp65rcf9slbx667n8x2rzda8"; }; redigo = buildFromGitHub { - rev = "535138d7bcd717d6531c701ef5933d98b1866257"; owner = "garyburd"; repo = "redigo"; - sha256 = "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v"; }; - relaysrv = buildFromGitHub rec { - rev = "7fe1fdd8c751df165ea825bc8d3e895f118bb236"; + relaysrv = buildFromGitHub { owner = "syncthing"; repo = "relaysrv"; - sha256 = "0qy14pa0z2dq5mix5ylv2raabwxqwj31g5kkz905wzki6d4j5lnp"; buildInputs = [ xdr syncthing-protocol011 ratelimit syncthing-lib ]; }; reflectwalk = buildFromGitHub { - rev = "eecf4c70c626c7cfbb95c90195bc34d386c74ac6"; owner = "mitchellh"; repo = "reflectwalk"; - sha256 = "1nm2ig7gwlmf04w7dbqd8d7p64z2030fnnfbgnd56nmd7dz8gpxq"; }; - revel = buildGoPackage rec { - rev = "v0.12.0"; - name = "revel-${rev}"; - goPackagePath = "github.com/revel/revel"; - - src = fetchFromGitHub { - inherit rev; - owner = "revel"; - repo = "revel"; - sha256 = "1g88fw5lqh3a9qmx182s64zk3h1s1mx8bljyghissmd9z505pbzf"; - }; - + revel = buildFromGitHub { + owner = "revel"; + repo = "revel"; # Using robfig's old go-cache due to compilation errors. # Try to switch to pmylund.go-cache after v0.12.0 propagatedBuildInputs = [ @@ -3138,106 +2276,70 @@ let }; restic = buildFromGitHub { - rev = "4d7e802c44369b40177cd52938bc5b0930bd2be1"; date = "2016-01-17"; owner = "restic"; repo = "restic"; - sha256 = "0lf40539dy2xa5l1xy1kyn1vk3w0fmapa1h65ciksrdhn89ilrxv"; # Using its delivered dependencies. Easier. preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/$goPackagePath/Godeps/_workspace"; }; rgbterm = buildFromGitHub { - rev = "c07e2f009ed2311e9c35bca12ec00b38ccd48283"; owner = "aybabtme"; repo = "rgbterm"; - sha256 = "1qph7drds44jzx1whqlrh1hs58k0wv0v58zyq2a81hmm72gsgzam"; }; ripper = buildFromGitHub { - rev = "bd1a682568fcb8a480b977bb5851452fc04f9ccb"; owner = "odeke-em"; repo = "ripper"; - sha256 = "010jsclnmkaywdlyfqdmq372q7kh3qbz2zra0c4wn91qnkmkrnw1"; }; rsrc = buildFromGitHub { - rev = "ba14da1f827188454a4591717fff29999010887f"; date = "2015-11-03"; owner = "akavel"; repo = "rsrc"; - sha256 = "0g9fj10xnxcv034c8hpcgbhswv6as0d8l176c5nfgh1lh6klmmzc"; }; - sandblast = buildGoPackage rec { - rev = "694d24817b9b7b8bacb6d458b7989b30d7fe3555"; - name = "sandblast-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/aarzilli/sandblast"; - - src = fetchFromGitHub { - inherit rev; - owner = "aarzilli"; - repo = "sandblast"; - sha256 = "1pj0bic3x89v44nr8ycqxwnafkiz3cr5kya4wfdfj5ldbs5xnq9l"; - }; - + sandblast = buildFromGitHub { + owner = "aarzilli"; + repo = "sandblast"; buildInputs = [ net text ]; }; # This is the upstream package name, underscores and all. I don't like it # but it seems wrong to change their name when packaging it. sanitized_anchor_name = buildFromGitHub { - rev = "10ef21a441db47d8b13ebcc5fd2310f636973c77"; owner = "shurcooL"; repo = "sanitized_anchor_name"; - sha256 = "1cnbzcf47cn796rcjpph1s64qrabhkv5dn9sbynsy7m9zdwr5f01"; }; - scada-client = buildGoPackage rec { - rev = "c26580cfe35393f6f4bf1b9ba55e6afe33176bae"; - name = "scada-client-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/hashicorp/scada-client"; - - src = fetchFromGitHub { - inherit rev; - owner = "hashicorp"; - repo = "scada-client"; - sha256 = "0s8xg49fa7d2d0vv8pi37f43rjrgkb7w6x6ydkikz1v8ccg05p3b"; - }; - + scada-client = buildFromGitHub { + owner = "hashicorp"; + repo = "scada-client"; buildInputs = [ armon.go-metrics net-rpc-msgpackrpc yamux ]; }; seelog = buildFromGitHub { - rev = "c510775bb50d98213cfafca75a4bc5e3fddc8d8f"; date = "2015-05-26"; owner = "cihub"; repo = "seelog"; - sha256 = "1f0rwgqlffv1a7b05736a4gf4l9dn80wsfyqcnz6qd2skhwnzv29"; }; segment = buildFromGitHub { - rev = "db70c57796cc8c310613541dfade3dce627d09c7"; date = "2016-01-05"; owner = "blevesearch"; repo = "segment"; - sha256 = "09xfdlcc6bsrr5grxp6fgnw9p4cf6jc0wwa9049fd1l0zmhj2m1g"; }; semver = buildFromGitHub { - rev = "31b736133b98f26d5e078ec9eb591666edfd091f"; date = "2015-07-20"; owner = "blang"; repo = "semver"; - sha256 = "19ifi0na4cj23q3h8xv89mx7p48y0ciymhmlrq9milm0xz80wk10"; }; serf = buildFromGitHub { - rev = "668982d8f90f5eff4a766583c1286393c1d27f68"; date = "2015-05-15"; owner = "hashicorp"; repo = "serf"; - sha256 = "1h05h5xhaj27r1mh5zshnykax29lqjhfc0bx4v9swiwb873c24qk"; buildInputs = [ circbuf armon.go-metrics ugorji.go go-syslog logutils mdns memberlist @@ -3245,120 +2347,75 @@ let ]; }; - sets = buildGoPackage rec { - rev = "6c54cb57ea406ff6354256a4847e37298194478f"; - name = "sets-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/feyeleanor/sets"; - src = fetchFromGitHub { - inherit rev; - owner = "feyeleanor"; - repo = "sets"; - sha256 = "1l3hyl8kmwb9k6qi8x4w54g2cmydap0g3cqvs47bhvm47rg1j1zc"; - }; + sets = buildFromGitHub { + owner = "feyeleanor"; + repo = "sets"; propagatedBuildInputs = [ slices ]; }; skydns = buildFromGitHub { - rev = "2.5.2b"; owner = "skynetservices"; repo = "skydns"; - sha256 = "01vac6bd71wky5jbd5k4a0x665bjn1cpmw7p655jrdcn5757c2lv"; - buildInputs = [ go-etcd rcrowley.go-metrics dns go-systemd prometheus.client_golang ]; }; - slices = buildGoPackage rec { - rev = "bb44bb2e4817fe71ba7082d351fd582e7d40e3ea"; - name = "slices-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/feyeleanor/slices"; - src = fetchFromGitHub { - inherit rev; - owner = "feyeleanor"; - repo = "slices"; - sha256 = "1miqhzqgww41d8xbvmxfzx9rsfxgw742nqz96mhjkxpadrxg870v"; - }; + slices = buildFromGitHub { + owner = "feyeleanor"; + repo = "slices"; propagatedBuildInputs = [ raw ]; }; spacelog = buildFromGitHub { - rev = "ae95ccc1eb0c8ce2496c43177430efd61930f7e4"; owner = "spacemonkeygo"; repo = "spacelog"; - sha256 = "1i1awivsix0ch0vg6rwvx0536ziyw6phcx45b1rmrclp6b6dyacy"; buildInputs = [ flagfile ]; }; - stathat = buildGoPackage rec { - rev = "01d012b9ee2ecc107cb28b6dd32d9019ed5c1d77"; - name = "stathat-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/stathat/go"; - src = fetchFromGitHub { - inherit rev; - owner = "stathat"; - repo = "go"; - sha256 = "0mrn70wjfcs4rfkmga3hbfqmbjk33skcsc8pyqxp02bzpwdpc4bi"; - }; + stathat = buildFromGitHub { + owner = "stathat"; + repo = "go"; }; statos = buildFromGitHub { - rev = "f27d6ab69b62abd9d9fe80d355e23a3e45d347d6"; owner = "odeke-em"; repo = "statos"; - sha256 = "17cpks8bi9i7p8j38x0wy60jb9g39wbzszcmhx4hlq6yzxr04jvs"; }; - statik = buildGoPackage rec { - rev = "274df120e9065bdd08eb1120e0375e3dc1ae8465"; - name = "statik-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/rakyll/statik"; - + statik = buildFromGitHub { + owner = "rakyll"; + repo = "statik"; excludedPackages = "example"; - - src = fetchFromGitHub { - inherit rev; - owner = "rakyll"; - repo = "statik"; - sha256 = "0llk7bxmk66wdiy42h32vj1jfk8zg351xq21hwhrq7gkfljghffp"; - }; }; structfield = buildFromGitHub { - rev = "01a738558a47fbf16712994d1737fb31c77e7d11"; date = "2014-08-01"; owner = "vincent-petithory"; repo = "structfield"; - sha256 = "1kyx71z13mf6hc8ly0j0b9zblgvj5lzzvgnc3fqh61wgxrsw24dw"; }; structs = buildFromGitHub { - rev = "a9f7daa9c2729e97450c2da2feda19130a367d8f"; owner = "fatih"; repo = "structs"; - sha256 = "0pyrc7svc826g37al3db19n5l4r2m9h1mlhjh3hz2r41xfaqia50"; }; - suture = buildFromGitHub rec { - version = "1.0.1"; - rev = "v${version}"; + suture = buildFromGitHub { owner = "thejerf"; repo = "suture"; - sha256 = "094ksr2nlxhvxr58nbnzzk0prjskb21r86jmxqjr3rwg4rkwn6d4"; }; syncthing = buildFromGitHub rec { version = "0.12.19"; - rev = "v${version}"; owner = "syncthing"; repo = "syncthing"; - sha256 = "11ij8whaqrrzriavxa08jpsmbd1zkc2qxsni1nbgszw2hymmv38g"; buildFlags = [ "-tags noupgrade,release" ]; disabled = isGo14; buildInputs = [ go-lz4 du luhn xdr snappy ratelimit osext goleveldb suture qart crypto net text rcrowley.go-metrics ]; + # TODO: find a way to automatically update the veresion here: postPatch = '' # Mostly a cosmetic change sed -i 's,unknown-dev,${version},g' cmd/syncthing/main.go @@ -3382,13 +2439,13 @@ let }; syncthing-lib = buildFromGitHub { - inherit (syncthing) rev owner repo sha256; + inherit (syncthing) owner repo src; subPackages = [ "lib/sync" ]; propagatedBuildInputs = syncthing.buildInputs; }; syncthing-protocol = buildFromGitHub { - inherit (syncthing) rev owner repo sha256; + inherit (syncthing) owner repo src; subPackages = [ "lib/protocol" ]; propagatedBuildInputs = [ go-lz4 @@ -3408,126 +2465,82 @@ let }; tablewriter = buildFromGitHub { - rev = "bc39950e081b457853031334b3c8b95cdfe428ba"; date = "2015-06-03"; owner = "olekukonko"; repo = "tablewriter"; - sha256 = "0n4gqjc2dqmnbpqgi9i8vrwdk4mkgyssc7l2n4r5bqx0n3nxpbps"; }; - termbox-go = buildGoPackage rec { - rev = "9aecf65084a5754f12d27508fa2e6ed56851953b"; - name = "termbox-go-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/nsf/termbox-go"; - src = fetchFromGitHub { - inherit rev; - owner = "nsf"; - repo = "termbox-go"; - sha256 = "16sak07bgvmax4zxfrd4jia1dgygk733xa8vk8cdx28z98awbfsh"; - }; - + termbox-go = buildFromGitHub { + owner = "nsf"; + repo = "termbox-go"; subPackages = [ "./" ]; # prevent building _demos }; - testify = buildGoPackage rec { - rev = "089c7181b8c728499929ff09b62d3fdd8df8adff"; - name = "testify-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/stretchr/testify"; - - src = fetchFromGitHub { - inherit rev; - owner = "stretchr"; - repo = "testify"; - sha256 = "03dzxkxbs298pvfsjz4kdadfaf9jkzsdhshqmg4p12wbyaj09s4p"; - }; - + testify = buildFromGitHub { + owner = "stretchr"; + repo = "testify"; buildInputs = [ objx ]; }; - kr.text = buildGoPackage rec { - rev = "6807e777504f54ad073ecef66747de158294b639"; - name = "kr.text-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/kr/text"; - src = fetchFromGitHub { - inherit rev; - owner = "kr"; - repo = "text"; - sha256 = "1wkszsg08zar3wgspl9sc8bdsngiwdqmg3ws4y0bh02sjx5a4698"; - }; + kr.text = buildFromGitHub { + owner = "kr"; + repo = "text"; propagatedBuildInputs = [ pty ]; }; timer_metrics = buildFromGitHub { - rev = "afad1794bb13e2a094720aeb27c088aa64564895"; date = "2015-02-02"; owner = "bitly"; repo = "timer_metrics"; - sha256 = "1b717vkwj63qb5kan4b92kx4rg6253l5mdb3lxpxrspy56a6rl0c"; }; tomb = buildFromGitHub { - rev = "14b3d72120e8d10ea6e6b7f87f7175734b1faab8"; owner = "go-tomb"; repo = "tomb"; - sha256 = "1nza31jvkpka5431c4bdbirvjdy36b1b55sbzljqhqih25jrcjx5"; goPackagePath = "gopkg.in/tomb.v2"; goPackageAliases = [ "github.com/go-tomb/tomb" ]; }; toml = buildFromGitHub { - rev = "056c9bc7be7190eaa7715723883caffa5f8fa3e4"; date = "2015-05-01"; owner = "BurntSushi"; repo = "toml"; - sha256 = "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw"; }; uilive = buildFromGitHub { - rev = "1b9b73fa2b2cc24489b1aba4d29a82b12cd0a71f"; owner = "gosuri"; repo = "uilive"; - sha256 = "0669f21hd5cw74irrfakdpvxn608cd5xy6s2nyp5kgcy2ijrq4ab"; }; uiprogress = buildFromGitHub { buildInputs = [ uilive ]; - rev = "fd1c82df78a6c1f5ddbd3b6ec46407ea0acda1ad"; owner = "gosuri"; repo = "uiprogress"; - sha256 = "1s61vp2h6n1d8y1zqr2ca613ch5n18rx28waz6a8im94sgzzawp7"; }; urlesc = buildFromGitHub { - rev = "5fa9ff0392746aeae1c4b37fcc42c65afa7a9587"; owner = "opennota"; repo = "urlesc"; - sha256 = "0dppkmfs0hb5vcqli191x9yss5vvlx29qxjcywhdfirc89rn0sni"; }; usb = buildFromGitHub rec { - rev = "69aee4530ac705cec7c5344418d982aaf15cf0b1"; date = "2014-12-17"; owner = "hanwen"; repo = "usb"; - sha256 = "01k0c2g395j65vm1w37mmrfkg6nm900khjrrizzpmx8f8yf20dky"; nativeBuildInputs = [ pkgs.pkgconfig ]; buildInputs = [ pkgs.libusb1 ]; }; uuid = buildFromGitHub { - rev = "cccd189d45f7ac3368a0d127efb7f4d08ae0b655"; date = "2015-08-24"; owner = "pborman"; repo = "uuid"; - sha256 = "0hswk9ihv3js5blp9pk2bpig64zkmyp5p1zhmgydfhb0dr2w8iad"; }; vault = buildFromGitHub { - rev = "v0.2.0"; owner = "hashicorp"; repo = "vault"; - sha256 = "133fwhzk8z3xb6mf6scmn5rbl6g4vqg4g4n6zw620fsn9wy1b9ni"; #postPatch = '' # grep -r '/gen/' | awk -F: '{print $1}' | xargs sed -i 's,/gen/,/apis/,g' @@ -3547,50 +2560,36 @@ let }; vcs = buildFromGitHub { - rev = "1.4.0"; owner = "Masterminds"; repo = "vcs"; - sha256 = "0590ww2av4407y7zy3bcmnr8i74fv00k9zzcxcpjxivl6qszna0d"; }; viper = buildFromGitHub { - rev = "e37b56e207dda4d79b9defe0548e960658ee8b6b"; owner = "spf13"; repo = "viper"; - sha256 = "0q0hkla23hgvc3ab6qdlrfwxa8lnhy2s2mh2c8zrh632gp8d6prl"; propagatedBuildInputs = [ mapstructure yaml-v2 jwalterweatherman crypt fsnotify.v1 cast properties pretty toml pflag-spf13 ]; }; - vulcand = buildGoPackage rec { - rev = "v0.8.0-beta.3"; - name = "vulcand-${rev}"; + vulcand = buildFromGitHub rec { + owner = "mailgun"; + repo = "vulcand"; goPackagePath = "github.com/mailgun/vulcand"; - preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace"; - src = fetchFromGitHub { - inherit rev; - owner = "mailgun"; - repo = "vulcand"; - sha256 = "08mal9prwlsav63r972q344zpwqfql6qw6v4ixbn1h3h32kk3ic6"; - }; + preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/$goPackagePath/Godeps/_workspace"; subPackages = [ "./" ]; }; websocket = buildFromGitHub { - rev = "6eb6ad425a89d9da7a5549bc6da8f79ba5c17844"; owner = "gorilla"; repo = "websocket"; - sha256 = "0gljdfxqc94yb1kpqqrm5p94ph9dsxrzcixhdj6m92cwwa7z7p99"; }; xmpp-client = buildFromGitHub { - rev = "525bd26cf5f56ec5aee99464714fd1d019c119ff"; date = "2016-01-10"; owner = "agl"; repo = "xmpp-client"; - sha256 = "0a1r08zs723ikcskmn6ylkdi3frcd0i0lkx30i9q39ilf734v253"; disabled = isGo14; buildInputs = [ crypto net ]; @@ -3602,6 +2601,8 @@ let }; }; + # TODO(cstrahan): find a way to automate this pattern of gopkg.in/yaml.vX + # packages. yaml-v1 = buildGoPackage rec { name = "yaml-v1-${version}"; version = "git-2015-05-01"; @@ -3624,33 +2625,25 @@ let }; yamux = buildFromGitHub { - rev = "b2e55852ddaf823a85c67f798080eb7d08acd71d"; owner = "hashicorp"; repo = "yamux"; - sha256 = "0mr87my5m8lgc0byjcddlclxg34d07cpi9p78ps3rhzq7p37g533"; }; xdr = buildFromGitHub { - rev = "e467b5aeb65ca8516fb3925c84991bf1d7cc935e"; date = "2015-04-08"; owner = "calmh"; repo = "xdr"; - sha256 = "1bi4b2xkjzcr0vq1wxz14i9943k71sj092dam0gdmr9yvdrg0nra"; }; xon = buildFromGitHub { - rev = "d580be739d723da4f6378083128f93017b8ab295"; owner = "odeke-em"; repo = "xon"; - sha256 = "07a7zj01d4a23xqp01m48jp2v5mw49islf4nbq2rj13sd5w4s6sc"; }; ninefans = buildFromGitHub { - rev = "65b8cf069318223b1e722b4b36e729e5e9bb9eab"; date = "2015-10-24"; owner = "9fans"; repo = "go"; - sha256 = "0kzyxhs2xf0339nlnbm9gc365b2svyyjxnr86rphx5m072r32ims"; goPackagePath = "9fans.net/go"; goPackageAliases = [ "github.com/9fans/go" @@ -3660,38 +2653,30 @@ let }; godef = buildFromGitHub { - rev = "ea14e800fd7d16918be88dae9f0195f7bd688586"; date = "2015-10-24"; owner = "rogpeppe"; repo = "godef"; - sha256 = "1wkvsz8nqwyp36wbm8vcw4449sfs46894nskrfj9qbsrjijvamyc"; excludedPackages = "\\(go/printer/testdata\\)"; buildInputs = [ ninefans ]; subPackages = [ "./" ]; }; godep = buildFromGitHub { - rev = "5598a9815350896a2cdf9f4f1d0a3003ab9677fb"; date = "2015-10-15"; owner = "tools"; repo = "godep"; - sha256 = "0zc1ah5cvaqa3zw0ska89a40x445vwl1ixz8v42xi3zicx16ibwz"; }; color = buildFromGitHub { - rev = "9aae6aaa22315390f03959adca2c4d395b02fcef"; owner = "fatih"; repo = "color"; - sha256 = "1vjcgx4xc0h4870qzz4mrh1l0f07wr79jm8pnbp6a2yd41rm8wjp"; propagatedBuildInputs = [ net go-isatty ]; buildInputs = [ ansicolor go-colorable ]; }; pup = buildFromGitHub { - rev = "9693b292601dd24dab3c04bc628f9ae3fa72f831"; owner = "EricChiang"; repo = "pup"; - sha256 = "04j3fy1vk6xap8ad7k3c05h9b5mg2n1vy9vcyg9rs02cb13d3sy0"; propagatedBuildInputs = [ net ]; buildInputs = [ go-colorable color ]; postPatch = '' @@ -3702,21 +2687,16 @@ let ''; }; - textsecure = buildFromGitHub rec { - rev = "505e129c42fc4c5cb2d105520cef7c04fa3a6b64"; + textsecure = buildFromGitHub { owner = "janimo"; repo = "textsecure"; - sha256 = "0sdcqd89dlic0bllb6mjliz4x54rxnm1r3xqd5qdp936n7xs3mc6"; propagatedBuildInputs = [ crypto protobuf ed25519 yaml-v2 logrus ]; disabled = isGo14; }; - interlock = buildFromGitHub rec { - version = "2016.01.14"; - rev = "v${version}"; + interlock = buildFromGitHub { owner = "inversepath"; repo = "interlock"; - sha256 = "0wabx6vqdxh2aprsm2rd9mh71q7c2xm6xk9a6r1bn53r9dh5wrsb"; buildInputs = [ crypto textsecure ]; nativeBuildInputs = [ pkgs.sudo ]; buildFlags = [ "-tags textsecure" ]; @@ -3737,40 +2717,30 @@ let }; template = buildFromGitHub { - rev = "14fd436dd20c3cc65242a9f396b61bfc8a3926fc"; owner = "alecthomas"; repo = "template"; - sha256 = "19rzvvcgvr1z2wz9xpqsmlm8syizbpxjp5zbzgakvrqlajpbjvx2"; }; units = buildFromGitHub { - rev = "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a"; owner = "alecthomas"; repo = "units"; - sha256 = "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl"; }; go-difflib = buildFromGitHub { - rev = "d8ed2627bdf02c080bf22230dbb337003b7aba2d"; owner = "pmezard"; repo = "go-difflib"; - sha256 = "0w1jp4k4zbnrxh3jvh8fgbjgqpf2hg31pbj8fb32kh26px9ldpbs"; }; kingpin = buildFromGitHub { - rev = "21551c2a6259a8145110ca80a36e25c9d7624032"; owner = "alecthomas"; repo = "kingpin"; - sha256 = "1zhpqc4qxsw9lc1b4dwk5r42k9r702ihzrabs3mnsphvm9jx4l59"; propagatedBuildInputs = [ template units ]; goPackageAliases = [ "gopkg.in/alecthomas/kingpin.v2" ]; }; go2nix = buildFromGitHub rec { - rev = "4c552dadd855e3694ed3499feb46dca9cd855f60"; owner = "kamilchm"; repo = "go2nix"; - sha256 = "1pwnm1vrjxvgl17pk9n1k5chmhgwxkrwp2s1bzi64xf12anibj63"; buildInputs = [ pkgs.makeWrapper go-bindata.bin tools.bin vcs go-spew gls go-difflib assertions goconvey testify kingpin ]; @@ -3785,22 +2755,18 @@ let allowGoReference = true; }; - godotenv = buildFromGitHub rec { - rev = "4ed13390c0acd2ff4e371e64d8b97c8954138243"; + godotenv = buildFromGitHub { date = "2015-09-07"; owner = "joho"; repo = "godotenv"; - sha256 = "1wzgws4dnlavi14aw3jzdl3mdr348skgqaq8xx4j8l68irfqyh0p"; buildInputs = [ go-colortext yaml-v2 ]; }; - goreman = buildFromGitHub rec { + goreman = buildFromGitHub { version = "0.0.8-rc0"; - rev = "d3e62509ccf23e47a390447886c51b1d89d0934b"; date = "2016-01-30"; owner = "mattn"; repo = "goreman"; - sha256 = "153hf4dq4jh1yv35pv30idmxhc917qzl590qy5394l48d4rapgb5"; buildInputs = [ go-colortext yaml-v2 godotenv ]; }; }; in self From f0e5910c24f36a36d11ec70b6f1713056067cb28 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Tue, 8 Mar 2016 22:42:22 -0600 Subject: [PATCH 0116/1059] rgbds: init at 0.2.4 --- lib/maintainers.nix | 1 + pkgs/development/compilers/rgbds/default.nix | 22 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 25 insertions(+) create mode 100644 pkgs/development/compilers/rgbds/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 4c552946667..1d3544b1077 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -212,6 +212,7 @@ matejc = "Matej Cotman "; mathnerd314 = "Mathnerd314 "; matthiasbeyer = "Matthias Beyer "; + mbauer = "Matthew Bauer "; maurer = "Matthew Maurer "; mbakke = "Marius Bakke "; mbe = "Brandon Edens "; diff --git a/pkgs/development/compilers/rgbds/default.nix b/pkgs/development/compilers/rgbds/default.nix new file mode 100644 index 00000000000..827dd774e78 --- /dev/null +++ b/pkgs/development/compilers/rgbds/default.nix @@ -0,0 +1,22 @@ +{stdenv, fetchFromGitHub, yacc}: + +stdenv.mkDerivation rec { + name = "rgbds-${version}"; + version = "0.2.4"; + src = fetchFromGitHub { + owner = "bentley"; + repo = "rgbds"; + rev = "v${version}"; + sha256 = "0dwq0p9g1lci8sm12a2rfk0g33z2vr75x78zdf1g84djwbz8ipc6"; + }; + nativeBuildInputs = [ yacc ]; + installFlags = "PREFIX=\${out}"; + + meta = with stdenv.lib; { + homepage = "https://www.anjbe.name/rgbds/"; + description = "An assembler/linker package that produces Game Boy programs"; + license = licenses.free; + maintainers = with maintainers; [ mbauer ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 512471b4057..07ab3a6f773 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5107,6 +5107,8 @@ let ocaml = ocaml_3_08_0; }; + rgbds = callPackage ../development/compilers/rgbds { }; + rtags = callPackage ../development/tools/rtags/default.nix {}; rustcMaster = callPackage ../development/compilers/rustc/head.nix {}; From efad3672d85112908a2d85393c32272ccf8cb0f8 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Wed, 9 Mar 2016 08:03:25 +0100 Subject: [PATCH 0117/1059] ntfy: init at 1.2.0 --- pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/python-packages.nix | 20 ++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 512471b4057..67795330aab 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2631,6 +2631,8 @@ let # ntfsprogs are merged into ntfs-3g ntfsprogs = pkgs.ntfs3g; + ntfy = pythonPackages.ntfy; + ntopng = callPackage ../tools/networking/ntopng { }; ntp = callPackage ../tools/networking/ntp { diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0dbeafcc8c2..77f70d7b714 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12816,6 +12816,26 @@ in modules // { }; }; + ntfy = buildPythonPackage rec { + version = "1.2.0"; + name = "ntfy-${version}"; + src = pkgs.fetchFromGitHub { + owner = "dschep"; + repo = "ntfy"; + rev = "v${version}"; + sha256 = "0yjxwisxpxy3vpnqk9nw5k3db3xx6wyf6sk1px9m94s30glcq2cc"; + }; + + propagatedBuildInputs = with self; [ appdirs pyyaml requests dbus ]; + + meta = { + description = "A utility for sending notifications, on demand and when commands finish"; + homepage = http://ntfy.rtfd.org/; + license = licenses.gpl3; + maintainers = with maintainers; [ kamilchm ]; + }; + }; + ntplib = buildPythonPackage rec { name = "ntplib-0.3.2"; src = pkgs.fetchurl { From 6cab1cd62bcd11fdca9c91f65e1cd07d3597f207 Mon Sep 17 00:00:00 2001 From: Allan Espinosa Date: Wed, 9 Mar 2016 01:30:38 -0600 Subject: [PATCH 0118/1059] jenkins: 1.650 -> 1.652 --- .../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 f416345028f..dc885f09b5b 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.650"; + version = "1.652"; src = fetchurl { url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war"; - sha256 = "0iypkyjcsfj36j683a6yis4q0wil6m8l065fx8v2p7ba4j2ql00n"; + sha256 = "09xcsgfhxshfqgg0aighby8dx1qgzh7fkfkynyv5xg1m216z21jx"; }; meta = with stdenv.lib; { description = "An extendable open source continuous integration server"; From ed5920ec6552be6a1e03b15a21db9f3c792898eb Mon Sep 17 00:00:00 2001 From: Rob Vermaas Date: Wed, 9 Mar 2016 09:55:25 +0000 Subject: [PATCH 0119/1059] Remove kill -9 -1 from initrd of amazon-image.nix. This causes a kernel panic. --- nixos/modules/virtualisation/amazon-image.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/modules/virtualisation/amazon-image.nix b/nixos/modules/virtualisation/amazon-image.nix index a895f66db8e..35af905bc62 100644 --- a/nixos/modules/virtualisation/amazon-image.nix +++ b/nixos/modules/virtualisation/amazon-image.nix @@ -40,7 +40,6 @@ let cfg = config.ec2; in # Force udev to exit to prevent random "Device or resource busy # while trying to open /dev/xvda" errors from fsck. udevadm control --exit || true - kill -9 -1 ''; boot.initrd.network.enable = true; From d014088c95dc65a1cfa6f4f4ef4384c7876d5970 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Wed, 9 Mar 2016 12:21:52 +0100 Subject: [PATCH 0120/1059] nixos/doc: adding line about the change in service.syncthing --- nixos/doc/manual/release-notes/rl-1603.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/nixos/doc/manual/release-notes/rl-1603.xml b/nixos/doc/manual/release-notes/rl-1603.xml index 0ede1a9ce8e..83057a44d0a 100644 --- a/nixos/doc/manual/release-notes/rl-1603.xml +++ b/nixos/doc/manual/release-notes/rl-1603.xml @@ -247,6 +247,21 @@ $TTL 1800 + + + service.syncthing.dataDir options now has to point + to exact folder where syncthing is writing to. Example configuration should + loook something like: + + +services.syncthing = { + enable = true; + dataDir = "/home/somebody/.syncthing"; + user = "somebody"; +}; + + + From 64d5af4663a39a85e598a02754f5b6a4c371d806 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Wed, 9 Mar 2016 11:26:18 +0000 Subject: [PATCH 0121/1059] boringssl: 2014-08-20 -> 2016-03-08 --- pkgs/development/libraries/boringssl/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/boringssl/default.nix b/pkgs/development/libraries/boringssl/default.nix index b2500d1f49b..4a612c5351d 100644 --- a/pkgs/development/libraries/boringssl/default.nix +++ b/pkgs/development/libraries/boringssl/default.nix @@ -1,16 +1,16 @@ -{ stdenv, fetchgit, cmake, perl }: +{ stdenv, fetchgit, cmake, perl, go }: stdenv.mkDerivation rec { name = "boringssl-${version}"; - version = "20140820-a7d1363f"; + version = "2016-03-08"; src = fetchgit { url = "https://boringssl.googlesource.com/boringssl"; - rev = "a7d1363fcb1f0d825ec2393c06be3d58b0c57efd"; - sha256 = "d27dd1416de1a2ea4ec2c219248b2ed2cce5c0405e56adb394077ddc7c319bab"; + rev = "bfb38b1a3c5e37d43188bbd02365a87bebc8d122"; + sha256 = "0g9gh915ywawqf1gq7pwkhrhbh79w7si4g34ryml7a6mnmvx8b52"; }; - buildInputs = [ cmake perl ]; + buildInputs = [ cmake perl go ]; enableParallelBuilding = true; NIX_CFLAGS_COMPILE = "-Wno-error=cpp"; From 63ffd27a6b0b6665e89c51f08cf06ab3c7bd474b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Wed, 9 Mar 2016 12:40:17 +0100 Subject: [PATCH 0122/1059] Fixing my-env to get NIX_CFLAGS_COMPILE and so on Yes, I still use my-env. I tested that it works on 16.03. --- pkgs/misc/my-env/default.nix | 1 + pkgs/misc/my-env/loadenv.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/misc/my-env/default.nix b/pkgs/misc/my-env/default.nix index ce7813b237c..5e94f6f7771 100644 --- a/pkgs/misc/my-env/default.nix +++ b/pkgs/misc/my-env/default.nix @@ -88,6 +88,7 @@ mkDerivation { -e '1i initialPath="${toString initialPath}"' \ "$setupNew" > "$s" cat >> "$out/dev-envs/''${name/env-/}" << EOF + defaultNativeBuildInputs="$defaultNativeBuildInputs" nativeBuildInputs="$nativeBuildInputs" propagatedBuildInputs="$propagatedBuildInputs2" # the setup-new script wants to write some data to a temp file.. so just let it do that and tidy up afterwards diff --git a/pkgs/misc/my-env/loadenv.sh b/pkgs/misc/my-env/loadenv.sh index 2a990e8685c..816c1b8a711 100644 --- a/pkgs/misc/my-env/loadenv.sh +++ b/pkgs/misc/my-env/loadenv.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!@shell@ OLDPATH="$PATH" OLDTZ="$TZ" From 416e2ceab6a3fe05a411df1fe9a1c508bc3837bb Mon Sep 17 00:00:00 2001 From: Brian McKenna Date: Wed, 9 Mar 2016 23:33:59 +1100 Subject: [PATCH 0123/1059] scala: 2.11.7 -> 2.11.8 --- pkgs/development/compilers/scala/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/scala/default.nix b/pkgs/development/compilers/scala/default.nix index ec80317c777..d452d0abe30 100644 --- a/pkgs/development/compilers/scala/default.nix +++ b/pkgs/development/compilers/scala/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, makeWrapper, jre }: stdenv.mkDerivation rec { - name = "scala-2.11.7"; + name = "scala-2.11.8"; src = fetchurl { url = "http://www.scala-lang.org/files/archive/${name}.tgz"; - sha256 = "1l16571fw5l339wd02w2pnr3556j804zpbsbymnad67f2dpikr7z"; + sha256 = "1khs7673wca7gnxz2rxphv6v5k94jkpcarlqznsys9cpknhqdz47"; }; propagatedBuildInputs = [ jre ] ; From 27b445b0d534525deca73c9309e3e97dc7cd9efa Mon Sep 17 00:00:00 2001 From: Brian McKenna Date: Wed, 9 Mar 2016 23:42:21 +1100 Subject: [PATCH 0124/1059] eventstore: 3.0.3 -> 3.5.0 --- pkgs/servers/nosql/eventstore/default.nix | 29 +++++++++-------------- 1 file changed, 11 insertions(+), 18 deletions(-) diff --git a/pkgs/servers/nosql/eventstore/default.nix b/pkgs/servers/nosql/eventstore/default.nix index a42212ade08..d58005f7be2 100644 --- a/pkgs/servers/nosql/eventstore/default.nix +++ b/pkgs/servers/nosql/eventstore/default.nix @@ -1,34 +1,26 @@ -{ stdenv, fetchFromGitHub, fetchpatch, git, mono, v8, icu }: +{ stdenv, fetchFromGitHub, fetchpatch, mono, v8 }: # There are some similarities with the pinta derivation. We should # have a helper to make it easy to package these Mono apps. stdenv.mkDerivation rec { name = "EventStore-${version}"; - version = "3.0.3"; + version = "3.5.0"; src = fetchFromGitHub { owner = "EventStore"; repo = "EventStore"; rev = "oss-v${version}"; - sha256 = "1xz1dpnbkqqd3ph9g3z5cghr8zp14sr9y31lrdjrdydr3gm4sll2"; + sha256 = "0dp5914hxwdzw62q49wavqfqkw3jy0dvml09y7gh8frnbiajcxq9"; }; - patches = [ - # see: https://github.com/EventStore/EventStore/issues/461 - (fetchpatch { - url = https://github.com/EventStore/EventStore/commit/9a0987f19935178df143a3cf876becaa1b11ffae.patch; - sha256 = "04qw0rb1pypa8dqvj94j2mwkc1y6b40zrpkn1d3zfci3k8cam79y"; - }) - ]; - buildPhase = '' - ln -s ${v8}/lib/libv8.so src/libs/libv8.so - ln -s ${icu}/lib/libicui18n.so src/libs/libicui18n.so - ln -s ${icu}/lib/libicuuc.so src/libs/libicuuc.so + mkdir -p src/libs/x64/nixos + pushd src/EventStore.Projections.v8Integration + cc -o ../libs/x64/nixos/libjs1.so -fPIC -lv8 -shared -std=c++0x *.cpp + popd patchShebangs build.sh - ./build.sh js1 - ./build.sh quick ${version} + ./build.sh ${version} release nixos ''; installPhase = '' @@ -41,8 +33,9 @@ stdenv.mkDerivation rec { chmod +x $out/bin/clusternode ''; - buildInputs = [ git v8 mono ]; + buildInputs = [ v8 mono ]; + phases = [ "unpackPhase" "buildPhase" "installPhase" ]; dontStrip = true; meta = { @@ -50,6 +43,6 @@ stdenv.mkDerivation rec { description = "Event sourcing database with processing logic in JavaScript"; license = stdenv.lib.licenses.bsd3; maintainers = with stdenv.lib.maintainers; [ puffnfresh ]; - platforms = with stdenv.lib.platforms; linux; + platforms = [ "x86_64-linux" ]; }; } From c4ee8f5700edf01a7b15457b852aec3a1ad51806 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Wed, 9 Mar 2016 14:13:31 +0100 Subject: [PATCH 0125/1059] zsh: fix zsh.info* install location --- pkgs/shells/zsh/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/shells/zsh/default.nix b/pkgs/shells/zsh/default.nix index 5ce686cb8fc..d65b7dc80a8 100644 --- a/pkgs/shells/zsh/default.nix +++ b/pkgs/shells/zsh/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, ncurses, coreutils, pcre }: +{ stdenv, fetchurl, ncurses, pcre }: let @@ -19,7 +19,7 @@ stdenv.mkDerivation { sha256 = "0dsr450v8nydvpk8ry276fvbznlrjgddgp7zvhcw4cv69i9lr4ps"; }; - buildInputs = [ ncurses coreutils pcre ]; + buildInputs = [ ncurses pcre ]; configureFlags = [ "--enable-maildir-support" @@ -37,8 +37,10 @@ stdenv.mkDerivation { # XXX: think/discuss about this, also with respect to nixos vs nix-on-X postInstall = '' - mkdir -p $out/share/ + mkdir -p $out/share/info tar xf ${documentation} -C $out/share + ln -s $out/share/zsh-*/Doc/zsh.info* $out/share/info/ + mkdir -p $out/etc/ cat > $out/etc/zprofile < Date: Wed, 9 Mar 2016 13:51:19 +0000 Subject: [PATCH 0126/1059] xen: disable stubdom due to #13590 --- pkgs/applications/virtualization/xen/generic.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/virtualization/xen/generic.nix b/pkgs/applications/virtualization/xen/generic.nix index 6774675266c..76d2b0a31a7 100644 --- a/pkgs/applications/virtualization/xen/generic.nix +++ b/pkgs/applications/virtualization/xen/generic.nix @@ -114,6 +114,9 @@ stdenv.mkDerivation { export EXTRA_QEMUU_CONFIGURE_ARGS="--enable-spice --enable-usb-redir --enable-linux-aio" ''; + # https://github.com/NixOS/nixpkgs/issues/13590 + configureFlags = ["--disable-stubdom"]; + postConfigure = '' substituteInPlace tools/libfsimage/common/fsimage_plugin.c \ @@ -169,7 +172,7 @@ stdenv.mkDerivation { #makeFlags = "XSM_ENABLE=y FLASK_ENABLE=y PREFIX=$(out) CONFIG_DIR=/etc XEN_EXTFILES_URL=\\$(XEN_ROOT)/xen_ext_files "; makeFlags = "PREFIX=$(out) CONFIG_DIR=/etc XEN_EXTFILES_URL=\\$(XEN_ROOT)/xen_ext_files "; - buildFlags = "xen tools stubdom"; + buildFlags = "xen tools"; postBuild = '' From 7db78e0412ea601220a26a8020cdba93518d55da Mon Sep 17 00:00:00 2001 From: Mayeu - Cast Date: Wed, 9 Mar 2016 17:11:10 +0100 Subject: [PATCH 0127/1059] elixir: 1.2.2 -> 1.2.3 --- pkgs/development/interpreters/elixir/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/elixir/default.nix b/pkgs/development/interpreters/elixir/default.nix index 25b0b02a33b..3977b32bad7 100644 --- a/pkgs/development/interpreters/elixir/default.nix +++ b/pkgs/development/interpreters/elixir/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "elixir-${version}"; - version = "1.2.2"; + version = "1.2.3"; src = fetchurl { url = "https://github.com/elixir-lang/elixir/archive/v${version}.tar.gz"; - sha256 = "0ml0sl1l5ibb8qh505fsd7y87wq9qjvaxw9y1dyfcw00d3i1z989"; + sha256 = "09s8469830s4070i0m04fxdhqimkdyc5k9jylm5vpfz9l3z4wvl8"; }; buildInputs = [ erlang rebar makeWrapper ]; From 31c22761d8755731c9d16bc3a26a95b5ab5d3035 Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Wed, 9 Mar 2016 19:39:48 +0300 Subject: [PATCH 0128/1059] owncloud: 8.2.2 -> 9.0.0 --- pkgs/servers/owncloud/default.nix | 5 +++++ pkgs/top-level/all-packages.nix | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/owncloud/default.nix b/pkgs/servers/owncloud/default.nix index 092e9c3ff3e..4e4424c5b00 100644 --- a/pkgs/servers/owncloud/default.nix +++ b/pkgs/servers/owncloud/default.nix @@ -56,4 +56,9 @@ in { sha256 = "d5b935f904744b8b40b310f19679702387c852498d0dc7aaeda4555a3db9ad5b"; }; + owncloud90 = common { + versiona = "9.0.0"; + sha256 = "0z57lc6z1h7yn1sa26q8qnhjxyjn0ydy3mf4yy4i9a3p198kfryi"; + }; + } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1cbab88cbcf..011bfdd5459 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2763,7 +2763,8 @@ let owncloud70 owncloud80 owncloud81 - owncloud82; + owncloud82 + owncloud90; owncloudclient = callPackage ../applications/networking/owncloud-client { }; From b20439ef6745c9f7106e155ffd72c4220b3e9dbf Mon Sep 17 00:00:00 2001 From: Arseniy Seroka Date: Wed, 9 Mar 2016 20:24:06 +0300 Subject: [PATCH 0129/1059] vimPlugins: update 2016-03-09 --- pkgs/misc/vim-plugins/default.nix | 214 +++++++++++++++--------------- 1 file changed, 107 insertions(+), 107 deletions(-) diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index c61947fc8f7..f1e64a8e6f3 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -163,11 +163,11 @@ rec { }; Syntastic = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "Syntastic-2016-02-20"; + name = "Syntastic-2016-03-08"; src = fetchgit { url = "git://github.com/scrooloose/syntastic"; - rev = "8f97e64c78e9ade6cf09fc5d5446f5d2a8deaa35"; - sha256 = "1xxmcr5r0cf2nyp2c2dfxm38x4c19dmax1g2m4clnys5dak7lsdd"; + rev = "0f82191a74328ecb618ac74735645fbd1c36d9a1"; + sha256 = "1arai7blnicp28l6z92xzvvrwrblwg0z26lbr92nch4cpzsf1pzq"; }; dependencies = []; @@ -311,11 +311,11 @@ rec { }; fugitive = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "fugitive-2016-02-24"; + name = "fugitive-2016-03-05"; src = fetchgit { url = "git://github.com/tpope/vim-fugitive"; - rev = "008b9570860f552534109b4f618cf2ddd145eeb4"; - sha256 = "0nj6airs00q3f1ly29k0nk3ypznzsylqm8n0wakllg86qic4xjlr"; + rev = "099d65826e0e0863552a92f7e574e3f24c8f4197"; + sha256 = "05ych7091gi1r22n8jkw2hxjyghcmbk0w227311ar3flgar6s197"; }; dependencies = []; @@ -332,6 +332,17 @@ rec { }; + vim-autoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-autoformat-2016-02-29"; + src = fetchgit { + url = "git://github.com/Chiel92/vim-autoformat"; + rev = "36282560c3514453ac2db4d96085e6b6cfdc7a49"; + sha256 = "1ppdy56i7l60x9jd346qqmv3pdx5k2w64gmxl5ah5qvgw2qcaz02"; + }; + dependencies = []; + + }; + vim-nix = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "vim-nix-2015-12-10"; src = fetchgit { @@ -343,23 +354,12 @@ rec { }; - vim-autoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-autoformat-2016-02-24"; - src = fetchgit { - url = "git://github.com/Chiel92/vim-autoformat"; - rev = "a2f9b88bcd66fe47a44ae8b5e1002c2d8e6f4ad4"; - sha256 = "1fahm3dzcmpr7f9rrhzhyrj6fz95fblxal57gajcc3g136bizbnj"; - }; - dependencies = []; - - }; - vim-css-color = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-css-color-2015-10-03"; + name = "vim-css-color-2016-03-07"; src = fetchgit { url = "git://github.com/ap/vim-css-color"; - rev = "7ad79c7b77bd83296d7a10e596860d9269070207"; - sha256 = "020phzw0pnsjsjx9l1ry5xbrjpspagmvifl3h00hqllxmpfx2smx"; + rev = "81ce9558b0f5c8f0b015042415566f02360c67d0"; + sha256 = "04if4ch5db7lkh0swb9rwqpqzk2k8kkc6aszy4bvqg08irk4lqsi"; }; dependencies = []; @@ -399,11 +399,11 @@ rec { }; ctrlp-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "ctrlp-vim-2016-01-18"; + name = "ctrlp-vim-2016-03-09"; src = fetchgit { url = "git://github.com/ctrlpvim/ctrlp.vim"; - rev = "7f74368d85bb521951dd58123349ce66b947d058"; - sha256 = "0csz2624zw9p22gzlkf3dk24s9p2z1h1cgif3lmfgkswhhvi3kgy"; + rev = "0853394bee04fef74d96e536985765ea16c61b27"; + sha256 = "1ylh978kh6c6hznp20db9dmx4q6xmgb98j6lj227blc2936pg5fx"; }; dependencies = []; @@ -421,11 +421,11 @@ rec { }; neco-ghc = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neco-ghc-2016-02-13"; + name = "neco-ghc-2016-03-04"; src = fetchgit { url = "git://github.com/eagletmt/neco-ghc"; - rev = "a7b3dc018dff0cbe033c4c3939e1bd777f023083"; - sha256 = "0f48y8fnh9wp1iyq8w7sqzsw3vqm348vqs4p81nwnmwnhgpzxfri"; + rev = "df959a20468c2f455b599d1d21de8d2c4334c7aa"; + sha256 = "16gnrg8sa5d3w1lg0bsx24cbvyb9pfgkm67rgnxr39g8b9h9pr09"; }; dependencies = []; @@ -443,22 +443,22 @@ rec { }; vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-go-2016-02-25"; + name = "vim-go-2016-03-03"; src = fetchgit { url = "git://github.com/fatih/vim-go"; - rev = "c264aec72eac21f868fdfff2aef67b9ca21aab74"; - sha256 = "1yld56l4bl17r9s1rn72fqfkrjpm96n4wx3qv9hk5vd0yn0nw7y1"; + rev = "fd5661a1e16a1fd41385d7011877bfa1f0a1353f"; + sha256 = "1ps6hmzad0pmr8amk5knhrmc7giww7586pr2j36f6h60wzjvxgnn"; }; dependencies = []; }; vim-colorschemes = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-colorschemes-2015-07-25"; + name = "vim-colorschemes-2016-03-09"; src = fetchgit { url = "git://github.com/flazz/vim-colorschemes"; - rev = "28a989b28457e38df620e4c7ab23e224aff70efe"; - sha256 = "1r9nmlw6ranl5xc3cx0knkmq90rcp6vlmrg2xib35h2dldsch22k"; + rev = "93593970393b0b14d9ee1ac963bea8db2ae30481"; + sha256 = "1wq4pzfgd8scx8slmaz3l3ab9hsp286v6rydhw8ydp7wwi6ixpnr"; }; dependencies = []; @@ -476,11 +476,11 @@ rec { }; calendar-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "calendar-vim-2016-01-19"; + name = "calendar-vim-2016-03-06"; src = fetchgit { url = "git://github.com/itchyny/calendar.vim"; - rev = "2a6c13ee8056fe5b82ce6529f426ed63096dc6bc"; - sha256 = "164xzzhavf852vz17y9sfmajzz574hgkjpp3x2w4w9a2gklvca42"; + rev = "b2bbf257fbcb71a7854daaa99aa8cd7f15709df5"; + sha256 = "1w1w8s90l0hs65sp69a7w6wq63281lpksn459zy21i7zhflnl57l"; }; dependencies = []; @@ -586,11 +586,11 @@ rec { }; vim-peekaboo = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-peekaboo-2015-07-16"; + name = "vim-peekaboo-2016-02-29"; src = fetchgit { url = "git://github.com/junegunn/vim-peekaboo"; - rev = "b14a7496897bb0a520bed4f519ca79a683bafeec"; - sha256 = "1hz8iaw6xj2s6v9raxam5zn2qj3p207pnvjjlgc5lfbi8bp44vwj"; + rev = "111c4bacbe5216022d56489c366bf4ce985506e9"; + sha256 = "0pblcxb467n4nxkvmb8sl8765nmz17h74hs5dy5dnmaxiy55v0d9"; }; dependencies = []; @@ -630,11 +630,11 @@ rec { }; vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimtex-2016-02-23"; + name = "vimtex-2016-03-08"; src = fetchgit { url = "git://github.com/lervag/vimtex"; - rev = "ec5e0df3607de6bf6562e60d4fe2759519e9f9a7"; - sha256 = "0ld27rr5lnqzlhqpjrkgvrgs7h1hdsrwswkg7whynw83vilal8bd"; + rev = "4ecf478faf24158839e0b6fcf4fd301a9128103e"; + sha256 = "04vb121c109h02393z7hr1kiy2bc02aa8lqfwwh57wx7mzxjsfs5"; }; dependencies = []; @@ -667,11 +667,11 @@ rec { }; vim-startify = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-startify-2016-02-15"; + name = "vim-startify-2016-03-07"; src = fetchgit { url = "git://github.com/mhinz/vim-startify"; - rev = "23e043cc828b76524edc09f7dd091753dd1c7f12"; - sha256 = "0cplcpl9a2nhnmnh1h13pxf3hg823frhjmdxssyk35snf6ycgm24"; + rev = "193e0802ecde996a00ed58248d17a0e99ab077af"; + sha256 = "1zkqxhvc1cvsdgk5il38fxjcgds3x1fql2fjfn8v72rna1075xks"; }; dependencies = []; @@ -722,66 +722,66 @@ rec { }; vim-racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-racer-2016-02-02"; + name = "vim-racer-2016-03-09"; src = fetchgit { url = "git://github.com/racer-rust/vim-racer"; - rev = "ec26ab4ca71a5a805339e1243a691c9f6472eeaa"; - sha256 = "0c70s1dymvp4ji81z2302j2dzl7z8sndvzpf2dwwl14fwlar52db"; + rev = "263d3f48ff96c0e8f347f660f97edca13ea36405"; + sha256 = "0aak5jhzps173k52ql6isdwhjhmp69bnzzjrqjqnriyy0xay2d38"; }; dependencies = []; }; neocomplete-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neocomplete-vim-2016-02-20"; + name = "neocomplete-vim-2016-03-01"; src = fetchgit { url = "git://github.com/shougo/neocomplete.vim"; - rev = "fe8aa93a8a6030af3d208f2ecc92096cb3d52693"; - sha256 = "12lxb64jnjgppadli4g388cmf3mg5addkml03xmb94vpyf65cprx"; + rev = "a21f22f19d6dbd0fb0d58b555c186138c4c9cfc9"; + sha256 = "1kqg747s3pw6gc8g6h3s3bcsc3vjn00gav29zms6hpywiz6x931x"; }; dependencies = []; }; neosnippet-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neosnippet-snippets-2016-02-15"; + name = "neosnippet-snippets-2016-03-05"; src = fetchgit { url = "git://github.com/shougo/neosnippet-snippets"; - rev = "4e7b0a3962742eccaae298100e23e599d384ea67"; - sha256 = "1299wjmwc82x9z6jcy8332lk6jwnjhizgqzg9jf57704n312py8v"; + rev = "65810a15db3f09384d62ddcd42d9f97dcb96dde9"; + sha256 = "1zqw8mkljzq5mknridxp77gwfbhn2wrz8czhjlgg8k4q8alyziqp"; }; dependencies = []; }; neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "neosnippet-vim-2016-02-24"; + name = "neosnippet-vim-2016-03-05"; src = fetchgit { url = "git://github.com/shougo/neosnippet.vim"; - rev = "e908126f402c4c0f4ff6b21c9dd0e5349f39e585"; - sha256 = "09r0b199fk4m5zvc1f1x2lwyapxhaws1lvvm69jjwp1x4vhfdvjv"; + rev = "bcb7620a852a542d0940a2ff691deb9da9309f07"; + sha256 = "06f6flbv4zbdckjxchfwhm36syma6bzywassrf7hachnsx0s3ys3"; }; dependencies = []; }; unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "unite-vim-2016-02-25"; + name = "unite-vim-2016-03-06"; src = fetchgit { url = "git://github.com/shougo/unite.vim"; - rev = "65dffd7a27d9cbb0e026621c59d4ccc6073202bf"; - sha256 = "0m57f4kb8vh8z804qsahn94d3rcaqianpxfb3d0cd2d7v1cbgm71"; + rev = "c9d2ced6b993653a7ebbc572039f8d03ba2b997f"; + sha256 = "1b444a6zls7n321s03cljzv35id2rhp3aflpngyxk6l3j3ml2shx"; }; dependencies = []; }; vimproc-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimproc-vim-2016-02-16"; + name = "vimproc-vim-2016-03-09"; src = fetchgit { url = "git://github.com/shougo/vimproc.vim"; - rev = "78cbb5c683026085de133f160929ccc56a6b203a"; - sha256 = "0hw6ghldrg9zvnkh3j9r9ldi1lzhda71gd630zj09wlaz70x60nj"; + rev = "3ab0a236e65b277670266c1187da9a49064c1500"; + sha256 = "0vwrlds6dhvrq2sv2g2041cw1jx3c3snsv5pnlnma3nflxpxvry0"; }; dependencies = []; buildInputs = [ which ]; @@ -796,11 +796,11 @@ rec { }; vimshell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vimshell-vim-2016-02-18"; + name = "vimshell-vim-2016-03-05"; src = fetchgit { url = "git://github.com/shougo/vimshell.vim"; - rev = "f51ad1e3b4a897f32bb7ca0382f8fb25519e0d11"; - sha256 = "17zk2sm9n7cyhf92613vpqgaq74z4x61p4pxvvl25fc44bsddndf"; + rev = "ce19571a937c9cfa9d5c993c9c06c1457376759e"; + sha256 = "03fvzi4dlg7irljywy1kikkvq4sd4rnvvf8ji2pv68dl8s3zwmr2"; }; dependencies = [ "vimproc-vim" ]; }; @@ -883,11 +883,11 @@ rec { }; youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "youcompleteme-2016-02-25"; + name = "youcompleteme-2016-03-08"; src = fetchgit { url = "git://github.com/valloric/youcompleteme"; - rev = "35f6090b7661989518d64451ea4effa376fcb795"; - sha256 = "1n8wzsbw4saawpjmacw7kvk5mhcxckik0sw8zdpbp885812ly5wi"; + rev = "381b2132719a959f41e57ec0e6396fc1c3b6daf4"; + sha256 = "1gski3s1960pmxisyq85awda0a3kb22ji9y76f67k1a4smy5q9xa"; }; dependencies = []; buildInputs = [ @@ -930,11 +930,11 @@ rec { }; vim-pandoc-syntax = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-pandoc-syntax-2016-02-22"; + name = "vim-pandoc-syntax-2016-03-08"; src = fetchgit { url = "git://github.com/vim-pandoc/vim-pandoc-syntax"; - rev = "c9f4eb129881fa48b82c181c84a77ec5ceacb6f6"; - sha256 = "117zl8fpzd34895f0i05zc8zx0jsdald0j2wb12yrhsxiw97fwlq"; + rev = "a7783e5834008c4bec3f38b78bd2e48e113c9d4c"; + sha256 = "0hzgnyjscljylgv4ss5w1hfff1mdl4kdpl0gm7yrl964rlifcgzg"; }; dependencies = []; @@ -1018,22 +1018,22 @@ rec { }; vim-wakatime = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-wakatime-2016-01-11"; + name = "vim-wakatime-2016-03-06"; src = fetchgit { url = "git://github.com/wakatime/vim-wakatime"; - rev = "91262cb3c04fe4d98ecdffe8da2197537c66359c"; - sha256 = "0h25j6gzkiwlik2zp4h2k3wp7away1n63cnqrq5vnxfm6ax42blr"; + rev = "115b02198233745c86ef453b5cf5f8fc2d493ae0"; + sha256 = "1jbwjg3fk59dkz6f7x8cyqgxh1cg0a3qy3aj7abg4k2aip67101y"; }; dependencies = []; buildInputs = [ python ]; }; command-t = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "command-t-2016-02-09"; + name = "command-t-2016-03-09"; src = fetchgit { url = "git://github.com/wincent/command-t"; - rev = "4c7f02c5a9020bbbd498f643abfb059048388707"; - sha256 = "1ij3zkc29zn03kw82c6zv8sbhx3ma3m39fgy9c29419brspzg1r5"; + rev = "9740c9cd318d4e004f330358c76a27948dc5779e"; + sha256 = "0wb6wabd758xzh722d2vs3hrx77gf2sh24g9fnrzj4hwwglrld1s"; }; dependencies = []; buildInputs = [ perl ruby ]; @@ -1145,11 +1145,11 @@ rec { }; snipmate = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "snipmate-2015-10-27"; + name = "snipmate-2016-03-01"; src = fetchgit { url = "git://github.com/garbas/vim-snipmate"; - rev = "7f91de39088138491e40a35a855adb70677b02d3"; - sha256 = "0cv6xh0crnrp9qpnkxqnim0lygd96s3hgfsgh4317z4nsjx0piz8"; + rev = "71250b0ef2b03b40ded5e93f4abe66fc2ee4aa75"; + sha256 = "0nzpk9h31m73anb16hj19mp8q9ccq8aqgck482alxapgf1g0mzli"; }; dependencies = ["vim-addon-mw-utils" "tlib"]; @@ -1441,11 +1441,11 @@ rec { }; vim-airline = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-airline-2016-02-25"; + name = "vim-airline-2016-03-08"; src = fetchgit { url = "git://github.com/bling/vim-airline"; - rev = "5cf193fa28d0c6f0f93fd1b481ba4845eac9a1ac"; - sha256 = "1dgh9xs4rhziayl18nrknvgjnx8ll5pw4xcy43wrcr7icnmddgrw"; + rev = "4395405628534b2c7f9c4be2bdba03315241393c"; + sha256 = "1fgq9jjdlmrak663iw7xbx348l7zz5jsx477n7l3s338wj4h9bsb"; }; dependencies = []; @@ -1463,33 +1463,33 @@ rec { }; vim-easy-align = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-easy-align-2016-02-05"; + name = "vim-easy-align-2016-03-06"; src = fetchgit { url = "git://github.com/junegunn/vim-easy-align"; - rev = "dd98d0a8957b7d43ac84be3318bbc950bc9ed467"; - sha256 = "1hdfcg07p4xvd5aa7hqmjg2zf6cmlrp4maid7qc4l0xcfx6wx4j1"; + rev = "0cb6b98fc155717b0a56c110551ac57d1d951ddb"; + sha256 = "089c4grk24albishgxdskb1zsvxbzlp2yq1baf0vy6cryxwm8ykq"; }; dependencies = []; }; vim-gista = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-gista-2016-02-22"; + name = "vim-gista-2016-03-02"; src = fetchgit { url = "git://github.com/lambdalisue/vim-gista"; - rev = "d4da4b6f53a93ebadc7c1dcc4e82836f96c706c9"; - sha256 = "19786fr2m44krq7l62j3h39ayl6a04474s2mkbv8szkg8jb4syzq"; + rev = "9b6719242c0dfbb8b01a49b8765fc8dfeb022118"; + sha256 = "0kl1f2w8pvmx3jkiwq2ygrdq9yccxnh9kl0fwjwjp5gqhhw0d2vp"; }; dependencies = []; }; vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-gitgutter-2016-02-21"; + name = "vim-gitgutter-2016-03-07"; src = fetchgit { url = "git://github.com/airblade/vim-gitgutter"; - rev = "0af9f2a3ab029054d279f69364351e95e107008a"; - sha256 = "0kqj50sha1i1jsm9mirx6jn7kpdm0zl60n0zc3rh8z1zsjic0mqr"; + rev = "28353bd0609ae7b8c7e01c70dce31700d8c6e654"; + sha256 = "04dmbqpmk3da3wnklzv3ws0r3fjd55yc8z2j5f695x60f2cab8qz"; }; dependencies = []; @@ -1529,44 +1529,44 @@ rec { }; vim-signature = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-signature-2016-02-22"; + name = "vim-signature-2016-03-03"; src = fetchgit { url = "git://github.com/kshenoy/vim-signature"; - rev = "8b7b40041f938092d3cb5c5db33fec54c41a1854"; - sha256 = "0qqc785r84g1ckxyds0zmf881wslsfa1cmpcx35jwcyjwdaya0a6"; + rev = "85b22e21ad4276c54d557ac640e1d32b2b4e6b5e"; + sha256 = "1rygsgahcf9lbi0ddk3f2srda3mlmhnwpal842bms60crj9jimxk"; }; dependencies = []; }; vim-signify = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-signify-2016-02-25"; + name = "vim-signify-2016-03-03"; src = fetchgit { url = "git://github.com/mhinz/vim-signify"; - rev = "051dc1a853cb86231497c58a5c06dc82a17837ca"; - sha256 = "0iy03qxv9m301pqa495ydacx072pa1jwdqgk50dpd1z6711cdh44"; + rev = "a02c8793bfda7ddd386587c64246bec6aa78ff62"; + sha256 = "0lv37z8zcwz3fvlc6qjg8nbmgqkall776w46ifps51pn03qwp91d"; }; dependencies = []; }; vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-snippets-2016-02-19"; + name = "vim-snippets-2016-03-09"; src = fetchgit { url = "git://github.com/honza/vim-snippets"; - rev = "732978ab1622c8d6fdf0384cd3b524e3fe7ba5f3"; - sha256 = "0i7jr48vwazdy3bm9y2wa0y5ay1rhp91dpi5kqgs06na85qvhsiz"; + rev = "743be1a6e0c93e84a7ae6bc7066bf6ed358b5fbe"; + sha256 = "0p0ld2m0mka5kq324vs0k3m7ffpvjg7kjh5vdqz9cm0ajmw3aa8p"; }; dependencies = []; }; vim-webdevicons = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vim-webdevicons-2016-02-08"; + name = "vim-webdevicons-2016-03-04"; src = fetchgit { url = "git://github.com/ryanoasis/vim-devicons"; - rev = "d0111ec77c3d7e3e3072e576bb26055643e64a2f"; - sha256 = "1lhycam07licxkf8isl641mwd64i2x8kjqqvzxndhr26incs9pv2"; + rev = "f8841e2bd46e9fed95c0389190e3ef1b6ba77440"; + sha256 = "0f0fxn7pck9k642sgmv0y68qi0hqnw46pl919c2sq542da7g4k0p"; }; dependencies = []; @@ -1606,11 +1606,11 @@ rec { }; vundle = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "vundle-2016-02-21"; + name = "vundle-2016-02-26"; src = fetchgit { url = "git://github.com/gmarik/vundle"; - rev = "8a054139a3623739321303cf06c09b0f9874dc0d"; - sha256 = "0hhjnp9i0glfa5fdfg9n9286zdfvfmdx1ln9ayfr8kmm9nwy24gp"; + rev = "4984767509e3d05ca051e253c8a8b37de784be45"; + sha256 = "0n2k3ip81yfx00ch45nqiwayhz8qxmwg5s34a4k5snapzcxcm2fn"; }; dependencies = []; From aac666e302807805154190ebe105711d585c90ee Mon Sep 17 00:00:00 2001 From: kklas Date: Thu, 25 Feb 2016 14:08:27 +0100 Subject: [PATCH 0130/1059] sw-raid: make mdmon start from initrd Also add required systemd services for starting/stopping mdmon. Closes #13447. abbradar: fixed `mdadmShutdown` service name according to de facto conventions. --- nixos/modules/system/boot/stage-1.nix | 1 + nixos/modules/tasks/swraid.nix | 41 +++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/nixos/modules/system/boot/stage-1.nix b/nixos/modules/system/boot/stage-1.nix index f31620df1d8..757d883373a 100644 --- a/nixos/modules/system/boot/stage-1.nix +++ b/nixos/modules/system/boot/stage-1.nix @@ -58,6 +58,7 @@ let # Add RAID mdadm tool. copy_bin_and_libs ${pkgs.mdadm}/sbin/mdadm + copy_bin_and_libs ${pkgs.mdadm}/sbin/mdmon # Copy udev. copy_bin_and_libs ${udev}/lib/systemd/systemd-udevd diff --git a/nixos/modules/tasks/swraid.nix b/nixos/modules/tasks/swraid.nix index 8e972891971..18df0e224d5 100644 --- a/nixos/modules/tasks/swraid.nix +++ b/nixos/modules/tasks/swraid.nix @@ -12,4 +12,45 @@ cp -v ${pkgs.mdadm}/lib/udev/rules.d/*.rules $out/ ''; + systemd.services.mdadmShutdown = { + wantedBy = [ "final.target"]; + after = [ "umount.target" ]; + + unitConfig = { + DefaultDependencies = false; + }; + + serviceConfig = { + Type = "oneshot"; + ExecStart = ''${pkgs.mdadm}/bin/mdadm --wait-clean --scan''; + }; + }; + + systemd.services."mdmon@" = { + description = "MD Metadata Monitor on /dev/%I"; + + unitConfig.DefaultDependencies = false; + + serviceConfig = { + Type = "forking"; + Environment = "IMSM_NO_PLATFORM=1"; + ExecStart = ''${pkgs.mdadm}/bin/mdmon --offroot --takeover %I''; + KillMode = "none"; + }; + }; + + systemd.services."mdadm-grow-continue@" = { + description = "Manage MD Reshape on /dev/%I"; + + unitConfig.DefaultDependencies = false; + + serviceConfig = { + ExecStart = ''${pkgs.mdadm}/bin/mdadm --grow --continue /dev/%I''; + StandardInput = "null"; + StandardOutput = "null"; + StandardError = "null"; + KillMode = "none"; + }; + }; + } From 1111f73dde9cf1aaaddec343d06a3f4274577866 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 9 Mar 2016 21:06:27 +0300 Subject: [PATCH 0131/1059] sw-raid: rename mdadmShutdown See https://github.com/NixOS/nixpkgs/commit/aac666e302807805154190ebe105711d585c90ee I've forgotten to add the change. --- nixos/modules/tasks/swraid.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/tasks/swraid.nix b/nixos/modules/tasks/swraid.nix index 18df0e224d5..d6cb1c96ef4 100644 --- a/nixos/modules/tasks/swraid.nix +++ b/nixos/modules/tasks/swraid.nix @@ -12,7 +12,7 @@ cp -v ${pkgs.mdadm}/lib/udev/rules.d/*.rules $out/ ''; - systemd.services.mdadmShutdown = { + systemd.services.mdadm-shutdown = { wantedBy = [ "final.target"]; after = [ "umount.target" ]; From e57f1eb6d061ba37677230ba95b21733e3179259 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Wed, 9 Mar 2016 01:19:31 -0300 Subject: [PATCH 0132/1059] epson_201207w: init at 1.0.0 --- lib/licenses.nix | 6 ++ pkgs/misc/drivers/epson_201207w/default.nix | 72 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 80 insertions(+) create mode 100644 pkgs/misc/drivers/epson_201207w/default.nix diff --git a/lib/licenses.nix b/lib/licenses.nix index 64ba63b146a..f01712500e7 100644 --- a/lib/licenses.nix +++ b/lib/licenses.nix @@ -175,6 +175,12 @@ lib.mapAttrs (n: v: v // { shortName = n; }) rec { fullName = "Eclipse Public License 1.0"; }; + epson = { + fullName = "Seiko Epson Corporation Software License Agreement for Linux"; + url = https://download.ebz.epson.net/dsc/du/02/eula/global/LINUX_EN.html; + free = false; + }; + fdl12 = spdx { spdxId = "GFDL-1.2"; fullName = "GNU Free Documentation License v1.2"; diff --git a/pkgs/misc/drivers/epson_201207w/default.nix b/pkgs/misc/drivers/epson_201207w/default.nix new file mode 100644 index 00000000000..2a92f8a59d9 --- /dev/null +++ b/pkgs/misc/drivers/epson_201207w/default.nix @@ -0,0 +1,72 @@ +{ stdenv, fetchurl, rpmextract, autoreconfHook, file, libjpeg, cups }: + +let + version = "1.0.0"; +in + stdenv.mkDerivation { + + name = "epson_201207w-${version}"; + + src = fetchurl { + url = "https://download.ebz.epson.net/dsc/op/stable/SRPMS/epson-inkjet-printer-201207w-${version}-1lsb3.2.src.rpm"; + sha256 = "1ixnhn2dk83nh9v8sdivzgc2bm9z2phvsbx8bc6ainbjq6vn7lns"; + }; + + nativeBuildInputs = [ rpmextract autoreconfHook file ]; + + buildInputs = [ libjpeg cups ]; + + unpackPhase = '' + rpmextract $src + tar -zxf epson-inkjet-printer-201207w-${version}.tar.gz + tar -zxf epson-inkjet-printer-filter-${version}.tar.gz + for ppd in epson-inkjet-printer-201207w-${version}/ppds/*; do + substituteInPlace $ppd --replace "/opt/epson-inkjet-printer-201207w" "$out" + substituteInPlace $ppd --replace "/cups/lib" "/lib/cups" + done + cd epson-inkjet-printer-filter-${version} + ''; + + preConfigure = '' + chmod +x configure + export LDFLAGS="$LDFLAGS -Wl,--no-as-needed" + ''; + + postInstall = '' + cd ../epson-inkjet-printer-201207w-${version} + cp -a lib64 resource watermark $out + mkdir -p $out/share/cups/model/epson-inkjet-printer-201207w + cp -a ppds $out/share/cups/model/epson-inkjet-printer-201207w/ + cp -a Manual.txt $out/doc/ + cp -a README $out/doc/README.driver + ''; + + meta = with stdenv.lib; { + homepage = https://www.openprinting.org/driver/epson-201207w; + description = "Epson printer driver (L110, L210, L300, L350, L355, L550, L555)"; + longDescription = '' + This software is a filter program used with the Common UNIX Printing + System (CUPS) under Linux. It supplies high quality printing with + Seiko Epson Color Ink Jet Printers. + + List of printers supported by this package: + Epson L110 Series + Epson L210 Series + Epson L300 Series + Epson L350 Series + Epson L355 Series + Epson L550 Series + Epson L555 Series + + To use the driver adjust your configuration.nix file: + services.printing = { + enable = true; + drivers = [ pkgs.epson_201207w ]; + }; + ''; + license = with licenses; [ lgpl21 epson ]; + maintainers = [ maintainers.romildo ]; + platforms = [ "x86_64-linux" ]; + }; + + } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 512471b4057..752b0d838a9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15850,6 +15850,8 @@ let epson-escpr = callPackage ../misc/drivers/epson-escpr { }; + epson_201207w = callPackage ../misc/drivers/epson_201207w { }; + gutenprint = callPackage ../misc/drivers/gutenprint { }; gutenprintBin = callPackage ../misc/drivers/gutenprint/bin.nix { }; From 4939b6848f600e20baad00a31bd9734554a6191e Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Tue, 8 Mar 2016 22:42:32 -0600 Subject: [PATCH 0133/1059] wla-dx: init at 8189fe8d --- pkgs/development/compilers/wla-dx/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/development/compilers/wla-dx/default.nix diff --git a/pkgs/development/compilers/wla-dx/default.nix b/pkgs/development/compilers/wla-dx/default.nix new file mode 100644 index 00000000000..535868bee3b --- /dev/null +++ b/pkgs/development/compilers/wla-dx/default.nix @@ -0,0 +1,24 @@ +{stdenv, fetchFromGitHub, cmake}: + +stdenv.mkDerivation rec { + name = "wla-dx-git-2016-02-27"; + src = fetchFromGitHub { + owner = "vhelin"; + repo = "wla-dx"; + rev = "8189fe8d5620584ea16563875ff3c5430527c86a"; + sha256 = "02zgkcyfx7y8j6jvyi12lm29fydnd7m3rxv6g2psv23fyzmpkkir"; + }; + installPhase = '' + mkdir -p $out/bin + install binaries/* $out/bin + ''; + nativeBuildInputs = [ cmake ]; + + meta = with stdenv.lib; { + homepage = "http://www.villehelin.com/wla.html"; + description = "Yet Another GB-Z80/Z80/6502/65C02/6510/65816/HUC6280/SPC-700 Multi Platform Cross Assembler Package"; + license = licenses.gpl2; + maintainers = with maintainers; [ mbauer ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 07ab3a6f773..a75516439c7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5227,6 +5227,8 @@ let win32hello = callPackage ../development/compilers/visual-c++/test { }; + wla-dx = callPackage ../development/compilers/wla-dx { }; + wrapCCWith = ccWrapper: libc: extraBuildCommands: baseCC: ccWrapper { nativeTools = stdenv.cc.nativeTools or false; nativeLibc = stdenv.cc.nativeLibc or false; From 9ad60eae48c86ea2b8aa8901e87d6ba90f399400 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Wed, 9 Mar 2016 18:56:14 +0000 Subject: [PATCH 0134/1059] xen: remove unneeded depds now that stubdom is disabled --- .../virtualization/xen/generic.nix | 29 +------------------ 1 file changed, 1 insertion(+), 28 deletions(-) diff --git a/pkgs/applications/virtualization/xen/generic.nix b/pkgs/applications/virtualization/xen/generic.nix index 76d2b0a31a7..c169519a8e5 100644 --- a/pkgs/applications/virtualization/xen/generic.nix +++ b/pkgs/applications/virtualization/xen/generic.nix @@ -15,39 +15,12 @@ let libDir = if stdenv.is64bit then "lib64" else "lib"; - # Sources needed to build the stubdoms and tools + # Sources needed to build the tools # These sources are already rather old and probably do not change frequently xenExtfiles = [ - { url = http://xenbits.xensource.com/xen-extfiles/lwip-1.3.0.tar.gz; - sha256 = "13wlr85s1hnvia6a698qpryyy12lvmqw0a05xmjnd0h71ralsbkp"; - } - { url = http://xenbits.xensource.com/xen-extfiles/zlib-1.2.3.tar.gz; - sha256 = "0pmh8kifb6sfkqfxc23wqp3f2wzk69sl80yz7w8p8cd4cz8cg58p"; - } - { url = http://xenbits.xensource.com/xen-extfiles/newlib-1.16.0.tar.gz; - sha256 = "01rxk9js833mwadq92jx0flvk9jyjrnwrq93j39c2j2wjsa66hnv"; - } - { url = http://xenbits.xensource.com/xen-extfiles/grub-0.97.tar.gz; - sha256 = "02r6b52r0nsp6ryqfiqchnl7r1d9smm80sqx24494gmx5p8ia7af"; - } - { url = http://xenbits.xensource.com/xen-extfiles/pciutils-2.2.9.tar.bz2; - sha256 = "092v4q478i1gc7f3s2wz6p4xlf1wb4gs5shbkn21vnnmzcffc2pn"; - } - { url = http://xenbits.xensource.com/xen-extfiles/tpm_emulator-0.7.4.tar.gz; - sha256 = "0nd4vs48j0zfzv1g5jymakxbjqf9ss6b2jph3b64356xhc6ylj2f"; - } - { url = http://xenbits.xensource.com/xen-extfiles/tboot-20090330.tar.gz; - sha256 = "0rl1b53g019w2c268pyxhjqsj9ls37i4p74bdv1hdi2yvs0r1y81"; - } { url = http://xenbits.xensource.com/xen-extfiles/ipxe-git-9a93db3f0947484e30e753bbd61a10b17336e20e.tar.gz; sha256 = "0p206zaxlhda60ci33h9gipi5gm46fvvsm6k5c0w7b6cjg0yhb33"; } - { url = http://xenbits.xensource.com/xen-extfiles/polarssl-1.1.4-gpl.tgz; - sha256 = "1dl4fprpwagv9akwqpb62qwqvh24i50znadxwvd2kfnhl02gsa9d"; - } - { url = http://xenbits.xensource.com/xen-extfiles/gmp-4.3.2.tar.bz2; - sha256 = "0x8prpqi9amfcmi7r4zrza609ai9529pjaq0h4aw51i867064qck"; - } ]; scriptEnvPath = stdenv.lib.concatStrings (stdenv.lib.intersperse ":" (map (x: "${x}/bin") From a75eb513c653b5fd70700607c89bb40ca5febb83 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 9 Mar 2016 22:13:54 +0300 Subject: [PATCH 0135/1059] stepmania: fix on i686 --- pkgs/games/stepmania/default.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pkgs/games/stepmania/default.nix b/pkgs/games/stepmania/default.nix index 0ec52cc5804..c4dc96a4c4d 100644 --- a/pkgs/games/stepmania/default.nix +++ b/pkgs/games/stepmania/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, fetchFromGitHub, cmake, nasm +{ stdenv, lib, fetchpatch, fetchFromGitHub, cmake, nasm , gtk2, glib, ffmpeg, alsaLib, libmad, libogg, libvorbis , glew, libpulseaudio }: @@ -27,6 +27,14 @@ stdenv.mkDerivation rec { "-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib}/lib/glib-2.0/include" ]; + patches = [ + # Fix compilation on i686 + (fetchpatch { + url = "https://github.com/stepmania/stepmania/commit/f1e114aa03c90884946427bb43a75badec21f163.patch"; + sha256 = "1cm14w92dilqvlyqfffiihf09ra97hxzgfal5gx08brc3j1yyzdw"; + }) + ]; + postInstall = '' mkdir -p $out/bin ln -s $out/stepmania-5.0/stepmania $out/bin/stepmania From 46abbc9dc967624486952dd7333d2125e5db009b Mon Sep 17 00:00:00 2001 From: zimbatm Date: Wed, 9 Mar 2016 10:16:39 +0000 Subject: [PATCH 0136/1059] fzf: 0.11.1 -> 0.11.4 --- pkgs/top-level/go-packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/go-packages.json b/pkgs/top-level/go-packages.json index 95e46093d56..21a43622b9f 100644 --- a/pkgs/top-level/go-packages.json +++ b/pkgs/top-level/go-packages.json @@ -969,8 +969,8 @@ }, "junegunn": { "fzf": { - "rev": "0.11.1", - "sha256": "1zw1kq4d5sb1qia44q04i33yii9qwlwlwz8vxhln03d4631mhsra" + "rev": "0.11.4", + "sha256": "12axgg14z4imjskfyfvj95rbhzijjg5nmaphl7m5ap9a3wzlvb32" }, "go-runewidth": { "rev": "travisish", From 2206a24caa609859e3d9385647708dfd7ec5bf08 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Wed, 9 Mar 2016 19:39:58 +0000 Subject: [PATCH 0137/1059] go-packages: use lib.importJSON --- 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 4a97a54544c..0c5e3a3013c 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -8,7 +8,7 @@ let # When adding entries to the json file, please use `jq . < go-packages.json --sort-keys` # to canonicallize the data. - ghPackages = builtins.fromJSON (builtins.readFile ./go-packages.json); + ghPackages = stdenv.lib.importJSON ./go-packages.json; self = _self // overrides; _self = with self; { From a086858ef51eb564a378424b21f677428a34fc9e Mon Sep 17 00:00:00 2001 From: zimbatm Date: Mon, 29 Feb 2016 20:20:31 +0000 Subject: [PATCH 0138/1059] Remove lib.deepSeqList and lib.deepSeqAttrs Both functions are broken and unused in the repo. --- lib/attrsets.nix | 2 +- lib/lists.nix | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/attrsets.nix b/lib/attrsets.nix index 84f6cb3658b..f5184af4230 100644 --- a/lib/attrsets.nix +++ b/lib/attrsets.nix @@ -364,5 +364,5 @@ rec { overrideExisting = old: new: old // listToAttrs (map (attr: nameValuePair attr (attrByPath [attr] old.${attr} new)) (attrNames old)); - deepSeqAttrs = x: y: deepSeqList (attrValues x) y; + deepSeqAttrs = throw "removed 2016-02-29 because unused and broken"; } diff --git a/lib/lists.nix b/lib/lists.nix index 3bcf366f0c2..9e4ab9e2d95 100644 --- a/lib/lists.nix +++ b/lib/lists.nix @@ -246,9 +246,6 @@ rec { init = list: assert list != []; take (length list - 1) list; - deepSeqList = xs: y: if any (x: deepSeq x false) xs then y else y; - - crossLists = f: foldl (fs: args: concatMap (f: map f args) fs) [f]; @@ -270,4 +267,7 @@ rec { # Subtracts list 'e' from another list. O(nm) complexity. subtractLists = e: filter (x: !(elem x e)); + deepSeqList = throw "removed 2016-02-29 because unused and broken"; + + } From 523e3283189710a9a58bd2828f45a7413f3ede3e Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 28 Feb 2016 21:49:42 +0000 Subject: [PATCH 0139/1059] lib/attrsets: document all the functions --- lib/attrsets.nix | 137 +++++++++++++++++++++++++++++++++++++---------- 1 file changed, 109 insertions(+), 28 deletions(-) diff --git a/lib/attrsets.nix b/lib/attrsets.nix index f5184af4230..4161fa546c8 100644 --- a/lib/attrsets.nix +++ b/lib/attrsets.nix @@ -12,9 +12,15 @@ rec { inherit (builtins) attrNames listToAttrs hasAttr isAttrs getAttr; - /* Return an attribute from nested attribute sets. For instance - ["x" "y"] applied to some set e returns e.x.y, if it exists. The - default value is returned otherwise. */ + /* Return an attribute from nested attribute sets. + + Example: + x = { a = { b = 3; }; } + attrByPath ["a" "b"] 6 x + => 3 + attrByPath ["z" "z"] 6 x + => 6 + */ attrByPath = attrPath: default: e: let attr = head attrPath; in @@ -24,8 +30,15 @@ rec { else default; /* Return if an attribute from nested attribute set exists. - For instance ["x" "y"] applied to some set e returns true, if e.x.y exists. False - is returned otherwise. */ + + Example: + x = { a = { b = 3; }; } + hasAttrByPath ["a" "b"] x + => true + hasAttrByPath ["z" "z"] x + => false + + */ hasAttrByPath = attrPath: e: let attr = head attrPath; in @@ -35,14 +48,28 @@ rec { else false; - /* Return nested attribute set in which an attribute is set. For instance - ["x" "y"] applied with some value v returns `x.y = v;' */ + /* Return nested attribute set in which an attribute is set. + + Example: + setAttrByPath ["a" "b"] 3 + => { a = { b = 3; }; } + */ setAttrByPath = attrPath: value: if attrPath == [] then value else listToAttrs [ { name = head attrPath; value = setAttrByPath (tail attrPath) value; } ]; + /* Like `getAttrPath' without a default value. If it doesn't find the + path it will throw. + + Example: + x = { a = { b = 3; }; } + getAttrFromPath ["a" "b"] x + => 3 + getAttrFromPath ["z" "z"] x + => error: cannot find attribute `z.z' + */ getAttrFromPath = attrPath: set: let errorMsg = "cannot find attribute `" + concatStringsSep "." attrPath + "'"; in attrByPath attrPath (abort errorMsg) set; @@ -109,9 +136,11 @@ rec { ) (attrNames set) ); - /* foldAttrs: apply fold functions to values grouped by key. Eg accumulate values as list: - foldAttrs (n: a: [n] ++ a) [] [{ a = 2; } { a = 3; }] - => { a = [ 2 3 ]; } + /* Apply fold functions to values grouped by key. + + Example: + foldAttrs (n: a: [n] ++ a) [] [{ a = 2; } { a = 3; }] + => { a = [ 2 3 ]; } */ foldAttrs = op: nul: list_of_attrs: fold (n: a: @@ -147,7 +176,12 @@ rec { /* Utility function that creates a {name, value} pair as expected by - builtins.listToAttrs. */ + builtins.listToAttrs. + + Example: + nameValuePair "some" 6 + => { name = "some"; value = 6; } + */ nameValuePair = name: value: { inherit name value; }; @@ -248,11 +282,19 @@ rec { listToAttrs (map (n: nameValuePair n (f n)) names); - /* Check whether the argument is a derivation. */ + /* Check whether the argument is a derivation. Any set with + { type = "derivation"; } counts as a derivation. + + Example: + nixpkgs = import {} + isDerivation nixpkgs.ruby + => true + isDerivation "foobar" + => false + */ isDerivation = x: isAttrs x && x ? type && x.type == "derivation"; - - /* Convert a store path to a fake derivation. */ + /* Converts a store path to a fake derivation. */ toDerivation = path: let path' = builtins.storePath path; in { type = "derivation"; @@ -262,32 +304,49 @@ rec { }; - /* If the Boolean `cond' is true, return the attribute set `as', - otherwise an empty attribute set. */ + /* If `cond' is true, return the attribute set `as', + otherwise an empty attribute set. + + Example: + optionalAttrs (true) { my = "set"; } + => { my = "set"; } + optionalAttrs (false) { my = "set"; } + => { } + */ optionalAttrs = cond: as: if cond then as else {}; /* Merge sets of attributes and use the function f to merge attributes - values. */ + values. + + Example: + zipAttrsWithNames ["a"] (name: vs: vs) [{a = "x";} {a = "y"; b = "z";}] + => { a = ["x" "y"]; } + */ zipAttrsWithNames = names: f: sets: listToAttrs (map (name: { inherit name; value = f name (catAttrs name sets); }) names); - # implentation note: Common names appear multiple times in the list of - # names, hopefully this does not affect the system because the maximal - # laziness avoid computing twice the same expression and listToAttrs does - # not care about duplicated attribute names. + /* Implentation note: Common names appear multiple times in the list of + names, hopefully this does not affect the system because the maximal + laziness avoid computing twice the same expression and listToAttrs does + not care about duplicated attribute names. + + Example: + zipAttrsWith (name: values: values) [{a = "x";} {a = "y"; b = "z";}] + => { a = ["x" "y"]; b = ["z"] } + */ zipAttrsWith = f: sets: zipAttrsWithNames (concatMap attrNames sets) f sets; + /* Like `zipAttrsWith' with `(name: values: value)' as the function. + Example: + zipAttrs [{a = "x";} {a = "y"; b = "z";}] + => { a = ["x" "y"]; b = ["z"] } + */ zipAttrs = zipAttrsWith (name: values: values); - /* backward compatibility */ - zipWithNames = zipAttrsWithNames; - zip = builtins.trace "lib.zip is deprecated, use lib.zipAttrsWith instead" zipAttrsWith; - - /* Does the same as the update operator '//' except that attributes are merged until the given pedicate is verified. The predicate should accept 3 arguments which are the path to reach the attribute, a part of @@ -351,6 +410,15 @@ rec { !(isAttrs lhs && isAttrs rhs) ) lhs rhs; + /* Returns true if the pattern is contained in the set. False otherwise. + + FIXME(zimbatm): this example doesn't work !!! + + Example: + sys = mkSystem { } + matchAttrs { cpu = { bits = 64; }; } sys + => true + */ matchAttrs = pattern: attrs: fold or false (attrValues (zipAttrsWithNames (attrNames pattern) (n: values: let pat = head values; val = head (tail values); in @@ -359,10 +427,23 @@ rec { else pat == val ) [pattern attrs])); - # override only the attributes that are already present in the old set - # useful for deep-overriding + /* Override only the attributes that are already present in the old set + useful for deep-overriding. + + Example: + x = { a = { b = 4; c = 3; }; } + overrideExisting x { a = { b = 6; d = 2; }; } + => { a = { b = 6; d = 2; }; } + */ overrideExisting = old: new: old // listToAttrs (map (attr: nameValuePair attr (attrByPath [attr] old.${attr} new)) (attrNames old)); + + /*** deprecated stuff ***/ + deepSeqAttrs = throw "removed 2016-02-29 because unused and broken"; + zipWithNames = zipAttrsWithNames; + zip = builtins.trace + "lib.zip is deprecated, use lib.zipAttrsWith instead" zipAttrsWith; + } From 83f2a6792c52486f2f729bd5dd7a52bfc98a059b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 9 Mar 2016 19:23:30 +0100 Subject: [PATCH 0140/1059] perl-DateTimeX-Easy: disable failing test suite to fix Hydra build --- 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 4772480c64a..47d8c2814ad 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -3187,6 +3187,7 @@ let self = _self // overrides; _self = with self; { }; buildInputs = [ TestMost ]; propagatedBuildInputs = [ DateTime DateTimeFormatFlexible DateTimeFormatICal DateTimeFormatNatural TimeDate ]; + doCheck = false; meta = { description = "Parse a date/time string using the best method available"; license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; From 83d814f600f7ec4c6c69e0d1d4cad163a5c3052b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Wed, 9 Mar 2016 17:50:28 -0300 Subject: [PATCH 0141/1059] awesome: 3.5.8 -> 3.5.9 --- pkgs/applications/window-managers/awesome/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/window-managers/awesome/default.nix b/pkgs/applications/window-managers/awesome/default.nix index 29b215d0642..181983e48b0 100644 --- a/pkgs/applications/window-managers/awesome/default.nix +++ b/pkgs/applications/window-managers/awesome/default.nix @@ -7,7 +7,7 @@ }: let - version = "3.5.8"; + version = "3.5.9"; in with luaPackages; stdenv.mkDerivation rec { @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://awesome.naquadah.org/download/awesome-${version}.tar.xz"; - sha256 = "1iifcyphgibmh3cvsy8agjrl9zjl80scrg0bcgnwywmxaxncjc3w"; + sha256 = "0kynair1ykr74b39a4gcm2y24viial64337cf26nhlc7azjbby67"; }; meta = with stdenv.lib; { From fa6c61138663114c0d14d401f04b4f7e5d943c4c Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Wed, 9 Mar 2016 23:07:50 +0100 Subject: [PATCH 0142/1059] pythonPackages.sqalchemy: 1.0.10 -> 1.0.12 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1.0.11 and 1.0.12 are bugfixes releases. See http://www.sqlalchemy.org/blog/2016/02/15/sqlalchemy-1.0.12-released/ http://www.sqlalchemy.org/blog/2015/12/23/sqlalchemy-1.0.11-released/ --- 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 77f70d7b714..34e6ea51c8b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -20293,11 +20293,11 @@ in modules // { sqlalchemy = buildPythonPackage rec { name = "SQLAlchemy-${version}"; - version = "1.0.10"; + version = "1.0.12"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/S/SQLAlchemy/${name}.tar.gz"; - sha256 = "963415bf4ea4fa13698893464bc6917d291331e0e8202dddd0ebfed2864ef7e3"; + sha256 = "1l8qclhd0s90w3pvwhi5mjxdwr5j7gw7cjka2fx6f2vqmq7f4yb6"; }; buildInputs = with self; [ nose mock ] From 5782b5d3e86f8ce91b4e96e7c8ed9062c826f105 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 9 Mar 2016 23:15:41 +0100 Subject: [PATCH 0143/1059] gpgstats: fix build on 32-bit; LFS problems --- pkgs/tools/security/gpgstats/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/tools/security/gpgstats/default.nix b/pkgs/tools/security/gpgstats/default.nix index 480ef5bf3e7..e9929cb2e6f 100644 --- a/pkgs/tools/security/gpgstats/default.nix +++ b/pkgs/tools/security/gpgstats/default.nix @@ -16,6 +16,9 @@ stdenv.mkDerivation rec { cp gpgstats $out/bin ''; + NIX_CFLAGS_COMPILE = stdenv.lib.optionals (!stdenv.is64bit) + [ "-D_FILE_OFFSET_BITS=64" "-DLARGEFILE_SOURCE=1" ]; + meta = with stdenv.lib; { description = "Calculates statistics on the keys in your gpg key-ring"; longDescription = '' From 728cf25e168072212ba5aed51be386170e608bc4 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Thu, 10 Mar 2016 00:13:08 +0100 Subject: [PATCH 0144/1059] libotr: 4.1.0 -> 4.1.1 (CVE-2016-2851) https://www.x41-dsec.de/lab/advisories/x41-2016-001-libotr/ --- pkgs/development/libraries/libotr/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libotr/default.nix b/pkgs/development/libraries/libotr/default.nix index aeae2a70d6c..0a01cd9825e 100644 --- a/pkgs/development/libraries/libotr/default.nix +++ b/pkgs/development/libraries/libotr/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, libgcrypt, autoreconfHook }: stdenv.mkDerivation rec { - name = "libotr-4.1.0"; + name = "libotr-4.1.1"; src = fetchurl { url = "https://otr.cypherpunks.ca/${name}.tar.gz"; - sha256 = "0c6rkh58s6wqzcrpccwdik5qs91qj6dgd60a340d72gc80cqknsg"; + sha256 = "1x8rliydhbibmzwdbyr7pd7n87m2jmxnqkpvaalnf4154hj1hfwb"; }; buildInputs = [ autoreconfHook ]; From 6b4a70c67240097a669ba3660e2aebde7074e4ee Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Wed, 9 Mar 2016 15:38:35 -0600 Subject: [PATCH 0145/1059] libotr_3_2: remove, not updated since 2012, and unused. --- pkgs/development/libraries/libotr/3.2.nix | 11 ----------- pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 13 deletions(-) delete mode 100644 pkgs/development/libraries/libotr/3.2.nix diff --git a/pkgs/development/libraries/libotr/3.2.nix b/pkgs/development/libraries/libotr/3.2.nix deleted file mode 100644 index 7dd6226a698..00000000000 --- a/pkgs/development/libraries/libotr/3.2.nix +++ /dev/null @@ -1,11 +0,0 @@ -{stdenv, fetchurl, libgcrypt}: - -stdenv.mkDerivation { - name = "libotr-3.2.1"; - src = fetchurl { - url = http://www.cypherpunks.ca/otr/libotr-3.2.0.tar.gz; - sha256 = "14v6idnqpp2vhgir9bzp1ay2gmhqsb8iavrkwmallakfwch9sfyq"; - }; - - propagatedBuildInputs = [libgcrypt]; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 011bfdd5459..84fbd463fdd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7805,8 +7805,6 @@ let libotr = callPackage ../development/libraries/libotr { }; - libotr_3_2 = callPackage ../development/libraries/libotr/3.2.nix { }; - libp11 = callPackage ../development/libraries/libp11 { }; libpar2 = callPackage ../development/libraries/libpar2 { }; From b87ebf2b62490b9248b7c6685cfa6e02dd7e9fb9 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Wed, 9 Mar 2016 15:52:04 -0600 Subject: [PATCH 0146/1059] pidgin-otr: 4.0.1 -> 4.0.2 for CVE-2016-2851 --- .../instant-messengers/pidgin-plugins/otr/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix index c6801105a84..9f5c246ede6 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/otr/default.nix @@ -1,10 +1,10 @@ { stdenv, fetchurl, libotr, pidgin, intltool } : stdenv.mkDerivation rec { - name = "pidgin-otr-4.0.1"; + name = "pidgin-otr-4.0.2"; src = fetchurl { url = "http://www.cypherpunks.ca/otr/${name}.tar.gz"; - sha256 = "02pkkf86fh5jvzsdn9y78impsgzj1n0p81kc2girvk3vq941yy0v"; + sha256 = "1i5s9rrgbyss9rszq6c6y53hwqyw1k86s40cpsfx5ccl9bprxdgl"; }; postInstall = "ln -s \$out/lib/pidgin \$out/share/pidgin-otr"; From c561ee8480612988a6ddc15cd22c9b34bd2ee1d3 Mon Sep 17 00:00:00 2001 From: michael bishop Date: Wed, 9 Mar 2016 19:37:33 -0400 Subject: [PATCH 0147/1059] sqlite: change hash from sha1 to sha256 --- pkgs/development/libraries/sqlite/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/sqlite/default.nix b/pkgs/development/libraries/sqlite/default.nix index d9fbde9aa09..1575d86ba7f 100644 --- a/pkgs/development/libraries/sqlite/default.nix +++ b/pkgs/development/libraries/sqlite/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://sqlite.org/2015/sqlite-autoconf-3090200.tar.gz"; - sha1 = "dae1ae5297fece9671ae0c434a7ecd0cda09c76a"; + sha256 = "0sy3zdnvwml9q2s8dj4sc95r5y82b5xcl2vp9i6m6xwikjz0lk06"; }; buildInputs = lib.optionals interactive [ readline ncurses ]; From 7c904201197ac9cc440748c60b78b1ec4d9113d2 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Thu, 10 Mar 2016 01:39:17 +0000 Subject: [PATCH 0148/1059] kernel: 4.4.4 -> 4.4.5 --- 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 6819dfedb13..36181308a8b 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.4"; + version = "4.4.5"; extraMeta.branch = "4.4"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0b4190mwmxf329n16yl32my7dfi02pi7qf39a8v61sl9b2gxffad"; + sha256 = "1daavrj2msl85aijh1izfm1cwf14c7mi75hldzidr1h2v629l89h"; }; kernelPatches = args.kernelPatches; From fed36719f6d016d61d2e1e4e04edaf186dd32f6b Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Wed, 9 Mar 2016 19:30:41 -0600 Subject: [PATCH 0149/1059] nvidia_x11_legacy304: 304.125 -> 304.131 Thanks to the great commit message in 6257425dabe7ad9190d7e5d5fab3d0bc5dad366e (thank you edwtjo) I was able to go back and find out the patch which was causing build failures is no longer necessary after upgrading this legacy driver. --- pkgs/os-specific/linux/nvidia-x11/legacy304.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/os-specific/linux/nvidia-x11/legacy304.nix b/pkgs/os-specific/linux/nvidia-x11/legacy304.nix index 42e65f927b3..061b43a47e7 100644 --- a/pkgs/os-specific/linux/nvidia-x11/legacy304.nix +++ b/pkgs/os-specific/linux/nvidia-x11/legacy304.nix @@ -8,25 +8,23 @@ with stdenv.lib; -let versionNumber = "304.125"; in +let versionNumber = "304.131"; in stdenv.mkDerivation { name = "nvidia-x11-${versionNumber}${optionalString (!libsOnly) "-${kernel.version}"}"; builder = ./builder-legacy304.sh; - patches = [ ./nvidia-340.76-kernel-4.0.patch ]; - src = if stdenv.system == "i686-linux" then fetchurl { url = "http://us.download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}.run"; - sha256 = "1xy4g3yc73mb932cfr25as648k12sxpyymppb8nia3lijakv7idf"; + sha256 = "1a1d0fsahgijcvs2p59vwhs0dpp7pp2wmvgcs1i7fzl6yyv4nmfj"; } else if stdenv.system == "x86_64-linux" then fetchurl { url = "http://us.download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-no-compat32.run"; - sha256 = "08p6hikn7pbfg0apnsbaqyyh2s9m5r0ckqzgjvxirn5qcyll0g5a"; + sha256 = "0gpqzb5gvhrcgrp3kph1p0yjkndx9wfzgh5j88ysrlflkv3q4vig"; } else throw "nvidia-x11 does not support platform ${stdenv.system}"; From 02fdd9162ead53fe553a2dc0316d643bfa1addcf Mon Sep 17 00:00:00 2001 From: ashgillman Date: Thu, 10 Mar 2016 16:01:44 +1000 Subject: [PATCH 0150/1059] python34 pillow: add build input lcms2 --- 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 77f70d7b714..eb5db9c6d8d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -15375,7 +15375,7 @@ in modules // { buildInputs = with self; [ pkgs.freetype pkgs.libjpeg pkgs.zlib pkgs.libtiff pkgs.libwebp pkgs.tcl nose ] - ++ optionals (isPy26 || isPy27 || isPy33 || isPyPy) [ pkgs.lcms2 ] + ++ optionals (isPy26 || isPy27 || isPy33 || isPy34 || isPyPy) [ pkgs.lcms2 ] ++ optionals (isPyPy) [ pkgs.tk pkgs.xorg.libX11 ]; # NOTE: we use LCMS_ROOT as WEBP root since there is not other setting for webp. From 26b67c2ef9beedd0845265a60a708695106250ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 10 Mar 2016 10:21:33 +0100 Subject: [PATCH 0151/1059] libsigc++: update 2.3.1 -> 2.6.2 We were using a rather old development (!) release. --- .../development/libraries/libsigcxx/default.nix | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/libsigcxx/default.nix b/pkgs/development/libraries/libsigcxx/default.nix index 610d14568ae..91273ad30dd 100644 --- a/pkgs/development/libraries/libsigcxx/default.nix +++ b/pkgs/development/libraries/libsigcxx/default.nix @@ -1,19 +1,24 @@ { stdenv, fetchurl, pkgconfig, gnum4 }: - +let + ver_maj = "2.6"; # odd major numbers are unstable + ver_min = "2"; +in stdenv.mkDerivation rec { - name = "libsigc++-2.3.1"; + name = "libsigc++-${ver_maj}.${ver_min}"; src = fetchurl { - url = "mirror://gnome/sources/libsigc++/2.3/${name}.tar.xz"; - sha256 = "14q3sq6d43f6wfcmwhw4v1aal4ba0h5x9v6wkxy2dnqznd95il37"; + url = "mirror://gnome/sources/libsigc++/${ver_maj}/${name}.tar.xz"; + sha256 = "fdace7134c31de792c17570f9049ca0657909b28c4c70ec4882f91a03de54437"; }; - buildInputs = [ pkgconfig gnum4 ]; + nativeBuildInputs = [ pkgconfig gnum4 ]; doCheck = true; - meta = { + meta = with stdenv.lib; { homepage = http://libsigc.sourceforge.net/; description = "A typesafe callback system for standard C++"; + license = licenses.lgpl21; + platforms = platforms.all; }; } From 76f8ee24187a087506fb63602d318e1b991a2aa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Thu, 10 Mar 2016 09:44:19 +0000 Subject: [PATCH 0152/1059] bareos: add rocksdb dependency --- pkgs/tools/backup/bareos/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/backup/bareos/default.nix b/pkgs/tools/backup/bareos/default.nix index b34c6251405..5a7c35e460f 100644 --- a/pkgs/tools/backup/bareos/default.nix +++ b/pkgs/tools/backup/bareos/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub, pkgconfig, nettools, gettext, libtool, flex -, readline ? null, openssl ? null, python ? null, ncurses ? null +, readline ? null, openssl ? null, python ? null, ncurses ? null, rocksdb , sqlite ? null, postgresql ? null, libmysql ? null, zlib ? null, lzo ? null , jansson ? null, acl ? null, glusterfs ? null, libceph ? null, libcap ? null }: @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; buildInputs = [ nettools gettext readline openssl python flex ncurses sqlite postgresql - libmysql zlib lzo jansson acl glusterfs libceph libcap + libmysql zlib lzo jansson acl glusterfs libceph libcap rocksdb ]; postPatch = '' From eafdb84a03c6bca5b21f57212b0b015654401134 Mon Sep 17 00:00:00 2001 From: "Rommel M. Martinez" Date: Thu, 10 Mar 2016 18:04:28 +0800 Subject: [PATCH 0153/1059] calligra: 2.9.8 -> 2.9.11 --- pkgs/applications/office/calligra/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/office/calligra/default.nix b/pkgs/applications/office/calligra/default.nix index 7c2131d2fcb..1ced6f3d02d 100644 --- a/pkgs/applications/office/calligra/default.nix +++ b/pkgs/applications/office/calligra/default.nix @@ -9,11 +9,11 @@ }: stdenv.mkDerivation rec { - name = "calligra-2.9.8"; + name = "calligra-2.9.11"; src = fetchurl { url = "mirror://kde/stable/${name}/${name}.tar.xz"; - sha256 = "08a5k8gjmzp9yzq46xy0p1sw7dpvxmxh8zz6dyj8q1dq29719kkc"; + sha256 = "02gaahp7a7m53n0hvrp3868s8w37b457isxir0z7b4mwhw7jv3di"; }; nativeBuildInputs = [ automoc4 cmake perl pkgconfig makeWrapper ]; @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { vector graphics. ''; homepage = http://calligra.org; - maintainers = with stdenv.lib.maintainers; [ urkud phreedom ]; + maintainers = with stdenv.lib.maintainers; [ urkud phreedom ebzzry ]; inherit (kdelibs.meta) platforms; }; } From 214b59a2491f3c0d58f4f15bc60e7424c066c4ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 10 Mar 2016 10:38:36 +0100 Subject: [PATCH 0154/1059] glibmm: update 2.44.0 -> 2.46.3 Also drop urkud from maintainers; he's been inactive for years, so let's not bother him. --- pkgs/development/libraries/glibmm/default.nix | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/pkgs/development/libraries/glibmm/default.nix b/pkgs/development/libraries/glibmm/default.nix index 25666066601..8417179dde1 100644 --- a/pkgs/development/libraries/glibmm/default.nix +++ b/pkgs/development/libraries/glibmm/default.nix @@ -1,30 +1,31 @@ -{ stdenv, fetchurl, pkgconfig, glib, libsigcxx }: +{ stdenv, fetchurl, pkgconfig, gnum4, glib, libsigcxx }: let - ver_maj = "2.44"; - ver_min = "0"; + ver_maj = "2.46"; + ver_min = "3"; in stdenv.mkDerivation rec { name = "glibmm-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://gnome/sources/glibmm/${ver_maj}/${name}.tar.xz"; - sha256 = "1a1fczy7hcpn24fglyn4i79f4yjc8s50is70q03mb294bm1c02hv"; + sha256 = "c78654addeb27a1213bedd7cd21904a45bbb98a5ba2f2f0de2b2f1a5682d86cf"; }; - nativeBuildInputs = [ pkgconfig ]; + nativeBuildInputs = [ pkgconfig gnum4 ]; propagatedBuildInputs = [ glib libsigcxx ]; + enableParallelBuilding = true; #doCheck = true; # some tests need network - meta = { + meta = with stdenv.lib; { description = "C++ interface to the GLib library"; homepage = http://gtkmm.org/; - license = stdenv.lib.licenses.lgpl2Plus; + license = licenses.lgpl2Plus; - maintainers = with stdenv.lib.maintainers; [urkud raskin]; - platforms = stdenv.lib.platforms.unix; + maintainers = with maintainers; [raskin]; + platforms = platforms.unix; }; } From 241927ead301af32413d719c662e575043bc8a0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 10 Mar 2016 10:42:09 +0100 Subject: [PATCH 0155/1059] cairomm: update 1.11.2 -> 1.12.0 --- pkgs/development/libraries/cairomm/default.nix | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/cairomm/default.nix b/pkgs/development/libraries/cairomm/default.nix index 97636f7a957..67ae3b08ed8 100644 --- a/pkgs/development/libraries/cairomm/default.nix +++ b/pkgs/development/libraries/cairomm/default.nix @@ -1,16 +1,21 @@ { fetchurl, stdenv, pkgconfig, cairo, xlibsWrapper, fontconfig, freetype, libsigcxx }: - +let + ver_maj = "1.12"; + ver_min = "0"; +in stdenv.mkDerivation rec { - name = "cairomm-1.11.2"; + name = "cairomm-${ver_maj}.${ver_min}"; src = fetchurl { - url = "http://cairographics.org/releases/${name}.tar.gz"; - sha1 = "35e190a03f760924bece5dc1204cc36b3583c806"; + url = "mirror://gnome/sources/cairomm/${ver_maj}/${name}.tar.xz"; + sha256 = "a54ada8394a86182525c0762e6f50db6b9212a2109280d13ec6a0b29bfd1afe6"; }; - buildInputs = [ pkgconfig ]; + nativeBuildInputs = [ pkgconfig ]; + propagatedBuildInputs = [ cairo libsigcxx ]; + buildInputs = [ fontconfig freetype ]; - propagatedBuildInputs = [ cairo xlibsWrapper fontconfig freetype libsigcxx ]; + doCheck = true; meta = with stdenv.lib; { description = "A 2D graphics library with support for multiple output devices"; From 6429c6595bf8ae4bb8fa5d363f8f09be23912ac5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 10 Mar 2016 10:48:35 +0100 Subject: [PATCH 0156/1059] pangomm: update 2.34.0 -> 2.38.1 --- pkgs/development/libraries/pangomm/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/pangomm/default.nix b/pkgs/development/libraries/pangomm/default.nix index f71c52e670b..c13af349d43 100644 --- a/pkgs/development/libraries/pangomm/default.nix +++ b/pkgs/development/libraries/pangomm/default.nix @@ -1,19 +1,21 @@ -{ stdenv, fetchurl, pkgconfig, pango, glibmm, cairomm, libpng, cairo }: +{ stdenv, fetchurl, pkgconfig, pango, glibmm, cairomm }: let - ver_maj = "2.34"; - ver_min = "0"; + ver_maj = "2.38"; + ver_min = "1"; in stdenv.mkDerivation rec { name = "pangomm-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://gnome/sources/pangomm/${ver_maj}/${name}.tar.xz"; - sha256 = "0hcyvv7c5zmivprdam6cp111i6hn2y5jsxzk00m6j9pncbzvp0hf"; + sha256 = "effb18505b36d81fc32989a39ead8b7858940d0533107336a30bc3eef096bc8b"; }; nativeBuildInputs = [ pkgconfig ]; - propagatedBuildInputs = [ pango glibmm cairomm libpng cairo ]; + propagatedBuildInputs = [ pango glibmm cairomm ]; + + doCheck = true; meta = with stdenv.lib; { description = "C++ interface to the Pango text rendering library"; From 4f90638d2f5f755eaefc89191d1d225e6c3eddc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 10 Mar 2016 10:55:20 +0100 Subject: [PATCH 0157/1059] atkmm: update 2.22.7 -> 2.24.2 Also add basic meta. --- pkgs/development/libraries/atkmm/default.nix | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/atkmm/default.nix b/pkgs/development/libraries/atkmm/default.nix index 03f08efca98..86cde42dfa1 100644 --- a/pkgs/development/libraries/atkmm/default.nix +++ b/pkgs/development/libraries/atkmm/default.nix @@ -1,14 +1,25 @@ { stdenv, fetchurl, atk, glibmm, pkgconfig }: - +let + ver_maj = "2.24"; + ver_min = "2"; +in stdenv.mkDerivation rec { - name = "atkmm-2.22.7"; + name = "atkmm-${ver_maj}.${ver_min}"; src = fetchurl { - url = "mirror://gnome/sources/atkmm/2.22/${name}.tar.xz"; - sha256 = "06zrf2ymml2dzp53sss0d4ch4dk9v09jm8rglnrmwk4v81mq9gxz"; + url = "mirror://gnome/sources/atkmm/${ver_maj}/${name}.tar.xz"; + sha256 = "ff95385759e2af23828d4056356f25376cfabc41e690ac1df055371537e458bd"; }; propagatedBuildInputs = [ atk glibmm ]; nativeBuildInputs = [ pkgconfig ]; + + doCheck = true; + + meta = { + description = "C++ wrappers for ATK accessibility toolkit"; + license = stdenv.lib.licenses.lgpl21Plus; + homepage = http://gtkmm.org; + }; } From d9f2e282be4f8a595e9a24bf16e4be3515dcefdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 10 Mar 2016 11:02:20 +0100 Subject: [PATCH 0158/1059] gtkmm3: update 3.16.0 -> 3.18.0 Also remove urkud for maintainers; he's been inactive for years, so let's not bother him anymore. --- pkgs/development/libraries/gtkmm/3.x.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/pkgs/development/libraries/gtkmm/3.x.nix b/pkgs/development/libraries/gtkmm/3.x.nix index bc327468855..1401f763c3d 100644 --- a/pkgs/development/libraries/gtkmm/3.x.nix +++ b/pkgs/development/libraries/gtkmm/3.x.nix @@ -1,7 +1,7 @@ -{ stdenv, fetchurl, pkgconfig, gtk3, glibmm, cairomm, pangomm, atkmm }: +{ stdenv, fetchurl, pkgconfig, gtk3, glibmm, cairomm, pangomm, atkmm, epoxy }: let - ver_maj = "3.16"; + ver_maj = "3.18"; ver_min = "0"; in stdenv.mkDerivation rec { @@ -9,17 +9,18 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnome/sources/gtkmm/${ver_maj}/${name}.tar.xz"; - sha256 = "036xn22jkaf3akpid7w23b8vkqa3xxqz93mwacmyar5vw7slm3cv"; + sha256 = "829fa113daed74398c49c3f2b7672807f58ba85d0fa463f5bc726e1b0138b86b"; }; nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ epoxy ]; propagatedBuildInputs = [ glibmm gtk3 atkmm cairomm pangomm ]; enableParallelBuilding = true; doCheck = true; - meta = { + meta = with stdenv.lib; { description = "C++ interface to the GTK+ graphical user interface library"; longDescription = '' @@ -34,9 +35,9 @@ stdenv.mkDerivation rec { homepage = http://gtkmm.org/; - license = stdenv.lib.licenses.lgpl2Plus; + license = licenses.lgpl2Plus; - maintainers = with stdenv.lib.maintainers; [ raskin urkud vcunat ]; - platforms = stdenv.lib.platforms.unix; + maintainers = with maintainers; [ raskin vcunat ]; + platforms = platforms.unix; }; } From d9da9ec634372f81c6ffe1586ef7efebbb2adfab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 10 Mar 2016 11:26:44 +0100 Subject: [PATCH 0159/1059] libsigcxx: make *.pc force C++11 This fixes compilation problems of some packages against *mm, including gtkmm-2 itself. --- pkgs/development/libraries/libsigcxx/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libsigcxx/default.nix b/pkgs/development/libraries/libsigcxx/default.nix index 91273ad30dd..1171fa079cf 100644 --- a/pkgs/development/libraries/libsigcxx/default.nix +++ b/pkgs/development/libraries/libsigcxx/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, gnum4 }: +{ stdenv, fetchurl, fetchpatch, pkgconfig, gnum4 }: let ver_maj = "2.6"; # odd major numbers are unstable ver_min = "2"; @@ -10,6 +10,11 @@ stdenv.mkDerivation rec { url = "mirror://gnome/sources/libsigc++/${ver_maj}/${name}.tar.xz"; sha256 = "fdace7134c31de792c17570f9049ca0657909b28c4c70ec4882f91a03de54437"; }; + patches = [(fetchpatch { + url = "https://anonscm.debian.org/cgit/collab-maint/libsigc++-2.0.git/plain" + + "/debian/patches/0002-Enforce-c-11-via-pkg-config.patch?id=d451a4d195b1"; + sha256 = "19g19473syp2z3kg8vdrli89lm9kcvaqajkqfmdig1vfpkbq0nci"; + })]; nativeBuildInputs = [ pkgconfig gnum4 ]; From 83b15e2fc4c04290bbf0445d1608d4bb4307647f Mon Sep 17 00:00:00 2001 From: Thomas Strobel <4ZKTUB6TEP74PYJOPWIR013S2AV29YUBW5F9ZH2F4D5UMJUJ6S@hash.domains> Date: Thu, 10 Mar 2016 12:06:55 +0100 Subject: [PATCH 0160/1059] xpra: 0.14.19/0.15.3 -> 0.16.2 --- pkgs/tools/X11/xpra/default.nix | 11 ++++++----- pkgs/tools/X11/xpra/gtk3.nix | 17 ++++++++++++----- 2 files changed, 18 insertions(+), 10 deletions(-) diff --git a/pkgs/tools/X11/xpra/default.nix b/pkgs/tools/X11/xpra/default.nix index e0e12051bff..b0c79342d42 100644 --- a/pkgs/tools/X11/xpra/default.nix +++ b/pkgs/tools/X11/xpra/default.nix @@ -6,12 +6,11 @@ , libfakeXinerama }: buildPythonApplication rec { - name = "xpra-0.15.3"; + name = "xpra-0.16.2"; namePrefix = ""; - src = fetchurl { - url = "https://www.xpra.org/src/${name}.tar.xz"; - sha256 = "1671r4ah2h0i3qbp27csck506n5y1zr9fv0869cv09knspa358i4"; + url = "http://xpra.org/src/${name}.tar.xz"; + sha256 = "0h55rv46byzv2g8g77bm0a0py8jpz3gbr5fhr5jy9sisyr0vk6ff"; }; buildInputs = [ @@ -36,7 +35,7 @@ buildPythonApplication rec { preBuild = '' export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags gtk+-2.0) $(pkg-config --cflags pygtk-2.0) $(pkg-config --cflags xtst)" ''; - setupPyBuildFlags = ["--with-Xdummy"]; + setupPyBuildFlags = ["--with-Xdummy" "--without-strict"]; preInstall = '' # see https://bitbucket.org/pypa/setuptools/issue/130/install_data-doesnt-respect-prefix @@ -52,6 +51,8 @@ buildPythonApplication rec { --prefix PATH : ${getopt}/bin:${xorgserver}/bin:${xauth}/bin:${which}/bin:${utillinux}/bin ''; + preCheck = "exit 0"; + #TODO: replace postInstall with postFixup to avoid double wrapping of xpra; needs more work though #postFixup = '' # sed -i '2iexport XKB_BINDIR="${xkbcomp}/bin"' $out/bin/xpra diff --git a/pkgs/tools/X11/xpra/gtk3.nix b/pkgs/tools/X11/xpra/gtk3.nix index 5b81ec0a7ed..7fd24a510d5 100644 --- a/pkgs/tools/X11/xpra/gtk3.nix +++ b/pkgs/tools/X11/xpra/gtk3.nix @@ -6,14 +6,19 @@ , libfakeXinerama }: buildPythonApplication rec { - name = "xpra-0.14.19"; + name = "xpra-0.16.2"; namePrefix = ""; src = fetchurl { - url = "https://www.xpra.org/src/${name}.tar.xz"; - sha256 = "0jifaysz4br1v0zibnzgd0k02rgybbsysvwrgbar1452sjb3db5m"; + url = "http://xpra.org/src/${name}.tar.xz"; + sha256 = "0h55rv46byzv2g8g77bm0a0py8jpz3gbr5fhr5jy9sisyr0vk6ff"; }; + patchPhase = '' + substituteInPlace setup.py --replace 'pycairo' 'py3cairo' + substituteInPlace xpra/client/gtk3/cairo_workaround.pyx --replace 'pycairo/pycairo.h' 'py3cairo.h' + ''; + buildInputs = [ pkgconfig @@ -36,8 +41,7 @@ buildPythonApplication rec { preBuild = '' export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags gtk+-3.0) $(pkg-config --cflags xtst)" ''; - setupPyBuildFlags = [ "--with-gtk3" "--without-gtk2" "--with-Xdummy" ]; - + setupPyBuildFlags = [ "--without-strict" "--with-gtk3" "--without-gtk2" "--with-Xdummy" ]; preInstall = '' # see https://bitbucket.org/pypa/setuptools/issue/130/install_data-doesnt-respect-prefix @@ -53,6 +57,9 @@ buildPythonApplication rec { --prefix PATH : ${getopt}/bin:${xorgserver}/bin:${xauth}/bin:${which}/bin:${utillinux}/bin ''; + preCheck = "exit 0"; + doInstallCheck = false; + #TODO: replace postInstall with postFixup to avoid double wrapping of xpra; needs more work though #postFixup = '' # sed -i '2iexport XKB_BINDIR="${xkbcomp}/bin"' $out/bin/xpra From 3fd47945e0e3cd2275d3d8a9d1bedeabbb4c07a7 Mon Sep 17 00:00:00 2001 From: Jakob Gillich Date: Thu, 10 Mar 2016 13:00:30 +0100 Subject: [PATCH 0161/1059] rustRegistry: 2016-02-25 -> 2016-03-10 --- 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 765eb43e845..3acd9c4843d 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-02-25"; - rev = "a43392dd266a3e5c982f6bee3451187fc35ebfa8"; + version = "2016-03-10"; + rev = "5e78a14c1b82522e019586687f7dbfd36ce67fa5"; src = fetchFromGitHub { inherit rev; owner = "rust-lang"; repo = "crates.io-index"; - sha256 = "45ad457fb1d13f1c0d0b09d36d5ea3e44baffc7884b82dfcbdff5ae7ab350bbd"; + sha256 = "0hzhfhlv8qbqb5nm9id36dlzvhalhlrh2k82ks67ap4mdcs3c650"; }; in From 6ab7c50ea640008e6a3a7685f481cf1a06c31f1f Mon Sep 17 00:00:00 2001 From: ashgillman Date: Thu, 10 Mar 2016 22:16:00 +1000 Subject: [PATCH 0162/1059] Use lcms2 for all pillow python versions --- pkgs/top-level/python-packages.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index eb5db9c6d8d..30c62450962 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -15374,8 +15374,7 @@ in modules // { doCheck = false; buildInputs = with self; [ - pkgs.freetype pkgs.libjpeg pkgs.zlib pkgs.libtiff pkgs.libwebp pkgs.tcl nose ] - ++ optionals (isPy26 || isPy27 || isPy33 || isPy34 || isPyPy) [ pkgs.lcms2 ] + pkgs.freetype pkgs.libjpeg pkgs.zlib pkgs.libtiff pkgs.libwebp pkgs.tcl nose pkgs.lcms2 ] ++ optionals (isPyPy) [ pkgs.tk pkgs.xorg.libX11 ]; # NOTE: we use LCMS_ROOT as WEBP root since there is not other setting for webp. From c71e2d42359f9900ea2c290d141c0d606471da16 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 28 Feb 2016 23:27:06 +0000 Subject: [PATCH 0163/1059] lib/lists: document all functions --- lib/lists.nix | 268 ++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 215 insertions(+), 53 deletions(-) diff --git a/lib/lists.nix b/lib/lists.nix index 9e4ab9e2d95..deb7dcfde42 100644 --- a/lib/lists.nix +++ b/lib/lists.nix @@ -6,17 +6,26 @@ rec { inherit (builtins) head tail length isList elemAt concatLists filter elem genList; + /* Create a list consisting of a single element. `singleton x' is + sometimes more convenient with respect to indentation than `[x]' + when x spans multiple lines. - # Create a list consisting of a single element. `singleton x' is - # sometimes more convenient with respect to indentation than `[x]' - # when x spans multiple lines. + Example: + singleton "foo" + => [ "foo" ] + */ singleton = x: [x]; + /* "Fold" a binary function `op' between successive elements of + `list' with `nul' as the starting value, i.e., `fold op nul [x_1 + x_2 ... x_n] == op x_1 (op x_2 ... (op x_n nul))'. (This is + Haskell's foldr). - # "Fold" a binary function `op' between successive elements of - # `list' with `nul' as the starting value, i.e., `fold op nul [x_1 - # x_2 ... x_n] == op x_1 (op x_2 ... (op x_n nul))'. (This is - # Haskell's foldr). + Example: + concat = fold (a: b: a + b) "z" + concat [ "a" "b" "c" ] + => "abcnul" + */ fold = op: nul: list: let len = length list; @@ -26,8 +35,14 @@ rec { else op (elemAt list n) (fold' (n + 1)); in fold' 0; - # Left fold: `fold op nul [x_1 x_2 ... x_n] == op (... (op (op nul - # x_1) x_2) ... x_n)'. + /* Left fold: `fold op nul [x_1 x_2 ... x_n] == op (... (op (op nul + x_1) x_2) ... x_n)'. + + Example: + lconcat = foldl (a: b: a + b) "z" + lconcat [ "a" "b" "c" ] + => "zabc" + */ foldl = op: nul: list: let len = length list; @@ -37,13 +52,22 @@ rec { else op (foldl' (n - 1)) (elemAt list n); in foldl' (length list - 1); + /* Strict version of foldl. - # Strict version of foldl. + The difference is that evaluation is forced upon access. Usually used + with small whole results (in contract with lazily-generated list or large + lists where only a part is consumed.) + */ foldl' = builtins.foldl' or foldl; + /* Map with index - # Map with index: `imap (i: v: "${v}-${toString i}") ["a" "b"] == - # ["a-1" "b-2"]'. FIXME: why does this start to count at 1? + FIXME(zimbatm): why does this start to count at 1? + + Example: + imap (i: v: "${v}-${toString i}") ["a" "b"] + => [ "a-1" "b-2" ] + */ imap = if builtins ? genList then f: list: genList (n: f (n + 1) (elemAt list n)) (length list) @@ -57,73 +81,141 @@ rec { else [ (f (n + 1) (elemAt list n)) ] ++ imap' (n + 1); in imap' 0; + /* Map and concatenate the result. - # Map and concatenate the result. + Example: + concatMap (x: [x] ++ ["z"]) ["a" "b"] + => [ "a" "z" "b" "z" ] + */ concatMap = f: list: concatLists (map f list); + /* Flatten the argument into a single list; that is, nested lists are + spliced into the top-level lists. - # Flatten the argument into a single list; that is, nested lists are - # spliced into the top-level lists. E.g., `flatten [1 [2 [3] 4] 5] - # == [1 2 3 4 5]' and `flatten 1 == [1]'. + Example: + flatten [1 [2 [3] 4] 5] + => [1 2 3 4 5] + flatten 1 + => [1] + */ flatten = x: if isList x then foldl' (x: y: x ++ (flatten y)) [] x else [x]; + /* Remove elements equal to 'e' from a list. Useful for buildInputs. - # Remove elements equal to 'e' from a list. Useful for buildInputs. + Example: + remove 3 [ 1 3 4 3 ] + => [ 1 4 ] + */ remove = e: filter (x: x != e); + /* Find the sole element in the list matching the specified + predicate, returns `default' if no such element exists, or + `multiple' if there are multiple matching elements. - # Find the sole element in the list matching the specified - # predicate, returns `default' if no such element exists, or - # `multiple' if there are multiple matching elements. + Example: + findSingle (x: x == 3) "none" "multiple" [ 1 3 3 ] + => "multiple" + findSingle (x: x == 3) "none" "multiple" [ 1 3 ] + => 3 + findSingle (x: x == 3) "none" "multiple" [ 1 9 ] + => "none" + */ findSingle = pred: default: multiple: list: let found = filter pred list; len = length found; in if len == 0 then default else if len != 1 then multiple else head found; + /* Find the first element in the list matching the specified + predicate or returns `default' if no such element exists. - # Find the first element in the list matching the specified - # predicate or returns `default' if no such element exists. + Example: + findFirst (x: x > 3) 7 [ 1 6 4 ] + => 6 + findFirst (x: x > 9) 7 [ 1 6 4 ] + => 7 + */ findFirst = pred: default: list: let found = filter pred list; in if found == [] then default else head found; + /* Return true iff function `pred' returns true for at least element + of `list'. - # Return true iff function `pred' returns true for at least element - # of `list'. + Example: + any isString [ 1 "a" { } ] + => true + any isString [ 1 { } ] + => false + */ any = builtins.any or (pred: fold (x: y: if pred x then true else y) false); + /* Return true iff function `pred' returns true for all elements of + `list'. - # Return true iff function `pred' returns true for all elements of - # `list'. + Example: + all (x: x < 3) [ 1 2 ] + => true + all (x: x < 3) [ 1 2 3 ] + => false + */ all = builtins.all or (pred: fold (x: y: if pred x then y else false) true); + /* Count how many times function `pred' returns true for the elements + of `list'. - # Count how many times function `pred' returns true for the elements - # of `list'. + Example: + count (x: x == 3) [ 3 2 3 4 6 ] + => 2 + */ count = pred: foldl' (c: x: if pred x then c + 1 else c) 0; + /* Return a singleton list or an empty list, depending on a boolean + value. Useful when building lists with optional elements + (e.g. `++ optional (system == "i686-linux") flashplayer'). - # Return a singleton list or an empty list, depending on a boolean - # value. Useful when building lists with optional elements - # (e.g. `++ optional (system == "i686-linux") flashplayer'). + Example: + optional true "foo" + => [ "foo" ] + optional false "foo" + => [ ] + */ optional = cond: elem: if cond then [elem] else []; + /* Return a list or an empty list, dependening on a boolean value. - # Return a list or an empty list, dependening on a boolean value. + Example: + optionals true [ 2 3 ] + => [ 2 3 ] + optionals false [ 2 3 ] + => [ ] + */ optionals = cond: elems: if cond then elems else []; - # If argument is a list, return it; else, wrap it in a singleton - # list. If you're using this, you should almost certainly - # reconsider if there isn't a more "well-typed" approach. + /* If argument is a list, return it; else, wrap it in a singleton + list. If you're using this, you should almost certainly + reconsider if there isn't a more "well-typed" approach. + + Example: + toList [ 1 2 ] + => [ 1 2 ] + toList "hi" + => [ "hi "] + */ toList = x: if isList x then x else [x]; + /* Return a list of integers from `first' up to and including `last'. - # Return a list of integers from `first' up to and including `last'. + Example: + range 2 4 + => [ 2 3 4 ] + range 3 2 + => [ ] + */ range = if builtins ? genList then first: last: @@ -136,9 +228,13 @@ rec { then [] else [first] ++ range (first + 1) last; + /* Splits the elements of a list in two lists, `right' and + `wrong', depending on the evaluation of a predicate. - # Partition the elements of a list in two lists, `right' and - # `wrong', depending on the evaluation of a predicate. + Example: + partition (x: x > 2) [ 5 1 2 3 4 ] + => { right = [ 5 3 4 ]; wrong = [ 1 2 ]; } + */ partition = pred: fold (h: t: if pred h @@ -146,7 +242,14 @@ rec { else { right = t.right; wrong = [h] ++ t.wrong; } ) { right = []; wrong = []; }; + /* Merges two lists of the same size together. If the sizes aren't the same + the merging stops at the shortest. How both lists are merged is defined + by the first argument. + Example: + zipListsWith (a: b: a + b) ["h" "l"] ["e" "o"] + => ["he" "lo"] + */ zipListsWith = if builtins ? genList then f: fst: snd: genList (n: f (elemAt fst n) (elemAt snd n)) (min (length fst) (length snd)) @@ -161,21 +264,37 @@ rec { else []; in zipListsWith' 0; + /* Merges two lists of the same size together. If the sizes aren't the same + the merging stops at the shortest. + + Example: + zipLists [ 1 2 ] [ "a" "b" ] + => [ { fst = 1; snd = "a"; } { fst = 2; snd = "b"; } ] + */ zipLists = zipListsWith (fst: snd: { inherit fst snd; }); + /* Reverse the order of the elements of a list. - # Reverse the order of the elements of a list. + Example: + + reverseList [ "b" "o" "j" ] + => [ "j" "o" "b" ] + */ reverseList = if builtins ? genList then xs: let l = length xs; in genList (n: elemAt xs (l - n - 1)) l else fold (e: acc: acc ++ [ e ]) []; + /* Sort a list based on a comparator function which compares two + elements and returns true if the first argument is strictly below + the second argument. The returned list is sorted in an increasing + order. The implementation does a quick-sort. - # Sort a list based on a comparator function which compares two - # elements and returns true if the first argument is strictly below - # the second argument. The returned list is sorted in an increasing - # order. The implementation does a quick-sort. + Example: + sort (a: b: a < b) [ 5 3 7 ] + => [ 3 5 7 ] + */ sort = builtins.sort or ( strictLess: list: let @@ -193,8 +312,14 @@ rec { if len < 2 then list else (sort strictLess pivot.left) ++ [ first ] ++ (sort strictLess pivot.right)); + /* Return the first (at most) N elements of a list. - # Return the first (at most) N elements of a list. + Example: + take 2 [ "a" "b" "c" "d" ] + => [ "a" "b" ] + take 2 [ ] + => [ ] + */ take = if builtins ? genList then count: sublist 0 count @@ -209,8 +334,14 @@ rec { [ (elemAt list n) ] ++ take' (n + 1); in take' 0; + /* Remove the first (at most) N elements of a list. - # Remove the first (at most) N elements of a list. + Example: + drop 2 [ "a" "b" "c" "d" ] + => [ "c" "d" ] + drop 2 [ ] + => [ ] + */ drop = if builtins ? genList then count: list: sublist count (length list) list @@ -225,9 +356,15 @@ rec { drop' (n - 1) ++ [ (elemAt list n) ]; in drop' (len - 1); + /* Return a list consisting of at most ‘count’ elements of ‘list’, + starting at index ‘start’. - # Return a list consisting of at most ‘count’ elements of ‘list’, - # starting at index ‘start’. + Example: + sublist 1 3 [ "a" "b" "c" "d" "e" ] + => [ "b" "c" "d" ] + sublist 1 3 [ ] + => [ ] + */ sublist = start: count: list: let len = length list; in genList @@ -236,20 +373,36 @@ rec { else if start + count > len then len - start else count); + /* Return the last element of a list. - # Return the last element of a list. + Example: + last [ 1 2 3 ] + => 3 + */ last = list: assert list != []; elemAt list (length list - 1); + /* Return all elements but the last - # Return all elements but the last + Example: + init [ 1 2 3 ] + => [ 1 2 ] + */ init = list: assert list != []; take (length list - 1) list; + /* FIXME(zimbatm) Not used anywhere + */ crossLists = f: foldl (fs: args: concatMap (f: map f args) fs) [f]; - # Remove duplicate elements from the list. O(n^2) complexity. + /* Remove duplicate elements from the list. O(n^2) complexity. + + Example: + + unique [ 3 2 3 4 ] + => [ 3 2 4 ] + */ unique = list: if list == [] then [] @@ -259,15 +412,24 @@ rec { xs = unique (drop 1 list); in [x] ++ remove x xs; + /* Intersects list 'e' and another list. O(nm) complexity. - # Intersects list 'e' and another list. O(nm) complexity. + Example: + intersectLists [ 1 2 3 ] [ 6 3 2 ] + => [ 3 2 ] + */ intersectLists = e: filter (x: elem x e); + /* Subtracts list 'e' from another list. O(nm) complexity. - # Subtracts list 'e' from another list. O(nm) complexity. + Example: + subtractLists [ 3 2 ] [ 1 2 3 4 5 3 ] + => [ 1 4 5 ] + */ subtractLists = e: filter (x: !(elem x e)); + /*** deprecated stuff ***/ + deepSeqList = throw "removed 2016-02-29 because unused and broken"; - } From 7883ca774b1fe8b59c455053d434b92d7b65d3d5 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sun, 28 Feb 2016 23:27:35 +0000 Subject: [PATCH 0164/1059] lib/strings: document all the functions --- lib/strings.nix | 334 +++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 273 insertions(+), 61 deletions(-) diff --git a/lib/strings.nix b/lib/strings.nix index fc6c2152b9f..a2a4be11e1b 100644 --- a/lib/strings.nix +++ b/lib/strings.nix @@ -10,65 +10,147 @@ rec { inherit (builtins) stringLength substring head tail isString replaceStrings; + /* Concatenate a list of strings. - # Concatenate a list of strings. + Example: + concatStrings ["foo" "bar"] + => "foobar" + */ concatStrings = if builtins ? concatStringsSep then builtins.concatStringsSep "" else lib.foldl' (x: y: x + y) ""; + /* Map a function over a list and concatenate the resulting strings. - # Map a function over a list and concatenate the resulting strings. + Example: + concatMapStrings (x: "a" + x) ["foo" "bar"] + => "afooabar" + */ concatMapStrings = f: list: concatStrings (map f list); + + /* Like `concatMapStrings' except that the f functions also gets the + position as a parameter. + + Example: + concatImapStrings (pos: x: "${toString pos}-${x}") ["foo" "bar"] + => "1-foo2-bar" + */ concatImapStrings = f: list: concatStrings (lib.imap f list); + /* Place an element between each element of a list - # Place an element between each element of a list, e.g., - # `intersperse "," ["a" "b" "c"]' returns ["a" "," "b" "," "c"]. + Example: + intersperse "/" ["usr" "local" "bin"] + => ["usr" "/" "local" "/" "bin"]. + */ intersperse = separator: list: if list == [] || length list == 1 then list else tail (lib.concatMap (x: [separator x]) list); + /* Concatenate a list of strings with a separator between each element - # Concatenate a list of strings with a separator between each element, e.g. - # concatStringsSep " " ["foo" "bar" "xyzzy"] == "foo bar xyzzy" + Example: + concatStringsSep "/" ["usr" "local" "bin"] + => "usr/local/bin" + */ concatStringsSep = builtins.concatStringsSep or (separator: list: concatStrings (intersperse separator list)); + /* First maps over the list and then concatenates it. + + Example: + concatMapStringsSep "-" (x: toUpper x) ["foo" "bar" "baz"] + => "FOO-BAR-BAZ" + */ concatMapStringsSep = sep: f: list: concatStringsSep sep (map f list); + + /* First imaps over the list and then concatenates it. + + Example: + + concatImapStringsSep "-" (pos: x: toString (x / pos)) [ 6 6 6 ] + => "6-3-2" + */ concatImapStringsSep = sep: f: list: concatStringsSep sep (lib.imap f list); + /* Construct a Unix-style search path consisting of each `subDir" + directory of the given list of packages. - # Construct a Unix-style search path consisting of each `subDir" - # directory of the given list of packages. For example, - # `makeSearchPath "bin" ["x" "y" "z"]' returns "x/bin:y/bin:z/bin". + Example: + makeSearchPath "bin" ["/root" "/usr" "/usr/local"] + => "/root/bin:/usr/bin:/usr/local/bin" + makeSearchPath "bin" ["/"] + => "//bin" + */ makeSearchPath = subDir: packages: concatStringsSep ":" (map (path: path + "/" + subDir) packages); + /* Construct a library search path (such as RPATH) containing the + libraries for a set of packages - # Construct a library search path (such as RPATH) containing the - # libraries for a set of packages, e.g. "${pkg1}/lib:${pkg2}/lib:...". + Example: + makeLibraryPath [ "/usr" "/usr/local" ] + => "/usr/lib:/usr/local/lib" + pkgs = import { } + makeLibraryPath [ pkgs.openssl pkgs.zlib ] + => "/nix/store/9rz8gxhzf8sw4kf2j2f1grr49w8zx5vj-openssl-1.0.1r/lib:/nix/store/wwh7mhwh269sfjkm6k5665b5kgp7jrk2-zlib-1.2.8/lib" + */ makeLibraryPath = makeSearchPath "lib"; - # Construct a binary search path (such as $PATH) containing the - # binaries for a set of packages, e.g. "${pkg1}/bin:${pkg2}/bin:...". + /* Construct a binary search path (such as $PATH) containing the + binaries for a set of packages. + + Example: + makeBinPath ["/root" "/usr" "/usr/local"] + => "/root/bin:/usr/bin:/usr/local/bin" + */ makeBinPath = makeSearchPath "bin"; - # Idem for Perl search paths. + /* Construct a perl search path (such as $PERL5LIB) + + FIXME(zimbatm): this should be moved in perl-specific code + + Example: + pkgs = import { } + makePerlPath [ pkgs.perlPackages.NetSMTP ] + => "/nix/store/n0m1fk9c960d8wlrs62sncnadygqqc6y-perl-Net-SMTP-1.25/lib/perl5/site_perl" + */ makePerlPath = makeSearchPath "lib/perl5/site_perl"; + /* Dependening on the boolean `cond', return either the given string + or the empty string. Useful to contatenate against a bigger string. - # Dependening on the boolean `cond', return either the given string - # or the empty string. + Example: + optionalString true "some-string" + => "some-string" + optionalString false "some-string" + => "" + */ optionalString = cond: string: if cond then string else ""; + /* Determine whether a string has given prefix. - # Determine whether a string has given prefix/suffix. + Example: + hasPrefix "foo" "foobar" + => true + hasPrefix "foo" "barfoo" + => false + */ hasPrefix = pref: str: substring 0 (stringLength pref) str == pref; + + /* Determine whether a string has given suffix. + + Example: + hasSuffix "foo" "foobar" + => false + hasSuffix "foo" "barfoo" + => true + */ hasSuffix = suff: str: let lenStr = stringLength str; @@ -76,36 +158,55 @@ rec { in lenStr >= lenSuff && substring (lenStr - lenSuff) lenStr str == suff; + /* Convert a string to a list of characters (i.e. singleton strings). + This allows you to, e.g., map a function over each character. However, + note that this will likely be horribly inefficient; Nix is not a + general purpose programming language. Complex string manipulations + should, if appropriate, be done in a derivation. + Also note that Nix treats strings as a list of bytes and thus doesn't + handle unicode. - # Convert a string to a list of characters (i.e. singleton strings). - # For instance, "abc" becomes ["a" "b" "c"]. This allows you to, - # e.g., map a function over each character. However, note that this - # will likely be horribly inefficient; Nix is not a general purpose - # programming language. Complex string manipulations should, if - # appropriate, be done in a derivation. + Example: + stringToCharacters "" + => [ ] + stringToCharacters "abc" + => [ "a" "b" "c" ] + stringToCharacters "💩" + => [ "�" "�" "�" "�" ] + */ stringToCharacters = s: map (p: substring p 1 s) (lib.range 0 (stringLength s - 1)); + /* Manipulate a string character by character and replace them by + strings before concatenating the results. - # Manipulate a string charactter by character and replace them by - # strings before concatenating the results. + Example: + stringAsChars (x: if x == "a" then "i" else x) "nax" + => "nix" + */ stringAsChars = f: s: concatStrings ( map f (stringToCharacters s) ); + /* Escape occurrence of the elements of ‘list’ in ‘string’ by + prefixing it with a backslash. - # Escape occurrence of the elements of ‘list’ in ‘string’ by - # prefixing it with a backslash. For example, ‘escape ["(" ")"] - # "(foo)"’ returns the string ‘\(foo\)’. + Example: + escape ["(" ")"] "(foo)" + => "\\(foo\\)" + */ escape = list: replaceChars list (map (c: "\\${c}") list); + /* Escape all characters that have special meaning in the Bourne shell. - # Escape all characters that have special meaning in the Bourne shell. + Example: + escapeShellArg "so([<>])me" + => "so\\(\\[\\<\\>\\]\\)me" + */ escapeShellArg = lib.escape (stringToCharacters "\\ ';$`()|<>\t*[]"); - - # Obsolete - use replaceStrings instead. + /* Obsolete - use replaceStrings instead. */ replaceChars = builtins.replaceStrings or ( del: new: s: let @@ -119,21 +220,52 @@ rec { in stringAsChars subst s); - # Case conversion utilities. lowerChars = stringToCharacters "abcdefghijklmnopqrstuvwxyz"; upperChars = stringToCharacters "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; + + /* Converts an ASCII string to lower-case. + + Example: + toLower "HOME" + => "home" + */ toLower = replaceChars upperChars lowerChars; + + /* Converts an ASCII string to upper-case. + + Example: + toLower "home" + => "HOME" + */ toUpper = replaceChars lowerChars upperChars; + /* Appends string context from another string. This is an implementation + detail of Nix. - # Appends string context from another string. + Strings in Nix carry an invisible `context' which is a list of strings + representing store paths. If the string is later used in a derivation + attribute, the derivation will properly populate the inputDrvs and + inputSrcs. + + Example: + pkgs = import { }; + addContextFrom pkgs.coreutils "bar" + => "bar" + */ addContextFrom = a: b: substring 0 0 a + b; + /* Cut a string with a separator and produces a list of strings which + were separated by this separator. - # Cut a string with a separator and produces a list of strings which - # were separated by this separator; e.g., `splitString "." - # "foo.bar.baz"' returns ["foo" "bar" "baz"]. + NOTE: this function is not performant and should be avoided + + Example: + splitString "." "foo.bar.baz" + => [ "foo" "bar" "baz" ] + splitString "/" "/usr/local/bin" + => [ "" "usr" "local" "bin" ] + */ splitString = _sep: _s: let sep = addContextFrom _s _sep; @@ -157,10 +289,15 @@ rec { in recurse 0 0; + /* Return the suffix of the second argument if the first argument matches + its prefix. - # return the suffix of the second argument if the first argument match its - # prefix. e.g., - # `removePrefix "foo." "foo.bar.baz"' returns "bar.baz". + Example: + removePrefix "foo." "foo.bar.baz" + => "bar.baz" + removePrefix "xxx" "foo.bar.baz" + => "foo.bar.baz" + */ removePrefix = pre: s: let preLen = stringLength pre; @@ -171,6 +308,15 @@ rec { else s; + /* Return the prefix of the second argument if the first argument matches + its suffix. + + Example: + removeSuffix "front" "homefront" + => "home" + removeSuffix "xxx" "homefront" + => "homefront" + */ removeSuffix = suf: s: let sufLen = stringLength suf; @@ -181,25 +327,49 @@ rec { else s; - # Return true iff string v1 denotes a version older than v2. + /* Return true iff string v1 denotes a version older than v2. + + Example: + versionOlder "1.1" "1.2" + => true + versionOlder "1.1" "1.1" + => false + */ versionOlder = v1: v2: builtins.compareVersions v2 v1 == 1; + /* Return true iff string v1 denotes a version equal to or newer than v2. - # Return true iff string v1 denotes a version equal to or newer than v2. + Example: + versionAtLeast "1.1" "1.0" + => true + versionAtLeast "1.1" "1.1" + => true + versionAtLeast "1.1" "1.2" + => false + */ versionAtLeast = v1: v2: !versionOlder v1 v2; + /* This function takes an argument that's either a derivation or a + derivation's "name" attribute and extracts the version part from that + argument. - # This function takes an argument that's either a derivation or a - # derivation's "name" attribute and extracts the version part from that - # argument. For example: - # - # lib.getVersion "youtube-dl-2016.01.01" ==> "2016.01.01" - # lib.getVersion pkgs.youtube-dl ==> "2016.01.01" + Example: + getVersion "youtube-dl-2016.01.01" + => "2016.01.01" + getVersion pkgs.youtube-dl + => "2016.01.01" + */ getVersion = x: (builtins.parseDrvName (x.name or x)).version; + /* Extract name with version from URL. Ask for separator which is + supposed to start extension. - # Extract name with version from URL. Ask for separator which is - # supposed to start extension. + Example: + nameFromURL "https://nixos.org/releases/nix/nix-1.7/nix-1.7-x86_64-linux.tar.bz2" "-" + => "nix" + nameFromURL "https://nixos.org/releases/nix/nix-1.7/nix-1.7-x86_64-linux.tar.bz2" "_" + => "nix-1.7-x86" + */ nameFromURL = url: sep: let components = splitString "/" url; @@ -207,14 +377,24 @@ rec { name = builtins.head (splitString sep filename); in assert name != filename; name; + /* Create an --{enable,disable}- string that can be passed to + standard GNU Autoconf scripts. - # Create an --{enable,disable}- string that can be passed to - # standard GNU Autoconf scripts. + Example: + enableFeature true "shared" + => "--enable-shared" + enableFeature false "shared" + => "--disable-shared" + */ enableFeature = enable: feat: "--${if enable then "enable" else "disable"}-${feat}"; + /* Create a fixed width string with additional prefix to match + required width. - # Create a fixed width string with additional prefix to match - # required width. + Example: + fixedWidthString 5 "0" (toString 15) + => "00015" + */ fixedWidthString = width: filler: str: let strw = lib.stringLength str; @@ -223,25 +403,58 @@ rec { assert strw <= width; if strw == width then str else filler + fixedWidthString reqWidth filler str; + /* Format a number adding leading zeroes up to fixed width. - # Format a number adding leading zeroes up to fixed width. + Example: + fixedWidthNumber 5 15 + => "00015" + */ fixedWidthNumber = width: n: fixedWidthString width "0" (toString n); + /* Check whether a value is a store path. - # Check whether a value is a store path. + Example: + isStorePath "/nix/store/d945ibfx9x185xf04b890y4f9g3cbb63-python-2.7.11/bin/python" + => false + isStorePath "/nix/store/d945ibfx9x185xf04b890y4f9g3cbb63-python-2.7.11/" + => true + isStorePath pkgs.python + => true + */ isStorePath = x: builtins.substring 0 1 (toString x) == "/" && dirOf (builtins.toPath x) == builtins.storeDir; - # Convert string to int - # Obviously, it is a bit hacky to use fromJSON that way. + /* Convert string to int + Obviously, it is a bit hacky to use fromJSON that way. + + Example: + toInt "1337" + => 1337 + toInt "-4" + => -4 + toInt "3.14" + => error: floating point JSON numbers are not supported + */ toInt = str: let may_be_int = builtins.fromJSON str; in if builtins.isInt may_be_int then may_be_int else throw "Could not convert ${str} to int."; - # Read a list of paths from `file', relative to the `rootPath'. Lines - # beginning with `#' are treated as comments and ignored. Whitespace - # is significant. + /* Read a list of paths from `file', relative to the `rootPath'. Lines + beginning with `#' are treated as comments and ignored. Whitespace + is significant. + + NOTE: this function is not performant and should be avoided + + Example: + readPathsFromFile /prefix + ./pkgs/development/libraries/qt-5/5.4/qtbase/series + => [ "/prefix/dlopen-resolv.patch" "/prefix/tzdir.patch" + "/prefix/dlopen-libXcursor.patch" "/prefix/dlopen-openssl.patch" + "/prefix/dlopen-dbus.patch" "/prefix/xdg-config-dirs.patch" + "/prefix/nix-profiles-library-paths.patch" + "/prefix/compose-search-path.patch" ] + */ readPathsFromFile = rootPath: file: let root = toString rootPath; @@ -253,5 +466,4 @@ rec { absolutePaths = builtins.map (path: builtins.toPath (root + "/" + path)) relativePaths; in absolutePaths; - } From 8871c6fabcf33eaba9f963ddfed3fcfd60fd441f Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Thu, 10 Mar 2016 15:17:07 +0100 Subject: [PATCH 0165/1059] quasselDaemon: option for static linking --- pkgs/applications/networking/irc/quassel/default.nix | 5 +++-- pkgs/applications/networking/irc/quassel/qt-5.nix | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/irc/quassel/default.nix b/pkgs/applications/networking/irc/quassel/default.nix index 9c77e6b133f..aca68f94670 100644 --- a/pkgs/applications/networking/irc/quassel/default.nix +++ b/pkgs/applications/networking/irc/quassel/default.nix @@ -5,6 +5,7 @@ , tag ? "" # tag added to the package name , withKDE ? stdenv.isLinux # enable KDE integration , kdelibs ? null +, static ? false # link statically , stdenv, fetchurl, cmake, makeWrapper, qt, automoc4, phonon, dconf, qca2 }: @@ -42,8 +43,8 @@ in with stdenv; mkDerivation rec { NIX_CFLAGS_COMPILE = "-fPIC"; cmakeFlags = [ - "-DEMBED_DATA=OFF" - "-DSTATIC=OFF" ] + "-DEMBED_DATA=OFF" ] + ++ edf static "STATIC" ++ edf monolithic "WANT_MONO" ++ edf daemon "WANT_CORE" ++ edf client "WANT_QTCLIENT" diff --git a/pkgs/applications/networking/irc/quassel/qt-5.nix b/pkgs/applications/networking/irc/quassel/qt-5.nix index b5075fe2075..19e0c475c66 100644 --- a/pkgs/applications/networking/irc/quassel/qt-5.nix +++ b/pkgs/applications/networking/irc/quassel/qt-5.nix @@ -3,6 +3,7 @@ , client ? false # build Quassel client , previews ? false # enable webpage previews on hovering over URLs , tag ? "" # tag added to the package name +, static ? false # link statically , stdenv, fetchurl, cmake, makeWrapper, dconf , qtbase, qtscript, qtwebkit @@ -66,9 +67,9 @@ in with stdenv; mkDerivation rec { cmakeFlags = [ "-DEMBED_DATA=OFF" - "-DSTATIC=OFF" "-DUSE_QT5=ON" ] + ++ edf static "STATIC" ++ edf monolithic "WANT_MONO" ++ edf daemon "WANT_CORE" ++ edf client "WANT_QTCLIENT" From 2f73decba80dc354e3b4e56c267ce1e10200c084 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Wed, 9 Mar 2016 00:15:48 +0100 Subject: [PATCH 0166/1059] faust2: fix build Fixes https://github.com/NixOS/nixpkgs/issues/12749 The build failure was caused by brittle detection of the llvm version. See the code for (excessive) details. This fix is a quick hack, a proper fix would be to parse the version of the input llvm derivation and use that to derive a proper value. Here we just pin the version. Also move build-time deps to `nativeBuildInputs`. --- pkgs/applications/audio/faust/faust2.nix | 17 ++++++++++++++++- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/faust/faust2.nix b/pkgs/applications/audio/faust/faust2.nix index 4759f228e35..612a3dab99f 100644 --- a/pkgs/applications/audio/faust/faust2.nix +++ b/pkgs/applications/audio/faust/faust2.nix @@ -37,7 +37,8 @@ let inherit src; - buildInputs = [ makeWrapper llvm emscripten openssl libsndfile pkgconfig libmicrohttpd vim ]; + nativeBuildInputs = [ makeWrapper pkgconfig vim ]; + buildInputs = [ llvm emscripten openssl libsndfile libmicrohttpd ]; passthru = { @@ -53,6 +54,20 @@ let # correct system. unset system sed -e "232s/LLVM_STATIC_LIBS/LLVMLIBS/" -i compiler/Makefile.unix + + # The makefile sets LLVM_ depending on the current llvm + # version, but the detection code is quite brittle. + # + # Failing to properly detect the llvm version means that the macro + # LLVM_VERSION ends up being the raw output of `llvm-config --version`, while + # the code assumes that it's set to a symbol like `LLVM_35`. Two problems result: + # * :0:1: error: macro names must be identifiers.; and + # * a bunch of undefined reference errors due to conditional definitions relying on + # LLVM_XY being defined. + # + # For now, fix this by 1) pinning the llvm version; 2) manually setting LLVM_VERSION + # to something the makefile will recognize. + sed '52iLLVM_VERSION=3.7.0' -i compiler/Makefile.unix ''; # Remove most faust2appl scripts since they won't run properly diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f38ee99819a..8b641b882ee 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15895,7 +15895,9 @@ let faust1 = callPackage ../applications/audio/faust/faust1.nix { }; - faust2 = callPackage ../applications/audio/faust/faust2.nix { }; + faust2 = callPackage ../applications/audio/faust/faust2.nix { + llvm = llvm_37; + }; faust2alqt = callPackage ../applications/audio/faust/faust2alqt.nix { }; From d6368dbd2144d74c262b193422632fa5ab1abe22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Thu, 10 Mar 2016 12:41:29 +0100 Subject: [PATCH 0167/1059] Adding rtl8723bs driver recipe. Not tested on hardware. --- pkgs/os-specific/linux/rtl8723bs/default.nix | 35 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 37 insertions(+) create mode 100644 pkgs/os-specific/linux/rtl8723bs/default.nix diff --git a/pkgs/os-specific/linux/rtl8723bs/default.nix b/pkgs/os-specific/linux/rtl8723bs/default.nix new file mode 100644 index 00000000000..1739ac1faa7 --- /dev/null +++ b/pkgs/os-specific/linux/rtl8723bs/default.nix @@ -0,0 +1,35 @@ +{ stdenv, fetchFromGitHub, kernel }: + +let + ver = "c517f2b"; +in +stdenv.mkDerivation rec { + name = "rtl8723bs-${kernel.version}-c517f2b"; + + src = fetchFromGitHub { + owner = "hadess"; + repo = "rtl8723bs"; + rev = "c517f2bf8bcc3d57311252ea7cd49ae81466eead"; + sha256 = "0phzrhq85g52pi2b74a9sr9l2x6dzlz714k3pix486w2x5axw4xb"; + }; + + patchPhase = '' + substituteInPlace ./Makefile --replace /lib/modules/ "${kernel.dev}/lib/modules/" + substituteInPlace ./Makefile --replace '$(shell uname -r)' "${kernel.modDirVersion}" + substituteInPlace ./Makefile --replace /sbin/depmod # + substituteInPlace ./Makefile --replace '$(MODDESTDIR)' "$out/lib/modules/${kernel.modDirVersion}/kernel/net/wireless/" + substituteInPlace ./Makefile --replace '/lib/firmware' "$out/lib/firmware" + ''; + + preInstall = '' + mkdir -p "$out/lib/modules/${kernel.modDirVersion}/kernel/net/wireless/" + mkdir -p "$out/lib/firmware/rtlwifi" + ''; + + meta = { + description = "Realtek SDIO Wi-Fi driver"; + homepage = "https://github.com/hadess/rtl8723bs"; + license = stdenv.lib.licenses.gpl2; + platforms = [ "x86_64-linux" "i686-linux" ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f38ee99819a..e27510f5bb8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10570,6 +10570,8 @@ let # callPackage ../os-specific/linux/nvidia-x11/beta.nix { }; nvidia_x11 = callPackage ../os-specific/linux/nvidia-x11 { }; + rtl8723bs = callPackage ../os-specific/linux/rtl8723bs { }; + rtl8812au = callPackage ../os-specific/linux/rtl8812au { }; openafsClient = callPackage ../servers/openafs-client { }; From 17b83a88c306b86dff7803fcf83a7d6e1cbd713b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 10 Mar 2016 15:56:53 +0100 Subject: [PATCH 0168/1059] nvidia-x11*: use mirror-agnostic URLs --- pkgs/os-specific/linux/nvidia-x11/legacy173.nix | 4 ++-- pkgs/os-specific/linux/nvidia-x11/legacy304.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/nvidia-x11/legacy173.nix b/pkgs/os-specific/linux/nvidia-x11/legacy173.nix index 6bde91d0ffc..91813d67e1c 100644 --- a/pkgs/os-specific/linux/nvidia-x11/legacy173.nix +++ b/pkgs/os-specific/linux/nvidia-x11/legacy173.nix @@ -14,12 +14,12 @@ stdenv.mkDerivation { src = if stdenv.system == "i686-linux" then fetchurl { - url = "http://us.download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}-pkg0.run"; + url = "http://download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}-pkg0.run"; sha256 = "08xb7s7cxmj4zv4i3645kjhlhhwxiq6km9ixmsw3vv91f7rkb6d0"; } else if stdenv.system == "x86_64-linux" then fetchurl { - url = "http://us.download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-pkg0.run"; + url = "http://download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-pkg0.run"; sha256 = "1p2ls0xj81l8v4n6dbjj3p5wlw1iyhgzyvqcv4h5fdxhhs2cb3md"; } else throw "nvidia-x11 does not support platform ${stdenv.system}"; diff --git a/pkgs/os-specific/linux/nvidia-x11/legacy304.nix b/pkgs/os-specific/linux/nvidia-x11/legacy304.nix index 061b43a47e7..5cf3583e873 100644 --- a/pkgs/os-specific/linux/nvidia-x11/legacy304.nix +++ b/pkgs/os-specific/linux/nvidia-x11/legacy304.nix @@ -18,12 +18,12 @@ stdenv.mkDerivation { src = if stdenv.system == "i686-linux" then fetchurl { - url = "http://us.download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}.run"; + url = "http://download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}.run"; sha256 = "1a1d0fsahgijcvs2p59vwhs0dpp7pp2wmvgcs1i7fzl6yyv4nmfj"; } else if stdenv.system == "x86_64-linux" then fetchurl { - url = "http://us.download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-no-compat32.run"; + url = "http://download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-no-compat32.run"; sha256 = "0gpqzb5gvhrcgrp3kph1p0yjkndx9wfzgh5j88ysrlflkv3q4vig"; } else throw "nvidia-x11 does not support platform ${stdenv.system}"; From 10a159306ad6e7294a2b7cefc0878022590914cd Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 10 Mar 2016 17:23:29 +0100 Subject: [PATCH 0169/1059] Revert "go-packages: use lib.importJSON" This reverts commit 2206a24caa609859e3d9385647708dfd7ec5bf08. --- 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 0c5e3a3013c..4a97a54544c 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -8,7 +8,7 @@ let # When adding entries to the json file, please use `jq . < go-packages.json --sort-keys` # to canonicallize the data. - ghPackages = stdenv.lib.importJSON ./go-packages.json; + ghPackages = builtins.fromJSON (builtins.readFile ./go-packages.json); self = _self // overrides; _self = with self; { From ba469dbf9bfd0305cb7bc5e6cd3fd27800479875 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 10 Mar 2016 17:23:58 +0100 Subject: [PATCH 0170/1059] Revert "fzf: 0.11.1 -> 0.11.4" This reverts commit 46abbc9dc967624486952dd7333d2125e5db009b. --- pkgs/top-level/go-packages.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/go-packages.json b/pkgs/top-level/go-packages.json index 21a43622b9f..95e46093d56 100644 --- a/pkgs/top-level/go-packages.json +++ b/pkgs/top-level/go-packages.json @@ -969,8 +969,8 @@ }, "junegunn": { "fzf": { - "rev": "0.11.4", - "sha256": "12axgg14z4imjskfyfvj95rbhzijjg5nmaphl7m5ap9a3wzlvb32" + "rev": "0.11.1", + "sha256": "1zw1kq4d5sb1qia44q04i33yii9qwlwlwz8vxhln03d4631mhsra" }, "go-runewidth": { "rev": "travisish", From 7760d6e02dbf85140a21d398228182db13270d62 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 10 Mar 2016 17:24:02 +0100 Subject: [PATCH 0171/1059] Revert "goPackages: make it easier to automate updates" This reverts commit 1371084ae1f29f8890e65bcc872c1b1eedf17def. Introducing yet another non-standard package style / auto-updater without proper discussion is really not a good idea. We really need a proper process for this. --- pkgs/top-level/go-packages.json | 1704 ------------------------------- pkgs/top-level/go-packages.nix | 1516 ++++++++++++++++++++++----- 2 files changed, 1275 insertions(+), 1945 deletions(-) delete mode 100644 pkgs/top-level/go-packages.json diff --git a/pkgs/top-level/go-packages.json b/pkgs/top-level/go-packages.json deleted file mode 100644 index 95e46093d56..00000000000 --- a/pkgs/top-level/go-packages.json +++ /dev/null @@ -1,1704 +0,0 @@ -{ - "10gen": { - "openssl": { - "rev": "4c6dbafa5ec35b3ffc6a1b1e1fe29c3eba2053ec", - "sha256": "1033c9vgv9lf8ks0qjy0ylsmx1hizqxa6izalma8vi30np6ka6zn" - } - }, - "18F": { - "hmacauth": { - "rev": "9232a6386b737d7d1e5c1c6e817aa48d5d8ee7cd", - "sha256": "056mcqrf2bv0g9gn2ixv19srk613h4sasl99w9375mpvmadb3pz1" - } - }, - "9fans": { - "go": { - "rev": "65b8cf069318223b1e722b4b36e729e5e9bb9eab", - "sha256": "0kzyxhs2xf0339nlnbm9gc365b2svyyjxnr86rphx5m072r32ims" - } - }, - "AcalephStorage": { - "consul-alerts": { - "rev": "6eb4bc556d5f926dbf15d86170664d35d504ae54", - "sha256": "191bmxix3nl4pr26hcdfxa9qpv5dzggjvi86h2slajgyd2rzn23b" - } - }, - "AdRoll": { - "hologram": { - "rev": "63014b81675e1228818bf36ef6ef0028bacad24b", - "sha256": "0k8g7dwrkxdvmzs4aa8zz39qa8r2danc4x40hrblcgjhfcwzxrzr" - } - }, - "BurntSushi": { - "toml": { - "rev": "056c9bc7be7190eaa7715723883caffa5f8fa3e4", - "sha256": "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw" - } - }, - "EricChiang": { - "pup": { - "rev": "9693b292601dd24dab3c04bc628f9ae3fa72f831", - "sha256": "04j3fy1vk6xap8ad7k3c05h9b5mg2n1vy9vcyg9rs02cb13d3sy0" - } - }, - "GeertJohan": { - "go.incremental": { - "rev": "92fd0ce4a694213e8b3dfd2d39b16e51d26d0fbf", - "sha256": "160cspmq73bk6cvisa6kq1dwrrp1yqpkrpq8dl69wcnaf91cbnml" - }, - "go.rice": { - "rev": "4f3c5af2322e393f305d9674845bc36cd1dea589", - "sha256": "01q2d5iwibwdl68gn8sg6dm7byc42hax3zmiqgmdw63ir1fsv4ag" - } - }, - "GoogleCloudPlatform": { - "gcloud-golang": { - "rev": "6335269abf9002cf5a84613c13cda6010842b834", - "sha256": "15xrqxna5ms0r634k3bfzyymn431dvqcjwbsap8ay60x371kzbwf" - } - }, - "Masterminds": { - "cookoo": { - "rev": "v1.2.0", - "sha256": "1mxqnxddny43k1shsvd39sfzfs0d20gv3vm9lcjp04g3b0rplck1" - }, - "glide": { - "rev": "0.6.1", - "sha256": "1v66c2igm8lmljqrrsyq3cl416162yc5l597582bqsnhshj2kk4m" - }, - "vcs": { - "rev": "1.4.0", - "sha256": "0590ww2av4407y7zy3bcmnr8i74fv00k9zzcxcpjxivl6qszna0d" - } - }, - "PuerkitoBio": { - "goquery": { - "rev": "f065786d418c9d22a33cad33decd59277af31471", - "sha256": "0bskm3nja1v3pmg7g8nqjkmpwz5p72h1h81y076x1z17zrjaw585" - }, - "purell": { - "rev": "d69616f51cdfcd7514d6a380847a152dfc2a749d", - "sha256": "0nma5i25j0y223ns7482lx4klcfhfwdr8v6r9kzrs0pwlq64ghs0" - } - }, - "Sirupsen": { - "logrus": { - "rev": "v0.9.0", - "sha256": "1m6vvd4pg4lwglhk54lv5mf6cc8h7bi0d9zb3gar4crz531r66y4" - } - }, - "aarzilli": { - "sandblast": { - "rev": "694d24817b9b7b8bacb6d458b7989b30d7fe3555", - "sha256": "1pj0bic3x89v44nr8ycqxwnafkiz3cr5kya4wfdfj5ldbs5xnq9l" - } - }, - "agl": { - "ed25519": { - "rev": "d2b94fd789ea21d12fac1a4443dd3a3f79cda72c", - "sha256": "1s8k6vdkmmh3lncfv6gza4dxjsfsdwsmma3sbhqispc0142h3qw3" - }, - "go-gtk": { - "rev": "6937b8d28cf70d583346220b966074cfd3a2e233", - "sha256": "0jnhsv7ypyhprpy0fndah22v2pbbavr3db6f9wxl1vf34qkns3p4" - }, - "pond": { - "rev": "bce6e0dc61803c23699c749e29a83f81da3c41b2", - "sha256": "1dmgbg4ak3jkbgmxh0lr4hga1nl623mh7pvsgby1rxl4ivbzwkh4" - }, - "xmpp-client": { - "rev": "525bd26cf5f56ec5aee99464714fd1d019c119ff", - "sha256": "0a1r08zs723ikcskmn6ylkdi3frcd0i0lkx30i9q39ilf734v253" - } - }, - "agtorre": { - "gocolorize": { - "rev": "v1.0.0", - "sha256": "1dj7s8bgw9qky344d0k9gz661c0m317a08a590184drw7m51hy9p" - } - }, - "akavel": { - "rsrc": { - "rev": "ba14da1f827188454a4591717fff29999010887f", - "sha256": "0g9fj10xnxcv034c8hpcgbhswv6as0d8l176c5nfgh1lh6klmmzc" - } - }, - "akhenakh": { - "gozim": { - "rev": "ea9b7c39cb1d13bd8bf19ba4dc4e2a16bab52f14", - "sha256": "1n50fdd56r3s1sgjbpa72nvdh50gfpf6fq55c077w2p3bxn6p8k6" - } - }, - "alecthomas": { - "kingpin": { - "rev": "21551c2a6259a8145110ca80a36e25c9d7624032", - "sha256": "1zhpqc4qxsw9lc1b4dwk5r42k9r702ihzrabs3mnsphvm9jx4l59" - }, - "template": { - "rev": "14fd436dd20c3cc65242a9f396b61bfc8a3926fc", - "sha256": "19rzvvcgvr1z2wz9xpqsmlm8syizbpxjp5zbzgakvrqlajpbjvx2" - }, - "units": { - "rev": "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a", - "sha256": "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl" - } - }, - "andybalholm": { - "cascadia": { - "rev": "54abbbf07a45a3ef346ebe903e0715d9a3c19352", - "sha256": "1z21w6p5bp7mi2pvicvcqc871k9s8a6262pkwyjm2qfc859c203m" - } - }, - "antonlindstrom": { - "mesos_stats": { - "rev": "0c6ea494c19bedc67ebb85ce3d187ec21050e920", - "sha256": "18ggyjf4nyn77gkn16wg9krp4dsphgzdgcr3mdflv6mvbr482ar4" - } - }, - "armon": { - "circbuf": { - "rev": "f092b4f207b6e5cce0569056fba9e1a2735cb6cf", - "sha256": "06kwwdwa3hskdh6ws7clj1vim80dyc3ldim8k9y5qpd30x0avn5s" - }, - "go-metrics": { - "rev": "b2d95e5291cdbc26997d1301a5e467ecbb240e25", - "sha256": "1jvdf98jlbyzbb9w159nifvv8fihrcs66drnl8pilqdjpmkmyyck" - }, - "go-radix": { - "rev": "fbd82e84e2b13651f3abc5ffd26b65ba71bc8f93", - "sha256": "16y64r1v054c2ln0bi5mrqq1cmvy6d6pnxk1glb8lw2g31ksa80c" - }, - "gomdb": { - "rev": "151f2e08ef45cb0e57d694b2562f351955dff572", - "sha256": "02wdhgfarmmwfbc75snd1dh6p9k9c1y2135apdm6mkr062qlxx61" - } - }, - "asciinema": { - "asciinema": { - "rev": "v1.1.1", - "sha256": "0k48k8815k433s25lh8my2swl89kczp0m2gbqzjlpy1xwmk06nxc" - } - }, - "aws": { - "aws-sdk-go": { - "rev": "127313c1b41e534a0456a68b6b3a16712dacb35d", - "sha256": "0gd4nzv5jl02qi7g0y8lv6jadk0p52bpbl1r7pfgy8mn1vfxs37m" - } - }, - "aybabtme": { - "rgbterm": { - "rev": "c07e2f009ed2311e9c35bca12ec00b38ccd48283", - "sha256": "1qph7drds44jzx1whqlrh1hs58k0wv0v58zyq2a81hmm72gsgzam" - } - }, - "beevik": { - "ntp": { - "rev": "0a5264e2563429030eb922f258229ae3fee5b5dc", - "sha256": "03fvgbjf2aprjj1s6wdc35wwa7k1w5phkixzvp5n1j21sf6w4h24" - } - }, - "beorn7": { - "perks": { - "rev": "b965b613227fddccbfffe13eae360ed3fa822f8d", - "sha256": "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk" - } - }, - "bitly": { - "go-hostpool": { - "rev": "d0e59c22a56e8dadfed24f74f452cea5a52722d2", - "sha256": "14ph12krn5zlg00vh9g6g08lkfjxnpw46nzadrfb718yl1hgyk3g" - }, - "go-simplejson": { - "rev": "18db6e68d8fd9cbf2e8ebe4c81a78b96fd9bf05a", - "sha256": "0lj9cxyncchlw6p35j0yym5q5waiz0giw6ri41qdwm8y3dghwwiy" - }, - "nsq": { - "rev": "v0.3.5", - "sha256": "1r7jgplzn6bgwhd4vn8045n6cmm4iqbzssbjgj7j1c28zbficy2f" - }, - "oauth2_proxy": { - "rev": "10f47e325b782a60b8689653fa45360dee7fbf34", - "sha256": "13f6kaq15f6ial9gqzrsx7i94jhd5j70js2k93qwxcw1vkh1b6si" - }, - "timer_metrics": { - "rev": "afad1794bb13e2a094720aeb27c088aa64564895", - "sha256": "1b717vkwj63qb5kan4b92kx4rg6253l5mdb3lxpxrspy56a6rl0c" - } - }, - "bkaradzic": { - "go-lz4": { - "rev": "74ddf82598bc4745b965729e9c6a463bedd33049", - "sha256": "1vdid8v0c2v2qhrg9rzn3l7ya1h34jirrxfnir7gv7w6s4ivdvc1" - } - }, - "blang": { - "semver": { - "rev": "31b736133b98f26d5e078ec9eb591666edfd091f", - "sha256": "19ifi0na4cj23q3h8xv89mx7p48y0ciymhmlrq9milm0xz80wk10" - } - }, - "blevesearch": { - "bleve": { - "rev": "fc34a97875840b2ae24517e7d746b69bdae9be90", - "sha256": "0ny7nvilrxmmzcdvpivwyrjkynnhc22c5gdrxzs421jly35jw8jx" - }, - "go-porterstemmer": { - "rev": "23a2c8e5cf1f380f27722c6d2ae8896431dc7d0e", - "sha256": "0rcfbrad79xd114h3dhy5d3zs3b5bcgqwm3h5ih1lk69zr9wi91d" - }, - "segment": { - "rev": "db70c57796cc8c310613541dfade3dce627d09c7", - "sha256": "09xfdlcc6bsrr5grxp6fgnw9p4cf6jc0wwa9049fd1l0zmhj2m1g" - } - }, - "bmizerany": { - "assert": { - "rev": "e17e99893cb6509f428e1728281c2ad60a6b31e3", - "sha256": "1lfrvqqmb09y6pcr76yjv4r84cshkd4s7fpmiy7268kfi2cvqnpc" - }, - "pat": { - "rev": "b8a35001b773c267eb260a691f4e5499a3531600", - "sha256": "11zxd45rvjm6cn3wzbi18wy9j4vr1r1hgg6gzlqnxffiizkycxmz" - }, - "perks": { - "rev": "d9a9656a3a4b1c2864fdb44db2ef8619772d92aa", - "sha256": "0f39b3zfm1zd6xcvlm6szgss026qs84n2j9y5bnb3zxzdkxb9w9n" - } - }, - "boltdb": { - "bolt": { - "rev": "957d850b5158a4eebf915476058e720f43459584", - "sha256": "193adhhsqdy0kyq1l1fi8pg2n6pwyrw4h607qm78qyi26f8i7vzf" - } - }, - "bradfitz": { - "gomemcache": { - "rev": "72a68649ba712ee7c4b5b4a943a626bcd7d90eb8", - "sha256": "1r8fpzwhakq8fsppc33n4iivq1pz47xhs0h6bv4x5qiip5mswwvg" - }, - "http2": { - "rev": "f8202bc903bda493ebba4aa54922d78430c2c42f", - "sha256": "0cza2126jbji5vijwk4dxs05hifnff04xcr0vhxvafs6hz3sacvr" - } - }, - "braintree": { - "manners": { - "rev": "0.4.0", - "sha256": "07985pbfhwlhbglr9zwh2wx8kkp0wzqr1lf0xbbxbhga4hn9q3ak" - } - }, - "bugsnag": { - "bugsnag-go": { - "rev": "v1.0.3", - "sha256": "1ymi5hrvd2nyfwfd12xll43gn00ii3bjb5ma9dfhaaxv2asi3ajx" - }, - "panicwrap": { - "rev": "e5f9854865b9778a45169fc249e99e338d4d6f27", - "sha256": "01afviklmgm25i82c0z9xkjgbrh0j1fm9a1adqfd2jqv0cm41k9d" - } - }, - "calmh": { - "du": { - "rev": "3c0690cca16228b97741327b1b6781397afbdb24", - "sha256": "1mv6mkbslfc8giv47kyl97ny0igb3l7jya5hc75sm54xi6g205wa" - }, - "logger": { - "rev": "c96f6a1a8c7b6bf2f4860c667867d90174799eb2", - "sha256": "1f67xbvvf210g5cqa84l12s00ynfbkjinhl8y6m88yrdb025v1vg" - }, - "luhn": { - "rev": "0c8388ff95fa92d4094011e5a04fc99dea3d1632", - "sha256": "1hfj1lx7wdpifn16zqrl4xml6cj5gxbn6hfz1f46g2a6bdf0gcvs" - }, - "xdr": { - "rev": "e467b5aeb65ca8516fb3925c84991bf1d7cc935e", - "sha256": "1bi4b2xkjzcr0vq1wxz14i9943k71sj092dam0gdmr9yvdrg0nra" - } - }, - "ccpaging": { - "log4go": { - "rev": "cb4cc51cd03958183d3b637d0750497d88c2f7a8", - "sha256": "0l9f86zzhla9hq35q4xhgs837283qrm4gxbp5lrwwls54ifiq7k2" - } - }, - "chai2010": { - "gettext-go": { - "rev": "783c0fb3da95b06dd89c4ba2771f1dc289ecc27c", - "sha256": "1iz4wjxc3zkj0xkfs88ig670gb08p1sd922l0ig2cxpjcfjp1y99" - } - }, - "cheggaaa": { - "pb": { - "rev": "e648e12b78cedf14ebb2fc1855033f07b034cfbb", - "sha256": "03k4cars7hcqqgdsd0minfls2p7gjpm8q6y8vknh1s68kvxd4xam" - } - }, - "cihub": { - "seelog": { - "rev": "c510775bb50d98213cfafca75a4bc5e3fddc8d8f", - "sha256": "1f0rwgqlffv1a7b05736a4gf4l9dn80wsfyqcnz6qd2skhwnzv29" - } - }, - "codegangsta": { - "cli": { - "rev": "142e6cd241a4dfbf7f07a018f1f8225180018da4", - "sha256": "1w8naax4gvkkxw5h31a2c2dwniw5hj92nv0hn6ybdlavffyax9h5" - } - }, - "coreos": { - "etcd": { - "rev": "v2.1.2", - "sha256": "1d3wl9rqbhkkdhfkjfrzjfcwz8hx315zbjbmij3pf62bc1p5nh60" - }, - "flannel": { - "rev": "v0.5.3", - "sha256": "0d9khv0bczvsaqnz16p546m4r5marmnkcrdhi0f3ajnwxb776r9p" - }, - "go-etcd": { - "rev": "9847b93751a5fbaf227b893d172cee0104ac6427", - "sha256": "1ihq01ayqzxvn6hca5j00vl189vi5lm78f0fy2wpk5mrm3xi01l4" - }, - "go-log": { - "rev": "70d039bee4b0e389e5be560491d8291708506f59", - "sha256": "1s95xmmhcgw4ascf4zr8c4ij2n4s3mr881nxcpmc61g0gb722b13" - }, - "go-systemd": { - "rev": "2688e91251d9d8e404e86dd8f096e23b2f086958", - "sha256": "0c1k3y5msc1xplhx0ksa7g08yqjaavns8s5zrfg4ig8az30gwlpa" - } - }, - "cpuguy83": { - "go-md2man": { - "rev": "71acacd42f85e5e82f70a55327789582a5200a90", - "sha256": "0hmkrq4gdzb6mwllmh4p1y7vrz7hyr8xqagpk9nyr5dhygvnnq2v" - } - }, - "cstrahan": { - "go-repo-root": { - "rev": "90041e5c7dc634651549f96814a452f4e0e680f9", - "sha256": "1rlzp8kjv0a3dnfhyqcggny0ad648j5csr2x0siq5prahlp48mg4" - } - }, - "daaku": { - "go.zipexe": { - "rev": "a5fe2436ffcb3236e175e5149162b41cd28bd27d", - "sha256": "0vi5pskhifb6zw78w2j97qbhs09zmrlk4b48mybgk5b3sswp6510" - } - }, - "darkcrux": { - "gopherduty": { - "rev": "f4906ce7e59b33a50bfbcba93e2cf58778c11fb9", - "sha256": "11w1yqc16fxj5q1y5ha5m99j18fg4p9lyqi542x2xbrmjqqialcf" - } - }, - "davecgh": { - "go-spew": { - "rev": "5215b55f46b2b919f50a1df0eaa5886afe4e3b3d", - "sha256": "15h9kl73rdbzlfmsdxp13jja5gs7sknvqkpq2qizq3qv3nr1x8dk" - } - }, - "daviddengcn": { - "go-colortext": { - "rev": "13eaeb896f5985a1ab74ddea58707a73d875ba57", - "sha256": "0618xs9lc5xfp5zkkb5j47dr7i30ps3zj5fj0zpv8afqh2cc689x" - } - }, - "dchest": { - "cssmin": { - "rev": "fb8d9b44afdc258bfff6052d3667521babcb2239", - "sha256": "09sdijfx5d05z4cd5k6lhl7k3kbpdf2amzlngv15h5v0fff9qw4s" - } - }, - "deis": { - "deis": { - "rev": "v1.12.2", - "sha256": "03lznzcij3gn08kqj2p6skifcdv5aw09dm6zxgvqw7nxx2n1j2ib" - } - }, - "dgnorton": { - "goback": { - "rev": "a49ca3c0a18f50ae0b8a247e012db4385e516cf4", - "sha256": "1nyg6sckwd0iafs9vcmgbga2k3hid2q0avhwj29qbdhj3l78xi47" - } - }, - "discordianfish": { - "nginx_exporter": { - "rev": "2cf16441591f6b6e58a8c0439dcaf344057aea2b", - "sha256": "0p9j0bbr2lr734980x2p8d67lcify21glwc5k3i3j4ri4vadpxvc" - } - }, - "docopt": { - "docopt-go": { - "rev": "854c423c810880e30b9fecdabb12d54f4a92f9bb", - "sha256": "1sddkxgl1pwlipfvmv14h8vg9b9wq1km427j1gjarhb5yfqhh3l1" - } - }, - "dustin": { - "go-humanize": { - "rev": "8929fe90cee4b2cb9deb468b51fb34eba64d1bf0", - "sha256": "1g155kxjh6hd3ibx41nbpj6f7h5bh54zgl9dr53xzg2xlxljgjy0" - } - }, - "dustinkirkland": { - "golang-petname": { - "rev": "13f8b3a4326b9a6579358543cffe82713c1d6ce4", - "sha256": "1xx6lpv1r2sji8m9w35a2fkr9v4vsgvxrrahcq9bdg75qvadq91d" - } - }, - "eckardt": { - "influxdb-go": { - "rev": "8b71952efc257237e077c5d0672e936713bad38f", - "sha256": "1hzrqiigwcwd5f6zqpzqffddfffvd52an712kbv54ji16a7kk6j8" - } - }, - "ehmry": { - "go-bencode": { - "rev": "v1.1.1", - "sha256": "1wlyv6cvwb6dxvmqwkwnra6cr78kf8dx6x8hybgrznwc29h1vhw8" - } - }, - "eknkc": { - "amber": { - "rev": "144da19a9994994c069f0693294a66dd310e14a4", - "sha256": "079wwdq4cn9i1vx5zik16z4bmghkc7zmmvbrp1q6y4cnpmq95rqk" - } - }, - "elazarl": { - "go-bindata-assetfs": { - "rev": "d5cac425555ca5cf00694df246e04f05e6a55150", - "sha256": "636ce247ff6f85c14f38a421f46662fa77bdc29762692e1f72b3cd1f9d7a1d17" - }, - "goproxy": { - "rev": "2624781dc373cecd1136cafdaaaeba6c9bb90e96", - "sha256": "1zz425y8byjaa9i7mslc9anz9w2jc093fjl0562rmm5hh4rc5x5f" - } - }, - "emicklei": { - "go-restful": { - "rev": "892402ba11a2e2fd5e1295dd633481f27365f14d", - "sha256": "0gr9f53vayc6501a1kaw4p3h9pgf376cgxsfnr3f2dvp0xacvw8x" - } - }, - "encryptio": { - "git-annex-remote-b2": { - "rev": "v0.2", - "sha256": "1139rzdvlj3hanqsccfinprvrzf4qjc5n4f0r21jp9j24yhjs6j2" - } - }, - "etsy": { - "hound": { - "rev": "0a364935ba9db53e6f3f5563b02fcce242e0930f", - "sha256": "0jhnjskpm15nfa1cvx0h214lx72zjvnkjwrbgwgqqyn9afrihc7q" - } - }, - "exercism": { - "cli": { - "rev": "v2.2.1", - "sha256": "13kwcxd7m3xv42j50nlm9dd08865dxji41glfvnb4wwq9yicyn4g" - } - }, - "fatih": { - "color": { - "rev": "9aae6aaa22315390f03959adca2c4d395b02fcef", - "sha256": "1vjcgx4xc0h4870qzz4mrh1l0f07wr79jm8pnbp6a2yd41rm8wjp" - }, - "pool": { - "rev": "v2.0.0", - "sha256": "1jlrakgnpvhi2ny87yrsj1gyrcncfzdhypa9i2mlvvzqlj4r0dn0" - }, - "structs": { - "rev": "a9f7daa9c2729e97450c2da2feda19130a367d8f", - "sha256": "0pyrc7svc826g37al3db19n5l4r2m9h1mlhjh3hz2r41xfaqia50" - } - }, - "feyeleanor": { - "raw": { - "rev": "724aedf6e1a5d8971aafec384b6bde3d5608fba4", - "sha256": "0z4dcnadgk0fbxxd14dqa1wzzr0v3ksqlzd0swzs2mipim5wjgsz" - }, - "sets": { - "rev": "6c54cb57ea406ff6354256a4847e37298194478f", - "sha256": "1l3hyl8kmwb9k6qi8x4w54g2cmydap0g3cqvs47bhvm47rg1j1zc" - }, - "slices": { - "rev": "bb44bb2e4817fe71ba7082d351fd582e7d40e3ea", - "sha256": "1miqhzqgww41d8xbvmxfzx9rsfxgw742nqz96mhjkxpadrxg870v" - } - }, - "flosch": { - "pongo2": { - "rev": "5e81b817a0c48c1c57cdf1a9056cf76bdee02ca9", - "sha256": "0fd7d79644zmcirsb1gvhmh0l5vb5nyxmkzkvqpmzzcg6yfczph8" - } - }, - "franela": { - "goreq": { - "rev": "72c51a544272e007ab3da4f7d9ac959b7af7af03", - "sha256": "0dnqbijdzp2dgsf6m934nadixqbv73q0zkqglaa956zzw0pyhcxp" - } - }, - "garyburd": { - "redigo": { - "rev": "535138d7bcd717d6531c701ef5933d98b1866257", - "sha256": "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v" - } - }, - "getsentry": { - "raven-go": { - "rev": "74c334d7b8aaa4fd1b4fc6aa428c36fed1699e28", - "sha256": "1356a7h8zp1mcywnr0y83w0h4qdblp65rcf9slbx667n8x2rzda8" - } - }, - "github": { - "git-lfs": { - "rev": "v1.1.1", - "sha256": "1m7kii57jrsb22m5x9v8xa3s1qmipfkpk6cscgxrbrj7g0a75fnc" - } - }, - "go-asn1-ber": { - "asn1-ber": { - "rev": "f4b6f4a84f5cde443d1925b5ec185ee93c2bdc72", - "sha256": "0qdyax6yw3hvplzqc2ykpihi3m5y4nii581ay0mxy9c54bzs2nk9" - } - }, - "go-check": { - "check": { - "rev": "871360013c92e1c715c2de6d06b54899468a8a2d", - "sha256": "1qhji81yxz3map937bf8lyp8j2qpwlbnag5pr5pf0qw3li2nciah" - } - }, - "go-inf": { - "inf": { - "rev": "c85f1217d51339c0fa3a498cc8b2075de695dae6", - "sha256": "1ykdk410vca8i35db2fp6qqcfx0bmx95k0xqd15wzsl0xjmyjk3y" - } - }, - "go-ldap": { - "ldap": { - "rev": "83e65426fd1c06626e88aa8a085e5bfed0208e29", - "sha256": "179lwaf0hvczl8g4xzkpcpzq25p1b23f7399bx5zl55iin62d8yz" - } - }, - "go-mgo": { - "mgo": { - "rev": "r2015.06.03", - "sha256": "1bwqbngdy0ghwpvarsz8rlrirdmjrda44aghihpfmin06hxy3zcd" - } - }, - "go-sql-driver": { - "mysql": { - "rev": "fb7299726d2e68745a8805b14f2ff44b5c2cfa84", - "sha256": "185af0x475hq2wmm2zdvxjyslkplf8zzqijdxa937zqxq63qiw4w" - } - }, - "go-tomb": { - "tomb": { - "rev": "14b3d72120e8d10ea6e6b7f87f7175734b1faab8", - "sha256": "1nza31jvkpka5431c4bdbirvjdy36b1b55sbzljqhqih25jrcjx5" - } - }, - "go-yaml": { - "yaml": { - "rev": "7ad95dd0798a40da1ccdff6dff35fd177b5edf40", - "sha256": "0d4jh46jq2yjg5dp00l7yl9ilhly7k4mfvi4harafd5ap5k9wnpb" - } - }, - "goamz": { - "goamz": { - "rev": "2a8fed5e89ab9e16210fc337d1aac780e8c7bbb7", - "sha256": "0rlinp0cvgw66qjndg4padr5s0wd3n7kjfggkx6czqj9bqaxcz4b" - } - }, - "gocql": { - "gocql": { - "rev": "53ea371a152ac188443fd3479f822ffecb0e9363", - "sha256": "0rqykhqgx7lrggcjyh053c3qddf130sgvsm27gndjv29rjrm874f" - } - }, - "godbus": { - "dbus": { - "rev": "a5942dec6340eb0d57f43f2003c190ce06e43dea", - "sha256": "1vk31wal7ncvjwvnb8q1myrkihv1np46f3q8dndi5k0csflbxxdf" - } - }, - "gogo": { - "protobuf": { - "rev": "932b70afa8b0bf4a8e167fdf0c3367cebba45903", - "sha256": "1djhv9ckqhyjnnqajjv8ivcwpmjdnml30l6zhgbjcjwdyz3nyzhx" - } - }, - "golang": { - "appengine": { - "rev": "72f4367c4f14a20a98dcc8b762953b40788407be", - "sha256": "1phjkb0f0xp08db3irbf5wzdsxzsddsig5wv70wvmnr44ijllh4f" - }, - "crypto": { - "rev": "575fdbe86e5dd89229707ebec0575ce7d088a4a6", - "sha256": "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa" - }, - "glog": { - "rev": "fca8c8854093a154ff1eb580aae10276ad6b1b5f", - "sha256": "1nr2q0vas0a2f395f4shjxqpas18mjsf8yhgndsav7svngpbbpg8" - }, - "groupcache": { - "rev": "604ed5785183e59ae2789449d89e73f3a2a77987", - "sha256": "1jh862mmgss71wls4yxv633agr7dk7y6h36npwqxbmhbz5c2q28l" - }, - "image": { - "rev": "8ab1ac6834edd43d91cbe24272897a87ce7e835e", - "sha256": "1ckr7yh5dx2kbvp9mis7i090ss9qcz46sazrj9f2hw4jj5g3y7dr" - }, - "lint": { - "rev": "7b7f4364ff76043e6c3610281525fabc0d90f0e4", - "sha256": "1bj7zv534hyh87bp2vsbhp94qijc5nixb06li1dzfz9n0wcmlqw9" - }, - "net": { - "rev": "ea47fc708ee3e20177f3ca3716217c4ab75942cb", - "sha256": "0x1pmg97n7l62vak9qnjdjrrfl98jydhv6j0w3jkk4dycdlzn30d" - }, - "oauth2": { - "rev": "397fe7649477ff2e8ced8fc0b2696f781e53745a", - "sha256": "0fza0l7iwh6llkq2yzqn7dxi138vab0da64lnghfj1p71fprjzn8" - }, - "protobuf": { - "rev": "59b73b37c1e45995477aae817e4a653c89a858db", - "sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa" - }, - "snappy": { - "rev": "723cc1e459b8eea2dea4583200fd60757d40097a", - "sha256": "0bprq0qb46f5511b5scrdqqzskqqi2z8b4yh3216rv0n1crx536h" - }, - "sys": { - "rev": "d9157a9621b69ad1d8d77a1933590c416593f24f", - "sha256": "1asdbp7rj1j1m1aar1a022wpcwbml6zih6cpbxaw7b2m8v8is931" - }, - "text": { - "rev": "5eb8d4684c4796dd36c74f6452f2c0fa6c79597e", - "sha256": "1cjwm2pv42dbfqc6ylr7jmma902zg4gng5aarqrbjf1k2nf2vs14" - }, - "tools": { - "rev": "b48dc8da98ae78c3d11f220e7d327304c84e623a", - "sha256": "187p3jjxrw2qjnzqwwrq7f9w10zh6vcnwnfl3q7ms8rbiffpjy5c" - } - }, - "google": { - "codesearch": { - "rev": "a45d81b686e85d01f2838439deaf72126ccd5a96", - "sha256": "12bv3yz0l3bmsxbasfgv7scm9j719ch6pmlspv4bd4ix7wjpyhny" - }, - "git-appraise": { - "rev": "v0.3", - "sha256": "124hci9whsvlcywsfz5y20kkj3nhy176a1d5s1lkvsga09yxq6wm" - }, - "go-github": { - "rev": "34fb8ee07214d23c3035c95691fe9069705814d6", - "sha256": "0ygh0f6p679r095l4bym8q4l45w2l3d8r3hx9xrnnppxq59i2395" - }, - "go-querystring": { - "rev": "547ef5ac979778feb2f760cdb5f4eae1a2207b86", - "sha256": "00ani7fhydcmlsm3n93nmj1hcqp2wmzvihnb1gdzynif1hw0530y" - }, - "google-api-go-client": { - "rev": "a5c3e2a4792aff40e59840d9ecdff0542a202a80", - "sha256": "1kigddnbyrl9ddpj5rs8njvf1ck54ipi4q1282k0d6b3am5qfbj8" - } - }, - "gorilla": { - "context": { - "rev": "215affda49addc4c8ef7e2534915df2c8c35c6cd", - "sha256": "1ybvjknncyx1f112mv28870n0l7yrymsr0861vzw10gc4yn1h97g" - }, - "mux": { - "rev": "5a8a0400500543e28b2886a8c52d21a435815411", - "sha256": "15w1bw14vx157r6v98fhy831ilnbzdsm5xzvs23j8hw6gnknzaw1" - }, - "websocket": { - "rev": "6eb6ad425a89d9da7a5549bc6da8f79ba5c17844", - "sha256": "0gljdfxqc94yb1kpqqrm5p94ph9dsxrzcixhdj6m92cwwa7z7p99" - } - }, - "gosuri": { - "uilive": { - "rev": "1b9b73fa2b2cc24489b1aba4d29a82b12cd0a71f", - "sha256": "0669f21hd5cw74irrfakdpvxn608cd5xy6s2nyp5kgcy2ijrq4ab" - }, - "uiprogress": { - "rev": "fd1c82df78a6c1f5ddbd3b6ec46407ea0acda1ad", - "sha256": "1s61vp2h6n1d8y1zqr2ca613ch5n18rx28waz6a8im94sgzzawp7" - } - }, - "grpc": { - "grpc-go": { - "rev": "d455e65570c07e6ee7f23275063fbf34660ea616", - "sha256": "08vra95hc8ihnj353680zhiqrv3ssw5yywkrifzb1zwl0l3cs2hr" - } - }, - "hanwen": { - "go-fuse": { - "rev": "324ea173d0a4d90e0e97c464a6ad33f80c9587a8", - "sha256": "0r5amgnpb4g7b6kpz42vnj01w515by4yhy64s5lqf3snzjygaycf" - }, - "go-mtpfs": { - "rev": "3ef47f91c38cf1da3e965e37debfc81738e9cd94", - "sha256": "1f7lcialkpkwk01f7yxw77qln291sqjkspb09mh0yacmrhl231g8" - }, - "usb": { - "rev": "69aee4530ac705cec7c5344418d982aaf15cf0b1", - "sha256": "01k0c2g395j65vm1w37mmrfkg6nm900khjrrizzpmx8f8yf20dky" - } - }, - "hashicorp": { - "aws-sdk-go": { - "rev": "e6ea0192eee4640f32ec73c0cbb71f63e4f2b65a", - "sha256": "1qrc2jl38marbarnl31sag7s0h18j2wx1cxkcqin5m1pqg62p4cn" - }, - "consul": { - "rev": "v0.5.2", - "sha256": "0p3lc1p346a5ipvkf15l94gn1ml3m7zz6bx0viark3hsv0a7iij7" - }, - "consul-migrate": { - "rev": "678fb10cdeae25ab309e99e655148f0bf65f9710", - "sha256": "18zqyzbc3pny700fnh4hi45i5mlsramqykikcr7lgyx7id6alf16" - }, - "consul-template": { - "rev": "v0.9.0", - "sha256": "1k64rjskzn7cxn7rxab978847jq8gr4zj4cnzgznhn44nzasgymj" - }, - "errwrap": { - "rev": "7554cd9344cec97297fa6649b055a8c98c2a1e55", - "sha256": "0kmv0p605di6jc8i1778qzass18m0mv9ks9vxxrfsiwcp4la82jf" - }, - "go-checkpoint": { - "rev": "88326f6851319068e7b34981032128c0b1a6524d", - "sha256": "1npasn9lmvx57nw3wkswwvl5k0wmn01jpalbwv832x5wq4r0nsz4" - }, - "go-multierror": { - "rev": "56912fb08d85084aa318edcf2bba735b97cf35c5", - "sha256": "0s01cqdab2f7fxkkjjk2wqx05a1shnwlvfn45h2pi3i4gapvcn0r" - }, - "go-syslog": { - "rev": "42a2b573b664dbf281bd48c3cc12c086b17a39ba", - "sha256": "1j53m2wjyczm9m55znfycdvm4c8vfniqgk93dvzwy8vpj5gm6sb3" - }, - "golang-lru": { - "rev": "7f9ef20a0256f494e24126014135cf893ab71e9e", - "sha256": "165x0p8plr3fwn4r1d11m3pxa3r8dhyk98z7x6ah35lf63jm2cwv" - }, - "hcl": { - "rev": "54864211433d45cb780682431585b3e573b49e4a", - "sha256": "07l2dydzjpdgm2d4a72hkmincn455j3nrafg6hs3c23bkvizj950" - }, - "logutils": { - "rev": "0dc08b1671f34c4250ce212759ebd880f743d883", - "sha256": "0rynhjwvacv9ibl2k4fwz0xy71d583ac4p33gm20k9yldqnznc7r" - }, - "mdns": { - "rev": "2b439d37011456df8ff83a70ffd1cd6046410113", - "sha256": "17zwk212zmyramnjylpvvrvbbsz0qb5crkhly6yiqkyll3qzpb96" - }, - "memberlist": { - "rev": "6025015f2dc659ca2c735112d37e753bda6e329d", - "sha256": "01s2gwnbgvwz4wshz9d4za0p12ji4fnapnlmz3jwfcmcwjpyqfb7" - }, - "net-rpc-msgpackrpc": { - "rev": "d377902b7aba83dd3895837b902f6cf3f71edcb2", - "sha256": "05q8qlf42ygafcp8zdyx7y7kv9vpjrxnp8ak4qcszz9kgl2cg969" - }, - "raft": { - "rev": "a8065f298505708bf60f518c09178149f3c06f21", - "sha256": "122mjijphas7ybbvssxv1r36sb8i907gdr9kvplnx6yg9w52j3mn" - }, - "raft-boltdb": { - "rev": "d1e82c1ec3f15ee991f7cc7ffd5b67ff6f5bbaee", - "sha256": "0p609w6x0h6bapx4b0d91dxnp2kj7dv0534q4blyxp79shv2a8ia" - }, - "raft-mdb": { - "rev": "4ec3694ffbc74d34f7532e70ef2e9c3546a0c0b0", - "sha256": "15l4n6zygwn3h118m2945h9jxkryaxxcgy8xij2rxjhzrzpfyj3i" - }, - "scada-client": { - "rev": "c26580cfe35393f6f4bf1b9ba55e6afe33176bae", - "sha256": "0s8xg49fa7d2d0vv8pi37f43rjrgkb7w6x6ydkikz1v8ccg05p3b" - }, - "serf": { - "rev": "668982d8f90f5eff4a766583c1286393c1d27f68", - "sha256": "1h05h5xhaj27r1mh5zshnykax29lqjhfc0bx4v9swiwb873c24qk" - }, - "vault": { - "rev": "v0.2.0", - "sha256": "133fwhzk8z3xb6mf6scmn5rbl6g4vqg4g4n6zw620fsn9wy1b9ni" - }, - "yamux": { - "rev": "b2e55852ddaf823a85c67f798080eb7d08acd71d", - "sha256": "0mr87my5m8lgc0byjcddlclxg34d07cpi9p78ps3rhzq7p37g533" - } - }, - "howeyc": { - "gopass": { - "rev": "10b54de414cc9693221d5ff2ae14fd2fbf1b0ac1", - "sha256": "0lsi89zx1i2f5vhm66zqn2drs7xi7ff8r1xlp6m58r99dddws57s" - } - }, - "ikawaha": { - "kagome": { - "rev": "1bbdbdd590e13a8c2f4508c67a079113cd7b9f51", - "sha256": "1isnjdkn9hnrkp5g37p2k5bbsrx0ma32v3icwlmwwyc5mppa4blb" - } - }, - "inconshreveable": { - "go-update": { - "rev": "d8b0b1d421aa1cbf392c05869f8abbc669bb7066", - "sha256": "0cvkik2w368fzimx3y29ncfgw7004qkbdf2n3jy5czvzn35q7dpa" - }, - "go-vhost": { - "rev": "c4c28117502e4bf00960c8282b2d1c51c865fe2c", - "sha256": "1rway6sls6fl2s2jk20ajj36rrlzh9944ncc9pdd19kifix54z32" - }, - "log15": { - "rev": "dc7890abeaadcb6a79a9a5ee30bc1897bbf97713", - "sha256": "15wgicl078h931n90rksgbqmfixvbfxywk3m8qkaln34v69x4vgp" - }, - "mousetrap": { - "rev": "9dbb96d2c3a964935b0870b5abaea13c98b483aa", - "sha256": "1f9g8vm18qv1rcb745a4iahql9vfrz0jni9mnzriab2wy1pfdl5b" - }, - "muxado": { - "rev": "f693c7e88ba316d1a0ae3e205e22a01aa3ec2848", - "sha256": "1vgiwwxhgx9c899f6ikvrs0w6vfsnypzalcqyr0mqm2w816r9hhs" - }, - "ngrok": { - "rev": "1.7.1", - "sha256": "1r4nc9knp0nxg4vglg7v7jbyd1nh1j2590l720ahll8a4fbsx5a4" - } - }, - "influxdb": { - "gomdb": { - "rev": "29fe330c5ab33c4e48470bd4b980bf522471190a", - "sha256": "0yg1jpr7lcaqh6i8n9wbs9r128kk541qjv06r9a6fp9vj56rqr3m" - }, - "influxdb": { - "rev": "v0.8.8", - "sha256": "0xpigp76rlsxqj93apjzkbi98ha5g4678j584l6hg57p711gqsdv" - } - }, - "inversepath": { - "interlock": { - "rev": "v2016.01.14", - "sha256": "0wabx6vqdxh2aprsm2rd9mh71q7c2xm6xk9a6r1bn53r9dh5wrsb" - } - }, - "ipfs": { - "go-ipfs": { - "rev": "7070b4d878baad57dcc8da80080dd293aa46cabd", - "sha256": "1b7aimnbz287fy7p27v3qdxnz514r5142v3jihqxanbk9g384gcd" - } - }, - "jacobsa": { - "oglematchers": { - "rev": "4fc24f97b5b74022c2a3f4ca7eed57ca29083d3e", - "sha256": "1jjvss4cmcd505aqhsyag15lmzjycgwwml9mfdigprxv3v8f3pnq" - }, - "oglemock": { - "rev": "d054ecee522bdce4481690cdeb09d1b4c44da4e1", - "sha256": "1sn6hj34c54x0svr68vcgm2l725x03ccpq6h3ypi3hrvzg349ykw" - }, - "ogletest": { - "rev": "7de485607c3f215cf92c1f793b5d5a7de46ec3c7", - "sha256": "0y4y20a84rhmp66x9d7nzlygiabky98wlbvx56h1hknm08gpskiz" - } - }, - "janimo": { - "textsecure": { - "rev": "505e129c42fc4c5cb2d105520cef7c04fa3a6b64", - "sha256": "0sdcqd89dlic0bllb6mjliz4x54rxnm1r3xqd5qdp936n7xs3mc6" - } - }, - "jehiah": { - "json2csv": { - "rev": "d82e60e6dc2a7d3bcf15314d1ecbebeffaacf0c6", - "sha256": "1fw0qqaz2wj9d4rj2jkfj7rb25ra106p4znfib69p4d3qibfjcsn" - } - }, - "jessevdk": { - "go-flags": { - "rev": "1b89bf73cd2c3a911d7b2a279ab085c4a18cf539", - "sha256": "027nglc5xx1cm03z9sisg0iqrhwcj6gh5z254rrpl8p4fwrxx680" - } - }, - "jmhodges": { - "levigo": { - "rev": "1ddad808d437abb2b8a55a950ec2616caa88969b", - "sha256": "1lmafyk7nglhig3n471jq4hmnqf45afj5ldb2jx0253f5ii4r2yq" - } - }, - "joho": { - "godotenv": { - "rev": "4ed13390c0acd2ff4e371e64d8b97c8954138243", - "sha256": "1wzgws4dnlavi14aw3jzdl3mdr348skgqaq8xx4j8l68irfqyh0p" - } - }, - "jstemmer": { - "gotags": { - "rev": "be986a34e20634775ac73e11a5b55916085c48e7", - "sha256": "071wyq90b06xlb3bb0l4qjz1gf4nnci4bcngiddfcxf2l41w1vja" - } - }, - "jteeuwen": { - "go-bindata": { - "rev": "a0ff2567cfb70903282db057e799fd826784d41d", - "sha256": "0d6zxv0hgh938rf59p1k5lj0ymrb8kcps2vfrb9kaarxsvg7y69v" - } - }, - "jtolds": { - "gls": { - "rev": "9a4a02dbe491bef4bab3c24fd9f3087d6c4c6690", - "sha256": "1gvgkx7llklz6plapb95fcql7d34i6j7anlvksqhdirpja465jnm" - } - }, - "juju": { - "ratelimit": { - "rev": "772f5c38e468398c4511514f4f6aa9a4185bc0a0", - "sha256": "02rs61ay6sq499lxxszjsrxp33m6zklds1xrmnr5fk73vpqfa28p" - } - }, - "julienschmidt": { - "httprouter": { - "rev": "6aacfd5ab513e34f7e64ea9627ab9670371b34e7", - "sha256": "00rrjysmq898qcrf2hfwfh9s70vwvmjx2kp5w03nz1krxa4zhrkl" - } - }, - "junegunn": { - "fzf": { - "rev": "0.11.1", - "sha256": "1zw1kq4d5sb1qia44q04i33yii9qwlwlwz8vxhln03d4631mhsra" - }, - "go-runewidth": { - "rev": "travisish", - "sha256": "07d612val59sibqly5d6znfkp4h4gjd77783jxvmiq6h2fwb964k" - }, - "go-shellwords": { - "rev": "35d512af75e283aae4ca1fc3d44b159ed66189a4", - "sha256": "c792abe5fda48d0dfbdc32a84edb86d884a0ccbd9ed49ad48a30cda5ba028a22" - } - }, - "kamilchm": { - "go2nix": { - "rev": "4c552dadd855e3694ed3499feb46dca9cd855f60", - "sha256": "1pwnm1vrjxvgl17pk9n1k5chmhgwxkrwp2s1bzi64xf12anibj63" - } - }, - "kardianos": { - "osext": { - "rev": "29ae4ffbc9a6fe9fb2bc5029050ce6996ea1d3bc", - "sha256": "1mawalaz84i16njkz6f9fd5jxhcbxkbsjnav3cmqq2dncv2hyv8a" - } - }, - "kelseyhightower": { - "confd": { - "rev": "v0.9.0", - "sha256": "0rz533575hdcln8ciqaz79wbnga3czj243g7fz8869db6sa7jwlr" - } - }, - "kimor79": { - "gollectd": { - "rev": "cf6dec97343244b5d8a5485463675d42f574aa2d", - "sha256": "1f3ml406cprzjc192csyr2af4wcadkc74kg8n4c0zdzglxxfsqxa" - } - }, - "kothar": { - "go-backblaze": { - "rev": "373819725fc560fa962c6cd883b533d2ebec4844", - "sha256": "1kmlwfnnfd4h46bb9pz2gw1hxqm1pzkwvidfmnc0zkrilaywk6fx" - } - }, - "kr": { - "binarydist": { - "rev": "9955b0ab8708602d411341e55fffd7e0700f86bd", - "sha256": "11wncbbbrdcxl5ff3h6w8vqfg4bxsf8709mh6vda0cv236flkyn3" - }, - "pretty": { - "rev": "bc9499caa0f45ee5edb2f0209fbd61fbf3d9018f", - "sha256": "1m61y592qsnwsqn76v54mm6h2pcvh4wlzbzscc1ag645x0j33vvl" - }, - "pty": { - "rev": "67e2db24c831afa6c64fc17b4a143390674365ef", - "sha256": "1l3z3wbb112ar9br44m8g838z0pq2gfxcp5s3ka0xvm1hjvanw2d" - }, - "text": { - "rev": "6807e777504f54ad073ecef66747de158294b639", - "sha256": "1wkszsg08zar3wgspl9sc8bdsngiwdqmg3ws4y0bh02sjx5a4698" - } - }, - "kylelemons": { - "go-gypsy": { - "rev": "42fc2c7ee9b8bd0ff636cd2d7a8c0a49491044c5", - "sha256": "04iy8rdk19n7i18bqipknrcb8lsy1vr4d1iqyxsxq6rmb7298iwj" - } - }, - "lib": { - "pq": { - "rev": "0dad96c0b94f8dee039aa40467f767467392a0af", - "sha256": "06c38iy37251mh8jy9s8n97b01pjnqpq8ii77nnmqh1dsph37jz4" - } - }, - "lsegal": { - "gucumber": { - "rev": "e8116c9c66e641e9f81fc0a79fac923dfc646378", - "sha256": "1ic1lsv05da6qv8xmf94lpbmaisxi8mwbv7bh2k1y78lh43yncah" - } - }, - "lxc": { - "go-lxc": { - "rev": "a0fa4019e64b385dfa2fb8abcabcdd2f66871639", - "sha256": "0fkkmn7ynmzpr7j0ha1qsmh3k86ncxcbajmcb90hs0k0iaaiaahz" - }, - "lxd": { - "rev": "lxd-0.17", - "sha256": "1yi3dr1bgdplc6nya10k5jsj3psbf3077vqad8x8cjza2z9i48fp" - } - }, - "magiconair": { - "properties": { - "rev": "v1.5.6", - "sha256": "043jhba7qbbinsij3yc475s1i42sxaqsb82mivh9gncpvnmnf6cl" - } - }, - "mailgun": { - "vulcand": { - "rev": "v0.8.0-beta.3", - "sha256": "08mal9prwlsav63r972q344zpwqfql6qw6v4ixbn1h3h32kk3ic6" - } - }, - "martingallagher": { - "gawp": { - "rev": "488705639109de54d38974cc31353d34cc2cd609", - "sha256": "0iqqd63nqdijdskdb9f0jwnm6akkh1p2jw4p2w7r1dbaqz1znyay" - } - }, - "mattn": { - "go-colorable": { - "rev": "40e4aedc8fabf8c23e040057540867186712faa5", - "sha256": "0pwc0s5lvz209dcyamv1ba1xl0c1r5hpxwlq0w5j2xcz8hzrcwkl" - }, - "go-isatty": { - "rev": "ae0b1f8f8004be68d791a576e3d8e7648ab41449", - "sha256": "0qrcsh7j9mxcaspw8lfxh9hhflz55vj4aq1xy00v78301czq6jlj" - }, - "go-sqlite3": { - "rev": "b4142c444a8941d0d92b0b7103a24df9cd815e42", - "sha256": "0xq2y4am8dz9w9aaq24s1npg1sn8pf2gn4nki73ylz2fpjwq9vla" - }, - "goreman": { - "rev": "d3e62509ccf23e47a390447886c51b1d89d0934b", - "sha256": "153hf4dq4jh1yv35pv30idmxhc917qzl590qy5394l48d4rapgb5" - } - }, - "matttproud": { - "golang_protobuf_extensions": { - "rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a", - "sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj" - } - }, - "mesos": { - "mesos-go": { - "rev": "d98afa618cc9a9251758916f49ce87f9051b69a4", - "sha256": "01ab0jf3cfb1rdwwb21r38rcfr5vp86pkfk28mws8298mlzbpri7" - } - }, - "mesosphere": { - "mesos-dns": { - "rev": "v0.1.2", - "sha256": "0zs6lcgk43j7jp370qnii7n55cd9pa8gl56r8hy4nagfvlvrcm02" - } - }, - "michaelmacinnis": { - "adapted": { - "rev": "eaea06aaff855227a71b1c58b18bc6de822e3e77", - "sha256": "0f28sn5mj48087zhjdrph2sjcznff1i1lwnwplx32bc5ax8nx5xm" - }, - "oh": { - "rev": "f3e482f664e76dcf98d5f94dd93c216da300b78e", - "sha256": "1j5g37jjl1kxri44ihb1bsrzx4al07dvl4s5dglb2m7bjia6iqs2" - } - }, - "miekg": { - "dns": { - "rev": "e59f851c912767b1db587dcabee6e6652e495c75", - "sha256": "1zcj4drmmskwvjy5ld54qd8a34ls9651ysl3q7c2bcambax5r0hp" - }, - "mmark": { - "rev": "eacb2132c31a489033ebb068432892ba791a2f1b", - "sha256": "0wsi6fb6f1qi1a8yv858bkgn8pmsspw2k6dx5fx38kvg8zsb4l1a" - } - }, - "mitchellh": { - "cli": { - "rev": "8102d0ed5ea2709ade1243798785888175f6e415", - "sha256": "08mj1l94pww72jy34gk9a483hpic0rrackskfw13r3ycy997w7m2" - }, - "copystructure": { - "rev": "6fc66267e9da7d155a9d3bd489e00dad02666dc6", - "sha256": "193s5vhw68d8npjyf5yvc5j24crazvy7d5dk316hl7590qrmbxrd" - }, - "go-homedir": { - "rev": "1f6da4a72e57d4e7edd4a7295a585e0a3999a2d4", - "sha256": "1l5lrsjrnwxn299mhvyxvz8hd0spkx0d31gszm4cyx21bg1xsiy9" - }, - "gox": { - "rev": "e8e6fd4fe12510cc46893dff18c5188a6a6dc549", - "sha256": "14jb2vgfr6dv7zlw8i3ilmp125m5l28ljv41a66c9b8gijhm48k1" - }, - "iochan": { - "rev": "b584a329b193e206025682ae6c10cdbe03b0cd77", - "sha256": "1fcwdhfci41ibpng2j4c1bqfng578cwzb3c00yw1lnbwwhaq9r6b" - }, - "mapstructure": { - "rev": "281073eb9eb092240d33ef253c404f1cca550309", - "sha256": "1zjx9fv29639sp1fn84rxs830z7gp7bs38yd5y1hl5adb8s5x1mh" - }, - "reflectwalk": { - "rev": "eecf4c70c626c7cfbb95c90195bc34d386c74ac6", - "sha256": "1nm2ig7gwlmf04w7dbqd8d7p64z2030fnnfbgnd56nmd7dz8gpxq" - } - }, - "mongodb": { - "mongo-tools": { - "rev": "4fcfd3e57415de95c0c016def07b95bca63cccb4", - "sha256": "0rm7bnb81hr0byxhvagwv8an1bky882nz68cmm2kbznzyprvhyaa" - } - }, - "mreiferson": { - "go-options": { - "rev": "7c174072188d0cfbe6f01bb457626abb22bdff52", - "sha256": "0ksyi2cb4k6r2fxamljg42qbz5hdcb9kv5i7y6cx4ajjy0xznwgm" - }, - "go-snappystream": { - "rev": "028eae7ab5c4c9e2d1cb4c4ca1e53259bbe7e504", - "sha256": "0jdd5whp74nvg35d9hzydsi3shnb1vrnd7shi9qz4wxap7gcrid6" - } - }, - "nsf": { - "gocode": { - "rev": "680a0fbae5119fb0dbea5dca1d89e02747a80de0", - "sha256": "1ay2xakz4bcn8r3ylicbj753gjljvv4cj9l4wfly55cj1vjybjpv" - }, - "termbox-go": { - "rev": "9aecf65084a5754f12d27508fa2e6ed56851953b", - "sha256": "16sak07bgvmax4zxfrd4jia1dgygk733xa8vk8cdx28z98awbfsh" - } - }, - "nsqio": { - "go-nsq": { - "rev": "v1.0.4", - "sha256": "06hrkwk84w8rshkanvfgmgbiml7n06ybv192dvibhwgk2wz2dl46" - } - }, - "odeke-em": { - "cache": { - "rev": "b51b08cb6cf889deda6c941a5205baecfd16f3eb", - "sha256": "1rmm1ky7irqypqjkk6qcd2n0xkzpaggdxql9dp9i9qci5rvvwwd4" - }, - "cli-spinner": { - "rev": "610063bb4aeef25f7645b3e6080456655ec0fb33", - "sha256": "13wzs2qrxd72ah32ym0ppswhvyimjw5cqaq3q153y68vlvxd048c" - }, - "command": { - "rev": "91ca5ec5e9a1bc2668b1ccbe0967e04a349e3561", - "sha256": "1ghckzr8h99ckagpmb15p61xazdjmf9mjmlym634hsr9vcj84v62" - }, - "drive": { - "rev": "6dc2f1e83032ea3911fa6147b846ee93f18dc544", - "sha256": "07s4nhfcr6vznf1amvl3a4wq2hn9zq871rcppfi4i6zs7iw2ay1v" - }, - "dts": { - "rev": "ec2daabf2f9078e887405f7bcddb3d79cb65502d", - "sha256": "0vq3cz4ab9vdsz9s0jjlp7z27w218jjabjzsh607ps4i8m5d441s" - }, - "exponential-backoff": { - "rev": "96e25d36ae36ad09ac02cbfe653b44c4043a8e09", - "sha256": "1as21p2jj8xpahvdxqwsw2i1s3fll14dlc9j192iq7xl1ybwpqs6" - }, - "extractor": { - "rev": "801861aedb854c7ac5e1329e9713023e9dc2b4d4", - "sha256": "036zmnqxy48h6mxiwywgxix2p4fqvl4svlmcp734ri2rbq3cmxs1" - }, - "google-api-go-client": { - "rev": "30f4c144b02321ebbc712f35dc95c3e72a5a7fdc", - "sha256": "1fidlljxnd82i2r9yia0b9gh0vv3hwb5k65papnvw7sqpc4sriby" - }, - "log": { - "rev": "cad53c4565a0b0304577bd13f3862350bdc5f907", - "sha256": "059c933qjikxlvaywzpzljqnab19svymbv6x32pc7khw156fh48w" - }, - "meddler": { - "rev": "d2b51d2b40e786ab5f810d85e65b96404cf33570", - "sha256": "0m0fqrn3kxy4swyk4ja1y42dn1i35rq9j85y11wb222qppy2342x" - }, - "pretty-words": { - "rev": "9d37a7fcb4ae6f94b288d371938482994458cecb", - "sha256": "1466wjhrg9lhqmzil1vf8qj16fxk32b5kxlcccyw2x6dybqa6pkl" - }, - "ripper": { - "rev": "bd1a682568fcb8a480b977bb5851452fc04f9ccb", - "sha256": "010jsclnmkaywdlyfqdmq372q7kh3qbz2zra0c4wn91qnkmkrnw1" - }, - "statos": { - "rev": "f27d6ab69b62abd9d9fe80d355e23a3e45d347d6", - "sha256": "17cpks8bi9i7p8j38x0wy60jb9g39wbzszcmhx4hlq6yzxr04jvs" - }, - "xon": { - "rev": "d580be739d723da4f6378083128f93017b8ab295", - "sha256": "07a7zj01d4a23xqp01m48jp2v5mw49islf4nbq2rj13sd5w4s6sc" - } - }, - "olekukonko": { - "tablewriter": { - "rev": "bc39950e081b457853031334b3c8b95cdfe428ba", - "sha256": "0n4gqjc2dqmnbpqgi9i8vrwdk4mkgyssc7l2n4r5bqx0n3nxpbps" - } - }, - "onsi": { - "ginkgo": { - "rev": "5ed93e443a4b7dfe9f5e95ca87e6082e503021d2", - "sha256": "0ghrx5qmgvgb8cbvsj53v1ir4j9agilg4wyhpk5ikqdv6mmqly4h" - }, - "gomega": { - "rev": "8adf9e1730c55cdc590de7d49766cb2acc88d8f2", - "sha256": "1rf6cxn50d1pji3pv4q372s395r5nxwcgp405z2r2mfdkri4v3w4" - } - }, - "opennota": { - "urlesc": { - "rev": "5fa9ff0392746aeae1c4b37fcc42c65afa7a9587", - "sha256": "0dppkmfs0hb5vcqli191x9yss5vvlx29qxjcywhdfirc89rn0sni" - } - }, - "opsgenie": { - "opsgenie-go-sdk": { - "rev": "c6e1235dfed2126eb9b562c4d776baf55ccd23e3", - "sha256": "1prvnjiqmhnp9cggp9f6882yckix2laqik35fcj32117ry26p4jm" - } - }, - "paulrosania": { - "go-charset": { - "rev": "61cdee49014dc952076b5852ce4707137eb36b64", - "sha256": "0jp6rwxlgl66dipk6ssk8ly55jxncvsxs7jc3abgdrhr3rzccab8" - } - }, - "pborman": { - "uuid": { - "rev": "cccd189d45f7ac3368a0d127efb7f4d08ae0b655", - "sha256": "0hswk9ihv3js5blp9pk2bpig64zkmyp5p1zhmgydfhb0dr2w8iad" - } - }, - "peterbourgon": { - "g2s": { - "rev": "ec76db4c1ac16400ac0e17ca9c4840e1d23da5dc", - "sha256": "1p4p8755v2nrn54rik7yifpg9szyg44y5rpp0kryx4ycl72307rj" - } - }, - "peterh": { - "liner": { - "rev": "ad1edfd30321d8f006ccf05f1e0524adeb943060", - "sha256": "0c24d9j1gnq7r982h1l2isp3d37379qw155hr8ihx9i2mhpfz317" - } - }, - "pmezard": { - "go-difflib": { - "rev": "d8ed2627bdf02c080bf22230dbb337003b7aba2d", - "sha256": "0w1jp4k4zbnrxh3jvh8fgbjgqpf2hg31pbj8fb32kh26px9ldpbs" - } - }, - "pmylund": { - "go-cache": { - "rev": "93d85800f2fa6bd0a739e7bd612bfa3bc008b72d", - "sha256": "08wfwm7nk381lv6a95p0hfgqwaksn0vhzz1xxdncjdw6w71isyy7" - } - }, - "prometheus": { - "alertmanager": { - "rev": "0.1.0", - "sha256": "1ya465bns6cj2lqbipmfm13wz8kxii5h9mm7lc0ba1xv26xx5zs7" - }, - "client_golang": { - "rev": "0.7.0", - "sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna" - }, - "client_model": { - "rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6", - "sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9" - }, - "collectd_exporter": { - "rev": "0.1.0", - "sha256": "165zsdn0lffb6fvxz75szmm152a6wmia5skb96k1mv59qbmn9fi1" - }, - "haproxy_exporter": { - "rev": "0.4.0", - "sha256": "0cwls1d4hmzjkwc50mjkxjb4sa4q6yq581wlc5sg9mdvl6g91zxr" - }, - "log": { - "rev": "439e5db48fbb50ebbaf2c816030473a62f505f55", - "sha256": "1fl23gsw2hn3c1y91qckr661sybqcw2gqnd1gllxn3hp6p2w6hxv" - }, - "mesos_exporter": { - "rev": "0.1.0", - "sha256": "059az73j717gd960g4jigrxnvqrjh9jw1c324xpwaafa0bf10llm" - }, - "mysqld_exporter": { - "rev": "0.1.0", - "sha256": "10xnyxyb6saz8pq3ijp424hxy59cvm1b5c9zcbw7ddzzkh1f6jd9" - }, - "node_exporter": { - "rev": "0.11.0", - "sha256": "149fs9yxnbiyd4ww7bxsv730mcskblpzb3cs4v12jnq2v84a4kk4" - }, - "procfs": { - "rev": "c91d8eefde16bd047416409eb56353ea84a186e4", - "sha256": "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r" - }, - "prom2json": { - "rev": "0.1.0", - "sha256": "0wwh3mz7z81fwh8n78sshvj46akcgjhxapjgfic5afc4nv926zdl" - }, - "prometheus": { - "rev": "0.17.0", - "sha256": "176198krna2i37dfhwsqi7m36sqn175yiny6n52vj27mc9s8ggzx" - }, - "prometheus_cli": { - "rev": "0.3.0", - "sha256": "1qxqrcbd0d4mrjrgqz882jh7069nn5gz1b84rq7d7z1f1dqhczxn" - }, - "pushgateway": { - "rev": "0.1.1", - "sha256": "17q5z9msip46wh3vxcsq9lvvhbxg75akjjcr2b29zrky8bp2m230" - }, - "statsd_bridge": { - "rev": "0.1.0", - "sha256": "1fndpmd1k0a3ar6f7zpisijzc60f2dng5399nld1i1cbmd8jybjr" - } - }, - "rakyll": { - "statik": { - "rev": "274df120e9065bdd08eb1120e0375e3dc1ae8465", - "sha256": "0llk7bxmk66wdiy42h32vj1jfk8zg351xq21hwhrq7gkfljghffp" - } - }, - "rcrowley": { - "go-metrics": { - "rev": "1ce93efbc8f9c568886b2ef85ce305b2217b3de3", - "sha256": "06gg72krlmd0z3zdq6s716blrga95pyj8dc2f2psfbknbkyrkfqa" - } - }, - "remyoudompheng": { - "go-liblzma": { - "rev": "e74be71c3c60411922b5424e875d7692ea638b78", - "sha256": "12lwjmdcv2l98097rhvjvd2yz8jl741hxcg29i1c18grwmwxa7nf" - } - }, - "restic": { - "restic": { - "rev": "4d7e802c44369b40177cd52938bc5b0930bd2be1", - "sha256": "0lf40539dy2xa5l1xy1kyn1vk3w0fmapa1h65ciksrdhn89ilrxv" - } - }, - "revel": { - "revel": { - "rev": "v0.12.0", - "sha256": "1g88fw5lqh3a9qmx182s64zk3h1s1mx8bljyghissmd9z505pbzf" - } - }, - "rfjakob": { - "gocryptfs": { - "rev": "v0.5", - "sha256": "0jsdz8y7a1fkyrfwg6353c9r959qbqnmf2cjh57hp26w1za5bymd" - } - }, - "robfig": { - "config": { - "rev": "0f78529c8c7e3e9a25f15876532ecbc07c7d99e6", - "sha256": "0xmxy8ay0wzd307x7xba3rmigvr6rjlpfk9fmn6ir2nc97ifv3i0" - }, - "go-cache": { - "rev": "9fc39e0dbf62c034ec4e45e6120fc69433a3ec51", - "sha256": "032nh3y43bpzpcm7bdkxfh55aydvzc2jzhigvy5gd9f648m4j9ha" - }, - "pathtree": { - "rev": "41257a1839e945fce74afd070e02bab2ea2c776a", - "sha256": "087hvskjx1zw815h1617i135vwsn5288v579mz6yral91wbn0kvi" - } - }, - "rogpeppe": { - "godef": { - "rev": "ea14e800fd7d16918be88dae9f0195f7bd688586", - "sha256": "1wkvsz8nqwyp36wbm8vcw4449sfs46894nskrfj9qbsrjijvamyc" - }, - "govers": { - "rev": "3b5f175f65d601d06f48d78fcbdb0add633565b9", - "sha256": "0din5a7nff6hpc4wg0yad2nwbgy4q1qaazxl8ni49lkkr4hyp8pc" - } - }, - "russross": { - "blackfriday": { - "rev": "d18b67ae0afd61dae240896eae1785f00709aa31", - "sha256": "1l78hz8k1ixry5fjw29834jz1q5ysjcpf6kx2ggjj1s6xh0bfzvf" - } - }, - "ryanuber": { - "columnize": { - "rev": "44cb4788b2ec3c3d158dd3d1b50aba7d66f4b59a", - "sha256": "1qrqr76cw58x2hkjic6h88na5ihgvkmp8mqapj8kmjcjzdxkzhr9" - } - }, - "samuel": { - "go-zookeeper": { - "rev": "5bb5cfc093ad18a28148c578f8632cfdb4d802e4", - "sha256": "1kpx1ymh7rds0b2km291idnyqi0zck74nd8hnk72crgz7wmpqv6z" - } - }, - "satori": { - "go.uuid": { - "rev": "6b8e5b55d20d01ad47ecfe98e5171688397c61e9", - "sha256": "0injxzds41v8nc0brvyrrjl66fk3hycz6im38s5r9ccbwlp68p44" - } - }, - "shiena": { - "ansicolor": { - "rev": "a5e2b567a4dd6cc74545b8a4f27c9d63b9e7735b", - "sha256": "0gwplb1b4fvav1vjf4b2dypy5rcp2w41vrbxkd1dsmac870cy75p" - } - }, - "shurcooL": { - "sanitized_anchor_name": { - "rev": "10ef21a441db47d8b13ebcc5fd2310f636973c77", - "sha256": "1cnbzcf47cn796rcjpph1s64qrabhkv5dn9sbynsy7m9zdwr5f01" - } - }, - "skratchdot": { - "open-golang": { - "rev": "c8748311a7528d0ba7330d302adbc5a677ef9c9e", - "sha256": "0qhn2d00v3m9fiqk9z7swdm599clc6j7rnli983s8s1byyp0x3ac" - } - }, - "skynetservices": { - "skydns": { - "rev": "2.5.2b", - "sha256": "01vac6bd71wky5jbd5k4a0x665bjn1cpmw7p655jrdcn5757c2lv" - } - }, - "smartystreets": { - "assertions": { - "rev": "1.5.0", - "sha256": "0i5d72mb4rp69qjlp2zpnwgpd3dximyx609np74ckrsgbcgr58jz" - }, - "goconvey": { - "rev": "1.5.0", - "sha256": "0i5d72mb4rp69qjlp2zpnwgpd3dximyx609np74ckrsgbcgr58jz" - } - }, - "soundcloud": { - "go-runit": { - "rev": "a9148323a615e2e1c93b7a9893914a360b4945c8", - "sha256": "00f2rfhsaqj2wjanh5qp73phx7x12a5pwd7lc0rjfv68l6sgpg2v" - } - }, - "spacemonkeygo": { - "flagfile": { - "rev": "871ce569c29360f95d7596f90aa54d5ecef75738", - "sha256": "1y6wf1s51c90qc1aki8qikkw1wqapzjzr690xrmnrngsfpdyvkrc" - }, - "openssl": { - "rev": "71f9da2a482c2b7bc3507c3fabaf714d6bb8b75d", - "sha256": "1byxwiq4mcbsj0wgaxqmyndp6jjn5gm8fjlsxw9bg0f33a3kn5jk" - }, - "spacelog": { - "rev": "ae95ccc1eb0c8ce2496c43177430efd61930f7e4", - "sha256": "1i1awivsix0ch0vg6rwvx0536ziyw6phcx45b1rmrclp6b6dyacy" - } - }, - "spf13": { - "afero": { - "rev": "90b5a9bd18a72dbf3e27160fc47acfaac6c08389", - "sha256": "1xqvbwny61j85psymcs8hggmqyyg4yq3q4cssnvnvbsl3aq8kn4k" - }, - "cast": { - "rev": "ee815aaf958c707ad07547cd62150d973710f747", - "sha256": "144xwvmjbrv59zjj1gnq5j9qpy62dgyfamxg5l3smdwfwa8vpf5i" - }, - "cobra": { - "rev": "ee6224d01f6a83f543ae90f881b703cf195782ba", - "sha256": "0skmq1lmkh2xzl731a2sfcnl2xbcy9v1050pcf10dahwqzsbx6ij" - }, - "fsync": { - "rev": "c2544e79b93fda5653255f907a30fba1c2ac2638", - "sha256": "0hzfk2f8pm756j10zgsk8b8gbfylcf8h6q4djz0ka9zpg76s26lz" - }, - "hugo": { - "rev": "v0.15", - "sha256": "1v0z9ar5kakhib3c3c43ddwd1ga4b8icirg6kk3cnaqfckd638l5" - }, - "jwalterweatherman": { - "rev": "c2aa07df593850a04644d77bb757d002e517a296", - "sha256": "0m8867afsvka5gp2idrmlarpjg7kxx7qacpwrz1wl8y3zxyn3945" - }, - "nitro": { - "rev": "24d7ef30a12da0bdc5e2eb370a79c659ddccf0e8", - "sha256": "143sbpx0jdgf8f8ayv51x6l4jg6cnv6nps6n60qxhx4vd90s6mib" - }, - "pflag": { - "rev": "08b1a584251b5b62f458943640fc8ebd4d50aaa5", - "sha256": "139d08cq06jia0arc6cikdnhnaqms07xfay87pzq5ym86fv0agiq" - }, - "viper": { - "rev": "e37b56e207dda4d79b9defe0548e960658ee8b6b", - "sha256": "0q0hkla23hgvc3ab6qdlrfwxa8lnhy2s2mh2c8zrh632gp8d6prl" - } - }, - "stathat": { - "go": { - "rev": "01d012b9ee2ecc107cb28b6dd32d9019ed5c1d77", - "sha256": "0mrn70wjfcs4rfkmga3hbfqmbjk33skcsc8pyqxp02bzpwdpc4bi" - } - }, - "steveyen": { - "gtreap": { - "rev": "0abe01ef9be25c4aedc174758ec2d917314d6d70", - "sha256": "03z5j8myrpmd0jk834l318xnyfm0n4rg15yq0d35y7j1aqx26gvk" - } - }, - "stgraber": { - "lxd-go-systemd": { - "rev": "a3dcd1d0480ee0ae9ec354f1632202bfba715e03", - "sha256": "006dhy3j8ld0kycm8hrjxvakd7xdn1b6z2dsjp1l4sqrxdmm188w" - } - }, - "stretchr": { - "objx": { - "rev": "cbeaeb16a013161a98496fad62933b1d21786672", - "sha256": "1xn7iibjik77h6h0jilfvcjkkzaqz45baf44p3rb2i03hbmkqkp1" - }, - "testify": { - "rev": "089c7181b8c728499929ff09b62d3fdd8df8adff", - "sha256": "03dzxkxbs298pvfsjz4kdadfaf9jkzsdhshqmg4p12wbyaj09s4p" - } - }, - "syncthing": { - "protocol": { - "rev": "84365882de255d2204d0eeda8dee288082a27f98", - "sha256": "07xjs43lpd51pc339f8x487yhs39riysj3ifbjxsx329kljbflwx" - }, - "relaysrv": { - "rev": "7fe1fdd8c751df165ea825bc8d3e895f118bb236", - "sha256": "0qy14pa0z2dq5mix5ylv2raabwxqwj31g5kkz905wzki6d4j5lnp" - }, - "syncthing": { - "rev": "v0.12.19", - "sha256": "11ij8whaqrrzriavxa08jpsmbd1zkc2qxsni1nbgszw2hymmv38g" - } - }, - "syndtr": { - "goleveldb": { - "rev": "1a9d62f03ea92815b46fcaab357cfd4df264b1a0", - "sha256": "04ywbif36fiah4fw0x2abr5q3p4fdhi6q57d5icc2mz03q889vhb" - }, - "gosnappy": { - "rev": "ce8acff4829e0c2458a67ead32390ac0a381c862", - "sha256": "0ywa52kcii8g2a9lbqcx8ghdf6y56lqq96sl5nl9p6h74rdvmjr7" - } - }, - "tbruyelle": { - "hipchat-go": { - "rev": "1dd13e154219c15e2611fe46adbb6bf65db419b7", - "sha256": "060wg5yjlh28v03mvm80kwgxyny6cyj7zjpcdg032b8b1sz9z81s" - } - }, - "thejerf": { - "suture": { - "rev": "v1.0.1", - "sha256": "094ksr2nlxhvxr58nbnzzk0prjskb21r86jmxqjr3rwg4rkwn6d4" - } - }, - "thorduri": { - "pushover": { - "rev": "a8420a1935479cc266bda685cee558e86dad4b9f", - "sha256": "0j4k43ppka20hmixlwhhz5mhv92p6wxbkvdabs4cf7k8jpk5argq" - } - }, - "tobi": { - "airbrake-go": { - "rev": "5b5e269e1bc398d43f67e43dafff3414a59cd5a2", - "sha256": "1bps4y3vpphpj63mshjg2aplh579cvqac0hz7qzvac0d1fqcgkdz" - } - }, - "tools": { - "godep": { - "rev": "5598a9815350896a2cdf9f4f1d0a3003ab9677fb", - "sha256": "0zc1ah5cvaqa3zw0ska89a40x445vwl1ixz8v42xi3zicx16ibwz" - } - }, - "ugorji": { - "go": { - "rev": "03e33114d4d60a1f37150325e15f51b0fa6fc4f6", - "sha256": "01kdzgx23cgb4k867m1pvsw14hhdr9jf2frqy6i4j4221055m57v" - } - }, - "vaughan0": { - "go-ini": { - "rev": "a98ad7ee00ec53921f08832bc06ecf7fd600e6a1", - "sha256": "1l1isi3czis009d9k5awsj4xdxgbxn4n9yqjc1ac7f724x6jacfa" - } - }, - "vincent-petithory": { - "i3cat": { - "rev": "b9ba886a7c769994ccd8d4627978ef4b51fcf576", - "sha256": "1xlm5c9ajdb71985nq7hcsaraq2z06przbl6r4ykvzi8w2lwgv72" - }, - "structfield": { - "rev": "01a738558a47fbf16712994d1737fb31c77e7d11", - "sha256": "1kyx71z13mf6hc8ly0j0b9zblgvj5lzzvgnc3fqh61wgxrsw24dw" - } - }, - "vitrun": { - "qart": { - "rev": "ccb109cf25f0cd24474da73b9fee4e7a3e8a8ce0", - "sha256": "0bhp768b8ha6f25dmhwn9q8m2lkbn4qnjf8n7pizk25jn5zjdvc8" - } - }, - "vmihailenco": { - "bufio": { - "rev": "24e7e48f60fc2d9e99e43c07485d9fff42051e66", - "sha256": "0x46qnf2f15v7m0j2dcb16raxjamk5rdc7hqwgyxfr1sqmmw3983" - }, - "msgpack": { - "rev": "9dbd4ac30c0b67927f0fb5557fb8341047bd35f7", - "sha256": "0nq9yb85hi3c35kwyl38ywv95vd8n7aywmj78wwylglld22nfmw2" - } - }, - "willf": { - "bitset": { - "rev": "bb0da3785c4fe9d26f6029c77c8fce2aa4d0b291", - "sha256": "1d4z2hjjs9jk6aysi4mf50p8lbbzag4ir4y1f0z4sz8gkwagh7b7" - } - }, - "xordataexchange": { - "crypt": { - "rev": "749e360c8f236773f28fc6d3ddfce4a470795227", - "sha256": "17g9122b8bmbdpshyzhl7cxsp0nvhk0rc6syc92djavggmbpl6ig" - } - }, - "yosssi": { - "ace": { - "rev": "899eede6af0d99400b2c8886d86fd8d351074d37", - "sha256": "0xdzqfzaipyaa973j41yq9lbijw36kyaz523sw05kci4r5ivq4f5" - }, - "gohtml": { - "rev": "ccf383eafddde21dfe37c6191343813822b30e6b", - "sha256": "1cghwgnx0zjdrqxzxw71riwiggd2rjs2i9p2ljhh76q3q3fd4s9f" - } - }, - "yudai": { - "gotty": { - "rev": "v0.0.10", - "sha256": "0gvnbr61d5si06ik2j075jg00r9b94ryfgg06nqxkf10dp8lgi09" - } - } -} diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 4a97a54544c..888ffe474f2 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -6,29 +6,24 @@ let isGo14 = go.meta.branch == "1.4"; - # When adding entries to the json file, please use `jq . < go-packages.json --sort-keys` - # to canonicallize the data. - ghPackages = builtins.fromJSON (builtins.readFile ./go-packages.json); - self = _self // overrides; _self = with self; { inherit go buildGoPackage; - buildFromGitHub = { rev ? ghPackages."${owner}"."${repo}".rev, date ? null - , sha256 ? ghPackages."${owner}"."${repo}".sha256 - , owner, repo , name ? repo, goPackagePath ? "github.com/${owner}/${repo}" - , ... }@args: buildGoPackage (args // { - inherit rev goPackagePath sha256; + buildFromGitHub = { rev, date ? 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}"; - src = args.src or (fetchFromGitHub { inherit rev owner repo sha256; }); + src = fetchFromGitHub { inherit rev owner repo sha256; }; }); ## OFFICIAL GO PACKAGES crypto = buildFromGitHub { + rev = "575fdbe86e5dd89229707ebec0575ce7d088a4a6"; date = "2015-08-29"; owner = "golang"; repo = "crypto"; + sha256 = "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa"; goPackagePath = "golang.org/x/crypto"; goPackageAliases = [ "code.google.com/p/go.crypto" @@ -37,29 +32,37 @@ let }; glog = buildFromGitHub { + rev = "fca8c8854093a154ff1eb580aae10276ad6b1b5f"; date = "2015-07-31"; owner = "golang"; repo = "glog"; + sha256 = "1nr2q0vas0a2f395f4shjxqpas18mjsf8yhgndsav7svngpbbpg8"; }; codesearch = buildFromGitHub { + rev = "a45d81b686e85d01f2838439deaf72126ccd5a96"; date = "2015-06-17"; owner = "google"; repo = "codesearch"; + sha256 = "12bv3yz0l3bmsxbasfgv7scm9j719ch6pmlspv4bd4ix7wjpyhny"; }; image = buildFromGitHub { + rev = "8ab1ac6834edd43d91cbe24272897a87ce7e835e"; date = "2015-08-23"; owner = "golang"; repo = "image"; + sha256 = "1ckr7yh5dx2kbvp9mis7i090ss9qcz46sazrj9f2hw4jj5g3y7dr"; goPackagePath = "golang.org/x/image"; goPackageAliases = [ "github.com/golang/image" ]; }; net_go15 = buildFromGitHub { + rev = "62ac18b461605b4be188bbc7300e9aa2bc836cd4"; date = "2015-11-04"; owner = "golang"; repo = "net"; + sha256 = "0lwwvbbwbf3yshxkfhn6z20gd45dkvnmw2ms36diiy34krgy402p"; goPackagePath = "golang.org/x/net"; goPackageAliases = [ "code.google.com/p/go.net" @@ -71,9 +74,11 @@ let }; net_go14 = buildFromGitHub { + rev = "ea47fc708ee3e20177f3ca3716217c4ab75942cb"; date = "2015-08-29"; owner = "golang"; repo = "net"; + sha256 = "0x1pmg97n7l62vak9qnjdjrrfl98jydhv6j0w3jkk4dycdlzn30d"; goPackagePath = "golang.org/x/net"; goPackageAliases = [ "code.google.com/p/go.net" @@ -87,9 +92,11 @@ let net = if isGo14 then net_go14 else net_go15; oauth2 = buildFromGitHub { + rev = "397fe7649477ff2e8ced8fc0b2696f781e53745a"; date = "2015-06-23"; owner = "golang"; repo = "oauth2"; + sha256 = "0fza0l7iwh6llkq2yzqn7dxi138vab0da64lnghfj1p71fprjzn8"; goPackagePath = "golang.org/x/oauth2"; goPackageAliases = [ "github.com/golang/oauth2" ]; propagatedBuildInputs = [ net gcloud-golang-compute-metadata ]; @@ -97,24 +104,30 @@ let protobuf = buildFromGitHub { + rev = "59b73b37c1e45995477aae817e4a653c89a858db"; date = "2015-08-23"; owner = "golang"; repo = "protobuf"; + sha256 = "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa"; goPackagePath = "github.com/golang/protobuf"; goPackageAliases = [ "code.google.com/p/goprotobuf" ]; }; snappy = buildFromGitHub { + rev = "723cc1e459b8eea2dea4583200fd60757d40097a"; date = "2015-07-21"; owner = "golang"; repo = "snappy"; + sha256 = "0bprq0qb46f5511b5scrdqqzskqqi2z8b4yh3216rv0n1crx536h"; goPackageAliases = [ "code.google.com/p/snappy-go/snappy" ]; }; sys = buildFromGitHub { + rev = "d9157a9621b69ad1d8d77a1933590c416593f24f"; date = "2015-02-01"; owner = "golang"; repo = "sys"; + sha256 = "1asdbp7rj1j1m1aar1a022wpcwbml6zih6cpbxaw7b2m8v8is931"; goPackagePath = "golang.org/x/sys"; goPackageAliases = [ "github.com/golang/sys" @@ -122,17 +135,21 @@ let }; text = buildFromGitHub { + rev = "5eb8d4684c4796dd36c74f6452f2c0fa6c79597e"; date = "2015-08-27"; owner = "golang"; repo = "text"; + sha256 = "1cjwm2pv42dbfqc6ylr7jmma902zg4gng5aarqrbjf1k2nf2vs14"; goPackagePath = "golang.org/x/text"; goPackageAliases = [ "github.com/golang/text" ]; }; tools = buildFromGitHub { + rev = "b48dc8da98ae78c3d11f220e7d327304c84e623a"; date = "2015-08-24"; owner = "golang"; repo = "tools"; + sha256 = "187p3jjxrw2qjnzqwwrq7f9w10zh6vcnwnfl3q7ms8rbiffpjy5c"; goPackagePath = "golang.org/x/tools"; goPackageAliases = [ "code.google.com/p/go.tools" ]; @@ -169,66 +186,97 @@ let ## THIRD PARTY ace = buildFromGitHub { + rev = "899eede6af0d99400b2c8886d86fd8d351074d37"; owner = "yosssi"; repo = "ace"; + sha256 = "0xdzqfzaipyaa973j41yq9lbijw36kyaz523sw05kci4r5ivq4f5"; buildInputs = [ gohtml ]; }; adapted = buildFromGitHub { + rev = "eaea06aaff855227a71b1c58b18bc6de822e3e77"; date = "2015-06-03"; owner = "michaelmacinnis"; repo = "adapted"; + sha256 = "0f28sn5mj48087zhjdrph2sjcznff1i1lwnwplx32bc5ax8nx5xm"; propagatedBuildInputs = [ sys ]; }; afero = buildFromGitHub { + rev = "90b5a9bd18a72dbf3e27160fc47acfaac6c08389"; owner = "spf13"; repo = "afero"; + sha256 = "1xqvbwny61j85psymcs8hggmqyyg4yq3q4cssnvnvbsl3aq8kn4k"; propagatedBuildInputs = [ text ]; }; airbrake-go = buildFromGitHub { + rev = "5b5e269e1bc398d43f67e43dafff3414a59cd5a2"; owner = "tobi"; repo = "airbrake-go"; + sha256 = "1bps4y3vpphpj63mshjg2aplh579cvqac0hz7qzvac0d1fqcgkdz"; }; amber = buildFromGitHub { + rev = "144da19a9994994c069f0693294a66dd310e14a4"; owner = "eknkc"; repo = "amber"; + sha256 = "079wwdq4cn9i1vx5zik16z4bmghkc7zmmvbrp1q6y4cnpmq95rqk"; }; ansicolor = buildFromGitHub { + rev = "a5e2b567a4dd6cc74545b8a4f27c9d63b9e7735b"; owner = "shiena"; repo = "ansicolor"; + sha256 = "0gwplb1b4fvav1vjf4b2dypy5rcp2w41vrbxkd1dsmac870cy75p"; }; asciinema = buildFromGitHub { + rev = "v1.1.1"; owner = "asciinema"; repo = "asciinema"; + sha256 = "0k48k8815k433s25lh8my2swl89kczp0m2gbqzjlpy1xwmk06nxc"; }; - asn1-ber = buildFromGitHub rec { - owner = "go-asn1-ber"; - repo = "asn1-ber"; + asn1-ber = buildGoPackage rec { + rev = "f4b6f4a84f5cde443d1925b5ec185ee93c2bdc72"; + name = "asn1-ber-${stdenv.lib.strings.substring 0 7 rev}"; goPackagePath = "github.com/go-asn1-ber/asn1-ber"; goPackageAliases = [ "github.com/nmcclain/asn1-ber" "github.com/vanackere/asn1-ber" "gopkg.in/asn1-ber.v1" ]; + + src = fetchFromGitHub { + inherit rev; + owner = "go-asn1-ber"; + repo = "asn1-ber"; + sha256 = "0qdyax6yw3hvplzqc2ykpihi3m5y4nii581ay0mxy9c54bzs2nk9"; + }; }; - assertions = buildFromGitHub rec { - owner = "smartystreets"; - repo = "assertions"; + assertions = buildGoPackage rec { + version = "1.5.0"; + name = "assertions-${version}"; + goPackagePath = "github.com/smartystreets/assertions"; + src = fetchurl { + name = "${name}.tar.gz"; + url = "https://github.com/smartystreets/assertions/archive/${version}.tar.gz"; + sha256 = "1s4b0v49yv7jmy4izn7grfqykjrg7zg79dg5hsqr3x40d5n7mk02"; + }; buildInputs = [ oglematchers ]; propagatedBuildInputs = [ goconvey ]; doCheck = false; }; aws-sdk-go = buildFromGitHub { + #rev = "a28ecdc9741b7905b5198059c94aed20868ffc08"; + rev = "127313c1b41e534a0456a68b6b3a16712dacb35d"; owner = "aws"; repo = "aws-sdk-go"; + #sha256 = "1kgnp5f5c5phmihh8krar9rbkfg0lk73imjhjvkhxirhw04g3n5j"; + sha256 = "0gd4nzv5jl02qi7g0y8lv6jadk0p52bpbl1r7pfgy8mn1vfxs37m"; goPackageAliases = [ "github.com/awslabs/aws-sdk-go" ]; @@ -243,8 +291,10 @@ let }; hashicorp.aws-sdk-go = buildFromGitHub { + rev = "e6ea0192eee4640f32ec73c0cbb71f63e4f2b65a"; owner = "hashicorp"; repo = "aws-sdk-go"; + sha256 = "1qrc2jl38marbarnl31sag7s0h18j2wx1cxkcqin5m1pqg62p4cn"; propagatedBuildInputs = [ go-ini ]; subPackages = [ "./aws" @@ -255,126 +305,189 @@ let }; bleve = buildFromGitHub { + rev = "fc34a97875840b2ae24517e7d746b69bdae9be90"; date = "2016-01-19"; owner = "blevesearch"; repo = "bleve"; + sha256 = "0ny7nvilrxmmzcdvpivwyrjkynnhc22c5gdrxzs421jly35jw8jx"; buildFlags = [ "-tags all" ]; propagatedBuildInputs = [ protobuf goleveldb kagome gtreap bolt text rcrowley.go-metrics bitset segment go-porterstemmer ]; }; binarydist = buildFromGitHub { + rev = "9955b0ab8708602d411341e55fffd7e0700f86bd"; owner = "kr"; repo = "binarydist"; + sha256 = "11wncbbbrdcxl5ff3h6w8vqfg4bxsf8709mh6vda0cv236flkyn3"; }; bitset = buildFromGitHub { + rev = "bb0da3785c4fe9d26f6029c77c8fce2aa4d0b291"; date = "2016-01-13"; owner = "willf"; repo = "bitset"; + sha256 = "1d4z2hjjs9jk6aysi4mf50p8lbbzag4ir4y1f0z4sz8gkwagh7b7"; }; blackfriday = buildFromGitHub { + rev = "d18b67ae0afd61dae240896eae1785f00709aa31"; owner = "russross"; repo = "blackfriday"; + sha256 = "1l78hz8k1ixry5fjw29834jz1q5ysjcpf6kx2ggjj1s6xh0bfzvf"; propagatedBuildInputs = [ sanitized_anchor_name ]; }; bolt = buildFromGitHub { + rev = "957d850b5158a4eebf915476058e720f43459584"; owner = "boltdb"; repo = "bolt"; + sha256 = "193adhhsqdy0kyq1l1fi8pg2n6pwyrw4h607qm78qyi26f8i7vzf"; }; bufio = buildFromGitHub { + rev = "24e7e48f60fc2d9e99e43c07485d9fff42051e66"; owner = "vmihailenco"; repo = "bufio"; + sha256 = "0x46qnf2f15v7m0j2dcb16raxjamk5rdc7hqwgyxfr1sqmmw3983"; }; - bugsnag-go = buildFromGitHub { - owner = "bugsnag"; - repo = "bugsnag-go"; + bugsnag-go = buildGoPackage rec { + rev = "v1.0.3"; + name = "bugsnag-go-${rev}"; + goPackagePath = "github.com/bugsnag/bugsnag-go"; + + src = fetchFromGitHub { + inherit rev; + owner = "bugsnag"; + repo = "bugsnag-go"; + sha256 = "1ymi5hrvd2nyfwfd12xll43gn00ii3bjb5ma9dfhaaxv2asi3ajx"; + }; + propagatedBuildInputs = [ panicwrap revel ]; }; - cascadia = buildFromGitHub rec { - owner = "andybalholm"; - repo = "cascadia"; + cascadia = buildGoPackage rec { + rev = "54abbbf07a45a3ef346ebe903e0715d9a3c19352"; #master + name = "cascadia-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/andybalholm/cascadia"; goPackageAliases = [ "code.google.com/p/cascadia" ]; propagatedBuildInputs = [ net ]; buildInputs = propagatedBuildInputs; doCheck = true; + + src = fetchFromGitHub { + inherit rev; + owner = "andybalholm"; + repo = "cascadia"; + sha256 = "1z21w6p5bp7mi2pvicvcqc871k9s8a6262pkwyjm2qfc859c203m"; + }; }; cast = buildFromGitHub { + rev = "ee815aaf958c707ad07547cd62150d973710f747"; owner = "spf13"; repo = "cast"; + sha256 = "144xwvmjbrv59zjj1gnq5j9qpy62dgyfamxg5l3smdwfwa8vpf5i"; buildInputs = [ jwalterweatherman ]; }; - check-v1 = buildFromGitHub { - owner = "go-check"; - repo = "check"; + check-v1 = buildGoPackage rec { + rev = "871360013c92e1c715c2de6d06b54899468a8a2d"; + name = "check-v1-${stdenv.lib.strings.substring 0 7 rev}"; goPackagePath = "gopkg.in/check.v1"; + src = fetchgit { + inherit rev; + url = "https://github.com/go-check/check.git"; + sha256 = "0i83qjmd4ri9mrfddhsbpj9nb43rf2j9803k030fj155j31klwcx"; + }; }; circbuf = buildFromGitHub { + rev = "f092b4f207b6e5cce0569056fba9e1a2735cb6cf"; owner = "armon"; repo = "circbuf"; + sha256 = "06kwwdwa3hskdh6ws7clj1vim80dyc3ldim8k9y5qpd30x0avn5s"; }; cli = buildFromGitHub { + rev = "8102d0ed5ea2709ade1243798785888175f6e415"; owner = "mitchellh"; repo = "cli"; + sha256 = "08mj1l94pww72jy34gk9a483hpic0rrackskfw13r3ycy997w7m2"; propagatedBuildInputs = [ crypto ]; }; cli-spinner = buildFromGitHub { + rev = "610063bb4aeef25f7645b3e6080456655ec0fb33"; owner = "odeke-em"; repo = "cli-spinner"; + sha256 = "13wzs2qrxd72ah32ym0ppswhvyimjw5cqaq3q153y68vlvxd048c"; }; cobra = buildFromGitHub { + rev = "ee6224d01f6a83f543ae90f881b703cf195782ba"; owner = "spf13"; repo = "cobra"; + sha256 = "0skmq1lmkh2xzl731a2sfcnl2xbcy9v1050pcf10dahwqzsbx6ij"; propagatedBuildInputs = [ pflag-spf13 mousetrap go-md2man viper ]; }; cli-go = buildFromGitHub { + rev = "142e6cd241a4dfbf7f07a018f1f8225180018da4"; owner = "codegangsta"; repo = "cli"; + sha256 = "1w8naax4gvkkxw5h31a2c2dwniw5hj92nv0hn6ybdlavffyax9h5"; }; columnize = buildFromGitHub { + rev = "44cb4788b2ec3c3d158dd3d1b50aba7d66f4b59a"; owner = "ryanuber"; repo = "columnize"; + sha256 = "1qrqr76cw58x2hkjic6h88na5ihgvkmp8mqapj8kmjcjzdxkzhr9"; }; command = buildFromGitHub { + rev = "91ca5ec5e9a1bc2668b1ccbe0967e04a349e3561"; owner = "odeke-em"; repo = "command"; + sha256 = "1ghckzr8h99ckagpmb15p61xazdjmf9mjmlym634hsr9vcj84v62"; }; copystructure = buildFromGitHub { + rev = "6fc66267e9da7d155a9d3bd489e00dad02666dc6"; owner = "mitchellh"; repo = "copystructure"; + sha256 = "193s5vhw68d8npjyf5yvc5j24crazvy7d5dk316hl7590qrmbxrd"; buildInputs = [ reflectwalk ]; }; - confd = buildFromGitHub { - owner = "kelseyhightower"; - repo = "confd"; - preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/$goPackagePath/Godeps/_workspace"; + confd = buildGoPackage rec { + rev = "v0.9.0"; + name = "confd-${rev}"; + goPackagePath = "github.com/kelseyhightower/confd"; + preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace"; + src = fetchFromGitHub { + inherit rev; + owner = "kelseyhightower"; + repo = "confd"; + sha256 = "0rz533575hdcln8ciqaz79wbnga3czj243g7fz8869db6sa7jwlr"; + }; subPackages = [ "./" ]; }; config = buildFromGitHub { + rev = "0f78529c8c7e3e9a25f15876532ecbc07c7d99e6"; owner = "robfig"; repo = "config"; + sha256 = "0xmxy8ay0wzd307x7xba3rmigvr6rjlpfk9fmn6ir2nc97ifv3i0"; }; consul = buildFromGitHub { + rev = "v0.5.2"; owner = "hashicorp"; repo = "consul"; + sha256 = "0p3lc1p346a5ipvkf15l94gn1ml3m7zz6bx0viark3hsv0a7iij7"; buildInputs = [ circbuf armon.go-metrics go-radix gomdb bolt consul-migrate go-checkpoint @@ -388,15 +501,16 @@ let }; consul-api = buildFromGitHub { - inherit (consul) owner repo; - inherit (consul) src; + inherit (consul) rev owner repo sha256; subPackages = [ "api" ]; }; consul-alerts = buildFromGitHub { + rev = "6eb4bc556d5f926dbf15d86170664d35d504ae54"; date = "2015-08-09"; owner = "AcalephStorage"; repo = "consul-alerts"; + sha256 = "191bmxix3nl4pr26hcdfxa9qpv5dzggjvi86h2slajgyd2rzn23b"; renameImports = '' # Remove all references to included dependency store @@ -413,15 +527,25 @@ let }; consul-migrate = buildFromGitHub { + rev = "678fb10cdeae25ab309e99e655148f0bf65f9710"; date = "2015-05-19"; owner = "hashicorp"; repo = "consul-migrate"; + sha256 = "18zqyzbc3pny700fnh4hi45i5mlsramqykikcr7lgyx7id6alf16"; buildInputs = [ raft raft-boltdb raft-mdb ]; }; - consul-template = buildFromGitHub { - owner = "hashicorp"; - repo = "consul-template"; + consul-template = buildGoPackage rec { + rev = "v0.9.0"; + name = "consul-template-${rev}"; + goPackagePath = "github.com/hashicorp/consul-template"; + + src = fetchFromGitHub { + inherit rev; + owner = "hashicorp"; + repo = "consul-template"; + sha256 = "1k64rjskzn7cxn7rxab978847jq8gr4zj4cnzgznhn44nzasgymj"; + }; # We just want the consul api not all of consul and vault extraSrcs = [ @@ -432,19 +556,31 @@ let buildInputs = [ go-multierror go-syslog hcl logutils mapstructure ]; }; - context = buildFromGitHub rec { - owner = "gorilla"; - repo = "context"; + context = buildGoPackage rec { + rev = "215affda49addc4c8ef7e2534915df2c8c35c6cd"; + name = "config-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/gorilla/context"; + + src = fetchFromGitHub { + inherit rev; + owner = "gorilla"; + repo = "context"; + sha256 = "1ybvjknncyx1f112mv28870n0l7yrymsr0861vzw10gc4yn1h97g"; + }; }; cookoo = buildFromGitHub { + rev = "v1.2.0"; owner = "Masterminds"; repo = "cookoo"; + sha256 = "1mxqnxddny43k1shsvd39sfzfs0d20gv3vm9lcjp04g3b0rplck1"; }; crypt = buildFromGitHub { + rev = "749e360c8f236773f28fc6d3ddfce4a470795227"; owner = "xordataexchange"; repo = "crypt"; + sha256 = "17g9122b8bmbdpshyzhl7cxsp0nvhk0rc6syc92djavggmbpl6ig"; preBuild = '' substituteInPlace go/src/github.com/xordataexchange/crypt/backend/consul/consul.go \ --replace 'github.com/armon/consul-api' 'github.com/hashicorp/consul/api' \ @@ -454,18 +590,30 @@ let }; cssmin = buildFromGitHub { + rev = "fb8d9b44afdc258bfff6052d3667521babcb2239"; owner = "dchest"; repo = "cssmin"; + sha256 = "09sdijfx5d05z4cd5k6lhl7k3kbpdf2amzlngv15h5v0fff9qw4s"; }; - dbus = buildFromGitHub { - owner = "godbus"; - repo = "dbus"; + dbus = buildGoPackage rec { + rev = "a5942dec6340eb0d57f43f2003c190ce06e43dea"; + name = "dbus-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/godbus/dbus"; + + src = fetchFromGitHub { + inherit rev; + owner = "godbus"; + repo = "dbus"; + sha256 = "1vk31wal7ncvjwvnb8q1myrkihv1np46f3q8dndi5k0csflbxxdf"; + }; }; deis = buildFromGitHub { + rev = "v1.12.2"; owner = "deis"; repo = "deis"; + sha256 = "03lznzcij3gn08kqj2p6skifcdv5aw09dm6zxgvqw7nxx2n1j2ib"; subPackages = [ "client" ]; buildInputs = [ docopt-go crypto yaml-v2 ]; postInstall = '' @@ -476,19 +624,25 @@ let }; dns = buildFromGitHub { + rev = "e59f851c912767b1db587dcabee6e6652e495c75"; date = "2015-07-22"; owner = "miekg"; repo = "dns"; + sha256 = "1zcj4drmmskwvjy5ld54qd8a34ls9651ysl3q7c2bcambax5r0hp"; }; docopt-go = buildFromGitHub { + rev = "854c423c810880e30b9fecdabb12d54f4a92f9bb"; owner = "docopt"; repo = "docopt-go"; + sha256 = "1sddkxgl1pwlipfvmv14h8vg9b9wq1km427j1gjarhb5yfqhh3l1"; }; drive = buildFromGitHub { + rev = "6dc2f1e83032ea3911fa6147b846ee93f18dc544"; owner = "odeke-em"; repo = "drive"; + sha256 = "07s4nhfcr6vznf1amvl3a4wq2hn9zq871rcppfi4i6zs7iw2ay1v"; subPackages = [ "cmd/drive" ]; buildInputs = [ pb go-isatty command dts odeke-em.log statos xon odeke-em.google-api-go-client @@ -499,99 +653,143 @@ let }; cache = buildFromGitHub { + rev = "b51b08cb6cf889deda6c941a5205baecfd16f3eb"; owner = "odeke-em"; repo = "cache"; + sha256 = "1rmm1ky7irqypqjkk6qcd2n0xkzpaggdxql9dp9i9qci5rvvwwd4"; }; exercism = buildFromGitHub { + rev = "v2.2.1"; name = "exercism"; owner = "exercism"; repo = "cli"; + sha256 = "13kwcxd7m3xv42j50nlm9dd08865dxji41glfvnb4wwq9yicyn4g"; buildInputs = [ net cli-go osext ]; }; exponential-backoff = buildFromGitHub { + rev = "96e25d36ae36ad09ac02cbfe653b44c4043a8e09"; owner = "odeke-em"; repo = "exponential-backoff"; + sha256 = "1as21p2jj8xpahvdxqwsw2i1s3fll14dlc9j192iq7xl1ybwpqs6"; }; extractor = buildFromGitHub { + rev = "801861aedb854c7ac5e1329e9713023e9dc2b4d4"; owner = "odeke-em"; repo = "extractor"; + sha256 = "036zmnqxy48h6mxiwywgxix2p4fqvl4svlmcp734ri2rbq3cmxs1"; }; open-golang = buildFromGitHub { + rev = "c8748311a7528d0ba7330d302adbc5a677ef9c9e"; owner = "skratchdot"; repo = "open-golang"; + sha256 = "0qhn2d00v3m9fiqk9z7swdm599clc6j7rnli983s8s1byyp0x3ac"; }; pretty-words = buildFromGitHub { + rev = "9d37a7fcb4ae6f94b288d371938482994458cecb"; owner = "odeke-em"; repo = "pretty-words"; + sha256 = "1466wjhrg9lhqmzil1vf8qj16fxk32b5kxlcccyw2x6dybqa6pkl"; }; meddler = buildFromGitHub { + rev = "d2b51d2b40e786ab5f810d85e65b96404cf33570"; owner = "odeke-em"; repo = "meddler"; + sha256 = "0m0fqrn3kxy4swyk4ja1y42dn1i35rq9j85y11wb222qppy2342x"; }; dts = buildFromGitHub { + rev = "ec2daabf2f9078e887405f7bcddb3d79cb65502d"; owner = "odeke-em"; repo = "dts"; + sha256 = "0vq3cz4ab9vdsz9s0jjlp7z27w218jjabjzsh607ps4i8m5d441s"; }; du = buildFromGitHub { + rev = "3c0690cca16228b97741327b1b6781397afbdb24"; date = "2015-08-05"; owner = "calmh"; repo = "du"; + sha256 = "1mv6mkbslfc8giv47kyl97ny0igb3l7jya5hc75sm54xi6g205wa"; }; - ed25519 = buildFromGitHub { - owner = "agl"; - repo = "ed25519"; + ed25519 = buildGoPackage rec { + rev = "d2b94fd789ea21d12fac1a4443dd3a3f79cda72c"; + name = "ed25519-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/agl/ed25519"; + src = fetchgit { + inherit rev; + url = "git://${goPackagePath}.git"; + sha256 = "83e3010509805d1d315c7aa85a356fda69d91b51ff99ed98a503d63adb3613e9"; + }; }; errwrap = buildFromGitHub { + rev = "7554cd9344cec97297fa6649b055a8c98c2a1e55"; owner = "hashicorp"; repo = "errwrap"; + sha256 = "0kmv0p605di6jc8i1778qzass18m0mv9ks9vxxrfsiwcp4la82jf"; }; etcd = buildFromGitHub { + rev = "v2.1.2"; owner = "coreos"; repo = "etcd"; + sha256 = "1d3wl9rqbhkkdhfkjfrzjfcwz8hx315zbjbmij3pf62bc1p5nh60"; + }; + + fsnotify.v0 = buildGoPackage rec { + rev = "v0.9.3"; + name = "fsnotify.v0-${rev}"; + goPackagePath = "gopkg.in/fsnotify.v0"; + goPackageAliases = [ "github.com/howeyc/fsnotify" ]; + + src = fetchFromGitHub { + inherit rev; + owner = "go-fsnotify"; + repo = "fsnotify"; + sha256 = "15wqjpkfzsxnaxbz6y4r91hw6812g3sc4ipagxw1bya9klbnkdc9"; + }; }; flannel = buildFromGitHub { + rev = "v0.5.3"; owner = "coreos"; repo = "flannel"; + sha256 = "0d9khv0bczvsaqnz16p546m4r5marmnkcrdhi0f3ajnwxb776r9p"; }; - fsnotify.v0 = buildFromGitHub { - rev = "v0.9.3"; - owner = "go-fsnotify"; - repo = "fsnotify"; - sha256 = "15wqjpkfzsxnaxbz6y4r91hw6812g3sc4ipagxw1bya9klbnkdc9"; - goPackagePath = "gopkg.in/fsnotify.v0"; - goPackageAliases = [ "github.com/howeyc/fsnotify" ]; - }; - - fsnotify.v1 = buildFromGitHub rec { + fsnotify.v1 = buildGoPackage rec { rev = "v1.2.0"; - owner = "go-fsnotify"; - repo = "fsnotify"; - sha256 = "1308z1by82fbymcra26wjzw7lpjy91kbpp2skmwqcq4q1iwwzvk2"; + name = "fsnotify.v1-${rev}"; goPackagePath = "gopkg.in/fsnotify.v1"; + + src = fetchFromGitHub { + inherit rev; + owner = "go-fsnotify"; + repo = "fsnotify"; + sha256 = "1308z1by82fbymcra26wjzw7lpjy91kbpp2skmwqcq4q1iwwzvk2"; + }; }; fsync = buildFromGitHub { + rev = "c2544e79b93fda5653255f907a30fba1c2ac2638"; owner = "spf13"; repo = "fsync"; + sha256 = "0hzfk2f8pm756j10zgsk8b8gbfylcf8h6q4djz0ka9zpg76s26lz"; buildInputs = [ afero ]; }; fzf = buildFromGitHub { + rev = "0.11.1"; owner = "junegunn"; repo = "fzf"; + sha256 = "1zw1kq4d5sb1qia44q04i33yii9qwlwlwz8vxhln03d4631mhsra"; buildInputs = [ crypto ginkgo gomega junegunn.go-runewidth go-shellwords pkgs.ncurses text @@ -603,14 +801,18 @@ let }; g2s = buildFromGitHub { + rev = "ec76db4c1ac16400ac0e17ca9c4840e1d23da5dc"; owner = "peterbourgon"; repo = "g2s"; + sha256 = "1p4p8755v2nrn54rik7yifpg9szyg44y5rpp0kryx4ycl72307rj"; }; gawp = buildFromGitHub { + rev = "488705639109de54d38974cc31353d34cc2cd609"; date = "2015-08-31"; owner = "martingallagher"; repo = "gawp"; + sha256 = "0iqqd63nqdijdskdb9f0jwnm6akkh1p2jw4p2w7r1dbaqz1znyay"; dontInstallSrc = true; buildInputs = [ fsnotify.v1 yaml-v2 ]; @@ -624,8 +826,10 @@ let }; gcloud-golang = buildFromGitHub { + rev = "6335269abf9002cf5a84613c13cda6010842b834"; owner = "GoogleCloudPlatform"; repo = "gcloud-golang"; + sha256 = "15xrqxna5ms0r634k3bfzyymn431dvqcjwbsap8ay60x371kzbwf"; goPackagePath = "google.golang.org/cloud"; buildInputs = [ net oauth2 protobuf google-api-go-client grpc ]; excludedPackages = "oauth2"; @@ -639,13 +843,22 @@ let }; gettext-go = buildFromGitHub { + rev = "783c0fb3da95b06dd89c4ba2771f1dc289ecc27c"; owner = "chai2010"; repo = "gettext-go"; + sha256 = "1iz4wjxc3zkj0xkfs88ig670gb08p1sd922l0ig2cxpjcfjp1y99"; }; - ginkgo = buildFromGitHub { - owner = "onsi"; - repo = "ginkgo"; + ginkgo = buildGoPackage rec { + rev = "5ed93e443a4b7dfe9f5e95ca87e6082e503021d2"; + name = "ginkgo-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/onsi/ginkgo"; + src = fetchFromGitHub { + inherit rev; + owner = "onsi"; + repo = "ginkgo"; + sha256 = "0ghrx5qmgvgb8cbvsj53v1ir4j9agilg4wyhpk5ikqdv6mmqly4h"; + }; subPackages = [ "./" ]; # don't try to build test fixtures }; @@ -653,17 +866,23 @@ let buildInputs = [ go go-backblaze ]; owner = "encryptio"; repo = "git-annex-remote-b2"; + rev = "v0.2"; + sha256 = "1139rzdvlj3hanqsccfinprvrzf4qjc5n4f0r21jp9j24yhjs6j2"; }; git-appraise = buildFromGitHub { + rev = "v0.3"; owner = "google"; repo = "git-appraise"; + sha256 = "124hci9whsvlcywsfz5y20kkj3nhy176a1d5s1lkvsga09yxq6wm"; }; git-lfs = buildFromGitHub { date = "1.1.1"; # "date" is effectively "version" + rev = "v1.1.1"; owner = "github"; repo = "git-lfs"; + sha256 = "1m7kii57jrsb22m5x9v8xa3s1qmipfkpk6cscgxrbrj7g0a75fnc"; # Tests fail with 'lfstest-gitserver.go:46: main redeclared in this block' excludedPackages = [ "test" ]; @@ -680,25 +899,44 @@ let }; glide = buildFromGitHub { + rev = "0.6.1"; owner = "Masterminds"; repo = "glide"; + sha256 = "1v66c2igm8lmljqrrsyq3cl416162yc5l597582bqsnhshj2kk4m"; buildInputs = [ cookoo cli-go go-gypsy vcs ]; }; gls = buildFromGitHub { + rev = "9a4a02dbe491bef4bab3c24fd9f3087d6c4c6690"; owner = "jtolds"; repo = "gls"; + sha256 = "1gvgkx7llklz6plapb95fcql7d34i6j7anlvksqhdirpja465jnm"; }; - ugorji.go = buildFromGitHub { - owner = "ugorji"; - repo = "go"; + ugorji.go = buildGoPackage rec { + rev = "03e33114d4d60a1f37150325e15f51b0fa6fc4f6"; + name = "ugorji-go-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/ugorji/go"; goPackageAliases = [ "github.com/hashicorp/go-msgpack" ]; + + src = fetchFromGitHub { + inherit rev; + owner = "ugorji"; + repo = "go"; + sha256 = "01kdzgx23cgb4k867m1pvsw14hhdr9jf2frqy6i4j4221055m57v"; + }; }; - goamz = buildFromGitHub { - owner = "goamz"; - repo = "goamz"; + goamz = buildGoPackage rec { + rev = "2a8fed5e89ab9e16210fc337d1aac780e8c7bbb7"; + name = "goamz-${rev}"; + goPackagePath = "github.com/goamz/goamz"; + src = fetchFromGitHub { + inherit rev; + owner = "goamz"; + repo = "goamz"; + sha256 = "0rlinp0cvgw66qjndg4padr5s0wd3n7kjfggkx6czqj9bqaxcz4b"; + }; propagatedBuildInputs = [ go-ini ]; # These might need propagating too, but I haven't tested the entire library @@ -718,13 +956,17 @@ let }; dgnorton.goback = buildFromGitHub { + rev = "a49ca3c0a18f50ae0b8a247e012db4385e516cf4"; owner = "dgnorton"; repo = "goback"; + sha256 = "1nyg6sckwd0iafs9vcmgbga2k3hid2q0avhwj29qbdhj3l78xi47"; }; gocryptfs = buildFromGitHub { + rev = "v0.5"; owner = "rfjakob"; repo = "gocryptfs"; + sha256 = "0jsdz8y7a1fkyrfwg6353c9r959qbqnmf2cjh57hp26w1za5bymd"; buildInputs = [ crypto go-fuse openssl-spacemonkey ]; }; @@ -740,49 +982,74 @@ let }; gocql = buildFromGitHub { + rev = "53ea371a152ac188443fd3479f822ffecb0e9363"; owner = "gocql"; repo = "gocql"; + sha256 = "0rqykhqgx7lrggcjyh053c3qddf130sgvsm27gndjv29rjrm874f"; propagatedBuildInputs = [ inf snappy groupcache ]; }; gocode = buildFromGitHub { + rev = "680a0fbae5119fb0dbea5dca1d89e02747a80de0"; date = "2015-09-03"; owner = "nsf"; repo = "gocode"; + sha256 = "1ay2xakz4bcn8r3ylicbj753gjljvv4cj9l4wfly55cj1vjybjpv"; }; - gocolorize = buildFromGitHub rec { - owner = "agtorre"; - repo = "gocolorize"; + gocolorize = buildGoPackage rec { + rev = "v1.0.0"; + name = "gocolorize-${rev}"; goPackagePath = "github.com/agtorre/gocolorize"; + + src = fetchFromGitHub { + inherit rev; + owner = "agtorre"; + repo = "gocolorize"; + sha256 = "1dj7s8bgw9qky344d0k9gz661c0m317a08a590184drw7m51hy9p"; + }; }; - goconvey = buildFromGitHub rec { - owner = "smartystreets"; - repo = "goconvey"; + goconvey = buildGoPackage rec { + version = "1.5.0"; + name = "goconvey-${version}"; + goPackagePath = "github.com/smartystreets/goconvey"; + src = fetchurl { + name = "${name}.tar.gz"; + url = "https://github.com/smartystreets/goconvey/archive/${version}.tar.gz"; + sha256 = "0g3965cb8kg4kf9b0klx4pj9ycd7qwbw1jqjspy6i5d4ccd6mby4"; + }; buildInputs = [ oglematchers ]; doCheck = false; # please check again }; gohtml = buildFromGitHub { + rev = "ccf383eafddde21dfe37c6191343813822b30e6b"; owner = "yosssi"; repo = "gohtml"; + sha256 = "1cghwgnx0zjdrqxzxw71riwiggd2rjs2i9p2ljhh76q3q3fd4s9f"; propagatedBuildInputs = [ net ]; }; gomdb = buildFromGitHub { + rev = "151f2e08ef45cb0e57d694b2562f351955dff572"; owner = "armon"; repo = "gomdb"; + sha256 = "02wdhgfarmmwfbc75snd1dh6p9k9c1y2135apdm6mkr062qlxx61"; }; influx.gomdb = buildFromGitHub { + rev = "29fe330c5ab33c4e48470bd4b980bf522471190a"; owner = "influxdb"; repo = "gomdb"; + sha256 = "0yg1jpr7lcaqh6i8n9wbs9r128kk541qjv06r9a6fp9vj56rqr3m"; }; gotty = buildFromGitHub { + rev = "v0.0.10"; owner = "yudai"; repo = "gotty"; + sha256 = "0gvnbr61d5si06ik2j075jg00r9b94ryfgg06nqxkf10dp8lgi09"; buildInputs = [ cli-go go manners go-bindata-assetfs go-multierror structs websocket hcl pty ]; @@ -795,112 +1062,158 @@ let }; govers = buildFromGitHub { + rev = "3b5f175f65d601d06f48d78fcbdb0add633565b9"; date = "2015-01-09"; owner = "rogpeppe"; repo = "govers"; + sha256 = "0din5a7nff6hpc4wg0yad2nwbgy4q1qaazxl8ni49lkkr4hyp8pc"; dontRenameImports = true; }; golang-lru = buildFromGitHub { + rev = "7f9ef20a0256f494e24126014135cf893ab71e9e"; owner = "hashicorp"; repo = "golang-lru"; + sha256 = "165x0p8plr3fwn4r1d11m3pxa3r8dhyk98z7x6ah35lf63jm2cwv"; }; golang-petname = buildFromGitHub { + rev = "13f8b3a4326b9a6579358543cffe82713c1d6ce4"; owner = "dustinkirkland"; repo = "golang-petname"; + sha256 = "1xx6lpv1r2sji8m9w35a2fkr9v4vsgvxrrahcq9bdg75qvadq91d"; }; golang_protobuf_extensions = buildFromGitHub { + rev = "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a"; date = "2015-04-06"; owner = "matttproud"; repo = "golang_protobuf_extensions"; + sha256 = "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj"; buildInputs = [ protobuf ]; }; goleveldb = buildFromGitHub { + rev = "1a9d62f03ea92815b46fcaab357cfd4df264b1a0"; date = "2015-08-19"; owner = "syndtr"; repo = "goleveldb"; + sha256 = "04ywbif36fiah4fw0x2abr5q3p4fdhi6q57d5icc2mz03q889vhb"; propagatedBuildInputs = [ ginkgo gomega snappy ]; }; gollectd = buildFromGitHub { + rev = "cf6dec97343244b5d8a5485463675d42f574aa2d"; owner = "kimor79"; repo = "gollectd"; + sha256 = "1f3ml406cprzjc192csyr2af4wcadkc74kg8n4c0zdzglxxfsqxa"; }; gomega = buildFromGitHub { + rev = "8adf9e1730c55cdc590de7d49766cb2acc88d8f2"; owner = "onsi"; repo = "gomega"; + sha256 = "1rf6cxn50d1pji3pv4q372s395r5nxwcgp405z2r2mfdkri4v3w4"; }; gomemcache = buildFromGitHub { + rev = "72a68649ba712ee7c4b5b4a943a626bcd7d90eb8"; owner = "bradfitz"; repo = "gomemcache"; + sha256 = "1r8fpzwhakq8fsppc33n4iivq1pz47xhs0h6bv4x5qiip5mswwvg"; }; google-api-go-client = buildFromGitHub { + rev = "a5c3e2a4792aff40e59840d9ecdff0542a202a80"; date = "2015-08-19"; owner = "google"; repo = "google-api-go-client"; + sha256 = "1kigddnbyrl9ddpj5rs8njvf1ck54ipi4q1282k0d6b3am5qfbj8"; goPackagePath = "google.golang.org/api"; goPackageAliases = [ "github.com/google/google-api-client" ]; buildInputs = [ net ]; }; - odeke-em.google-api-go-client = buildFromGitHub { - owner = "odeke-em"; - repo = "google-api-go-client"; + odeke-em.google-api-go-client = buildGoPackage rec { + rev = "30f4c144b02321ebbc712f35dc95c3e72a5a7fdc"; + name = "odeke-em-google-api-go-client-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/odeke-em/google-api-go-client"; + src = fetchFromGitHub { + inherit rev; + owner = "odeke-em"; + repo = "google-api-go-client"; + sha256 = "1fidlljxnd82i2r9yia0b9gh0vv3hwb5k65papnvw7sqpc4sriby"; + }; buildInputs = [ net ]; propagatedBuildInputs = [ google-api-go-client ]; }; gopass = buildFromGitHub { + rev = "10b54de414cc9693221d5ff2ae14fd2fbf1b0ac1"; owner = "howeyc"; repo = "gopass"; + sha256 = "0lsi89zx1i2f5vhm66zqn2drs7xi7ff8r1xlp6m58r99dddws57s"; propagatedBuildInputs = [ crypto ]; }; gopherduty = buildFromGitHub { + rev = "f4906ce7e59b33a50bfbcba93e2cf58778c11fb9"; owner = "darkcrux"; repo = "gopherduty"; + sha256 = "11w1yqc16fxj5q1y5ha5m99j18fg4p9lyqi542x2xbrmjqqialcf"; }; goproxy = buildFromGitHub { + rev = "2624781dc373cecd1136cafdaaaeba6c9bb90e96"; date = "2015-07-26"; owner = "elazarl"; repo = "goproxy"; + sha256 = "1zz425y8byjaa9i7mslc9anz9w2jc093fjl0562rmm5hh4rc5x5f"; buildInputs = [ go-charset ]; }; goreq = buildFromGitHub { + rev = "72c51a544272e007ab3da4f7d9ac959b7af7af03"; date = "2015-08-18"; owner = "franela"; repo = "goreq"; + sha256 = "0dnqbijdzp2dgsf6m934nadixqbv73q0zkqglaa956zzw0pyhcxp"; }; gotags = buildFromGitHub { + rev = "be986a34e20634775ac73e11a5b55916085c48e7"; date = "2015-08-03"; owner = "jstemmer"; repo = "gotags"; + sha256 = "071wyq90b06xlb3bb0l4qjz1gf4nnci4bcngiddfcxf2l41w1vja"; }; gosnappy = buildFromGitHub { + rev = "ce8acff4829e0c2458a67ead32390ac0a381c862"; owner = "syndtr"; repo = "gosnappy"; + sha256 = "0ywa52kcii8g2a9lbqcx8ghdf6y56lqq96sl5nl9p6h74rdvmjr7"; }; - gox = buildFromGitHub { - owner = "mitchellh"; - repo = "gox"; + gox = buildGoPackage rec { + rev = "e8e6fd4fe12510cc46893dff18c5188a6a6dc549"; + name = "gox-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/mitchellh/gox"; + src = fetchFromGitHub { + inherit rev; + owner = "mitchellh"; + repo = "gox"; + sha256 = "14jb2vgfr6dv7zlw8i3ilmp125m5l28ljv41a66c9b8gijhm48k1"; + }; buildInputs = [ iochan ]; }; gozim = buildFromGitHub { + rev = "ea9b7c39cb1d13bd8bf19ba4dc4e2a16bab52f14"; date = "2016-01-15"; owner = "akhenakh"; repo = "gozim"; + sha256 = "1n50fdd56r3s1sgjbpa72nvdh50gfpf6fq55c077w2p3bxn6p8k6"; propagatedBuildInputs = [ bleve go-liblzma groupcache go-rice goquery ]; buildInputs = [ pkgs.zip ]; postInstall = '' @@ -911,28 +1224,51 @@ let dontStrip = true; }; - go-assert = buildFromGitHub { - owner = "bmizerany"; - repo = "assert"; + go-assert = buildGoPackage rec { + rev = "e17e99893cb6509f428e1728281c2ad60a6b31e3"; + name = "assert-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/bmizerany/assert"; + src = fetchFromGitHub { + inherit rev; + owner = "bmizerany"; + repo = "assert"; + sha256 = "1lfrvqqmb09y6pcr76yjv4r84cshkd4s7fpmiy7268kfi2cvqnpc"; + }; propagatedBuildInputs = [ pretty ]; }; go-backblaze = buildFromGitHub { - owner = "kothar"; - repo = "go-backblaze"; buildInputs = [ go-flags go-humanize uilive uiprogress ]; goPackagePath = "gopkg.in/kothar/go-backblaze.v0"; + rev = "373819725fc560fa962c6cd883b533d2ebec4844"; + owner = "kothar"; + repo = "go-backblaze"; + sha256 = "1kmlwfnnfd4h46bb9pz2gw1hxqm1pzkwvidfmnc0zkrilaywk6fx"; }; - go-bencode = buildFromGitHub { - owner = "ehmry"; - repo = "go-bencode"; + go-bencode = buildGoPackage rec { + version = "1.1.1"; + name = "go-bencode-${version}"; + goPackagePath = "github.com/ehmry/go-bencode"; + + src = fetchurl { + url = "https://${goPackagePath}/archive/v${version}.tar.gz"; + sha256 = "0y2kz2sg1f7mh6vn70kga5d0qhp04n01pf1w7k6s8j2nm62h24j6"; + }; }; - go-bindata = buildFromGitHub rec { - owner = "jteeuwen"; - repo = "go-bindata"; + go-bindata = buildGoPackage rec { + rev = "a0ff2567cfb70903282db057e799fd826784d41d"; date = "2015-10-23"; + version = "${date}-${stdenv.lib.strings.substring 0 7 rev}"; + name = "go-bindata-${version}"; + goPackagePath = "github.com/jteeuwen/go-bindata"; + src = fetchFromGitHub { + inherit rev; + repo = "go-bindata"; + owner = "jteeuwen"; + sha256 = "0d6zxv0hgh938rf59p1k5lj0ymrb8kcps2vfrb9kaarxsvg7y69v"; + }; subPackages = [ "./" "go-bindata" ]; # don't build testdata @@ -946,8 +1282,10 @@ let }; go-bindata-assetfs = buildFromGitHub { + rev = "d5cac425555ca5cf00694df246e04f05e6a55150"; owner = "elazarl"; repo = "go-bindata-assetfs"; + sha256 = "636ce247ff6f85c14f38a421f46662fa77bdc29762692e1f72b3cd1f9d7a1d17"; date = "2015-08-13"; @@ -959,24 +1297,36 @@ let }; }; - pmylund.go-cache = buildFromGitHub { - owner = "pmylund"; - repo = "go-cache"; + pmylund.go-cache = buildGoPackage rec { + rev = "93d85800f2fa6bd0a739e7bd612bfa3bc008b72d"; + name = "go-cache-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/pmylund/go-cache"; goPackageAliases = [ "github.com/robfig/go-cache" "github.com/influxdb/go-cache" ]; + + src = fetchFromGitHub { + inherit rev; + owner = "pmylund"; + repo = "go-cache"; + sha256 = "08wfwm7nk381lv6a95p0hfgqwaksn0vhzz1xxdncjdw6w71isyy7"; + }; }; robfig.go-cache = buildFromGitHub { + rev = "9fc39e0dbf62c034ec4e45e6120fc69433a3ec51"; owner = "robfig"; repo = "go-cache"; + sha256 = "032nh3y43bpzpcm7bdkxfh55aydvzc2jzhigvy5gd9f648m4j9ha"; }; go-charset = buildFromGitHub { + rev = "61cdee49014dc952076b5852ce4707137eb36b64"; date = "2014-07-13"; owner = "paulrosania"; repo = "go-charset"; + sha256 = "0jp6rwxlgl66dipk6ssk8ly55jxncvsxs7jc3abgdrhr3rzccab8"; goPackagePath = "code.google.com/p/go-charset"; preBuild = '' @@ -985,47 +1335,70 @@ let }; go-checkpoint = buildFromGitHub { + rev = "88326f6851319068e7b34981032128c0b1a6524d"; owner = "hashicorp"; repo = "go-checkpoint"; + sha256 = "1npasn9lmvx57nw3wkswwvl5k0wmn01jpalbwv832x5wq4r0nsz4"; }; go-colorable = buildFromGitHub { + rev = "40e4aedc8fabf8c23e040057540867186712faa5"; owner = "mattn"; repo = "go-colorable"; + sha256 = "0pwc0s5lvz209dcyamv1ba1xl0c1r5hpxwlq0w5j2xcz8hzrcwkl"; }; go-colortext = buildFromGitHub { + rev = "13eaeb896f5985a1ab74ddea58707a73d875ba57"; owner = "daviddengcn"; repo = "go-colortext"; + sha256 = "0618xs9lc5xfp5zkkb5j47dr7i30ps3zj5fj0zpv8afqh2cc689x"; }; - go-etcd = buildFromGitHub { - owner = "coreos"; - repo = "go-etcd"; + go-etcd = buildGoPackage rec { + rev = "9847b93751a5fbaf227b893d172cee0104ac6427"; + name = "go-etcd-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/coreos/go-etcd"; + + src = fetchFromGitHub { + inherit rev; + owner = "coreos"; + repo = "go-etcd"; + sha256 = "1ihq01ayqzxvn6hca5j00vl189vi5lm78f0fy2wpk5mrm3xi01l4"; + }; + propagatedBuildInputs = [ ugorji.go ]; }; go-flags = buildFromGitHub { + rev = "1b89bf73cd2c3a911d7b2a279ab085c4a18cf539"; owner = "jessevdk"; repo = "go-flags"; + sha256 = "027nglc5xx1cm03z9sisg0iqrhwcj6gh5z254rrpl8p4fwrxx680"; }; go-fuse = buildFromGitHub rec { + rev = "324ea173d0a4d90e0e97c464a6ad33f80c9587a8"; date = "2015-07-27"; owner = "hanwen"; repo = "go-fuse"; + sha256 = "0r5amgnpb4g7b6kpz42vnj01w515by4yhy64s5lqf3snzjygaycf"; }; go-github = buildFromGitHub { + rev = "34fb8ee07214d23c3035c95691fe9069705814d6"; owner = "google"; repo = "go-github"; + sha256 = "0ygh0f6p679r095l4bym8q4l45w2l3d8r3hx9xrnnppxq59i2395"; buildInputs = [ oauth2 ]; propagatedBuildInputs = [ go-querystring ]; }; go-gtk-agl = buildFromGitHub { + rev = "6937b8d28cf70d583346220b966074cfd3a2e233"; owner = "agl"; repo = "go-gtk"; + sha256 = "0jnhsv7ypyhprpy0fndah22v2pbbavr3db6f9wxl1vf34qkns3p4"; # Examples require many go libs, and gtksourceview seems ready only for # gtk2 preConfigure = '' @@ -1037,261 +1410,383 @@ let }; go-gypsy = buildFromGitHub { + rev = "42fc2c7ee9b8bd0ff636cd2d7a8c0a49491044c5"; owner = "kylelemons"; repo = "go-gypsy"; + sha256 = "04iy8rdk19n7i18bqipknrcb8lsy1vr4d1iqyxsxq6rmb7298iwj"; }; go-homedir = buildFromGitHub { + rev = "1f6da4a72e57d4e7edd4a7295a585e0a3999a2d4"; owner = "mitchellh"; repo = "go-homedir"; + sha256 = "1l5lrsjrnwxn299mhvyxvz8hd0spkx0d31gszm4cyx21bg1xsiy9"; }; go-hostpool = buildFromGitHub { + rev = "d0e59c22a56e8dadfed24f74f452cea5a52722d2"; date = "2015-03-31"; owner = "bitly"; repo = "go-hostpool"; + sha256 = "14ph12krn5zlg00vh9g6g08lkfjxnpw46nzadrfb718yl1hgyk3g"; }; go-humanize = buildFromGitHub { + rev = "8929fe90cee4b2cb9deb468b51fb34eba64d1bf0"; owner = "dustin"; repo = "go-humanize"; + sha256 = "1g155kxjh6hd3ibx41nbpj6f7h5bh54zgl9dr53xzg2xlxljgjy0"; }; go-ini = buildFromGitHub { + rev = "a98ad7ee00ec53921f08832bc06ecf7fd600e6a1"; owner = "vaughan0"; repo = "go-ini"; + sha256 = "1l1isi3czis009d9k5awsj4xdxgbxn4n9yqjc1ac7f724x6jacfa"; }; go-incremental = buildFromGitHub { + rev = "92fd0ce4a694213e8b3dfd2d39b16e51d26d0fbf"; date = "2015-02-20"; owner = "GeertJohan"; repo = "go.incremental"; + sha256 = "160cspmq73bk6cvisa6kq1dwrrp1yqpkrpq8dl69wcnaf91cbnml"; }; go-isatty = buildFromGitHub { + rev = "ae0b1f8f8004be68d791a576e3d8e7648ab41449"; owner = "mattn"; repo = "go-isatty"; + sha256 = "0qrcsh7j9mxcaspw8lfxh9hhflz55vj4aq1xy00v78301czq6jlj"; }; go-liblzma = buildFromGitHub { + rev = "e74be71c3c60411922b5424e875d7692ea638b78"; date = "2016-01-01"; owner = "remyoudompheng"; repo = "go-liblzma"; + sha256 = "12lwjmdcv2l98097rhvjvd2yz8jl741hxcg29i1c18grwmwxa7nf"; propagatedBuildInputs = [ pkgs.lzma ]; }; - go-log = buildFromGitHub { - owner = "coreos"; - repo = "go-log"; + go-log = buildGoPackage rec { + rev = "70d039bee4b0e389e5be560491d8291708506f59"; + name = "go-log-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/coreos/go-log"; + + src = fetchFromGitHub { + inherit rev; + owner = "coreos"; + repo = "go-log"; + sha256 = "1s95xmmhcgw4ascf4zr8c4ij2n4s3mr881nxcpmc61g0gb722b13"; + }; + propagatedBuildInputs = [ osext go-systemd ]; }; go-lxc = buildFromGitHub { + rev = "a0fa4019e64b385dfa2fb8abcabcdd2f66871639"; owner = "lxc"; repo = "go-lxc"; + sha256 = "0fkkmn7ynmzpr7j0ha1qsmh3k86ncxcbajmcb90hs0k0iaaiaahz"; goPackagePath = "gopkg.in/lxc/go-lxc.v2"; nativeBuildInputs = [ pkgs.pkgconfig ]; buildInputs = [ pkgs.lxc ]; }; go-lz4 = buildFromGitHub { + rev = "74ddf82598bc4745b965729e9c6a463bedd33049"; owner = "bkaradzic"; repo = "go-lz4"; + sha256 = "1vdid8v0c2v2qhrg9rzn3l7ya1h34jirrxfnir7gv7w6s4ivdvc1"; }; rcrowley.go-metrics = buildFromGitHub { + rev = "1ce93efbc8f9c568886b2ef85ce305b2217b3de3"; date = "2015-08-22"; owner = "rcrowley"; repo = "go-metrics"; + sha256 = "06gg72krlmd0z3zdq6s716blrga95pyj8dc2f2psfbknbkyrkfqa"; propagatedBuildInputs = [ stathat ]; }; appengine = buildFromGitHub { + rev = "72f4367c4f14a20a98dcc8b762953b40788407be"; owner = "golang"; repo = "appengine"; + sha256 = "1phjkb0f0xp08db3irbf5wzdsxzsddsig5wv70wvmnr44ijllh4f"; goPackagePath = "google.golang.org/appengine"; buildInputs = [ protobuf net ]; }; - armon.go-metrics = buildFromGitHub { - owner = "armon"; - repo = "go-metrics"; + armon.go-metrics = buildGoPackage rec { + rev = "b2d95e5291cdbc26997d1301a5e467ecbb240e25"; + name = "armon.go-metrics-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/armon/go-metrics"; + + src = fetchFromGitHub { + inherit rev; + owner = "armon"; + repo = "go-metrics"; + sha256 = "1jvdf98jlbyzbb9w159nifvv8fihrcs66drnl8pilqdjpmkmyyck"; + }; + propagatedBuildInputs = [ prometheus.client_golang ]; }; go-md2man = buildFromGitHub { + rev = "71acacd42f85e5e82f70a55327789582a5200a90"; owner = "cpuguy83"; repo = "go-md2man"; + sha256 = "0hmkrq4gdzb6mwllmh4p1y7vrz7hyr8xqagpk9nyr5dhygvnnq2v"; propagatedBuildInputs = [ blackfriday ]; }; go-multierror = buildFromGitHub { + rev = "56912fb08d85084aa318edcf2bba735b97cf35c5"; owner = "hashicorp"; repo = "go-multierror"; + sha256 = "0s01cqdab2f7fxkkjjk2wqx05a1shnwlvfn45h2pi3i4gapvcn0r"; }; go-nsq = buildFromGitHub { + rev = "v1.0.4"; owner = "nsqio"; repo = "go-nsq"; + sha256 = "06hrkwk84w8rshkanvfgmgbiml7n06ybv192dvibhwgk2wz2dl46"; propagatedBuildInputs = [ go-simplejson go-snappystream ]; goPackageAliases = [ "github.com/bitly/go-nsq" ]; }; go-options = buildFromGitHub { + rev = "7c174072188d0cfbe6f01bb457626abb22bdff52"; date = "2014-12-20"; owner = "mreiferson"; repo = "go-options"; + sha256 = "0ksyi2cb4k6r2fxamljg42qbz5hdcb9kv5i7y6cx4ajjy0xznwgm"; }; go-porterstemmer = buildFromGitHub { + rev = "23a2c8e5cf1f380f27722c6d2ae8896431dc7d0e"; date = "2014-12-30"; owner = "blevesearch"; repo = "go-porterstemmer"; + sha256 = "0rcfbrad79xd114h3dhy5d3zs3b5bcgqwm3h5ih1lk69zr9wi91d"; }; go-querystring = buildFromGitHub { + rev = "547ef5ac979778feb2f760cdb5f4eae1a2207b86"; owner = "google"; repo = "go-querystring"; + sha256 = "00ani7fhydcmlsm3n93nmj1hcqp2wmzvihnb1gdzynif1hw0530y"; }; go-radix = buildFromGitHub { + rev = "fbd82e84e2b13651f3abc5ffd26b65ba71bc8f93"; owner = "armon"; repo = "go-radix"; + sha256 = "16y64r1v054c2ln0bi5mrqq1cmvy6d6pnxk1glb8lw2g31ksa80c"; }; - junegunn.go-runewidth = buildFromGitHub { - owner = "junegunn"; - repo = "go-runewidth"; + junegunn.go-runewidth = buildGoPackage rec { + rev = "travisish"; + name = "go-runewidth-${rev}"; + goPackagePath = "github.com/junegunn/go-runewidth"; + src = fetchFromGitHub { + inherit rev; + owner = "junegunn"; + repo = "go-runewidth"; + sha256 = "07d612val59sibqly5d6znfkp4h4gjd77783jxvmiq6h2fwb964k"; + }; }; - go-shellwords = buildFromGitHub { - owner = "junegunn"; - repo = "go-shellwords"; + go-shellwords = buildGoPackage rec { + rev = "35d512af75e283aae4ca1fc3d44b159ed66189a4"; + name = "go-shellwords-${rev}"; + goPackagePath = "github.com/junegunn/go-shellwords"; + src = fetchFromGitHub { + inherit rev; + owner = "junegunn"; + repo = "go-shellwords"; + sha256 = "c792abe5fda48d0dfbdc32a84edb86d884a0ccbd9ed49ad48a30cda5ba028a22"; + }; }; go-restful = buildFromGitHub { + rev = "892402ba11a2e2fd5e1295dd633481f27365f14d"; owner = "emicklei"; repo = "go-restful"; + sha256 = "0gr9f53vayc6501a1kaw4p3h9pgf376cgxsfnr3f2dvp0xacvw8x"; }; go-repo-root = buildFromGitHub { + rev = "90041e5c7dc634651549f96814a452f4e0e680f9"; date = "2014-09-11"; owner = "cstrahan"; repo = "go-repo-root"; + sha256 = "1rlzp8kjv0a3dnfhyqcggny0ad648j5csr2x0siq5prahlp48mg4"; buildInputs = [ tools ]; }; go-rice = buildFromGitHub { + rev = "4f3c5af2322e393f305d9674845bc36cd1dea589"; date = "2016-01-04"; owner = "GeertJohan"; repo = "go.rice"; + sha256 = "01q2d5iwibwdl68gn8sg6dm7byc42hax3zmiqgmdw63ir1fsv4ag"; propagatedBuildInputs = [ osext go-spew go-flags go-zipexe rsrc go-incremental ]; }; go-runit = buildFromGitHub { + rev = "a9148323a615e2e1c93b7a9893914a360b4945c8"; owner = "soundcloud"; repo = "go-runit"; + sha256 = "00f2rfhsaqj2wjanh5qp73phx7x12a5pwd7lc0rjfv68l6sgpg2v"; }; go-simplejson = buildFromGitHub { + rev = "18db6e68d8fd9cbf2e8ebe4c81a78b96fd9bf05a"; date = "2015-03-31"; owner = "bitly"; repo = "go-simplejson"; + sha256 = "0lj9cxyncchlw6p35j0yym5q5waiz0giw6ri41qdwm8y3dghwwiy"; }; go-snappystream = buildFromGitHub { + rev = "028eae7ab5c4c9e2d1cb4c4ca1e53259bbe7e504"; date = "2015-04-16"; owner = "mreiferson"; repo = "go-snappystream"; + sha256 = "0jdd5whp74nvg35d9hzydsi3shnb1vrnd7shi9qz4wxap7gcrid6"; }; go-spew = buildFromGitHub { + rev = "5215b55f46b2b919f50a1df0eaa5886afe4e3b3d"; date = "2015-11-05"; owner = "davecgh"; repo = "go-spew"; + sha256 = "15h9kl73rdbzlfmsdxp13jja5gs7sknvqkpq2qizq3qv3nr1x8dk"; }; go-sqlite3 = buildFromGitHub { + rev = "b4142c444a8941d0d92b0b7103a24df9cd815e42"; date = "2015-07-29"; owner = "mattn"; repo = "go-sqlite3"; + sha256 = "0xq2y4am8dz9w9aaq24s1npg1sn8pf2gn4nki73ylz2fpjwq9vla"; }; go-syslog = buildFromGitHub { + rev = "42a2b573b664dbf281bd48c3cc12c086b17a39ba"; owner = "hashicorp"; repo = "go-syslog"; + sha256 = "1j53m2wjyczm9m55znfycdvm4c8vfniqgk93dvzwy8vpj5gm6sb3"; }; - go-systemd = buildFromGitHub { - owner = "coreos"; - repo = "go-systemd"; + go-systemd = buildGoPackage rec { + rev = "2688e91251d9d8e404e86dd8f096e23b2f086958"; + name = "go-systemd-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/coreos/go-systemd"; + + src = fetchFromGitHub { + inherit rev; + owner = "coreos"; + repo = "go-systemd"; + sha256 = "0c1k3y5msc1xplhx0ksa7g08yqjaavns8s5zrfg4ig8az30gwlpa"; + }; + buildInputs = [ dbus ]; }; lxd-go-systemd = buildFromGitHub { + rev = "a3dcd1d0480ee0ae9ec354f1632202bfba715e03"; date = "2015-07-01"; owner = "stgraber"; repo = "lxd-go-systemd"; + sha256 = "006dhy3j8ld0kycm8hrjxvakd7xdn1b6z2dsjp1l4sqrxdmm188w"; buildInputs = [ dbus ]; }; go-update-v0 = buildFromGitHub { + rev = "d8b0b1d421aa1cbf392c05869f8abbc669bb7066"; owner = "inconshreveable"; repo = "go-update"; + sha256 = "0cvkik2w368fzimx3y29ncfgw7004qkbdf2n3jy5czvzn35q7dpa"; goPackagePath = "gopkg.in/inconshreveable/go-update.v0"; buildInputs = [ osext binarydist ]; }; go-uuid = buildFromGitHub { + rev = "6b8e5b55d20d01ad47ecfe98e5171688397c61e9"; date = "2015-07-22"; owner = "satori"; repo = "go.uuid"; + sha256 = "0injxzds41v8nc0brvyrrjl66fk3hycz6im38s5r9ccbwlp68p44"; }; go-vhost = buildFromGitHub { + rev = "c4c28117502e4bf00960c8282b2d1c51c865fe2c"; owner = "inconshreveable"; repo = "go-vhost"; + sha256 = "1rway6sls6fl2s2jk20ajj36rrlzh9944ncc9pdd19kifix54z32"; }; go-zipexe = buildFromGitHub { + rev = "a5fe2436ffcb3236e175e5149162b41cd28bd27d"; date = "2015-03-29"; owner = "daaku"; repo = "go.zipexe"; + sha256 = "0vi5pskhifb6zw78w2j97qbhs09zmrlk4b48mybgk5b3sswp6510"; }; go-zookeeper = buildFromGitHub { + rev = "5bb5cfc093ad18a28148c578f8632cfdb4d802e4"; date = "2015-06-02"; owner = "samuel"; repo = "go-zookeeper"; + sha256 = "1kpx1ymh7rds0b2km291idnyqi0zck74nd8hnk72crgz7wmpqv6z"; }; lint = buildFromGitHub { + rev = "7b7f4364ff76043e6c3610281525fabc0d90f0e4"; date = "2015-06-23"; owner = "golang"; repo = "lint"; + sha256 = "1bj7zv534hyh87bp2vsbhp94qijc5nixb06li1dzfz9n0wcmlqw9"; excludedPackages = "testdata"; buildInputs = [ tools ]; }; - goquery = buildFromGitHub { - owner = "PuerkitoBio"; - repo = "goquery"; + goquery = buildGoPackage rec { + rev = "f065786d418c9d22a33cad33decd59277af31471"; #tag v.0.3.2 + name = "goquery-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/PuerkitoBio/goquery"; propagatedBuildInputs = [ cascadia net ]; buildInputs = [ cascadia net ]; doCheck = true; + src = fetchFromGitHub { + inherit rev; + owner = "PuerkitoBio"; + repo = "goquery"; + sha256 = "0bskm3nja1v3pmg7g8nqjkmpwz5p72h1h81y076x1z17zrjaw585"; + }; }; groupcache = buildFromGitHub { + rev = "604ed5785183e59ae2789449d89e73f3a2a77987"; owner = "golang"; repo = "groupcache"; + sha256 = "1jh862mmgss71wls4yxv633agr7dk7y6h36npwqxbmhbz5c2q28l"; buildInputs = [ protobuf ]; }; grpc = buildFromGitHub { + rev = "d455e65570c07e6ee7f23275063fbf34660ea616"; date = "2015-08-29"; owner = "grpc"; repo = "grpc-go"; + sha256 = "08vra95hc8ihnj353680zhiqrv3ssw5yywkrifzb1zwl0l3cs2hr"; goPackagePath = "google.golang.org/grpc"; goPackageAliases = [ "github.com/grpc/grpc-go" ]; propagatedBuildInputs = [ http2 net protobuf oauth2 glog etcd ]; @@ -1299,38 +1794,73 @@ let }; gtreap = buildFromGitHub { + rev = "0abe01ef9be25c4aedc174758ec2d917314d6d70"; date = "2015-08-07"; owner = "steveyen"; repo = "gtreap"; + sha256 = "03z5j8myrpmd0jk834l318xnyfm0n4rg15yq0d35y7j1aqx26gvk"; goPackagePath = "github.com/steveyen/gtreap"; }; - gucumber = buildFromGitHub { - owner = "lsegal"; - repo = "gucumber"; + gucumber = buildGoPackage rec { + rev = "e8116c9c66e641e9f81fc0a79fac923dfc646378"; + name = "gucumber-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/lsegal/gucumber"; + + src = fetchFromGitHub { + inherit rev; + owner = "lsegal"; + repo = "gucumber"; + sha256 = "1ic1lsv05da6qv8xmf94lpbmaisxi8mwbv7bh2k1y78lh43yncah"; + }; + buildInputs = [ testify ]; propagatedBuildInputs = [ ansicolor ]; }; hcl = buildFromGitHub { + rev = "54864211433d45cb780682431585b3e573b49e4a"; owner = "hashicorp"; repo = "hcl"; + sha256 = "07l2dydzjpdgm2d4a72hkmincn455j3nrafg6hs3c23bkvizj950"; buildInputs = [ go-multierror ]; }; - hipchat-go = buildFromGitHub { - owner = "tbruyelle"; - repo = "hipchat-go"; + hipchat-go = buildGoPackage rec { + rev = "1dd13e154219c15e2611fe46adbb6bf65db419b7"; + name = "hipchat-go-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/tbruyelle/hipchat-go"; + + src = fetchFromGitHub { + inherit rev; + owner = "tbruyelle"; + repo = "hipchat-go"; + sha256 = "060wg5yjlh28v03mvm80kwgxyny6cyj7zjpcdg032b8b1sz9z81s"; + }; }; - hmacauth = buildFromGitHub { - owner = "18F"; - repo = "hmacauth"; + hmacauth = buildGoPackage { + name = "hmacauth"; + goPackagePath = "github.com/18F/hmacauth"; + src = fetchFromGitHub { + rev = "9232a6386b737d7d1e5c1c6e817aa48d5d8ee7cd"; + owner = "18F"; + repo = "hmacauth"; + sha256 = "056mcqrf2bv0g9gn2ixv19srk613h4sasl99w9375mpvmadb3pz1"; + }; }; - hound = buildFromGitHub { - owner = "etsy"; - repo = "hound"; + hound = buildGoPackage rec { + rev = "0a364935ba9db53e6f3f5563b02fcce242e0930f"; + name = "hound-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/etsy/hound"; + + src = fetchFromGitHub { + inherit rev; + owner = "etsy"; + repo = "hound"; + sha256 = "0jhnjskpm15nfa1cvx0h214lx72zjvnkjwrbgwgqqyn9afrihc7q"; + }; buildInputs = [ go-bindata.bin pkgs.nodejs pkgs.nodePackages.react-tools pkgs.python pkgs.rsync ]; postInstall = '' pushd go @@ -1341,27 +1871,41 @@ let ''; }; - hologram = buildFromGitHub { - owner = "AdRoll"; - repo = "hologram"; + hologram = buildGoPackage rec { + rev = "63014b81675e1228818bf36ef6ef0028bacad24b"; + name = "hologram-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/AdRoll/hologram"; + + src = fetchFromGitHub { + inherit rev; + owner = "AdRoll"; + repo = "hologram"; + sha256 = "0k8g7dwrkxdvmzs4aa8zz39qa8r2danc4x40hrblcgjhfcwzxrzr"; + }; buildInputs = [ crypto protobuf goamz rgbterm go-bindata go-homedir ldap g2s gox ]; }; http2 = buildFromGitHub rec { + rev = "f8202bc903bda493ebba4aa54922d78430c2c42f"; owner = "bradfitz"; repo = "http2"; + sha256 = "0cza2126jbji5vijwk4dxs05hifnff04xcr0vhxvafs6hz3sacvr"; buildInputs = [ crypto ]; }; httprouter = buildFromGitHub { + rev = "6aacfd5ab513e34f7e64ea9627ab9670371b34e7"; date = "2015-07-08"; owner = "julienschmidt"; repo = "httprouter"; + sha256 = "00rrjysmq898qcrf2hfwfh9s70vwvmjx2kp5w03nz1krxa4zhrkl"; }; hugo = buildFromGitHub { + rev = "v0.15"; owner = "spf13"; repo = "hugo"; + sha256 = "1v0z9ar5kakhib3c3c43ddwd1ga4b8icirg6kk3cnaqfckd638l5"; buildInputs = [ mapstructure text websocket cobra osext fsnotify.v1 afero jwalterweatherman cast viper yaml-v2 ace purell mmark blackfriday amber @@ -1370,15 +1914,19 @@ let }; i3cat = buildFromGitHub { + rev = "b9ba886a7c769994ccd8d4627978ef4b51fcf576"; date = "2015-03-21"; owner = "vincent-petithory"; repo = "i3cat"; + sha256 = "1xlm5c9ajdb71985nq7hcsaraq2z06przbl6r4ykvzi8w2lwgv72"; buildInputs = [ structfield ]; }; inf = buildFromGitHub { + rev = "c85f1217d51339c0fa3a498cc8b2075de695dae6"; owner = "go-inf"; repo = "inf"; + sha256 = "1ykdk410vca8i35db2fp6qqcfx0bmx95k0xqd15wzsl0xjmyjk3y"; goPackagePath = "gopkg.in/inf.v0"; goPackageAliases = [ "github.com/go-inf/inf" ]; }; @@ -1395,30 +1943,44 @@ let }; influxdb8-client = buildFromGitHub{ + rev = "v0.8.8"; owner = "influxdb"; repo = "influxdb"; + sha256 = "0xpigp76rlsxqj93apjzkbi98ha5g4678j584l6hg57p711gqsdv"; subPackages = [ "client" ]; }; - eckardt.influxdb-go = buildFromGitHub { - owner = "eckardt"; - repo = "influxdb-go"; + eckardt.influxdb-go = buildGoPackage rec { + rev = "8b71952efc257237e077c5d0672e936713bad38f"; + name = "influxdb-go-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/eckardt/influxdb-go"; + src = fetchgit { + inherit rev; + url = "https://${goPackagePath}.git"; + sha256 = "5318c7e1131ba2330c90a1b67855209e41d3c77811b1d212a96525b42d391f6e"; + }; }; flagfile = buildFromGitHub { + rev = "871ce569c29360f95d7596f90aa54d5ecef75738"; owner = "spacemonkeygo"; repo = "flagfile"; + sha256 = "1y6wf1s51c90qc1aki8qikkw1wqapzjzr690xrmnrngsfpdyvkrc"; }; iochan = buildFromGitHub { + rev = "b584a329b193e206025682ae6c10cdbe03b0cd77"; owner = "mitchellh"; repo = "iochan"; + sha256 = "1fcwdhfci41ibpng2j4c1bqfng578cwzb3c00yw1lnbwwhaq9r6b"; }; ipfs = buildFromGitHub{ + rev = "7070b4d878baad57dcc8da80080dd293aa46cabd"; date = "2016-01-12"; owner = "ipfs"; repo = "go-ipfs"; + sha256 = "1b7aimnbz287fy7p27v3qdxnz514r5142v3jihqxanbk9g384gcd"; disabled = isGo14; meta = with stdenv.lib; { description = "A global, versioned, peer-to-peer filesystem"; @@ -1427,19 +1989,25 @@ let }; json2csv = buildFromGitHub{ + rev = "d82e60e6dc2a7d3bcf15314d1ecbebeffaacf0c6"; owner = "jehiah"; repo = "json2csv"; + sha256 = "1fw0qqaz2wj9d4rj2jkfj7rb25ra106p4znfib69p4d3qibfjcsn"; }; jwalterweatherman = buildFromGitHub { + rev = "c2aa07df593850a04644d77bb757d002e517a296"; owner = "spf13"; repo = "jwalterweatherman"; + sha256 = "0m8867afsvka5gp2idrmlarpjg7kxx7qacpwrz1wl8y3zxyn3945"; }; kagome = buildFromGitHub { + rev = "1bbdbdd590e13a8c2f4508c67a079113cd7b9f51"; date = "2016-01-19"; owner = "ikawaha"; repo = "kagome"; + sha256 = "1isnjdkn9hnrkp5g37p2k5bbsrx0ma32v3icwlmwwyc5mppa4blb"; # I disable the parallel building, because otherwise each # spawned compile takes over 1.5GB of RAM. @@ -1449,75 +2017,118 @@ let goPackagePath = "github.com/ikawaha/kagome"; }; - ldap = buildFromGitHub { - owner = "go-ldap"; - repo = "ldap"; + ldap = buildGoPackage rec { + rev = "83e65426fd1c06626e88aa8a085e5bfed0208e29"; + name = "ldap-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/go-ldap/ldap"; goPackageAliases = [ "github.com/nmcclain/ldap" "github.com/vanackere/ldap" ]; + + src = fetchFromGitHub { + inherit rev; + owner = "go-ldap"; + repo = "ldap"; + sha256 = "179lwaf0hvczl8g4xzkpcpzq25p1b23f7399bx5zl55iin62d8yz"; + }; + propagatedBuildInputs = [ asn1-ber ]; }; - levigo = buildFromGitHub { - owner = "jmhodges"; - repo = "levigo"; + levigo = buildGoPackage rec { + rev = "1ddad808d437abb2b8a55a950ec2616caa88969b"; + name = "levigo-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/jmhodges/levigo"; + + src = fetchFromGitHub { + inherit rev; + owner = "jmhodges"; + repo = "levigo"; + sha256 = "1lmafyk7nglhig3n471jq4hmnqf45afj5ldb2jx0253f5ii4r2yq"; + }; + buildInputs = [ pkgs.leveldb ]; }; liner = buildFromGitHub { + rev = "ad1edfd30321d8f006ccf05f1e0524adeb943060"; owner = "peterh"; repo = "liner"; + sha256 = "0c24d9j1gnq7r982h1l2isp3d37379qw155hr8ihx9i2mhpfz317"; }; odeke-em.log = buildFromGitHub { + rev = "cad53c4565a0b0304577bd13f3862350bdc5f907"; owner = "odeke-em"; repo = "log"; + sha256 = "059c933qjikxlvaywzpzljqnab19svymbv6x32pc7khw156fh48w"; }; log15 = buildFromGitHub { + rev = "dc7890abeaadcb6a79a9a5ee30bc1897bbf97713"; owner = "inconshreveable"; repo = "log15"; + sha256 = "15wgicl078h931n90rksgbqmfixvbfxywk3m8qkaln34v69x4vgp"; goPackagePath = "gopkg.in/inconshreveable/log15.v2"; propagatedBuildInputs = [ go-colorable ]; }; - log4go = buildFromGitHub { - owner = "ccpaging"; - repo = "log4go"; + log4go = buildGoPackage rec { + rev = "cb4cc51cd03958183d3b637d0750497d88c2f7a8"; + name = "log4go-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/ccpaging/log4go"; goPackageAliases = [ "github.com/alecthomas/log4go" "code.google.com/p/log4go" ]; + + src = fetchFromGitHub { + inherit rev; + owner = "ccpaging"; + repo = "log4go"; + sha256 = "0l9f86zzhla9hq35q4xhgs837283qrm4gxbp5lrwwls54ifiq7k2"; + }; + propagatedBuildInputs = [ go-colortext ]; }; logger = buildFromGitHub { + rev = "c96f6a1a8c7b6bf2f4860c667867d90174799eb2"; date = "2015-05-23"; owner = "calmh"; repo = "logger"; + sha256 = "1f67xbvvf210g5cqa84l12s00ynfbkjinhl8y6m88yrdb025v1vg"; }; logrus = buildFromGitHub rec { + rev = "v0.9.0"; owner = "Sirupsen"; repo = "logrus"; + sha256 = "1m6vvd4pg4lwglhk54lv5mf6cc8h7bi0d9zb3gar4crz531r66y4"; propagatedBuildInputs = [ airbrake-go bugsnag-go raven-go ]; }; logutils = buildFromGitHub { + rev = "0dc08b1671f34c4250ce212759ebd880f743d883"; owner = "hashicorp"; repo = "logutils"; + sha256 = "0rynhjwvacv9ibl2k4fwz0xy71d583ac4p33gm20k9yldqnznc7r"; }; luhn = buildFromGitHub { + rev = "0c8388ff95fa92d4094011e5a04fc99dea3d1632"; date = "2015-01-13"; owner = "calmh"; repo = "luhn"; + sha256 = "1hfj1lx7wdpifn16zqrl4xml6cj5gxbn6hfz1f46g2a6bdf0gcvs"; }; lxd = buildFromGitHub { + rev = "lxd-0.17"; owner = "lxc"; repo = "lxd"; + sha256 = "1yi3dr1bgdplc6nya10k5jsj3psbf3077vqad8x8cjza2z9i48fp"; 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 @@ -1530,8 +2141,10 @@ let }; manners = buildFromGitHub { + rev = "0.4.0"; owner = "braintree"; repo = "manners"; + sha256 = "07985pbfhwlhbglr9zwh2wx8kkp0wzqr1lf0xbbxbhga4hn9q3ak"; meta = with stdenv.lib; { description = "A polite Go HTTP server that shuts down gracefully"; @@ -1542,31 +2155,62 @@ let }; mapstructure = buildFromGitHub { + rev = "281073eb9eb092240d33ef253c404f1cca550309"; owner = "mitchellh"; repo = "mapstructure"; + sha256 = "1zjx9fv29639sp1fn84rxs830z7gp7bs38yd5y1hl5adb8s5x1mh"; }; - mdns = buildFromGitHub { - owner = "hashicorp"; - repo = "mdns"; + mdns = buildGoPackage rec { + rev = "2b439d37011456df8ff83a70ffd1cd6046410113"; + name = "mdns-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/hashicorp/mdns"; + + src = fetchFromGitHub { + inherit rev; + owner = "hashicorp"; + repo = "mdns"; + sha256 = "17zwk212zmyramnjylpvvrvbbsz0qb5crkhly6yiqkyll3qzpb96"; + }; + propagatedBuildInputs = [ net dns ]; }; - memberlist = buildFromGitHub { - owner = "hashicorp"; - repo = "memberlist"; + memberlist = buildGoPackage rec { + rev = "6025015f2dc659ca2c735112d37e753bda6e329d"; + name = "memberlist-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/hashicorp/memberlist"; + + src = fetchFromGitHub { + inherit rev; + owner = "hashicorp"; + repo = "memberlist"; + sha256 = "01s2gwnbgvwz4wshz9d4za0p12ji4fnapnlmz3jwfcmcwjpyqfb7"; + }; + propagatedBuildInputs = [ ugorji.go armon.go-metrics ]; }; - memberlist_v2 = buildFromGitHub { - owner = "hashicorp"; - repo = "memberlist"; + memberlist_v2 = buildGoPackage rec { + rev = "165267096ca647f00cc0b59a8f1ede9a96cbfbb1"; + name = "memberlist-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/hashicorp/memberlist"; + + src = fetchFromGitHub { + inherit rev; + owner = "hashicorp"; + repo = "memberlist"; + sha256 = "09lh79xqy7q0gy23x22lpfwihb5acr750vxl2fx0i4b88kq1vrzh"; + }; + propagatedBuildInputs = [ ugorji.go armon.go-metrics ]; }; mesos-dns = buildFromGitHub { + rev = "v0.1.2"; owner = "mesosphere"; repo = "mesos-dns"; + sha256 = "0zs6lcgk43j7jp370qnii7n55cd9pa8gl56r8hy4nagfvlvrcm02"; # Avoid including the benchmarking test helper in the output: subPackages = [ "." ]; @@ -1575,34 +2219,49 @@ let }; mesos-go = buildFromGitHub { + rev = "d98afa618cc9a9251758916f49ce87f9051b69a4"; owner = "mesos"; repo = "mesos-go"; + sha256 = "01ab0jf3cfb1rdwwb21r38rcfr5vp86pkfk28mws8298mlzbpri7"; propagatedBuildInputs = [ gogo.protobuf glog net testify go-zookeeper objx uuid ]; excludedPackages = "test"; }; - mesos-stats = buildFromGitHub { - owner = "antonlindstrom"; - repo = "mesos_stats"; + mesos-stats = buildGoPackage rec { + rev = "0c6ea494c19bedc67ebb85ce3d187ec21050e920"; + name = "mesos-stats-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/antonlindstrom/mesos_stats"; + src = fetchFromGitHub { + inherit rev; + owner = "antonlindstrom"; + repo = "mesos_stats"; + sha256 = "18ggyjf4nyn77gkn16wg9krp4dsphgzdgcr3mdflv6mvbr482ar4"; + }; }; mgo = buildFromGitHub { + rev = "r2015.06.03"; owner = "go-mgo"; repo = "mgo"; + sha256 = "1bwqbngdy0ghwpvarsz8rlrirdmjrda44aghihpfmin06hxy3zcd"; goPackagePath = "gopkg.in/mgo.v2"; goPackageAliases = [ "github.com/go-mgo/mgo" ]; buildInputs = [ pkgs.cyrus_sasl tomb ]; }; mmark = buildFromGitHub { + rev = "eacb2132c31a489033ebb068432892ba791a2f1b"; owner = "miekg"; repo = "mmark"; + sha256 = "0wsi6fb6f1qi1a8yv858bkgn8pmsspw2k6dx5fx38kvg8zsb4l1a"; buildInputs = [ toml ]; }; mongo-tools = buildFromGitHub { + rev = "4fcfd3e57415de95c0c016def07b95bca63cccb4"; owner = "mongodb"; repo = "mongo-tools"; + sha256 = "0rm7bnb81hr0byxhvagwv8an1bky882nz68cmm2kbznzyprvhyaa"; buildInputs = [ gopass go-flags mgo openssl tomb ]; excludedPackages = "vendor"; @@ -1620,49 +2279,78 @@ let }; mousetrap = buildFromGitHub { + rev = "9dbb96d2c3a964935b0870b5abaea13c98b483aa"; owner = "inconshreveable"; repo = "mousetrap"; + sha256 = "1f9g8vm18qv1rcb745a4iahql9vfrz0jni9mnzriab2wy1pfdl5b"; }; - msgpack = buildFromGitHub { - owner = "vmihailenco"; - repo = "msgpack"; + msgpack = buildGoPackage rec { + rev = "9dbd4ac30c0b67927f0fb5557fb8341047bd35f7"; + name = "msgpack-${stdenv.lib.strings.substring 0 7 rev}"; goPackagePath = "gopkg.in/vmihailenco/msgpack.v2"; + + src = fetchFromGitHub { + inherit rev; + owner = "vmihailenco"; + repo = "msgpack"; + sha256 = "0nq9yb85hi3c35kwyl38ywv95vd8n7aywmj78wwylglld22nfmw2"; + }; }; mtpfs = buildFromGitHub { + rev = "3ef47f91c38cf1da3e965e37debfc81738e9cd94"; date = "2015-08-01"; owner = "hanwen"; repo = "go-mtpfs"; + sha256 = "1f7lcialkpkwk01f7yxw77qln291sqjkspb09mh0yacmrhl231g8"; + buildInputs = [ go-fuse usb ]; }; mux = buildFromGitHub { + rev = "5a8a0400500543e28b2886a8c52d21a435815411"; date = "2015-08-05"; owner = "gorilla"; repo = "mux"; + sha256 = "15w1bw14vx157r6v98fhy831ilnbzdsm5xzvs23j8hw6gnknzaw1"; propagatedBuildInputs = [ context ]; }; muxado = buildFromGitHub { + rev = "f693c7e88ba316d1a0ae3e205e22a01aa3ec2848"; owner = "inconshreveable"; repo = "muxado"; + sha256 = "1vgiwwxhgx9c899f6ikvrs0w6vfsnypzalcqyr0mqm2w816r9hhs"; }; mysql = buildFromGitHub { + rev = "fb7299726d2e68745a8805b14f2ff44b5c2cfa84"; owner = "go-sql-driver"; repo = "mysql"; + sha256 = "185af0x475hq2wmm2zdvxjyslkplf8zzqijdxa937zqxq63qiw4w"; }; - net-rpc-msgpackrpc = buildFromGitHub { - owner = "hashicorp"; - repo = "net-rpc-msgpackrpc"; + net-rpc-msgpackrpc = buildGoPackage rec { + rev = "d377902b7aba83dd3895837b902f6cf3f71edcb2"; + name = "net-rpc-msgpackrpc-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/hashicorp/net-rpc-msgpackrpc"; + + src = fetchFromGitHub { + inherit rev; + owner = "hashicorp"; + repo = "net-rpc-msgpackrpc"; + sha256 = "05q8qlf42ygafcp8zdyx7y7kv9vpjrxnp8ak4qcszz9kgl2cg969"; + }; + propagatedBuildInputs = [ ugorji.go ]; }; ngrok = buildFromGitHub { + rev = "1.7.1"; owner = "inconshreveable"; repo = "ngrok"; + sha256 = "1r4nc9knp0nxg4vglg7v7jbyd1nh1j2590l720ahll8a4fbsx5a4"; goPackagePath = "ngrok"; preConfigure = '' @@ -1683,13 +2371,17 @@ let }; nitro = buildFromGitHub { + rev = "24d7ef30a12da0bdc5e2eb370a79c659ddccf0e8"; owner = "spf13"; repo = "nitro"; + sha256 = "143sbpx0jdgf8f8ayv51x6l4jg6cnv6nps6n60qxhx4vd90s6mib"; }; nsq = buildFromGitHub { + rev = "v0.3.5"; owner = "bitly"; repo = "nsq"; + sha256 = "1r7jgplzn6bgwhd4vn8045n6cmm4iqbzssbjgj7j1c28zbficy2f"; excludedPackages = "bench"; @@ -1697,14 +2389,21 @@ let }; ntp = buildFromGitHub { + rev = "0a5264e2563429030eb922f258229ae3fee5b5dc"; owner = "beevik"; repo = "ntp"; + sha256 = "03fvgbjf2aprjj1s6wdc35wwa7k1w5phkixzvp5n1j21sf6w4h24"; }; - oauth2_proxy = buildFromGitHub { + oauth2_proxy = buildGoPackage { name = "oauth2_proxy"; - owner = "bitly"; - repo = "oauth2_proxy"; + goPackagePath = "github.com/bitly/oauth2_proxy"; + src = fetchFromGitHub { + rev = "10f47e325b782a60b8689653fa45360dee7fbf34"; + owner = "bitly"; + repo = "oauth2_proxy"; + sha256 = "13f6kaq15f6ial9gqzrsx7i94jhd5j70js2k93qwxcw1vkh1b6si"; + }; buildInputs = [ go-assert go-options go-simplejson toml fsnotify.v1 oauth2 google-api-go-client hmacauth @@ -1712,43 +2411,68 @@ let }; objx = buildFromGitHub { + rev = "cbeaeb16a013161a98496fad62933b1d21786672"; owner = "stretchr"; repo = "objx"; + sha256 = "1xn7iibjik77h6h0jilfvcjkkzaqz45baf44p3rb2i03hbmkqkp1"; }; - oglematchers = buildFromGitHub { - owner = "jacobsa"; - repo = "oglematchers"; + oglematchers = buildGoPackage rec { + rev = "4fc24f97b5b74022c2a3f4ca7eed57ca29083d3e"; + name = "oglematchers-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/jacobsa/oglematchers"; + src = fetchgit { + inherit rev; + url = "https://${goPackagePath}.git"; + sha256 = "4075ede31601adf8c4e92739693aebffa3718c641dfca75b09cf6b4bd6c26cc0"; + }; #goTestInputs = [ ogletest ]; doCheck = false; # infinite recursion }; - oglemock = buildFromGitHub { - owner = "jacobsa"; - repo = "oglemock"; + oglemock = buildGoPackage rec { + rev = "d054ecee522bdce4481690cdeb09d1b4c44da4e1"; + name = "oglemock-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/jacobsa/oglemock"; + src = fetchgit { + inherit rev; + url = "https://${goPackagePath}.git"; + sha256 = "685e7fc4308d118ae25467ba84c64754692a7772c77c197f38d8c1b63ea81da2"; + }; buildInputs = [ oglematchers ]; #goTestInputs = [ ogletest ]; + doCheck = false; # infinite recursion }; - ogletest = buildFromGitHub { - owner = "jacobsa"; - repo = "ogletest"; + ogletest = buildGoPackage rec { + rev = "7de485607c3f215cf92c1f793b5d5a7de46ec3c7"; + name = "ogletest-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/jacobsa/ogletest"; + src = fetchgit { + inherit rev; + url = "https://${goPackagePath}.git"; + sha256 = "0cfc43646d59dcea5772320f968aef2f565fb5c46068d8def412b8f635365361"; + }; buildInputs = [ oglemock oglematchers ]; doCheck = false; # check this again }; oh = buildFromGitHub { + rev = "f3e482f664e76dcf98d5f94dd93c216da300b78e"; date = "2016-02-23"; owner = "michaelmacinnis"; repo = "oh"; + sha256 = "1j5g37jjl1kxri44ihb1bsrzx4al07dvl4s5dglb2m7bjia6iqs2"; goPackageAliases = [ "github.com/michaelmacinnis/oh" ]; buildInputs = [ adapted liner ]; disabled = isGo14; }; openssl = buildFromGitHub { + rev = "4c6dbafa5ec35b3ffc6a1b1e1fe29c3eba2053ec"; owner = "10gen"; repo = "openssl"; + sha256 = "1033c9vgv9lf8ks0qjy0ylsmx1hizqxa6izalma8vi30np6ka6zn"; goPackageAliases = [ "github.com/spacemonkeygo/openssl" ]; nativeBuildInputs = [ pkgs.pkgconfig ]; buildInputs = [ pkgs.openssl ]; @@ -1761,24 +2485,31 @@ let # reintroduced for gocrytpfs as I don't understand the 10gen/spacemonkey split openssl-spacemonkey = buildFromGitHub rec { + rev = "71f9da2a482c2b7bc3507c3fabaf714d6bb8b75d"; + name = "openssl-${stdenv.lib.strings.substring 0 7 rev}"; owner = "spacemonkeygo"; repo = "openssl"; + sha256 = "1byxwiq4mcbsj0wgaxqmyndp6jjn5gm8fjlsxw9bg0f33a3kn5jk"; nativeBuildInputs = [ pkgs.pkgconfig ]; buildInputs = [ pkgs.openssl ]; propagatedBuildInputs = [ spacelog ]; }; opsgenie-go-sdk = buildFromGitHub { + rev = "c6e1235dfed2126eb9b562c4d776baf55ccd23e3"; date = "2015-08-24"; owner = "opsgenie"; repo = "opsgenie-go-sdk"; + sha256 = "1prvnjiqmhnp9cggp9f6882yckix2laqik35fcj32117ry26p4jm"; propagatedBuildInputs = [ seelog go-querystring goreq ]; excludedPackages = "samples"; }; osext = buildFromGitHub { + rev = "29ae4ffbc9a6fe9fb2bc5029050ce6996ea1d3bc"; owner = "kardianos"; repo = "osext"; + sha256 = "1mawalaz84i16njkz6f9fd5jxhcbxkbsjnav3cmqq2dncv2hyv8a"; goPackageAliases = [ "github.com/bugsnag/osext" "bitbucket.org/kardianos/osext" @@ -1786,45 +2517,67 @@ let }; pat = buildFromGitHub { + rev = "b8a35001b773c267eb260a691f4e5499a3531600"; owner = "bmizerany"; repo = "pat"; + sha256 = "11zxd45rvjm6cn3wzbi18wy9j4vr1r1hgg6gzlqnxffiizkycxmz"; }; pathtree = buildFromGitHub { + rev = "41257a1839e945fce74afd070e02bab2ea2c776a"; owner = "robfig"; repo = "pathtree"; + sha256 = "087hvskjx1zw815h1617i135vwsn5288v579mz6yral91wbn0kvi"; }; - panicwrap = buildFromGitHub { - owner = "bugsnag"; - repo = "panicwrap"; + panicwrap = buildGoPackage rec { + rev = "e5f9854865b9778a45169fc249e99e338d4d6f27"; + name = "panicwrap-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/bugsnag/panicwrap"; + + src = fetchFromGitHub { + inherit rev; + owner = "bugsnag"; + repo = "panicwrap"; + sha256 = "01afviklmgm25i82c0z9xkjgbrh0j1fm9a1adqfd2jqv0cm41k9d"; + }; + propagatedBuildInputs = [ osext ]; }; pb = buildFromGitHub { + rev = "e648e12b78cedf14ebb2fc1855033f07b034cfbb"; owner = "cheggaaa"; repo = "pb"; + sha256 = "03k4cars7hcqqgdsd0minfls2p7gjpm8q6y8vknh1s68kvxd4xam"; }; - perks = buildFromGitHub { + perks = buildFromGitHub rec { date = "2014-07-16"; owner = "bmizerany"; repo = "perks"; + rev = "d9a9656a3a4b1c2864fdb44db2ef8619772d92aa"; + sha256 = "0f39b3zfm1zd6xcvlm6szgss026qs84n2j9y5bnb3zxzdkxb9w9n"; }; beorn7.perks = buildFromGitHub rec { date = "2015-02-23"; owner = "beorn7"; repo = "perks"; + rev = "b965b613227fddccbfffe13eae360ed3fa822f8d"; + sha256 = "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk"; }; - # XXX: why have does pflag seem to be a dupe of pflag-spf13? - pflag = buildFromGitHub { + pflag = buildGoPackage rec { date = "20131112"; rev = "94e98a55fb412fcbcfc302555cb990f5e1590627"; - owner = "spf13"; - repo = "pflag"; - sha256 = "0z8nzdhj8nrim8fz11magdl0wxnisix9p2kcvn5kkb3bg8wmxhbg"; + name = "pflag-${date}-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/spf13/pflag"; + src = fetchgit { + inherit rev; + url = "https://${goPackagePath}.git"; + sha256 = "0z8nzdhj8nrim8fz11magdl0wxnisix9p2kcvn5kkb3bg8wmxhbg"; + }; doCheck = false; # bad import path in tests }; @@ -1839,8 +2592,10 @@ let isx86_64 = stdenv.lib.any (n: n == stdenv.system) stdenv.lib.platforms.x86_64; gui = true; # Might be implemented with nixpkgs config. in buildFromGitHub { + rev = "bce6e0dc61803c23699c749e29a83f81da3c41b2"; owner = "agl"; repo = "pond"; + sha256 = "1dmgbg4ak3jkbgmxh0lr4hga1nl623mh7pvsgby1rxl4ivbzwkh4"; buildInputs = [ net crypto protobuf ed25519 pkgs.trousers ] ++ stdenv.lib.optional isx86_64 pkgs.dclxvi @@ -1855,33 +2610,52 @@ let }; pongo2 = buildFromGitHub { + rev = "5e81b817a0c48c1c57cdf1a9056cf76bdee02ca9"; date = "2014-10-27"; owner = "flosch"; repo = "pongo2"; + sha256 = "0fd7d79644zmcirsb1gvhmh0l5vb5nyxmkzkvqpmzzcg6yfczph8"; goPackagePath = "gopkg.in/flosch/pongo2.v3"; }; - pool = buildFromGitHub { - owner = "fatih"; - repo = "pool"; + pool = buildGoPackage rec { + rev = "v2.0.0"; + name = "pq-${rev}"; goPackagePath = "gopkg.in/fatih/pool.v2"; + + src = fetchFromGitHub { + inherit rev; + owner = "fatih"; + repo = "pool"; + sha256 = "1jlrakgnpvhi2ny87yrsj1gyrcncfzdhypa9i2mlvvzqlj4r0dn0"; + }; }; pq = buildFromGitHub { + rev = "0dad96c0b94f8dee039aa40467f767467392a0af"; owner = "lib"; repo = "pq"; + sha256 = "06c38iy37251mh8jy9s8n97b01pjnqpq8ii77nnmqh1dsph37jz4"; }; - pretty = buildFromGitHub { - owner = "kr"; - repo = "pretty"; + pretty = buildGoPackage rec { + rev = "bc9499caa0f45ee5edb2f0209fbd61fbf3d9018f"; + name = "pretty-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/kr/pretty"; + src = fetchFromGitHub { + inherit rev; + owner = "kr"; + repo = "pretty"; + sha256 = "1m61y592qsnwsqn76v54mm6h2pcvh4wlzbzscc1ag645x0j33vvl"; + }; propagatedBuildInputs = [ kr.text ]; }; prometheus.alertmanager = buildFromGitHub rec { - rev = ghPackages.prometheus.alertmanager.rev; + rev = "0.1.0"; owner = "prometheus"; repo = "alertmanager"; + sha256 = "1ya465bns6cj2lqbipmfm13wz8kxii5h9mm7lc0ba1xv26xx5zs7"; buildInputs = [ # fsnotify.v0 @@ -1918,8 +2692,10 @@ let }; prometheus.client_golang = buildFromGitHub { + rev = "0.7.0"; owner = "prometheus"; repo = "client_golang"; + sha256 = "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna"; propagatedBuildInputs = [ goautoneg protobuf @@ -1931,8 +2707,10 @@ let }; prometheus.cli = buildFromGitHub { + rev = "0.3.0"; owner = "prometheus"; repo = "prometheus_cli"; + sha256 = "1qxqrcbd0d4mrjrgqz882jh7069nn5gz1b84rq7d7z1f1dqhczxn"; buildInputs = [ prometheus.client_model @@ -1949,15 +2727,19 @@ let }; prometheus.client_model = buildFromGitHub { + rev = "fa8ad6fec33561be4280a8f0514318c79d7f6cb6"; date = "2015-02-12"; owner = "prometheus"; repo = "client_model"; + sha256 = "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9"; buildInputs = [ protobuf ]; }; prometheus.collectd-exporter = buildFromGitHub { + rev = "0.1.0"; owner = "prometheus"; repo = "collectd_exporter"; + sha256 = "165zsdn0lffb6fvxz75szmm152a6wmia5skb96k1mv59qbmn9fi1"; buildInputs = [ prometheus.client_golang ]; meta = with stdenv.lib; { description = "Relay server for exporting metrics from collectd to Prometheus"; @@ -1969,8 +2751,10 @@ let }; prometheus.haproxy-exporter = buildFromGitHub { + rev = "0.4.0"; owner = "prometheus"; repo = "haproxy_exporter"; + sha256 = "0cwls1d4hmzjkwc50mjkxjb4sa4q6yq581wlc5sg9mdvl6g91zxr"; buildInputs = [ prometheus.client_golang ]; meta = with stdenv.lib; { description = "HAProxy Exporter for the Prometheus monitoring system"; @@ -1982,15 +2766,19 @@ let }; prometheus.log = buildFromGitHub { + rev = "439e5db48fbb50ebbaf2c816030473a62f505f55"; date = "2015-05-29"; owner = "prometheus"; repo = "log"; + sha256 = "1fl23gsw2hn3c1y91qckr661sybqcw2gqnd1gllxn3hp6p2w6hxv"; propagatedBuildInputs = [ logrus ]; }; prometheus.mesos-exporter = buildFromGitHub { + rev = "0.1.0"; owner = "prometheus"; repo = "mesos_exporter"; + sha256 = "059az73j717gd960g4jigrxnvqrjh9jw1c324xpwaafa0bf10llm"; buildInputs = [ mesos-stats prometheus.client_golang glog ]; meta = with stdenv.lib; { description = "Export Mesos metrics to Prometheus"; @@ -2002,8 +2790,10 @@ let }; prometheus.mysqld-exporter = buildFromGitHub { + rev = "0.1.0"; owner = "prometheus"; repo = "mysqld_exporter"; + sha256 = "10xnyxyb6saz8pq3ijp424hxy59cvm1b5c9zcbw7ddzzkh1f6jd9"; buildInputs = [ mysql prometheus.client_golang ]; meta = with stdenv.lib; { description = "Prometheus exporter for MySQL server metrics"; @@ -2015,9 +2805,11 @@ let }; prometheus.nginx-exporter = buildFromGitHub { + rev = "2cf16441591f6b6e58a8c0439dcaf344057aea2b"; date = "2015-06-01"; owner = "discordianfish"; repo = "nginx_exporter"; + sha256 = "0p9j0bbr2lr734980x2p8d67lcify21glwc5k3i3j4ri4vadpxvc"; buildInputs = [ prometheus.client_golang prometheus.log ]; meta = with stdenv.lib; { description = "Metrics relay from nginx stats to Prometheus"; @@ -2029,8 +2821,10 @@ let }; prometheus.node-exporter = buildFromGitHub { + rev = "0.11.0"; owner = "prometheus"; repo = "node_exporter"; + sha256 = "149fs9yxnbiyd4ww7bxsv730mcskblpzb3cs4v12jnq2v84a4kk4"; buildInputs = [ go-runit @@ -2053,14 +2847,18 @@ let }; prometheus.procfs = buildFromGitHub { + rev = "c91d8eefde16bd047416409eb56353ea84a186e4"; date = "2015-06-16"; owner = "prometheus"; repo = "procfs"; + sha256 = "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r"; }; prometheus.prom2json = buildFromGitHub { + rev = "0.1.0"; owner = "prometheus"; repo = "prom2json"; + sha256 = "0wwh3mz7z81fwh8n78sshvj46akcgjhxapjgfic5afc4nv926zdl"; buildInputs = [ golang_protobuf_extensions @@ -2078,9 +2876,10 @@ let }; prometheus.prometheus = buildFromGitHub rec { - rev = ghPackages.prometheus.prometheus.rev; + rev = "0.17.0"; owner = "prometheus"; repo = "prometheus"; + sha256 = "176198krna2i37dfhwsqi7m36sqn175yiny6n52vj27mc9s8ggzx"; buildInputs = [ # consul @@ -2128,9 +2927,10 @@ let }; prometheus.pushgateway = buildFromGitHub rec { - rev = ghPackages.prometheus.pushgateway.rev; + rev = "0.1.1"; owner = "prometheus"; repo = "pushgateway"; + sha256 = "17q5z9msip46wh3vxcsq9lvvhbxg75akjjcr2b29zrky8bp2m230"; buildInputs = [ protobuf @@ -2167,8 +2967,10 @@ let }; prometheus.statsd-bridge = buildFromGitHub { + rev = "0.1.0"; owner = "prometheus"; repo = "statsd_bridge"; + sha256 = "1fndpmd1k0a3ar6f7zpisijzc60f2dng5399nld1i1cbmd8jybjr"; buildInputs = [ fsnotify.v0 prometheus.client_golang ]; meta = with stdenv.lib; { description = "Receives StatsD-style metrics and exports them to Prometheus"; @@ -2180,13 +2982,17 @@ let }; properties = buildFromGitHub { + rev = "v1.5.6"; owner = "magiconair"; repo = "properties"; + sha256 = "043jhba7qbbinsij3yc475s1i42sxaqsb82mivh9gncpvnmnf6cl"; }; gogo.protobuf = buildFromGitHub { + rev = "932b70afa8b0bf4a8e167fdf0c3367cebba45903"; owner = "gogo"; repo = "protobuf"; + sha256 = "1djhv9ckqhyjnnqajjv8ivcwpmjdnml30l6zhgbjcjwdyz3nyzhx"; excludedPackages = "test"; goPackageAliases = [ "code.google.com/p/gogoprotobuf" @@ -2194,80 +3000,136 @@ let }; pty = buildFromGitHub { + rev = "67e2db24c831afa6c64fc17b4a143390674365ef"; owner = "kr"; repo = "pty"; + sha256 = "1l3z3wbb112ar9br44m8g838z0pq2gfxcp5s3ka0xvm1hjvanw2d"; }; purell = buildFromGitHub { + rev = "d69616f51cdfcd7514d6a380847a152dfc2a749d"; owner = "PuerkitoBio"; repo = "purell"; + sha256 = "0nma5i25j0y223ns7482lx4klcfhfwdr8v6r9kzrs0pwlq64ghs0"; propagatedBuildInputs = [ urlesc ]; }; pushover = buildFromGitHub { + rev = "a8420a1935479cc266bda685cee558e86dad4b9f"; owner = "thorduri"; repo = "pushover"; + sha256 = "0j4k43ppka20hmixlwhhz5mhv92p6wxbkvdabs4cf7k8jpk5argq"; }; qart = buildFromGitHub { + rev = "ccb109cf25f0cd24474da73b9fee4e7a3e8a8ce0"; owner = "vitrun"; repo = "qart"; + sha256 = "0bhp768b8ha6f25dmhwn9q8m2lkbn4qnjf8n7pizk25jn5zjdvc8"; }; - raft = buildFromGitHub rec { - owner = "hashicorp"; - repo = "raft"; + raft = buildGoPackage rec { + rev = "a8065f298505708bf60f518c09178149f3c06f21"; + name = "raft-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/hashicorp/raft"; + + src = fetchFromGitHub { + inherit rev; + owner = "hashicorp"; + repo = "raft"; + sha256 = "122mjijphas7ybbvssxv1r36sb8i907gdr9kvplnx6yg9w52j3mn"; + }; + propagatedBuildInputs = [ armon.go-metrics ugorji.go ]; }; - raft-boltdb = buildFromGitHub { - owner = "hashicorp"; - repo = "raft-boltdb"; + raft-boltdb = buildGoPackage rec { + rev = "d1e82c1ec3f15ee991f7cc7ffd5b67ff6f5bbaee"; + name = "raft-boltdb-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/hashicorp/raft-boltdb"; + + src = fetchFromGitHub { + inherit rev; + owner = "hashicorp"; + repo = "raft-boltdb"; + sha256 = "0p609w6x0h6bapx4b0d91dxnp2kj7dv0534q4blyxp79shv2a8ia"; + }; + propagatedBuildInputs = [ bolt ugorji.go raft ]; }; - raft-mdb = buildFromGitHub { - owner = "hashicorp"; - repo = "raft-mdb"; + raft-mdb = buildGoPackage rec { + rev = "4ec3694ffbc74d34f7532e70ef2e9c3546a0c0b0"; + name = "raft-mdb-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/hashicorp/raft-mdb"; + + src = fetchFromGitHub { + inherit rev; + owner = "hashicorp"; + repo = "raft-mdb"; + sha256 = "15l4n6zygwn3h118m2945h9jxkryaxxcgy8xij2rxjhzrzpfyj3i"; + }; + propagatedBuildInputs = [ gomdb ugorji.go raft ]; }; ratelimit = buildFromGitHub { + rev = "772f5c38e468398c4511514f4f6aa9a4185bc0a0"; date = "2015-06-19"; owner = "juju"; repo = "ratelimit"; + sha256 = "02rs61ay6sq499lxxszjsrxp33m6zklds1xrmnr5fk73vpqfa28p"; }; raw = buildFromGitHub { + rev = "724aedf6e1a5d8971aafec384b6bde3d5608fba4"; owner = "feyeleanor"; repo = "raw"; + sha256 = "0z4dcnadgk0fbxxd14dqa1wzzr0v3ksqlzd0swzs2mipim5wjgsz"; }; raven-go = buildFromGitHub { + rev = "74c334d7b8aaa4fd1b4fc6aa428c36fed1699e28"; date = "2015-07-21"; owner = "getsentry"; repo = "raven-go"; + sha256 = "1356a7h8zp1mcywnr0y83w0h4qdblp65rcf9slbx667n8x2rzda8"; }; redigo = buildFromGitHub { + rev = "535138d7bcd717d6531c701ef5933d98b1866257"; owner = "garyburd"; repo = "redigo"; + sha256 = "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v"; }; - relaysrv = buildFromGitHub { + relaysrv = buildFromGitHub rec { + rev = "7fe1fdd8c751df165ea825bc8d3e895f118bb236"; owner = "syncthing"; repo = "relaysrv"; + sha256 = "0qy14pa0z2dq5mix5ylv2raabwxqwj31g5kkz905wzki6d4j5lnp"; buildInputs = [ xdr syncthing-protocol011 ratelimit syncthing-lib ]; }; reflectwalk = buildFromGitHub { + rev = "eecf4c70c626c7cfbb95c90195bc34d386c74ac6"; owner = "mitchellh"; repo = "reflectwalk"; + sha256 = "1nm2ig7gwlmf04w7dbqd8d7p64z2030fnnfbgnd56nmd7dz8gpxq"; }; - revel = buildFromGitHub { - owner = "revel"; - repo = "revel"; + revel = buildGoPackage rec { + rev = "v0.12.0"; + name = "revel-${rev}"; + goPackagePath = "github.com/revel/revel"; + + src = fetchFromGitHub { + inherit rev; + owner = "revel"; + repo = "revel"; + sha256 = "1g88fw5lqh3a9qmx182s64zk3h1s1mx8bljyghissmd9z505pbzf"; + }; + # Using robfig's old go-cache due to compilation errors. # Try to switch to pmylund.go-cache after v0.12.0 propagatedBuildInputs = [ @@ -2276,70 +3138,106 @@ let }; restic = buildFromGitHub { + rev = "4d7e802c44369b40177cd52938bc5b0930bd2be1"; date = "2016-01-17"; owner = "restic"; repo = "restic"; + sha256 = "0lf40539dy2xa5l1xy1kyn1vk3w0fmapa1h65ciksrdhn89ilrxv"; # Using its delivered dependencies. Easier. preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/$goPackagePath/Godeps/_workspace"; }; rgbterm = buildFromGitHub { + rev = "c07e2f009ed2311e9c35bca12ec00b38ccd48283"; owner = "aybabtme"; repo = "rgbterm"; + sha256 = "1qph7drds44jzx1whqlrh1hs58k0wv0v58zyq2a81hmm72gsgzam"; }; ripper = buildFromGitHub { + rev = "bd1a682568fcb8a480b977bb5851452fc04f9ccb"; owner = "odeke-em"; repo = "ripper"; + sha256 = "010jsclnmkaywdlyfqdmq372q7kh3qbz2zra0c4wn91qnkmkrnw1"; }; rsrc = buildFromGitHub { + rev = "ba14da1f827188454a4591717fff29999010887f"; date = "2015-11-03"; owner = "akavel"; repo = "rsrc"; + sha256 = "0g9fj10xnxcv034c8hpcgbhswv6as0d8l176c5nfgh1lh6klmmzc"; }; - sandblast = buildFromGitHub { - owner = "aarzilli"; - repo = "sandblast"; + sandblast = buildGoPackage rec { + rev = "694d24817b9b7b8bacb6d458b7989b30d7fe3555"; + name = "sandblast-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/aarzilli/sandblast"; + + src = fetchFromGitHub { + inherit rev; + owner = "aarzilli"; + repo = "sandblast"; + sha256 = "1pj0bic3x89v44nr8ycqxwnafkiz3cr5kya4wfdfj5ldbs5xnq9l"; + }; + buildInputs = [ net text ]; }; # This is the upstream package name, underscores and all. I don't like it # but it seems wrong to change their name when packaging it. sanitized_anchor_name = buildFromGitHub { + rev = "10ef21a441db47d8b13ebcc5fd2310f636973c77"; owner = "shurcooL"; repo = "sanitized_anchor_name"; + sha256 = "1cnbzcf47cn796rcjpph1s64qrabhkv5dn9sbynsy7m9zdwr5f01"; }; - scada-client = buildFromGitHub { - owner = "hashicorp"; - repo = "scada-client"; + scada-client = buildGoPackage rec { + rev = "c26580cfe35393f6f4bf1b9ba55e6afe33176bae"; + name = "scada-client-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/hashicorp/scada-client"; + + src = fetchFromGitHub { + inherit rev; + owner = "hashicorp"; + repo = "scada-client"; + sha256 = "0s8xg49fa7d2d0vv8pi37f43rjrgkb7w6x6ydkikz1v8ccg05p3b"; + }; + buildInputs = [ armon.go-metrics net-rpc-msgpackrpc yamux ]; }; seelog = buildFromGitHub { + rev = "c510775bb50d98213cfafca75a4bc5e3fddc8d8f"; date = "2015-05-26"; owner = "cihub"; repo = "seelog"; + sha256 = "1f0rwgqlffv1a7b05736a4gf4l9dn80wsfyqcnz6qd2skhwnzv29"; }; segment = buildFromGitHub { + rev = "db70c57796cc8c310613541dfade3dce627d09c7"; date = "2016-01-05"; owner = "blevesearch"; repo = "segment"; + sha256 = "09xfdlcc6bsrr5grxp6fgnw9p4cf6jc0wwa9049fd1l0zmhj2m1g"; }; semver = buildFromGitHub { + rev = "31b736133b98f26d5e078ec9eb591666edfd091f"; date = "2015-07-20"; owner = "blang"; repo = "semver"; + sha256 = "19ifi0na4cj23q3h8xv89mx7p48y0ciymhmlrq9milm0xz80wk10"; }; serf = buildFromGitHub { + rev = "668982d8f90f5eff4a766583c1286393c1d27f68"; date = "2015-05-15"; owner = "hashicorp"; repo = "serf"; + sha256 = "1h05h5xhaj27r1mh5zshnykax29lqjhfc0bx4v9swiwb873c24qk"; buildInputs = [ circbuf armon.go-metrics ugorji.go go-syslog logutils mdns memberlist @@ -2347,75 +3245,120 @@ let ]; }; - sets = buildFromGitHub { - owner = "feyeleanor"; - repo = "sets"; + sets = buildGoPackage rec { + rev = "6c54cb57ea406ff6354256a4847e37298194478f"; + name = "sets-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/feyeleanor/sets"; + src = fetchFromGitHub { + inherit rev; + owner = "feyeleanor"; + repo = "sets"; + sha256 = "1l3hyl8kmwb9k6qi8x4w54g2cmydap0g3cqvs47bhvm47rg1j1zc"; + }; propagatedBuildInputs = [ slices ]; }; skydns = buildFromGitHub { + rev = "2.5.2b"; owner = "skynetservices"; repo = "skydns"; + sha256 = "01vac6bd71wky5jbd5k4a0x665bjn1cpmw7p655jrdcn5757c2lv"; + buildInputs = [ go-etcd rcrowley.go-metrics dns go-systemd prometheus.client_golang ]; }; - slices = buildFromGitHub { - owner = "feyeleanor"; - repo = "slices"; + slices = buildGoPackage rec { + rev = "bb44bb2e4817fe71ba7082d351fd582e7d40e3ea"; + name = "slices-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/feyeleanor/slices"; + src = fetchFromGitHub { + inherit rev; + owner = "feyeleanor"; + repo = "slices"; + sha256 = "1miqhzqgww41d8xbvmxfzx9rsfxgw742nqz96mhjkxpadrxg870v"; + }; propagatedBuildInputs = [ raw ]; }; spacelog = buildFromGitHub { + rev = "ae95ccc1eb0c8ce2496c43177430efd61930f7e4"; owner = "spacemonkeygo"; repo = "spacelog"; + sha256 = "1i1awivsix0ch0vg6rwvx0536ziyw6phcx45b1rmrclp6b6dyacy"; buildInputs = [ flagfile ]; }; - stathat = buildFromGitHub { - owner = "stathat"; - repo = "go"; + stathat = buildGoPackage rec { + rev = "01d012b9ee2ecc107cb28b6dd32d9019ed5c1d77"; + name = "stathat-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/stathat/go"; + src = fetchFromGitHub { + inherit rev; + owner = "stathat"; + repo = "go"; + sha256 = "0mrn70wjfcs4rfkmga3hbfqmbjk33skcsc8pyqxp02bzpwdpc4bi"; + }; }; statos = buildFromGitHub { + rev = "f27d6ab69b62abd9d9fe80d355e23a3e45d347d6"; owner = "odeke-em"; repo = "statos"; + sha256 = "17cpks8bi9i7p8j38x0wy60jb9g39wbzszcmhx4hlq6yzxr04jvs"; }; - statik = buildFromGitHub { - owner = "rakyll"; - repo = "statik"; + statik = buildGoPackage rec { + rev = "274df120e9065bdd08eb1120e0375e3dc1ae8465"; + name = "statik-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/rakyll/statik"; + excludedPackages = "example"; + + src = fetchFromGitHub { + inherit rev; + owner = "rakyll"; + repo = "statik"; + sha256 = "0llk7bxmk66wdiy42h32vj1jfk8zg351xq21hwhrq7gkfljghffp"; + }; }; structfield = buildFromGitHub { + rev = "01a738558a47fbf16712994d1737fb31c77e7d11"; date = "2014-08-01"; owner = "vincent-petithory"; repo = "structfield"; + sha256 = "1kyx71z13mf6hc8ly0j0b9zblgvj5lzzvgnc3fqh61wgxrsw24dw"; }; structs = buildFromGitHub { + rev = "a9f7daa9c2729e97450c2da2feda19130a367d8f"; owner = "fatih"; repo = "structs"; + sha256 = "0pyrc7svc826g37al3db19n5l4r2m9h1mlhjh3hz2r41xfaqia50"; }; - suture = buildFromGitHub { + suture = buildFromGitHub rec { + version = "1.0.1"; + rev = "v${version}"; owner = "thejerf"; repo = "suture"; + sha256 = "094ksr2nlxhvxr58nbnzzk0prjskb21r86jmxqjr3rwg4rkwn6d4"; }; syncthing = buildFromGitHub rec { version = "0.12.19"; + rev = "v${version}"; owner = "syncthing"; repo = "syncthing"; + sha256 = "11ij8whaqrrzriavxa08jpsmbd1zkc2qxsni1nbgszw2hymmv38g"; buildFlags = [ "-tags noupgrade,release" ]; disabled = isGo14; buildInputs = [ go-lz4 du luhn xdr snappy ratelimit osext goleveldb suture qart crypto net text rcrowley.go-metrics ]; - # TODO: find a way to automatically update the veresion here: postPatch = '' # Mostly a cosmetic change sed -i 's,unknown-dev,${version},g' cmd/syncthing/main.go @@ -2439,13 +3382,13 @@ let }; syncthing-lib = buildFromGitHub { - inherit (syncthing) owner repo src; + inherit (syncthing) rev owner repo sha256; subPackages = [ "lib/sync" ]; propagatedBuildInputs = syncthing.buildInputs; }; syncthing-protocol = buildFromGitHub { - inherit (syncthing) owner repo src; + inherit (syncthing) rev owner repo sha256; subPackages = [ "lib/protocol" ]; propagatedBuildInputs = [ go-lz4 @@ -2465,82 +3408,126 @@ let }; tablewriter = buildFromGitHub { + rev = "bc39950e081b457853031334b3c8b95cdfe428ba"; date = "2015-06-03"; owner = "olekukonko"; repo = "tablewriter"; + sha256 = "0n4gqjc2dqmnbpqgi9i8vrwdk4mkgyssc7l2n4r5bqx0n3nxpbps"; }; - termbox-go = buildFromGitHub { - owner = "nsf"; - repo = "termbox-go"; + termbox-go = buildGoPackage rec { + rev = "9aecf65084a5754f12d27508fa2e6ed56851953b"; + name = "termbox-go-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/nsf/termbox-go"; + src = fetchFromGitHub { + inherit rev; + owner = "nsf"; + repo = "termbox-go"; + sha256 = "16sak07bgvmax4zxfrd4jia1dgygk733xa8vk8cdx28z98awbfsh"; + }; + subPackages = [ "./" ]; # prevent building _demos }; - testify = buildFromGitHub { - owner = "stretchr"; - repo = "testify"; + testify = buildGoPackage rec { + rev = "089c7181b8c728499929ff09b62d3fdd8df8adff"; + name = "testify-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/stretchr/testify"; + + src = fetchFromGitHub { + inherit rev; + owner = "stretchr"; + repo = "testify"; + sha256 = "03dzxkxbs298pvfsjz4kdadfaf9jkzsdhshqmg4p12wbyaj09s4p"; + }; + buildInputs = [ objx ]; }; - kr.text = buildFromGitHub { - owner = "kr"; - repo = "text"; + kr.text = buildGoPackage rec { + rev = "6807e777504f54ad073ecef66747de158294b639"; + name = "kr.text-${stdenv.lib.strings.substring 0 7 rev}"; + goPackagePath = "github.com/kr/text"; + src = fetchFromGitHub { + inherit rev; + owner = "kr"; + repo = "text"; + sha256 = "1wkszsg08zar3wgspl9sc8bdsngiwdqmg3ws4y0bh02sjx5a4698"; + }; propagatedBuildInputs = [ pty ]; }; timer_metrics = buildFromGitHub { + rev = "afad1794bb13e2a094720aeb27c088aa64564895"; date = "2015-02-02"; owner = "bitly"; repo = "timer_metrics"; + sha256 = "1b717vkwj63qb5kan4b92kx4rg6253l5mdb3lxpxrspy56a6rl0c"; }; tomb = buildFromGitHub { + rev = "14b3d72120e8d10ea6e6b7f87f7175734b1faab8"; owner = "go-tomb"; repo = "tomb"; + sha256 = "1nza31jvkpka5431c4bdbirvjdy36b1b55sbzljqhqih25jrcjx5"; goPackagePath = "gopkg.in/tomb.v2"; goPackageAliases = [ "github.com/go-tomb/tomb" ]; }; toml = buildFromGitHub { + rev = "056c9bc7be7190eaa7715723883caffa5f8fa3e4"; date = "2015-05-01"; owner = "BurntSushi"; repo = "toml"; + sha256 = "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw"; }; uilive = buildFromGitHub { + rev = "1b9b73fa2b2cc24489b1aba4d29a82b12cd0a71f"; owner = "gosuri"; repo = "uilive"; + sha256 = "0669f21hd5cw74irrfakdpvxn608cd5xy6s2nyp5kgcy2ijrq4ab"; }; uiprogress = buildFromGitHub { buildInputs = [ uilive ]; + rev = "fd1c82df78a6c1f5ddbd3b6ec46407ea0acda1ad"; owner = "gosuri"; repo = "uiprogress"; + sha256 = "1s61vp2h6n1d8y1zqr2ca613ch5n18rx28waz6a8im94sgzzawp7"; }; urlesc = buildFromGitHub { + rev = "5fa9ff0392746aeae1c4b37fcc42c65afa7a9587"; owner = "opennota"; repo = "urlesc"; + sha256 = "0dppkmfs0hb5vcqli191x9yss5vvlx29qxjcywhdfirc89rn0sni"; }; usb = buildFromGitHub rec { + rev = "69aee4530ac705cec7c5344418d982aaf15cf0b1"; date = "2014-12-17"; owner = "hanwen"; repo = "usb"; + sha256 = "01k0c2g395j65vm1w37mmrfkg6nm900khjrrizzpmx8f8yf20dky"; nativeBuildInputs = [ pkgs.pkgconfig ]; buildInputs = [ pkgs.libusb1 ]; }; uuid = buildFromGitHub { + rev = "cccd189d45f7ac3368a0d127efb7f4d08ae0b655"; date = "2015-08-24"; owner = "pborman"; repo = "uuid"; + sha256 = "0hswk9ihv3js5blp9pk2bpig64zkmyp5p1zhmgydfhb0dr2w8iad"; }; vault = buildFromGitHub { + rev = "v0.2.0"; owner = "hashicorp"; repo = "vault"; + sha256 = "133fwhzk8z3xb6mf6scmn5rbl6g4vqg4g4n6zw620fsn9wy1b9ni"; #postPatch = '' # grep -r '/gen/' | awk -F: '{print $1}' | xargs sed -i 's,/gen/,/apis/,g' @@ -2560,36 +3547,50 @@ let }; vcs = buildFromGitHub { + rev = "1.4.0"; owner = "Masterminds"; repo = "vcs"; + sha256 = "0590ww2av4407y7zy3bcmnr8i74fv00k9zzcxcpjxivl6qszna0d"; }; viper = buildFromGitHub { + rev = "e37b56e207dda4d79b9defe0548e960658ee8b6b"; owner = "spf13"; repo = "viper"; + sha256 = "0q0hkla23hgvc3ab6qdlrfwxa8lnhy2s2mh2c8zrh632gp8d6prl"; propagatedBuildInputs = [ mapstructure yaml-v2 jwalterweatherman crypt fsnotify.v1 cast properties pretty toml pflag-spf13 ]; }; - vulcand = buildFromGitHub rec { - owner = "mailgun"; - repo = "vulcand"; + vulcand = buildGoPackage rec { + rev = "v0.8.0-beta.3"; + name = "vulcand-${rev}"; goPackagePath = "github.com/mailgun/vulcand"; - preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/$goPackagePath/Godeps/_workspace"; + preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace"; + src = fetchFromGitHub { + inherit rev; + owner = "mailgun"; + repo = "vulcand"; + sha256 = "08mal9prwlsav63r972q344zpwqfql6qw6v4ixbn1h3h32kk3ic6"; + }; subPackages = [ "./" ]; }; websocket = buildFromGitHub { + rev = "6eb6ad425a89d9da7a5549bc6da8f79ba5c17844"; owner = "gorilla"; repo = "websocket"; + sha256 = "0gljdfxqc94yb1kpqqrm5p94ph9dsxrzcixhdj6m92cwwa7z7p99"; }; xmpp-client = buildFromGitHub { + rev = "525bd26cf5f56ec5aee99464714fd1d019c119ff"; date = "2016-01-10"; owner = "agl"; repo = "xmpp-client"; + sha256 = "0a1r08zs723ikcskmn6ylkdi3frcd0i0lkx30i9q39ilf734v253"; disabled = isGo14; buildInputs = [ crypto net ]; @@ -2601,8 +3602,6 @@ let }; }; - # TODO(cstrahan): find a way to automate this pattern of gopkg.in/yaml.vX - # packages. yaml-v1 = buildGoPackage rec { name = "yaml-v1-${version}"; version = "git-2015-05-01"; @@ -2625,25 +3624,33 @@ let }; yamux = buildFromGitHub { + rev = "b2e55852ddaf823a85c67f798080eb7d08acd71d"; owner = "hashicorp"; repo = "yamux"; + sha256 = "0mr87my5m8lgc0byjcddlclxg34d07cpi9p78ps3rhzq7p37g533"; }; xdr = buildFromGitHub { + rev = "e467b5aeb65ca8516fb3925c84991bf1d7cc935e"; date = "2015-04-08"; owner = "calmh"; repo = "xdr"; + sha256 = "1bi4b2xkjzcr0vq1wxz14i9943k71sj092dam0gdmr9yvdrg0nra"; }; xon = buildFromGitHub { + rev = "d580be739d723da4f6378083128f93017b8ab295"; owner = "odeke-em"; repo = "xon"; + sha256 = "07a7zj01d4a23xqp01m48jp2v5mw49islf4nbq2rj13sd5w4s6sc"; }; ninefans = buildFromGitHub { + rev = "65b8cf069318223b1e722b4b36e729e5e9bb9eab"; date = "2015-10-24"; owner = "9fans"; repo = "go"; + sha256 = "0kzyxhs2xf0339nlnbm9gc365b2svyyjxnr86rphx5m072r32ims"; goPackagePath = "9fans.net/go"; goPackageAliases = [ "github.com/9fans/go" @@ -2653,30 +3660,38 @@ let }; godef = buildFromGitHub { + rev = "ea14e800fd7d16918be88dae9f0195f7bd688586"; date = "2015-10-24"; owner = "rogpeppe"; repo = "godef"; + sha256 = "1wkvsz8nqwyp36wbm8vcw4449sfs46894nskrfj9qbsrjijvamyc"; excludedPackages = "\\(go/printer/testdata\\)"; buildInputs = [ ninefans ]; subPackages = [ "./" ]; }; godep = buildFromGitHub { + rev = "5598a9815350896a2cdf9f4f1d0a3003ab9677fb"; date = "2015-10-15"; owner = "tools"; repo = "godep"; + sha256 = "0zc1ah5cvaqa3zw0ska89a40x445vwl1ixz8v42xi3zicx16ibwz"; }; color = buildFromGitHub { + rev = "9aae6aaa22315390f03959adca2c4d395b02fcef"; owner = "fatih"; repo = "color"; + sha256 = "1vjcgx4xc0h4870qzz4mrh1l0f07wr79jm8pnbp6a2yd41rm8wjp"; propagatedBuildInputs = [ net go-isatty ]; buildInputs = [ ansicolor go-colorable ]; }; pup = buildFromGitHub { + rev = "9693b292601dd24dab3c04bc628f9ae3fa72f831"; owner = "EricChiang"; repo = "pup"; + sha256 = "04j3fy1vk6xap8ad7k3c05h9b5mg2n1vy9vcyg9rs02cb13d3sy0"; propagatedBuildInputs = [ net ]; buildInputs = [ go-colorable color ]; postPatch = '' @@ -2687,16 +3702,21 @@ let ''; }; - textsecure = buildFromGitHub { + textsecure = buildFromGitHub rec { + rev = "505e129c42fc4c5cb2d105520cef7c04fa3a6b64"; owner = "janimo"; repo = "textsecure"; + sha256 = "0sdcqd89dlic0bllb6mjliz4x54rxnm1r3xqd5qdp936n7xs3mc6"; propagatedBuildInputs = [ crypto protobuf ed25519 yaml-v2 logrus ]; disabled = isGo14; }; - interlock = buildFromGitHub { + interlock = buildFromGitHub rec { + version = "2016.01.14"; + rev = "v${version}"; owner = "inversepath"; repo = "interlock"; + sha256 = "0wabx6vqdxh2aprsm2rd9mh71q7c2xm6xk9a6r1bn53r9dh5wrsb"; buildInputs = [ crypto textsecure ]; nativeBuildInputs = [ pkgs.sudo ]; buildFlags = [ "-tags textsecure" ]; @@ -2717,30 +3737,40 @@ let }; template = buildFromGitHub { + rev = "14fd436dd20c3cc65242a9f396b61bfc8a3926fc"; owner = "alecthomas"; repo = "template"; + sha256 = "19rzvvcgvr1z2wz9xpqsmlm8syizbpxjp5zbzgakvrqlajpbjvx2"; }; units = buildFromGitHub { + rev = "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a"; owner = "alecthomas"; repo = "units"; + sha256 = "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl"; }; go-difflib = buildFromGitHub { + rev = "d8ed2627bdf02c080bf22230dbb337003b7aba2d"; owner = "pmezard"; repo = "go-difflib"; + sha256 = "0w1jp4k4zbnrxh3jvh8fgbjgqpf2hg31pbj8fb32kh26px9ldpbs"; }; kingpin = buildFromGitHub { + rev = "21551c2a6259a8145110ca80a36e25c9d7624032"; owner = "alecthomas"; repo = "kingpin"; + sha256 = "1zhpqc4qxsw9lc1b4dwk5r42k9r702ihzrabs3mnsphvm9jx4l59"; propagatedBuildInputs = [ template units ]; goPackageAliases = [ "gopkg.in/alecthomas/kingpin.v2" ]; }; go2nix = buildFromGitHub rec { + rev = "4c552dadd855e3694ed3499feb46dca9cd855f60"; owner = "kamilchm"; repo = "go2nix"; + sha256 = "1pwnm1vrjxvgl17pk9n1k5chmhgwxkrwp2s1bzi64xf12anibj63"; buildInputs = [ pkgs.makeWrapper go-bindata.bin tools.bin vcs go-spew gls go-difflib assertions goconvey testify kingpin ]; @@ -2755,18 +3785,22 @@ let allowGoReference = true; }; - godotenv = buildFromGitHub { + godotenv = buildFromGitHub rec { + rev = "4ed13390c0acd2ff4e371e64d8b97c8954138243"; date = "2015-09-07"; owner = "joho"; repo = "godotenv"; + sha256 = "1wzgws4dnlavi14aw3jzdl3mdr348skgqaq8xx4j8l68irfqyh0p"; buildInputs = [ go-colortext yaml-v2 ]; }; - goreman = buildFromGitHub { + goreman = buildFromGitHub rec { version = "0.0.8-rc0"; + rev = "d3e62509ccf23e47a390447886c51b1d89d0934b"; date = "2016-01-30"; owner = "mattn"; repo = "goreman"; + sha256 = "153hf4dq4jh1yv35pv30idmxhc917qzl590qy5394l48d4rapgb5"; buildInputs = [ go-colortext yaml-v2 godotenv ]; }; }; in self From fd59345d7398020683d0b6f0360a7588ed189eb1 Mon Sep 17 00:00:00 2001 From: Allan Espinosa Date: Thu, 10 Mar 2016 10:38:13 -0600 Subject: [PATCH 0172/1059] macvim: remove extra MacVim.app /MacVim.app is a duplicate of /Applications/MacVim.app --- pkgs/applications/editors/vim/macvim.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/editors/vim/macvim.nix b/pkgs/applications/editors/vim/macvim.nix index 69e9ab35e96..6f43a2f9a89 100644 --- a/pkgs/applications/editors/vim/macvim.nix +++ b/pkgs/applications/editors/vim/macvim.nix @@ -75,6 +75,7 @@ stdenv.mkDerivation rec { postInstall = '' mkdir -p $out/Applications cp -r src/MacVim/build/Release/MacVim.app $out/Applications + rm -rf $out/MacVim.app rm $out/bin/{Vimdiff,Vimtutor,Vim,ex,rVim,rview,view} From 7ccccec51b993a30e7e9b0648a5a84183ab4dc53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 10 Mar 2016 18:58:28 +0100 Subject: [PATCH 0173/1059] antimony: fix build with glibc-2.23 And enableParalelBuilding = true; --- pkgs/applications/graphics/antimony/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pkgs/applications/graphics/antimony/default.nix b/pkgs/applications/graphics/antimony/default.nix index 5e8dfd93f30..dded423652c 100644 --- a/pkgs/applications/graphics/antimony/default.nix +++ b/pkgs/applications/graphics/antimony/default.nix @@ -16,6 +16,15 @@ in }; patches = [ ./paths-fix.patch ]; + # fix build with glibc-2.23 + postPatch = '' + sed 's/\ Date: Thu, 10 Mar 2016 21:06:13 +0100 Subject: [PATCH 0174/1059] 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 83766949c1c6a02bf09660d2da6d38b4b34b6e90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Thu, 10 Mar 2016 20:42:37 +0000 Subject: [PATCH 0175/1059] speedtest-cli: 0.3.1 -> 0.3.4 (fix runtime) --- pkgs/tools/networking/speedtest-cli/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/speedtest-cli/default.nix b/pkgs/tools/networking/speedtest-cli/default.nix index 10b35298461..80bcb7ae987 100644 --- a/pkgs/tools/networking/speedtest-cli/default.nix +++ b/pkgs/tools/networking/speedtest-cli/default.nix @@ -2,12 +2,11 @@ pythonPackages.buildPythonApplication rec { name = "speedtest-cli-${version}"; - version = "0.3.1"; - namePrefix = ""; + version = "0.3.4"; src = fetchurl { url = "https://pypi.python.org/packages/source/s/speedtest-cli/speedtest-cli-${version}.tar.gz"; - sha256 = "0ln2grbskh39ph79lhcim2axm7hp4xhzbrag8xfqbfihq7jdm6ya"; + sha256 = "19i671cd815fcv0x7h2m0a493slzwkzn7r926g8myx1srkss0q6d"; }; meta = with stdenv.lib; { From e54434751a0664343105f940749ccd877e29e4f5 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Thu, 10 Mar 2016 14:57:29 -0600 Subject: [PATCH 0176/1059] chromium: 49.0.2626.75 -> 50.0.2661.26 for CVE-2016-1643 CVE-2016-1644 CVE-2016-1645 --- .../browsers/chromium/source/sources.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/source/sources.nix b/pkgs/applications/networking/browsers/chromium/source/sources.nix index ffec5c8b807..c42488e9e1e 100644 --- a/pkgs/applications/networking/browsers/chromium/source/sources.nix +++ b/pkgs/applications/networking/browsers/chromium/source/sources.nix @@ -1,18 +1,18 @@ # This file is autogenerated from update.sh in the parent directory. { beta = { - sha256 = "1xc2npbc829nxria1j37kxyy95jkalkkphxgv24if0ibn62lrzd4"; - sha256bin64 = "1arm15g3vmm3zlvcql3qylw1fhrn5ddzl2v8mkpb3a251m425dsi"; - version = "49.0.2623.75"; + sha256 = "1lgpjnjhy3idha5b6wp31kdk6knic96dmajyrgn1701q3mq81g1i"; + sha256bin64 = "1yb3rk38zfgjzka0aim1xc4r0qaz2qkwaq06mjifpkszmfffhyd0"; + version = "50.0.2661.26"; }; dev = { - sha256 = "04j0nyz20gi7vf1javbw06wrqpkfw6vg024i3wkgx42hzd6hjgw4"; - sha256bin64 = "12ff4q615rwakgpr9v84p55maasqb4vg61s89vgxrlsgqrmkahg4"; - version = "50.0.2661.11"; + sha256 = "0z9m1mv6pv43y3ccd0nzqg5f9q8qxc8mlmy9y3dc9kqpvmqggnvp"; + sha256bin64 = "0khsxci970vclfg24b7m8w1jqfkv5rzswgwa62b4r7jzrglx1azj"; + version = "50.0.2661.18"; }; stable = { - sha256 = "1xc2npbc829nxria1j37kxyy95jkalkkphxgv24if0ibn62lrzd4"; - sha256bin64 = "01qi5jmlmdpy6icc4y51bn5a063mxrnkncg3pbmbl4r02vqca5jh"; - version = "49.0.2623.75"; + sha256 = "0kbph3l964bh7cb9yf8nydjaxa20yf8ls5a2vzsj8phz7n20z3f9"; + sha256bin64 = "1k6nhccdqzzzicwi07nldqfsdlic65i2xfyb7dbasbbg9zl3s9yw"; + version = "49.0.2623.87"; }; } From 9a855535904a7f83bd59cdc82d92e5648b49ae50 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Thu, 10 Mar 2016 23:23:16 +0100 Subject: [PATCH 0177/1059] pkgs.darktable: 2.0.0 -> 2.0.2 darktable-2.0.1 and darktable-2.0.2 are two bugfix releases: http://www.darktable.org/2016/02/darktable-2-0-1-released/ http://www.darktable.org/2016/03/darktable-2-0-2-released/ --- pkgs/applications/graphics/darktable/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/darktable/default.nix b/pkgs/applications/graphics/darktable/default.nix index ef222d2e816..cba19ba11a2 100644 --- a/pkgs/applications/graphics/darktable/default.nix +++ b/pkgs/applications/graphics/darktable/default.nix @@ -11,12 +11,12 @@ assert stdenv ? glibc; stdenv.mkDerivation rec { - version = "2.0.0"; + version = "2.0.2"; name = "darktable-${version}"; src = fetchurl { url = "https://github.com/darktable-org/darktable/releases/download/release-${version}/darktable-${version}.tar.xz"; - sha256 = "1cbwvzqn3158cy7r499rdwipx7fpb30lrrvh6jy5a4xvpcjzbwnl"; + sha256 = "0014j73sy956xqdhd4jrxvbamildqqadx8hmagrbiah8xda67skm"; }; buildInputs = From e81c487ba275ca1af7a81bcd287fd51380d277d0 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 11 Mar 2016 01:21:38 +0300 Subject: [PATCH 0178/1059] argyllcms: 1.8.2 -> 1.8.3 --- pkgs/tools/graphics/argyllcms/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/graphics/argyllcms/default.nix b/pkgs/tools/graphics/argyllcms/default.nix index fce383dcc9c..3c7af45f81d 100644 --- a/pkgs/tools/graphics/argyllcms/default.nix +++ b/pkgs/tools/graphics/argyllcms/default.nix @@ -2,7 +2,7 @@ , libXrender, libXext, libtiff, libjpeg, libpng, libXScrnSaver, writeText , libXdmcp, libXau, lib, openssl, zlib }: let - version = "1.8.2"; + version = "1.8.3"; in stdenv.mkDerivation rec { name = "argyllcms-${version}"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { # Kind of flacky URL, it was reaturning 406 and inconsistent binaries for a # while on me. It might be good to find a mirror url = "http://www.argyllcms.com/Argyll_V${version}_src.zip"; - sha256 = "0hnsciwak5chy4a421l8fz7amxzg8kbmy57a07dn460gdg6r63cy"; + sha256 = "00ggh47qzb3xyl8rnppwxa6j113lr38aiwvsfyxwgs51aqmvq7bd"; # The argyllcms web server doesn't like curl ... curlOpts = "--user-agent 'Mozilla/5.0'"; From 776845bbeb79091657570c541f7daade2efe912a Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 11 Mar 2016 01:24:10 +0300 Subject: [PATCH 0179/1059] xiccd: init at 0.2.2 --- nixos/modules/module-list.nix | 1 + pkgs/tools/misc/xiccd/default.nix | 24 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 27 insertions(+) create mode 100644 pkgs/tools/misc/xiccd/default.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 0105cc3cdf2..640e8ae5c19 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -439,6 +439,7 @@ ./services/web-servers/varnish/default.nix ./services/web-servers/winstone.nix ./services/web-servers/zope2.nix + ./services/x11/colord.nix ./services/x11/unclutter.nix ./services/x11/desktop-managers/default.nix ./services/x11/display-managers/auto.nix diff --git a/pkgs/tools/misc/xiccd/default.nix b/pkgs/tools/misc/xiccd/default.nix new file mode 100644 index 00000000000..cdc2af19501 --- /dev/null +++ b/pkgs/tools/misc/xiccd/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libX11, libXrandr, glib, colord }: + +stdenv.mkDerivation rec { + name = "xiccd-${version}"; + version = "0.2.2"; + + src = fetchFromGitHub { + owner = "agalakhov"; + repo = "xiccd"; + rev = "v${version}"; + sha256 = "17p3vngmmjk52r5p8y41s19nwp7w25bgff68ffd50zdlicd33rsy"; + }; + + nativeBuildInputs = [ autoreconfHook pkgconfig ]; + buildInputs = [ libX11 libXrandr glib colord ]; + + meta = with stdenv.lib; { + description = "X color profile daemon"; + homepage = https://github.com/agalakhov/xiccd; + license = licenses.gpl3; + maintainers = with maintainers; [ abbradar ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c540ff849c8..8824259a164 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3871,6 +3871,8 @@ let xmpppy = pythonPackages.xmpppy; + xiccd = callPackage ../tools/misc/xiccd { }; + xorriso = callPackage ../tools/cd-dvd/xorriso { }; xpf = callPackage ../tools/text/xml/xpf { From cc53e62644db04ed4536e8bd1b54af1b2ead4d0f Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 9 Mar 2016 04:17:17 +0100 Subject: [PATCH 0180/1059] geoclue2: 2.4.1 -> 2.4.2 --- pkgs/development/libraries/geoclue/2.0.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/geoclue/2.0.nix b/pkgs/development/libraries/geoclue/2.0.nix index 73d3bb92e7e..83becae05a4 100644 --- a/pkgs/development/libraries/geoclue/2.0.nix +++ b/pkgs/development/libraries/geoclue/2.0.nix @@ -3,11 +3,11 @@ }: stdenv.mkDerivation rec { - name = "geoclue-2.4.1"; + name = "geoclue-2.4.2"; src = fetchurl { url = "http://www.freedesktop.org/software/geoclue/releases/2.4/${name}.tar.xz"; - sha256 = "1m1l1npdv804m98xhfpd1wl1whrrp2pjivliwwlnyk86yq0gs6cs"; + sha256 = "0g4krigdaf5ipkp4mi16rca62crr8pdk3wkhm0fxbcqnil75fyy4"; }; buildInputs = @@ -23,10 +23,10 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ dbus dbus_glib glib ]; - meta = { + meta = with stdenv.lib; { description = "Geolocation framework and some data providers"; - maintainers = with stdenv.lib.maintainers; [ raskin garbas ]; - platforms = stdenv.lib.platforms.linux; - license = stdenv.lib.licenses.lgpl2; + maintainers = with maintainers; [ raskin garbas ]; + platforms = platforms.linux; + license = licenses.lgpl2; }; } From 4e58b33deea7d62f109bdb63d5d79397044b5d90 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 11 Mar 2016 01:24:31 +0300 Subject: [PATCH 0181/1059] colord service: init --- nixos/modules/services/x11/colord.nix | 39 +++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 nixos/modules/services/x11/colord.nix diff --git a/nixos/modules/services/x11/colord.nix b/nixos/modules/services/x11/colord.nix new file mode 100644 index 00000000000..d9e81d75072 --- /dev/null +++ b/nixos/modules/services/x11/colord.nix @@ -0,0 +1,39 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + + cfg = config.services.colord; + +in { + + options = { + + services.colord = { + enable = mkEnableOption "colord, the color management daemon"; + }; + + }; + + config = mkIf cfg.enable { + + services.dbus.packages = [ pkgs.colord ]; + + services.udev.packages = [ pkgs.colord ]; + + environment.systemPackages = [ pkgs.colord ]; + + systemd.services.colord = { + description = "Manage, Install and Generate Color Profiles"; + serviceConfig = { + Type = "dbus"; + BusName = "org.freedesktop.ColorManager"; + ExecStart = "${pkgs.colord}/libexec/colord"; + PrivateTmp = true; + }; + }; + + }; + +} From cf9ddb27d6aa53826f7191cbddb561a05554018c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 11 Mar 2016 01:58:22 +0300 Subject: [PATCH 0182/1059] colord: fix udev rules, add sane support --- pkgs/tools/misc/colord/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/colord/default.nix b/pkgs/tools/misc/colord/default.nix index 3ba5a138e5a..7e6c3f30784 100644 --- a/pkgs/tools/misc/colord/default.nix +++ b/pkgs/tools/misc/colord/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchzip, fetchgit, bashCompletion , glib, polkit, pkgconfig, intltool, gusb, libusb1, lcms2, sqlite, systemd, dbus , automake, autoconf, libtool, gtk_doc, which, gobjectIntrospection, argyllcms -, libgudev }: +, libgudev, sane-backends }: stdenv.mkDerivation rec { name = "colord-1.2.12"; @@ -14,7 +14,8 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; configureFlags = [ - "--with-udevrulesdir=$out/lib/udev/rules.d" + "--enable-sane" + "--with-udevrulesdir=$(out)/lib/udev/rules.d" "--with-systemdsystemunitdir=$(out)/etc/systemd/system" "--localstatedir=/var" "--disable-bash-completion" @@ -27,7 +28,7 @@ stdenv.mkDerivation rec { ''; buildInputs = [ glib polkit pkgconfig intltool gusb libusb1 lcms2 sqlite systemd dbus gobjectIntrospection - bashCompletion argyllcms automake autoconf libgudev ]; + bashCompletion argyllcms automake autoconf libgudev sane-backends ]; postInstall = '' mkdir -p $out/etc/bash_completion.d From e5ca25eb7aacb0d713eba196cb47a0059dce8fce Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Thu, 10 Mar 2016 18:01:33 -0500 Subject: [PATCH 0183/1059] openssh: 7.2p1 -> 7.2p2 for OSA x11fwd.adv Fixes OpenSSH Security Advisory x11fwd.adv, which is available at http://www.openssh.com/txt/x11fwd.adv. --- pkgs/tools/networking/openssh/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/openssh/default.nix b/pkgs/tools/networking/openssh/default.nix index 08a3dbc58f7..fe07a13786d 100644 --- a/pkgs/tools/networking/openssh/default.nix +++ b/pkgs/tools/networking/openssh/default.nix @@ -27,11 +27,11 @@ with stdenv.lib; stdenv.mkDerivation rec { # Please ensure that openssh_with_kerberos still builds when # bumping the version here! - name = "openssh-7.2p1"; + name = "openssh-7.2p2"; src = fetchurl { url = "mirror://openbsd/OpenSSH/portable/${name}.tar.gz"; - sha256 = "1hsa1f3641pdj57a55gmnvcya3wwww2fc2cvb77y95rm5xxw6g4p"; + sha256 = "132lh9aanb0wkisji1d6cmsxi520m8nh7c7i9wi6m1s3l38q29x7"; }; prePatch = optionalString hpnSupport From 4ebc7f74f7b80a44218bbc272c4d4b9350efac6b Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 11 Mar 2016 02:31:47 +0300 Subject: [PATCH 0184/1059] colord-kde: fix build --- pkgs/tools/misc/colord-kde/default.nix | 3 +++ pkgs/tools/misc/colord-kde/fix_check_include_files.patch | 9 +++++++++ 2 files changed, 12 insertions(+) create mode 100644 pkgs/tools/misc/colord-kde/fix_check_include_files.patch diff --git a/pkgs/tools/misc/colord-kde/default.nix b/pkgs/tools/misc/colord-kde/default.nix index 606595f4605..52e1845b300 100644 --- a/pkgs/tools/misc/colord-kde/default.nix +++ b/pkgs/tools/misc/colord-kde/default.nix @@ -14,6 +14,9 @@ stdenv.mkDerivation { buildInputs = [ colord libX11 libXrandr lcms2 kdelibs ]; + patches = [ ./fix_check_include_files.patch ]; + patchFlags = [ "-p0" ]; + enableParallelBuilding = true; meta = { diff --git a/pkgs/tools/misc/colord-kde/fix_check_include_files.patch b/pkgs/tools/misc/colord-kde/fix_check_include_files.patch new file mode 100644 index 00000000000..16d14a6a647 --- /dev/null +++ b/pkgs/tools/misc/colord-kde/fix_check_include_files.patch @@ -0,0 +1,9 @@ +--- CMakeLists.txt.orig 2013-05-01 05:04:34.000000000 +1000 ++++ CMakeLists.txt 2015-12-10 20:43:51.351800988 +1100 +@@ -9,6 +9,7 @@ + include(FindPkgConfig) + include(KDE4Defaults) ++include(CheckIncludeFiles) + include(ConfigureChecks.cmake) + + message(STATUS "X randr is required, found: " ${XRANDR_1_3_FOUND}) \ No newline at end of file From 2dd09b634e8bac3ea7e88b3ef18570ce084a7aaa Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Thu, 10 Mar 2016 18:40:00 -0500 Subject: [PATCH 0185/1059] openssh: update homepage link Unfortunately, the site is not available over HTTPS. --- pkgs/tools/networking/openssh/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/networking/openssh/default.nix b/pkgs/tools/networking/openssh/default.nix index fe07a13786d..957d5e715e7 100644 --- a/pkgs/tools/networking/openssh/default.nix +++ b/pkgs/tools/networking/openssh/default.nix @@ -82,7 +82,7 @@ stdenv.mkDerivation rec { ]; meta = { - homepage = "http://www.openssh.org/"; + homepage = "http://www.openssh.com/"; description = "An implementation of the SSH protocol"; license = stdenv.lib.licenses.bsd2; platforms = platforms.unix; From b6db54b064358d6b604ae0e21bb4bb3110fa038d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Thu, 10 Mar 2016 19:05:33 -0300 Subject: [PATCH 0186/1059] pygmentex: init at 0.8 --- pkgs/tools/typesetting/pygmentex/default.nix | 45 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 47 insertions(+) create mode 100644 pkgs/tools/typesetting/pygmentex/default.nix diff --git a/pkgs/tools/typesetting/pygmentex/default.nix b/pkgs/tools/typesetting/pygmentex/default.nix new file mode 100644 index 00000000000..da029639c3d --- /dev/null +++ b/pkgs/tools/typesetting/pygmentex/default.nix @@ -0,0 +1,45 @@ +{ stdenv, fetchzip, python2Packages }: + +python2Packages.buildPythonApplication rec { + name = "pygmentex-${version}"; + version = "0.8"; + + src = fetchzip { + url = "http://mirrors.ctan.org/macros/latex/contrib/pygmentex.zip"; + sha256 = "1nm19pvhlv51mv2sdankndhw64ys9r7ch6szzd6i4jz8zr86kn9v"; + }; + + pythonPath = [ python2Packages.pygments python2Packages.chardet ]; + + buildPhase = ":"; + + doCheck = false; + + installPhase = '' + + mkdir -p $out/bin + cp -a pygmentex.py $out/bin + ''; + + meta = with stdenv.lib; { + homepage = https://www.ctan.org/pkg/pygmentex; + description = "Auxiliary tool for typesetting code listings in LaTeX documents using Pygments"; + longDescription = '' + PygmenTeX is a Python-based LaTeX package that can be used for + typesetting code listings in a LaTeX document using Pygments. + + Pygments is a generic syntax highlighter for general use in all kinds of + software such as forum systems, wikis or other applications that need to + prettify source code. + + This package installs just the script needed to process code listings + snippets extracted from the a LaTeX document by the pygmentex LaTeX + package. In order to use it effectivelly the texlive package pygmentex + also has to be installed. This can be done by adding pygmentex to + texlive.combine. + ''; + license = licenses.lppl13c; + maintainers = with maintainers; [ romildo ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f38ee99819a..8a4e27f8d75 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3002,6 +3002,8 @@ let pydb = callPackage ../development/tools/pydb { }; + pygmentex = callPackage ../tools/typesetting/pygmentex { }; + pystringtemplate = callPackage ../development/python-modules/stringtemplate { }; pythonDBus = dbus_python; From 218901bdb680b730d554d461588351624c8f6a77 Mon Sep 17 00:00:00 2001 From: taku0 Date: Fri, 11 Mar 2016 10:11:08 +0900 Subject: [PATCH 0187/1059] flashplayer: 11.2.202.559 -> 11.2.202.577 --- .../browsers/mozilla-plugins/flashplayer-11/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix index f29f569cd3a..2b6b0d5b412 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix @@ -59,11 +59,11 @@ let in stdenv.mkDerivation rec { name = "flashplayer-${version}"; - version = "11.2.202.559"; + version = "11.2.202.577"; src = fetchurl { url = "https://fpdownload.macromedia.com/pub/flashplayer/installers/archive/fp_${version}_archive.zip"; - sha256 = "1vb01pd1jhhh86r01nwdzcf66d72jksiyiyp92hs4khy6n5qfsl3"; + sha256 = "1k02d6c9y8z9lxyqyq04zsc5735cvm30mkwli71mh87fr1va2q4j"; }; buildInputs = [ unzip ]; From b48a917c9771d2db93669848cb0a5349e2d8073a Mon Sep 17 00:00:00 2001 From: Matt Whiteley Date: Thu, 10 Mar 2016 17:19:30 -0800 Subject: [PATCH 0188/1059] chefdk: 0.10.0 -> 0.11.2 --- pkgs/development/tools/chefdk/Gemfile | 16 +- pkgs/development/tools/chefdk/Gemfile.lock | 261 ++++++-- pkgs/development/tools/chefdk/default.nix | 2 +- pkgs/development/tools/chefdk/gemset.nix | 682 +++++++++++++++++++-- 4 files changed, 855 insertions(+), 106 deletions(-) diff --git a/pkgs/development/tools/chefdk/Gemfile b/pkgs/development/tools/chefdk/Gemfile index 9cd40fd3f4b..7d974e49891 100644 --- a/pkgs/development/tools/chefdk/Gemfile +++ b/pkgs/development/tools/chefdk/Gemfile @@ -1,3 +1,17 @@ -source "https://rubygems.org" +source 'https://rubygems.org' gem 'chef-dk' +gem 'pry' +gem 'test-kitchen' +gem 'inspec' +gem 'kitchen-inspec' +gem 'kitchen-vagrant' +gem 'berkshelf' +gem 'chef-vault' +gem 'foodcritic' +gem 'ohai' +gem 'rubocop' +gem 'knife-spork' +gem 'fauxhai' +gem 'chefspec' +gem 'chef-provisioning' diff --git a/pkgs/development/tools/chefdk/Gemfile.lock b/pkgs/development/tools/chefdk/Gemfile.lock index 28b0e7f8aa4..ddbb1f5f1dd 100644 --- a/pkgs/development/tools/chefdk/Gemfile.lock +++ b/pkgs/development/tools/chefdk/Gemfile.lock @@ -1,35 +1,74 @@ GEM remote: https://rubygems.org/ specs: + addressable (2.4.0) + app_conf (0.4.2) + ast (2.2.0) + berkshelf (4.3.0) + addressable (~> 2.3, >= 2.3.4) + berkshelf-api-client (~> 2.0, >= 2.0.2) + buff-config (~> 1.0) + buff-extensions (~> 1.0) + buff-shell_out (~> 0.1) + celluloid (= 0.16.0) + celluloid-io (~> 0.16.1) + cleanroom (~> 1.0) + faraday (~> 0.9) + httpclient (~> 2.7) + minitar (~> 0.5, >= 0.5.4) + octokit (~> 4.0) + retryable (~> 2.0) + ridley (~> 4.5) + solve (~> 2.0) + thor (~> 0.19) + berkshelf-api-client (2.0.2) + faraday (~> 0.9.1) + httpclient (~> 2.7.0) + ridley (~> 4.5) + buff-config (1.0.1) + buff-extensions (~> 1.0) + varia_model (~> 0.4) + buff-extensions (1.0.0) + buff-ignore (1.1.1) + buff-ruby_engine (0.1.0) + buff-shell_out (0.2.0) + buff-ruby_engine (~> 0.1.0) builder (3.2.2) - chef (12.5.1) - chef-config (= 12.5.1) - chef-zero (~> 4.2, >= 4.2.2) + celluloid (0.16.0) + timers (~> 4.0.0) + celluloid-io (0.16.2) + celluloid (>= 0.16.0) + nio4r (>= 1.1.0) + chef (12.8.1) + bundler (>= 1.10) + chef-config (= 12.8.1) + chef-zero (~> 4.5) diff-lcs (~> 1.2, >= 1.2.4) erubis (~> 2.7) ffi-yajl (~> 2.2) highline (~> 1.6, >= 1.6.9) - mixlib-authentication (~> 1.3) + mixlib-authentication (~> 1.4) mixlib-cli (~> 1.4) mixlib-log (~> 1.3) mixlib-shellout (~> 2.0) - net-ssh (~> 2.6) + net-ssh (>= 2.9, < 4.0) net-ssh-multi (~> 1.1) ohai (>= 8.6.0.alpha.1, < 9) plist (~> 3.1.0) - pry (~> 0.9) - rspec-core (~> 3.2) - rspec-expectations (~> 3.2) - rspec-mocks (~> 3.2) + proxifier (~> 1.0) + rspec-core (~> 3.4) + rspec-expectations (~> 3.4) + rspec-mocks (~> 3.4) rspec_junit_formatter (~> 0.2.0) serverspec (~> 2.7) specinfra (~> 2.10) syslog-logger (~> 1.6) - chef-config (12.5.1) + uuidtools (~> 2.1.5) + chef-config (12.8.1) mixlib-config (~> 2.0) mixlib-shellout (~> 2.0) - chef-dk (0.10.0) - chef (~> 12.0, >= 12.2.1) + chef-dk (0.11.2) + chef (~> 12.5) chef-provisioning (~> 1.2) cookbook-omnifetch (~> 0.2, >= 0.2.2) diff-lcs (~> 1.0) @@ -39,92 +78,184 @@ GEM mixlib-shellout (~> 2.0) paint (~> 1.0) solve (~> 2.0, >= 2.0.1) - chef-provisioning (1.5.0) - cheffish (~> 1.3, >= 1.3.1) + chef-provisioning (1.6.0) + cheffish (>= 1.3.1, < 3.0) inifile (~> 2.0) mixlib-install (~> 0.7.0) net-scp (~> 1.0) - net-ssh (~> 2.0) + net-ssh (>= 2.9, < 4.0) net-ssh-gateway (~> 1.2.0) winrm (~> 1.3) - chef-zero (4.3.2) + chef-vault (2.8.0) + chef-zero (4.5.0) ffi-yajl (~> 2.2) hashie (>= 2.0, < 4.0) mixlib-log (~> 1.3) rack uuidtools (~> 2.1) - cheffish (1.6.0) + cheffish (2.0.2) chef-zero (~> 4.3) - coderay (1.1.0) + compat_resource + chefspec (4.6.0) + chef (>= 11.14) + fauxhai (~> 3.0, >= 3.0.1) + rspec (~> 3.0) + cleanroom (1.0.0) + coderay (1.1.1) + compat_resource (12.8.0) cookbook-omnifetch (0.2.2) minitar (~> 0.5.4) diff-lcs (1.2.5) + diffy (3.1.0) + docker-api (1.26.2) + excon (>= 0.38.0) + json erubis (2.7.0) + excon (0.48.0) + faraday (0.9.2) + multipart-post (>= 1.2, < 3) + fauxhai (3.1.0) + net-ssh ffi (1.9.10) - ffi-yajl (2.2.2) + ffi-yajl (2.2.3) libyajl2 (~> 1.2) + foodcritic (6.0.1) + erubis + gherkin (~> 2.11) + nokogiri (>= 1.5, < 2.0) + rake + rufus-lru (~> 1.0) + treetop (~> 1.4) + yajl-ruby (~> 1.1) + gherkin (2.12.2) + multi_json (~> 1.3) + git (1.3.0) gssapi (1.2.0) ffi (>= 1.0.1) gyoku (1.3.1) builder (>= 2.1.2) hashie (3.4.3) highline (1.7.8) - httpclient (2.7.0.1) + hitimes (1.2.3) + httpclient (2.7.1) inifile (2.0.2) - ipaddress (0.8.0) + inspec (0.14.8) + json (~> 1.8) + method_source (~> 0.8) + pry (~> 0) + r-train (~> 0.10.1) + rainbow (~> 2) + rspec (~> 3.3) + rspec-its (~> 1.2) + rubyzip (~> 1.1) + thor (~> 0.19) + ipaddress (0.8.3) + json (1.8.3) + kitchen-inspec (0.12.3) + inspec (~> 0.14.1) + test-kitchen (~> 1.6) + kitchen-vagrant (0.19.0) + test-kitchen (~> 1.4) + knife-spork (1.6.1) + app_conf (>= 0.4.0) + chef (>= 11.0.0) + diffy (>= 3.0.1) + git (>= 1.2.5) libyajl2 (1.2.0) little-plugger (1.1.4) logging (2.0.0) little-plugger (~> 1.1) multi_json (~> 1.10) method_source (0.8.2) - mime-types (2.99) + mini_portile2 (2.0.0) minitar (0.5.4) - mixlib-authentication (1.3.0) + mixlib-authentication (1.4.0) mixlib-log + rspec-core (~> 3.2) + rspec-expectations (~> 3.2) + rspec-mocks (~> 3.2) mixlib-cli (1.5.0) mixlib-config (2.2.1) - mixlib-install (0.7.0) + mixlib-install (0.7.1) mixlib-log (1.6.0) - mixlib-shellout (2.2.5) + mixlib-shellout (2.2.6) molinillo (0.2.3) multi_json (1.11.2) + multipart-post (2.0.0) net-scp (1.2.1) net-ssh (>= 2.6.5) - net-ssh (2.9.2) + net-ssh (3.0.2) net-ssh-gateway (1.2.0) net-ssh (>= 2.6.5) net-ssh-multi (1.2.1) net-ssh (>= 2.6.5) net-ssh-gateway (>= 1.2.0) net-telnet (0.1.1) + nio4r (1.2.1) + nokogiri (1.6.7.2) + mini_portile2 (~> 2.0.0.rc2) nori (2.6.0) - ohai (8.7.0) + octokit (4.3.0) + sawyer (~> 0.7.0, >= 0.5.3) + ohai (8.12.0) chef-config (>= 12.5.0.alpha.1, < 13) ffi (~> 1.9) ffi-yajl (~> 2.2) ipaddress - mime-types (~> 2.0) mixlib-cli mixlib-config (~> 2.0) mixlib-log mixlib-shellout (~> 2.0) + plist rake (~> 10.1) systemu (~> 2.6.4) wmi-lite (~> 1.0) - paint (1.0.0) + paint (1.0.1) + parser (2.3.0.6) + ast (~> 2.2) plist (3.1.0) + polyglot (0.3.5) + powerpack (0.1.1) + proxifier (1.0.3) pry (0.10.3) coderay (~> 1.1.0) method_source (~> 0.8.1) slop (~> 3.4) + r-train (0.10.3) + docker-api (~> 1.26.2) + json (~> 1.8) + mixlib-shellout (~> 2.1) + net-scp (~> 1.2) + net-ssh (>= 2.9, < 4.0) + winrm (~> 1.6) + winrm-fs (~> 0.3) rack (1.6.4) - rake (10.4.2) + rainbow (2.1.0) + rake (10.5.0) + retryable (2.0.3) + ridley (4.5.0) + addressable + buff-config (~> 1.0) + buff-extensions (~> 1.0) + buff-ignore (~> 1.1) + buff-shell_out (~> 0.1) + celluloid (~> 0.16.0) + celluloid-io (~> 0.16.1) + chef-config (>= 12.5.0) + erubis + faraday (~> 0.9.0) + hashie (>= 2.0.2, < 4.0.0) + httpclient (~> 2.7) + json (>= 1.7.7) + mixlib-authentication (>= 1.3.0) + retryable (~> 2.0) + semverse (~> 1.1) + varia_model (~> 0.4.0) rspec (3.4.0) rspec-core (~> 3.4.0) rspec-expectations (~> 3.4.0) rspec-mocks (~> 3.4.0) - rspec-core (3.4.1) + rspec-core (3.4.4) rspec-support (~> 3.4.0) rspec-expectations (3.4.0) diff-lcs (>= 1.2.0, < 2.0) @@ -132,49 +263,97 @@ GEM rspec-its (1.2.0) rspec-core (>= 3.0.0) rspec-expectations (>= 3.0.0) - rspec-mocks (3.4.0) + rspec-mocks (3.4.1) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.4.0) rspec-support (3.4.1) rspec_junit_formatter (0.2.3) builder (< 4) rspec-core (>= 2, < 4, != 2.12.0) - rubyntlm (0.4.0) + rubocop (0.38.0) + parser (>= 2.3.0.6, < 3.0) + powerpack (~> 0.1) + rainbow (>= 1.99.1, < 3.0) + ruby-progressbar (~> 1.7) + unicode-display_width (~> 1.0, >= 1.0.1) + ruby-progressbar (1.7.5) + rubyntlm (0.6.0) + rubyzip (1.2.0) + rufus-lru (1.0.5) + safe_yaml (1.0.4) + sawyer (0.7.0) + addressable (>= 2.3.5, < 2.5) + faraday (~> 0.8, < 0.10) semverse (1.2.1) - serverspec (2.24.3) + serverspec (2.31.0) multi_json rspec (~> 3.0) rspec-its - specinfra (~> 2.43) + specinfra (~> 2.53) sfl (2.2) slop (3.6.0) - solve (2.0.1) + solve (2.0.2) molinillo (~> 0.2.3) semverse (~> 1.1) - specinfra (2.44.5) + specinfra (2.53.1) net-scp - net-ssh (~> 2.7) + net-ssh (>= 2.7, < 3.1) net-telnet sfl syslog-logger (1.6.8) systemu (2.6.5) + test-kitchen (1.6.0) + mixlib-install (~> 0.7) + mixlib-shellout (>= 1.2, < 3.0) + net-scp (~> 1.1) + net-ssh (>= 2.9, < 4.0) + safe_yaml (~> 1.0) + thor (~> 0.18) + thor (0.19.1) + timers (4.0.4) + hitimes + treetop (1.6.5) + polyglot (~> 0.3) + unicode-display_width (1.0.2) uuidtools (2.1.5) - winrm (1.3.6) + varia_model (0.4.1) + buff-extensions (~> 1.0) + hashie (>= 2.0.2, < 4.0.0) + winrm (1.7.2) builder (>= 2.1.2) gssapi (~> 1.2) gyoku (~> 1.0) httpclient (~> 2.2, >= 2.2.0.2) logging (>= 1.6.1, < 3.0) nori (~> 2.0) - rubyntlm (~> 0.4.0) - uuidtools (~> 2.1.2) + rubyntlm (~> 0.6.0) + winrm-fs (0.3.2) + erubis (~> 2.7) + logging (>= 1.6.1, < 3.0) + rubyzip (~> 1.1) + winrm (~> 1.5) wmi-lite (1.0.0) + yajl-ruby (1.2.1) PLATFORMS ruby DEPENDENCIES + berkshelf chef-dk + chef-provisioning + chef-vault + chefspec + fauxhai + foodcritic + inspec + kitchen-inspec + kitchen-vagrant + knife-spork + ohai + pry + rubocop + test-kitchen BUNDLED WITH 1.10.5 diff --git a/pkgs/development/tools/chefdk/default.nix b/pkgs/development/tools/chefdk/default.nix index 3b427aae4d2..80f9ef56abc 100644 --- a/pkgs/development/tools/chefdk/default.nix +++ b/pkgs/development/tools/chefdk/default.nix @@ -1,7 +1,7 @@ { stdenv, lib, bundlerEnv, ruby, perl, autoconf }: bundlerEnv { - name = "chefdk-0.10.0"; + name = "chefdk-0.11.2"; inherit ruby; gemfile = ./Gemfile; diff --git a/pkgs/development/tools/chefdk/gemset.nix b/pkgs/development/tools/chefdk/gemset.nix index cb4c1fcb67d..87faa3105ad 100644 --- a/pkgs/development/tools/chefdk/gemset.nix +++ b/pkgs/development/tools/chefdk/gemset.nix @@ -1,4 +1,104 @@ { + "addressable" = { + version = "2.4.0"; + source = { + type = "gem"; + sha256 = "0mpn7sbjl477h56gmxsjqb89r5s3w7vx5af994ssgc3iamvgzgvs"; + }; + }; + "app_conf" = { + version = "0.4.2"; + source = { + type = "gem"; + sha256 = "1yqwhr7d9i0cgavqkkq0b4pfqpn213dbhj5ayygr293wplm0jh57"; + }; + }; + "ast" = { + version = "2.2.0"; + source = { + type = "gem"; + sha256 = "14md08f8f1mmr2v7lczqnf1n1v8bal73gvg6ldhvkds1bmbnkrlb"; + }; + }; + "berkshelf" = { + version = "4.3.0"; + source = { + type = "gem"; + sha256 = "1dsbyq3749b9133rmnzjak7rsysyps1ryalc2r4rxyihflmxhix9"; + }; + dependencies = [ + "addressable" + "berkshelf-api-client" + "buff-config" + "buff-extensions" + "buff-shell_out" + "celluloid" + "celluloid-io" + "cleanroom" + "faraday" + "httpclient" + "minitar" + "octokit" + "retryable" + "ridley" + "solve" + "thor" + ]; + }; + "berkshelf-api-client" = { + version = "2.0.2"; + source = { + type = "gem"; + sha256 = "0xbn8q2xi09x5a7ma6wqs13gkpzj4ly21vls7m7ffv3sw8x29cyc"; + }; + dependencies = [ + "faraday" + "httpclient" + "ridley" + ]; + }; + "buff-config" = { + version = "1.0.1"; + source = { + type = "gem"; + sha256 = "0r3h3mk1dj7pc4zymz450bdqp23faqprx363ji4zfdg8z6r31jfh"; + }; + dependencies = [ + "buff-extensions" + "varia_model" + ]; + }; + "buff-extensions" = { + version = "1.0.0"; + source = { + type = "gem"; + sha256 = "1jqb5sn38qgx66lc4km6rljzz05myijjw12hznz1fk0k4qfw6yzk"; + }; + }; + "buff-ignore" = { + version = "1.1.1"; + source = { + type = "gem"; + sha256 = "1ghzhkgbq7f5fc7xilw0c9gspxpdhqhq3ygi1ybjm6r0dxlmvdb4"; + }; + }; + "buff-ruby_engine" = { + version = "0.1.0"; + source = { + type = "gem"; + sha256 = "1llpwpmzkakbgz9fc3vr1298cx1n9zv1g25fwj80xnnr7428aj8p"; + }; + }; + "buff-shell_out" = { + version = "0.2.0"; + source = { + type = "gem"; + sha256 = "0sphb69vxm346ys2laiz174k5jx628vfwz9ch8g2w9plc4xkxf3p"; + }; + dependencies = [ + "buff-ruby_engine" + ]; + }; "builder" = { version = "3.2.2"; source = { @@ -6,11 +106,32 @@ sha256 = "14fii7ab8qszrvsvhz6z2z3i4dw0h41a62fjr2h1j8m41vbrmyv2"; }; }; - "chef" = { - version = "12.5.1"; + "celluloid" = { + version = "0.16.0"; source = { type = "gem"; - sha256 = "0hf6766wmh1dg7f09hi80s8hn1knvzgnaimbhvc05b4q973k5lmb"; + sha256 = "044xk0y7i1xjafzv7blzj5r56s7zr8nzb619arkrl390mf19jxv3"; + }; + dependencies = [ + "timers" + ]; + }; + "celluloid-io" = { + version = "0.16.2"; + source = { + type = "gem"; + sha256 = "1l1x0p6daa5vskywrvaxdlanwib3k5pps16axwyy4p8d49pn9rnx"; + }; + dependencies = [ + "celluloid" + "nio4r" + ]; + }; + "chef" = { + version = "12.8.1"; + source = { + type = "gem"; + sha256 = "16wb3ymnl7rbayy8qp35fp0947cnq2y9bac7xzhc1njp5j2p6lhg"; }; dependencies = [ "chef-config" @@ -27,7 +148,7 @@ "net-ssh-multi" "ohai" "plist" - "pry" + "proxifier" "rspec-core" "rspec-expectations" "rspec-mocks" @@ -35,13 +156,14 @@ "serverspec" "specinfra" "syslog-logger" + "uuidtools" ]; }; "chef-config" = { - version = "12.5.1"; + version = "12.8.1"; source = { type = "gem"; - sha256 = "18iqlf9x3iavh6183zlkiasxsz45drshihmk8yj56prrzfiys67m"; + sha256 = "0chgbdv9c1xfkhzx3kmpr8lj0wjdbziixgln2y3ryn84x4fg84ic"; }; dependencies = [ "mixlib-config" @@ -49,10 +171,10 @@ ]; }; "chef-dk" = { - version = "0.10.0"; + version = "0.11.2"; source = { type = "gem"; - sha256 = "0gxm8dbq7y4bf9wb8zad9q5idsl88f1nm3rvnd2am0xka6bnxv29"; + sha256 = "1qfx5qclvh3kwjgfs18iwdn0knpgka5py7mwi4r0mz2sw14wq5wk"; }; dependencies = [ "chef" @@ -68,10 +190,10 @@ ]; }; "chef-provisioning" = { - version = "1.5.0"; + version = "1.6.0"; source = { type = "gem"; - sha256 = "1xln9hf8mcm81cmw96ccmyzrak54fbjrl9wgii37rx04v4a2435n"; + sha256 = "1nxgia4zyhyqbrz65q7lgjwx8ba5iyzxdxa181y0s4aqqpv0j45g"; }; dependencies = [ "cheffish" @@ -83,11 +205,18 @@ "winrm" ]; }; - "chef-zero" = { - version = "4.3.2"; + "chef-vault" = { + version = "2.8.0"; source = { type = "gem"; - sha256 = "1djnxs97kj13vj1hxx4v6978pkwm8i03p76gbirbp3z2zs6jyvjf"; + sha256 = "0dbvawlrfx9mqjyh8q71jjfh987xqqv3f6c0pmcjp6qxs95l1dqq"; + }; + }; + "chef-zero" = { + version = "4.5.0"; + source = { + type = "gem"; + sha256 = "1lqvmgjniviahrhim8k67qddnwh5p7wzw33r1wga4z136pfka1zx"; }; dependencies = [ "ffi-yajl" @@ -98,20 +227,47 @@ ]; }; "cheffish" = { - version = "1.6.0"; + version = "2.0.2"; source = { type = "gem"; - sha256 = "10aj660azybnf7444a604pjs8p9pvwm3n4mavy8mp3g30yr07paq"; + sha256 = "0mvp7kybgp3nm2sdcmlx8bv147hcdjx745a8k97bx1m47isv97ax"; }; dependencies = [ "chef-zero" + "compat_resource" ]; }; - "coderay" = { - version = "1.1.0"; + "chefspec" = { + version = "4.6.0"; source = { type = "gem"; - sha256 = "059wkzlap2jlkhg460pkwc1ay4v4clsmg1bp4vfzjzkgwdckr52s"; + sha256 = "1ikn8k6xdqixdjga50jmkqajz2z2z71dg4j3dsmd31hv1mdbp7wz"; + }; + dependencies = [ + "chef" + "fauxhai" + "rspec" + ]; + }; + "cleanroom" = { + version = "1.0.0"; + source = { + type = "gem"; + sha256 = "1r6qa4b248jasv34vh7rw91pm61gzf8g5dvwx2gxrshjs7vbhfml"; + }; + }; + "coderay" = { + version = "1.1.1"; + source = { + type = "gem"; + sha256 = "1x6z923iwr1hi04k6kz5a6llrixflz8h5sskl9mhaaxy9jx2x93r"; + }; + }; + "compat_resource" = { + version = "12.8.0"; + source = { + type = "gem"; + sha256 = "0zp1dd1wkbgxbazvs7acqyk1xjls0wq1pd5ilhj6zi63lpychgy5"; }; }; "cookbook-omnifetch" = { @@ -131,6 +287,24 @@ sha256 = "1vf9civd41bnqi6brr5d9jifdw73j9khc6fkhfl1f8r9cpkdvlx1"; }; }; + "diffy" = { + version = "3.1.0"; + source = { + type = "gem"; + sha256 = "1azibizfv91sjbzhjqj1pg2xcv8z9b8a7z6kb3wpl4hpj5hil5kj"; + }; + }; + "docker-api" = { + version = "1.26.2"; + source = { + type = "gem"; + sha256 = "0sg2xazcga21pmlb9yy1z5f3yyzqa2ly5b2h2cxfhyfda6k748wk"; + }; + dependencies = [ + "excon" + "json" + ]; + }; "erubis" = { version = "2.7.0"; source = { @@ -138,6 +312,33 @@ sha256 = "1fj827xqjs91yqsydf0zmfyw9p4l2jz5yikg3mppz6d7fi8kyrb3"; }; }; + "excon" = { + version = "0.48.0"; + source = { + type = "gem"; + sha256 = "0hjfd2p2mhklavhy8gy1ygm390iz3imx71065dcr9r28s3wk63gf"; + }; + }; + "faraday" = { + version = "0.9.2"; + source = { + type = "gem"; + sha256 = "1kplqkpn2s2yl3lxdf6h7sfldqvkbkpxwwxhyk7mdhjplb5faqh6"; + }; + dependencies = [ + "multipart-post" + ]; + }; + "fauxhai" = { + version = "3.1.0"; + source = { + type = "gem"; + sha256 = "0ff8wappc4n4v7v6969zm64c36qiadfw3igl8cyqrpp36fnqm04d"; + }; + dependencies = [ + "net-ssh" + ]; + }; "ffi" = { version = "1.9.10"; source = { @@ -146,15 +347,48 @@ }; }; "ffi-yajl" = { - version = "2.2.2"; + version = "2.2.3"; source = { type = "gem"; - sha256 = "013n5cf80p2wfpmj1mdjkbmcyx3hg4c81wl3bamglaf4i12a2qk2"; + sha256 = "14wgy2isc5yir4zdkk0l3hzh1s1ycwblqb1hllbv4g9svb9naqbz"; }; dependencies = [ "libyajl2" ]; }; + "foodcritic" = { + version = "6.0.1"; + source = { + type = "gem"; + sha256 = "06pi4984g6vwfzqvsf73zpw4h1p63bl7yn2sjb9mqd896bb3v6cn"; + }; + dependencies = [ + "erubis" + "gherkin" + "nokogiri" + "rake" + "rufus-lru" + "treetop" + "yajl-ruby" + ]; + }; + "gherkin" = { + version = "2.12.2"; + source = { + type = "gem"; + sha256 = "1mxfgw15pii1jmq00xxbyp77v71mh3bp99ndgwzfwkxvbcisha25"; + }; + dependencies = [ + "multi_json" + ]; + }; + "git" = { + version = "1.3.0"; + source = { + type = "gem"; + sha256 = "1waikaggw7a1d24nw0sh8fd419gbf7awh000qhsf411valycj6q3"; + }; + }; "gssapi" = { version = "1.2.0"; source = { @@ -189,11 +423,18 @@ sha256 = "1nf5lgdn6ni2lpfdn4gk3gi47fmnca2bdirabbjbz1fk9w4p8lkr"; }; }; - "httpclient" = { - version = "2.7.0.1"; + "hitimes" = { + version = "1.2.3"; source = { type = "gem"; - sha256 = "0k6bqsaqq6c824vrbfb5pkz8bpk565zikd10w85rzj2dy809ik6c"; + sha256 = "1fr9raz7652bnnx09dllyjdlnwdxsnl0ig5hq9s4s8vackvmckv4"; + }; + }; + "httpclient" = { + version = "2.7.1"; + source = { + type = "gem"; + sha256 = "1y01wgmvwz8r4ycr87d12niglpk0nlh2hkpgy9bnmm8as7kgs428"; }; }; "inifile" = { @@ -203,12 +444,71 @@ sha256 = "03rpacxnrnisjhd2zhc7629ica958bkdbakicl5kipw1wbprck25"; }; }; - "ipaddress" = { - version = "0.8.0"; + "inspec" = { + version = "0.14.8"; source = { type = "gem"; - sha256 = "0cwy4pyd9nl2y2apazp3hvi12gccj5a3ify8mi8k3knvxi5wk2ir"; + sha256 = "0whd57f82ml0awn7wgfi8gj3mwl7njww22hn2ciabxafqld9xrri"; }; + dependencies = [ + "json" + "method_source" + "pry" + "r-train" + "rainbow" + "rspec" + "rspec-its" + "rubyzip" + "thor" + ]; + }; + "ipaddress" = { + version = "0.8.3"; + source = { + type = "gem"; + sha256 = "1x86s0s11w202j6ka40jbmywkrx8fhq8xiy8mwvnkhllj57hqr45"; + }; + }; + "json" = { + version = "1.8.3"; + source = { + type = "gem"; + sha256 = "1nsby6ry8l9xg3yw4adlhk2pnc7i0h0rznvcss4vk3v74qg0k8lc"; + }; + }; + "kitchen-inspec" = { + version = "0.12.3"; + source = { + type = "gem"; + sha256 = "1vjb9pxb4ga9ppr35k6vsqh053k35b4fxamzg99g17y1rijp6dbj"; + }; + dependencies = [ + "inspec" + "test-kitchen" + ]; + }; + "kitchen-vagrant" = { + version = "0.19.0"; + source = { + type = "gem"; + sha256 = "0sydjihhvnr40vqnj7bg65zxf00crwvwdli1av03ghhggrp5scla"; + }; + dependencies = [ + "test-kitchen" + ]; + }; + "knife-spork" = { + version = "1.6.1"; + source = { + type = "gem"; + sha256 = "104f3xq4gfy7rszc8zbfakg9wlnwnf8k9zij9ahdq4id3sdf1ylb"; + }; + dependencies = [ + "app_conf" + "chef" + "diffy" + "git" + ]; }; "libyajl2" = { version = "1.2.0"; @@ -242,11 +542,11 @@ sha256 = "1g5i4w0dmlhzd18dijlqw5gk27bv6dj2kziqzrzb7mpgxgsd1sf2"; }; }; - "mime-types" = { - version = "2.99"; + "mini_portile2" = { + version = "2.0.0"; source = { type = "gem"; - sha256 = "1hravghdnk9qbibxb3ggzv7mysl97djh8n0rsswy3ssjaw7cbvf2"; + sha256 = "056drbn5m4khdxly1asmiik14nyllswr6sh3wallvsywwdiryz8l"; }; }; "minitar" = { @@ -257,13 +557,16 @@ }; }; "mixlib-authentication" = { - version = "1.3.0"; + version = "1.4.0"; source = { type = "gem"; - sha256 = "1c5p5ipa3cssmwgdn0q3lyy1w7asikh9qfpnn7xcfz2f9m7v02zg"; + sha256 = "0qk6mln2bkp6jgkz3sh5r69lzipzjs4dqdixqq12wzvwapmgc0zj"; }; dependencies = [ "mixlib-log" + "rspec-core" + "rspec-expectations" + "rspec-mocks" ]; }; "mixlib-cli" = { @@ -281,10 +584,10 @@ }; }; "mixlib-install" = { - version = "0.7.0"; + version = "0.7.1"; source = { type = "gem"; - sha256 = "0ll1p7v7fp3rf11dz8pifz33jhl4bdg779n4hzlnbia2z7xfsa2w"; + sha256 = "1ws2syfimnqzlff2fp6yj5v7zgnzmi3pj9kbkg7xlmd9fhnkb0n7"; }; }; "mixlib-log" = { @@ -295,10 +598,10 @@ }; }; "mixlib-shellout" = { - version = "2.2.5"; + version = "2.2.6"; source = { type = "gem"; - sha256 = "1is07rar0x8n9h67j4iyrxz2yfgis4bnhh3x7vhbbi6khqqixg79"; + sha256 = "1xfs7yp533qx3nsd4x2q2r125awyxcizgdc4dwgdlxsa1n1pj0pd"; }; }; "molinillo" = { @@ -315,6 +618,13 @@ sha256 = "1rf3l4j3i11lybqzgq2jhszq7fh7gpmafjzd14ymp9cjfxqg596r"; }; }; + "multipart-post" = { + version = "2.0.0"; + source = { + type = "gem"; + sha256 = "09k0b3cybqilk1gwrwwain95rdypixb2q9w65gd44gfzsd84xi1x"; + }; + }; "net-scp" = { version = "1.2.1"; source = { @@ -326,10 +636,10 @@ ]; }; "net-ssh" = { - version = "2.9.2"; + version = "3.0.2"; source = { type = "gem"; - sha256 = "1p0bj41zrmw5lhnxlm1pqb55zfz9y4p9fkrr9a79nrdmzrk1ph8r"; + sha256 = "1k3hrgr899dlhkn53c4hnn5qzbhc7lwks0vaqgw95gg74hn1ivqw"; }; }; "net-ssh-gateway" = { @@ -360,6 +670,23 @@ sha256 = "13qxznpwmc3hs51b76wqx2w29r158gzzh8719kv2gpi56844c8fx"; }; }; + "nio4r" = { + version = "1.2.1"; + source = { + type = "gem"; + sha256 = "1adnm77xfxck0mrvid5d7lwng783gh580rh3y18nq4bwdikr6nha"; + }; + }; + "nokogiri" = { + version = "1.6.7.2"; + source = { + type = "gem"; + sha256 = "11sbmpy60ynak6s3794q32lc99hs448msjy8rkp84ay7mq7zqspv"; + }; + dependencies = [ + "mini_portile2" + ]; + }; "nori" = { version = "2.6.0"; source = { @@ -367,34 +694,54 @@ sha256 = "066wc774a2zp4vrq3k7k8p0fhv30ymqmxma1jj7yg5735zls8agn"; }; }; - "ohai" = { - version = "8.7.0"; + "octokit" = { + version = "4.3.0"; source = { type = "gem"; - sha256 = "1f10kgxh89iwij54yx8q11n1q87653ckvdmdwg8cwz3qlgf4flhy"; + sha256 = "1hq47ck0z03vr3rzblyszihn7x2m81gv35chwwx0vrhf17nd27np"; + }; + dependencies = [ + "sawyer" + ]; + }; + "ohai" = { + version = "8.12.0"; + source = { + type = "gem"; + sha256 = "0l7vdfnfm4plla6q4qkngwpmy0ah53pnymlwfzc7iy6jn2n9ibpm"; }; dependencies = [ "chef-config" "ffi" "ffi-yajl" "ipaddress" - "mime-types" "mixlib-cli" "mixlib-config" "mixlib-log" "mixlib-shellout" + "plist" "rake" "systemu" "wmi-lite" ]; }; "paint" = { - version = "1.0.0"; + version = "1.0.1"; source = { type = "gem"; - sha256 = "0mhwj6w60q40w4f6jz8xx8bv1kghjvsjc3d8q8pnslax4fkmzbp1"; + sha256 = "1z1fqyyc2jiv6yabv467h652cxr2lmxl5gqqg7p14y28kdqf0nhj"; }; }; + "parser" = { + version = "2.3.0.6"; + source = { + type = "gem"; + sha256 = "1r14k5jlsc5ivxjm1kljhk9sqp50rnd71n0mzx18hz135nvw1hbz"; + }; + dependencies = [ + "ast" + ]; + }; "plist" = { version = "3.1.0"; source = { @@ -402,6 +749,27 @@ sha256 = "0rh8nddwdya888j1f4wix3dfan1rlana3mc7mwrvafxir88a1qcs"; }; }; + "polyglot" = { + version = "0.3.5"; + source = { + type = "gem"; + sha256 = "1bqnxwyip623d8pr29rg6m8r0hdg08fpr2yb74f46rn1wgsnxmjr"; + }; + }; + "powerpack" = { + version = "0.1.1"; + source = { + type = "gem"; + sha256 = "1fnn3fli5wkzyjl4ryh0k90316shqjfnhydmc7f8lqpi0q21va43"; + }; + }; + "proxifier" = { + version = "1.0.3"; + source = { + type = "gem"; + sha256 = "1abzlg39cfji1nx3i8kmb5k3anr2rd392yg2icms24wkqz9g9zj0"; + }; + }; "pry" = { version = "0.10.3"; source = { @@ -414,6 +782,22 @@ "slop" ]; }; + "r-train" = { + version = "0.10.3"; + source = { + type = "gem"; + sha256 = "1hn0aap2lq15p97mb91h32yfsw8rh4imhyjlbs4jx9x52h2q6nam"; + }; + dependencies = [ + "docker-api" + "json" + "mixlib-shellout" + "net-scp" + "net-ssh" + "winrm" + "winrm-fs" + ]; + }; "rack" = { version = "1.6.4"; source = { @@ -421,13 +805,53 @@ sha256 = "09bs295yq6csjnkzj7ncj50i6chfxrhmzg1pk6p0vd2lb9ac8pj5"; }; }; - "rake" = { - version = "10.4.2"; + "rainbow" = { + version = "2.1.0"; source = { type = "gem"; - sha256 = "1rn03rqlf1iv6n87a78hkda2yqparhhaivfjpizblmxvlw2hk5r8"; + sha256 = "11licivacvfqbjx2rwppi8z89qff2cgs67d4wyx42pc5fg7g9f00"; }; }; + "rake" = { + version = "10.5.0"; + source = { + type = "gem"; + sha256 = "0jcabbgnjc788chx31sihc5pgbqnlc1c75wakmqlbjdm8jns2m9b"; + }; + }; + "retryable" = { + version = "2.0.3"; + source = { + type = "gem"; + sha256 = "0lr3wasxwdyzr0bag179003hs2ycn9w86m450pazc81v19j4x1dq"; + }; + }; + "ridley" = { + version = "4.5.0"; + source = { + type = "gem"; + sha256 = "0y0p45y3xp37gg8ab132x4i0iggl3p907wfklhr5gb7r5yj6sj4r"; + }; + dependencies = [ + "addressable" + "buff-config" + "buff-extensions" + "buff-ignore" + "buff-shell_out" + "celluloid" + "celluloid-io" + "chef-config" + "erubis" + "faraday" + "hashie" + "httpclient" + "json" + "mixlib-authentication" + "retryable" + "semverse" + "varia_model" + ]; + }; "rspec" = { version = "3.4.0"; source = { @@ -441,10 +865,10 @@ ]; }; "rspec-core" = { - version = "3.4.1"; + version = "3.4.4"; source = { type = "gem"; - sha256 = "0zl4fbrzl4gg2bn3fhv910q04sm2jvzdidmvd71gdgqwbzk0zngn"; + sha256 = "1z2zmy3xaq00v20ykamqvnynzv2qrrnbixc6dn0jw1c5q9mqq9fp"; }; dependencies = [ "rspec-support" @@ -473,10 +897,10 @@ ]; }; "rspec-mocks" = { - version = "3.4.0"; + version = "3.4.1"; source = { type = "gem"; - sha256 = "0iw9qvpawj3cfcg3xipi1v4y11g9q4f5lvmzgksn6f0chf97sjy1"; + sha256 = "0sk8ijq5d6bwhvjq94gfm02fssxkm99bgpasqazsmmll5m1cn7vr"; }; dependencies = [ "diff-lcs" @@ -501,12 +925,65 @@ "rspec-core" ]; }; - "rubyntlm" = { - version = "0.4.0"; + "rubocop" = { + version = "0.38.0"; source = { type = "gem"; - sha256 = "03xmi8mxcbc5laad10r6b705dk4vyhl9lr7h940f2rhibymxq45x"; + sha256 = "0qgwq558n41z2id7nwc3bh7z8h9yh7c9zdasqn8p30p0p72f5520"; }; + dependencies = [ + "parser" + "powerpack" + "rainbow" + "ruby-progressbar" + "unicode-display_width" + ]; + }; + "ruby-progressbar" = { + version = "1.7.5"; + source = { + type = "gem"; + sha256 = "0hynaavnqzld17qdx9r7hfw00y16ybldwq730zrqfszjwgi59ivi"; + }; + }; + "rubyntlm" = { + version = "0.6.0"; + source = { + type = "gem"; + sha256 = "00k1cll10mcyg6qpdzyrazm5pjbpj7wq54ki2y8vxz86842vbsgp"; + }; + }; + "rubyzip" = { + version = "1.2.0"; + source = { + type = "gem"; + sha256 = "10a9p1m68lpn8pwqp972lv61140flvahm3g9yzbxzjks2z3qlb2s"; + }; + }; + "rufus-lru" = { + version = "1.0.5"; + source = { + type = "gem"; + sha256 = "1vrsbvcsl7yspzb761p2gbl7dwz0d1j82msbjsksf8hi4cv970s5"; + }; + }; + "safe_yaml" = { + version = "1.0.4"; + source = { + type = "gem"; + sha256 = "1hly915584hyi9q9vgd968x2nsi5yag9jyf5kq60lwzi5scr7094"; + }; + }; + "sawyer" = { + version = "0.7.0"; + source = { + type = "gem"; + sha256 = "1cn48ql00mf1ag9icmfpj7g7swh7mdn7992ggynjqbw1gh15bs3j"; + }; + dependencies = [ + "addressable" + "faraday" + ]; }; "semverse" = { version = "1.2.1"; @@ -516,10 +993,10 @@ }; }; "serverspec" = { - version = "2.24.3"; + version = "2.31.0"; source = { type = "gem"; - sha256 = "03v6qqshqjsvbbjf1pwbi2mzgqg84wdbhnqb3gdbl1m9bz7sxg1n"; + sha256 = "169mh6s4drxy9qs7f01gqcaq1qfkvy9hdc1ny3lnk0aiwfcm2s1p"; }; dependencies = [ "multi_json" @@ -543,10 +1020,10 @@ }; }; "solve" = { - version = "2.0.1"; + version = "2.0.2"; source = { type = "gem"; - sha256 = "0009xvg40y59bijds5njnwfshfw68wmj54yz3qy538g9rpxvmqp1"; + sha256 = "0mwdd6z3vbzna9vphnkgdghy40xawn0yiwhamvb6spfk6n2c80kb"; }; dependencies = [ "molinillo" @@ -554,10 +1031,10 @@ ]; }; "specinfra" = { - version = "2.44.5"; + version = "2.53.1"; source = { type = "gem"; - sha256 = "018i3bmmy7lc21hagvwfmz2sdfj0v87a7yy3z162lcpq62vxw89r"; + sha256 = "17jbrn7nm6c72qy1nw064c0yi9cimd295s7j6x9bm878cbyq9i6i"; }; dependencies = [ "net-scp" @@ -580,6 +1057,55 @@ sha256 = "0gmkbakhfci5wnmbfx5i54f25j9zsvbw858yg3jjhfs5n4ad1xq1"; }; }; + "test-kitchen" = { + version = "1.6.0"; + source = { + type = "gem"; + sha256 = "1glmvjm24fmlbhm8q4lzi1ynds77ip3s4s5q6fdjlhdanh6jrgwz"; + }; + dependencies = [ + "mixlib-install" + "mixlib-shellout" + "net-scp" + "net-ssh" + "safe_yaml" + "thor" + ]; + }; + "thor" = { + version = "0.19.1"; + source = { + type = "gem"; + sha256 = "08p5gx18yrbnwc6xc0mxvsfaxzgy2y9i78xq7ds0qmdm67q39y4z"; + }; + }; + "timers" = { + version = "4.0.4"; + source = { + type = "gem"; + sha256 = "1jx4wb0x182gmbcs90vz0wzfyp8afi1mpl9w5ippfncyk4kffvrz"; + }; + dependencies = [ + "hitimes" + ]; + }; + "treetop" = { + version = "1.6.5"; + source = { + type = "gem"; + sha256 = "1lg7j8xf8yxmnz1v8zkwhs4l6j30kq2pxvvrvpah2frlaqz077dh"; + }; + dependencies = [ + "polyglot" + ]; + }; + "unicode-display_width" = { + version = "1.0.2"; + source = { + type = "gem"; + sha256 = "1cffs73zrn788dyd1vv91p0mcxgx2g1sis6552ggmfib3f148gbi"; + }; + }; "uuidtools" = { version = "2.1.5"; source = { @@ -587,11 +1113,22 @@ sha256 = "0zjvq1jrrnzj69ylmz1xcr30skf9ymmvjmdwbvscncd7zkr8av5g"; }; }; - "winrm" = { - version = "1.3.6"; + "varia_model" = { + version = "0.4.1"; source = { type = "gem"; - sha256 = "1rx42y5w9d3w6axxwdj9zckzsgsjk172zxn52w2jj65spl98vxbc"; + sha256 = "1qm9fhizfry055yras9g1129lfd48fxg4lh0hck8h8cvjdjz1i62"; + }; + dependencies = [ + "buff-extensions" + "hashie" + ]; + }; + "winrm" = { + version = "1.7.2"; + source = { + type = "gem"; + sha256 = "1as865gd6f0g0hppw8plki1i4afpn6lcx89sgi52v1mlgwxfifff"; }; dependencies = [ "builder" @@ -601,7 +1138,19 @@ "logging" "nori" "rubyntlm" - "uuidtools" + ]; + }; + "winrm-fs" = { + version = "0.3.2"; + source = { + type = "gem"; + sha256 = "08j2ip9wx1vcx45kd9ws6lb6znfq9gib1n2j7shzs10rxwgs1bj8"; + }; + dependencies = [ + "erubis" + "logging" + "rubyzip" + "winrm" ]; }; "wmi-lite" = { @@ -611,4 +1160,11 @@ sha256 = "06pm7jr2gcnphhhswha2kqw0vhxy91i68942s7gqriadbc8pq9z3"; }; }; + "yajl-ruby" = { + version = "1.2.1"; + source = { + type = "gem"; + sha256 = "0zvvb7i1bl98k3zkdrnx9vasq0rp2cyy5n7p9804dqs4fz9xh9vf"; + }; + }; } \ No newline at end of file From a6a11df31c457d4497847cb0aee945c446b53109 Mon Sep 17 00:00:00 2001 From: Cole Mickens Date: Thu, 10 Mar 2016 18:01:24 -0800 Subject: [PATCH 0189/1059] plex: plexpass: 0.9.15.6.1714 -> 0.9.16.0.1754 --- 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 799fea0fe50..672e441875a 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.15.6.1714"; - vsnHash = "7be11e1"; - sha256 = "1kyk41qnbm8w5bvnisp3d99cf0r72wvlggfi9h4np7sq4p8ksa0g"; + version = "0.9.16.0.1754"; + vsnHash = "23623fb"; + sha256 = "0yn5bqpgz28ig6y3qw3zxzm8gfvwaw7nh5krmav8h1ryws98cc6g"; } else { version = "0.9.15.6.1714"; vsnHash = "7be11e1"; From e834a7c05be00400aa1efd5c47820bb1d357eaed Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 11 Mar 2016 03:08:02 +0100 Subject: [PATCH 0190/1059] dropbear: 2015.71 -> 2016.72 Bugfix release: - Validate X11 forwarding input. Could allow bypass of authorized_keys command= restrictions. --- 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 c76c6d0dd7f..1f3a09e63f9 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-2015.71"; + name = "dropbear-2016.72"; src = fetchurl { url = "http://matt.ucc.asn.au/dropbear/releases/${name}.tar.bz2"; - sha256 = "1bw3lzmisn6gs6zy9vcqbfnicl437ydskqcayklpw60fkhb18qip"; + sha256 = "10fnlaf6rm537v3rml1gnd58d42plv2q5cp7svbrysap69npc8wk"; }; dontDisableStatic = enableStatic; From cbd4a203b7a85eb15992abdc28de05412598abf3 Mon Sep 17 00:00:00 2001 From: Phil Scott Date: Fri, 11 Mar 2016 07:23:11 +0000 Subject: [PATCH 0191/1059] emacs-w3m: fix reference to env variable --- pkgs/applications/editors/emacs-modes/emacs-w3m/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/emacs-w3m/default.nix b/pkgs/applications/editors/emacs-modes/emacs-w3m/default.nix index d72ab12b580..850041ccfc7 100644 --- a/pkgs/applications/editors/emacs-modes/emacs-w3m/default.nix +++ b/pkgs/applications/editors/emacs-modes/emacs-w3m/default.nix @@ -27,8 +27,8 @@ stdenv.mkDerivation rec { ''; configureFlags = [ - "--with-lispdir=$out/share/emacs/site-lisp" - "--with-icondir=$out/share/emacs/site-lisp/images/w3m" + "--with-lispdir=$(out)/share/emacs/site-lisp" + "--with-icondir=$(out)/share/emacs/site-lisp/images/w3m" ]; postInstall = '' From 3c11b5d91fdb0199fe372a68a85410d04ce127fc Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 11 Mar 2016 08:26:43 +0100 Subject: [PATCH 0192/1059] electrum: implement a simple checkPhase Verify that we can at least run the help command without import errors. --- pkgs/applications/misc/electrum/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/misc/electrum/default.nix b/pkgs/applications/misc/electrum/default.nix index c9b6de715d2..82f90380113 100644 --- a/pkgs/applications/misc/electrum/default.nix +++ b/pkgs/applications/misc/electrum/default.nix @@ -55,6 +55,11 @@ pythonPackages.buildPythonApplication rec { pyrcc4 icons.qrc -o gui/qt/icons_rc.py ''; + doCheck = true; + checkPhase = '' + $out/bin/electrum help >/dev/null + ''; + meta = with stdenv.lib; { description = "Bitcoin thin-client"; longDescription = '' From 59e12df9578ca71928974c192639e61f19baabef Mon Sep 17 00:00:00 2001 From: Allan Espinosa Date: Fri, 11 Mar 2016 02:49:38 -0600 Subject: [PATCH 0193/1059] apt-cacher-ng: 0.8.6 -> 0.8.9 --- pkgs/servers/http/apt-cacher-ng/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/http/apt-cacher-ng/default.nix b/pkgs/servers/http/apt-cacher-ng/default.nix index f253cdba08e..625d9406641 100644 --- a/pkgs/servers/http/apt-cacher-ng/default.nix +++ b/pkgs/servers/http/apt-cacher-ng/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "apt-cacher-ng-${version}"; - version = "0.8.6"; + version = "0.8.9"; src = fetchurl { url = "http://ftp.debian.org/debian/pool/main/a/apt-cacher-ng/apt-cacher-ng_${version}.orig.tar.xz"; - sha256 = "0044dfks8djl11fs28jj8894i4rq424xix3d3fkvzz2i6lnp8nr5"; + sha256 = "15zkacy8n6fiklqpdk139pa7qssynrr9akv5h54ky1l53n0k70m6"; }; NIX_LDFLAGS = "-lpthread"; From 6f9fe31b4237c877a840600f4fccc2d71e8c717c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 9 Mar 2016 19:50:58 +0100 Subject: [PATCH 0194/1059] awstats: init at 7.4, including a simple service --- nixos/modules/module-list.nix | 1 + nixos/modules/services/logging/awstats.nix | 123 +++++++++++++++++++++ pkgs/tools/system/awstats/default.nix | 58 ++++++++++ pkgs/top-level/all-packages.nix | 2 + 4 files changed, 184 insertions(+) create mode 100644 nixos/modules/services/logging/awstats.nix create mode 100644 pkgs/tools/system/awstats/default.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 0105cc3cdf2..16897797914 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -176,6 +176,7 @@ ./services/hardware/udisks2.nix ./services/hardware/upower.nix ./services/hardware/thermald.nix + ./services/logging/awstats.nix ./services/logging/fluentd.nix ./services/logging/klogd.nix ./services/logging/logcheck.nix diff --git a/nixos/modules/services/logging/awstats.nix b/nixos/modules/services/logging/awstats.nix new file mode 100644 index 00000000000..8ab7e6acd98 --- /dev/null +++ b/nixos/modules/services/logging/awstats.nix @@ -0,0 +1,123 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.services.awstats; + package = pkgs.awstats; +in + +{ + options.services.awstats = { + enable = mkOption { + type = types.bool; + default = cfg.service.enable; + description = '' + Enable the awstats program (but not service). + Currently only simple httpd (Apache) configs are supported, + and awstats plugins may not work correctly. + ''; + }; + vardir = mkOption { + type = types.path; + default = "/var/lib/awstats"; + description = "The directory where variable awstats data will be stored."; + }; + + extraConfig = mkOption { + type = types.lines; + default = ""; + description = "Extra configuration to be appendend to awstats.conf."; + }; + + updateAt = mkOption { + type = types.nullOr types.string; + default = null; + example = "hourly"; + description = '' + Specification of the time at which awstats will get updated. + (in the format described by + systemd.time + 5) + ''; + }; + + service = { + enable = mkOption { + type = types.bool; + default = false; + description = ''Enable the awstats web service. This switches on httpd.''; + }; + urlPrefix = mkOption { + type = types.string; + default = "/awstats"; + description = "The URL prefix under which the awstats service appears."; + }; + }; + }; + + + config = mkIf cfg.enable { + environment.systemPackages = [ package.bin ]; + /* TODO: + - heed config.services.httpd.logPerVirtualHost, etc. + - Can't AllowToUpdateStatsFromBrowser, as CGI scripts don't have permission + to read the logs, and our httpd config apparently doesn't an option for that. + */ + environment.etc."awstats/awstats.conf".source = pkgs.runCommand "awstats.conf" + { preferLocalBuild = true; } + ( let + cfg-httpd = config.services.httpd; + logFormat = + if cfg-httpd.logFormat == "combined" then "1" else + if cfg-httpd.logFormat == "common" then "4" else + throw "awstats service doesn't support Apache log format `${cfg-httpd.logFormat}`"; + in + '' + sed \ + -e 's|^\(DirData\)=.*$|\1="${cfg.vardir}"|' \ + -e 's|^\(DirIcons\)=.*$|\1="icons"|' \ + -e 's|^\(CreateDirDataIfNotExists\)=.*$|\1=1|' \ + -e 's|^\(SiteDomain\)=.*$|\1="${cfg-httpd.hostName}"|' \ + -e 's|^\(LogFile\)=.*$|\1="${cfg-httpd.logDir}/access_log"|' \ + -e 's|^\(LogFormat\)=.*$|\1=${logFormat}|' \ + < '${package.out}/wwwroot/cgi-bin/awstats.model.conf' > "$out" + echo '${cfg.extraConfig}' >> "$out" + ''); + + # The httpd sub-service showing awstats. + services.httpd.enable = mkIf cfg.service.enable true; + services.httpd.extraSubservices = mkIf cfg.service.enable [ { function = { serverInfo, ... }: { + extraConfig = + '' + Alias ${cfg.service.urlPrefix}/classes "${package.out}/wwwroot/classes/" + Alias ${cfg.service.urlPrefix}/css "${package.out}/wwwroot/css/" + Alias ${cfg.service.urlPrefix}/icons "${package.out}/wwwroot/icon/" + ScriptAlias ${cfg.service.urlPrefix}/ "${package.out}/wwwroot/cgi-bin/" + + + Options None + AllowOverride None + Order allow,deny + Allow from all + + ''; + startupScript = + let + inherit (serverInfo.serverConfig) user group; + in pkgs.writeScript "awstats_startup.sh" + '' + mkdir -p '${cfg.vardir}' + chown '${user}:${group}' '${cfg.vardir}' + ''; + };}]; + + systemd.services.awstats-update = mkIf (cfg.updateAt != null) { + description = "awstats log collector"; + script = "exec '${package.bin}/bin/awstats' -update -config=awstats.conf"; + startAt = cfg.updateAt; + }; + }; + +} + diff --git a/pkgs/tools/system/awstats/default.nix b/pkgs/tools/system/awstats/default.nix new file mode 100644 index 00000000000..f4a14155d68 --- /dev/null +++ b/pkgs/tools/system/awstats/default.nix @@ -0,0 +1,58 @@ +{ stdenv, fetchurl, perlPackages, jdk }: + +perlPackages.buildPerlPackage rec { + name = "awstats-${version}"; + version = "7.4"; + + src = fetchurl { + url = "mirror://sourceforge/awstats/${name}.tar.gz"; + sha256 = "0mdbilsl8g9a84qgyws4pakhqr3mfhs5g5dqbgsn9gn285rzxas3"; + }; + + postPatch = '' + substituteInPlace wwwroot/cgi-bin/awstats.pl \ + --replace /usr/share/awstats/ "$out/wwwroot/cgi-bin/" + ''; + + outputs = [ "out" "bin" "doc" ]; + + buildInputs = with perlPackages; [ ]; # plugins will need some + + preConfigure = '' + touch Makefile.PL + patchShebangs . + ''; + + # build our own JAR + preBuild = '' + ( + cd wwwroot/classes/src + rm ../*.jar + PATH="${jdk}/bin" "$(type -P perl)" Makefile.pl + test -f ../*.jar + ) + ''; + + doCheck = false; + + installPhase = '' + mkdir "$out" + mv wwwroot "$out/wwwroot" + rm -r "$out/wwwroot/classes/src/" + + mkdir -p "$bin/bin" + ln -s "$out/wwwroot/cgi-bin/awstats.pl" "$bin/bin/awstats" + + mkdir -p "$doc/share/" + mv README.md docs/ + mv docs "$doc/share/awstats" + ''; + + meta = with stdenv.lib; { + description = "Real-time logfile analyzer to get advanced statistics"; + homepage = http://awstats.org; + license = licenses.gpl3Plus; + platforms = platforms.linux; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 155d3348f8b..50ef66a66bb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -676,6 +676,8 @@ let aws_mturk_clt = callPackage ../tools/misc/aws-mturk-clt { }; + awstats = callPackage ../tools/system/awstats { }; + axel = callPackage ../tools/networking/axel { }; azureus = callPackage ../tools/networking/p2p/azureus { }; From 9f578af6898f3579610abffb4b571767e555c7f6 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 11 Mar 2016 10:54:18 +0100 Subject: [PATCH 0195/1059] gnupg-1compat: cosmetic changes for Emacs --- pkgs/tools/security/gnupg/1compat.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/gnupg/1compat.nix b/pkgs/tools/security/gnupg/1compat.nix index 9bd71467f0e..d875413cc79 100644 --- a/pkgs/tools/security/gnupg/1compat.nix +++ b/pkgs/tools/security/gnupg/1compat.nix @@ -6,12 +6,12 @@ stdenv.mkDerivation { builder = writeScript "gnupg1compat-builder" '' # First symlink all top-level dirs ${coreutils}/bin/mkdir -p $out - ${coreutils}/bin/ln -s ${gnupg}/* $out + ${coreutils}/bin/ln -s "${gnupg}/"* $out # Replace bin with directory and symlink it contents ${coreutils}/bin/rm $out/bin ${coreutils}/bin/mkdir -p $out/bin - ${coreutils}/bin/ln -s ${gnupg}/bin/* $out/bin + ${coreutils}/bin/ln -s "${gnupg}/bin/"* $out/bin # Add gpg->gpg2 and gpgv->gpgv2 symlinks ${coreutils}/bin/ln -s gpg2 $out/bin/gpg From 2b7de01df96189417313798df4d96cd4ab7cde8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Fri, 11 Mar 2016 07:33:07 -0300 Subject: [PATCH 0196/1059] orage: init at 4.12.1 --- pkgs/desktops/xfce/applications/orage.nix | 30 +++++++++++++++++++++++ pkgs/desktops/xfce/default.nix | 1 + 2 files changed, 31 insertions(+) create mode 100644 pkgs/desktops/xfce/applications/orage.nix diff --git a/pkgs/desktops/xfce/applications/orage.nix b/pkgs/desktops/xfce/applications/orage.nix new file mode 100644 index 00000000000..c26327f4d92 --- /dev/null +++ b/pkgs/desktops/xfce/applications/orage.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchurl, pkgconfig, bison, flex, intltool, gtk, libical, dbus_glib +, libnotify, popt, xfce +}: + +stdenv.mkDerivation rec { + name = "${p_name}-${ver_maj}.${ver_min}"; + p_name = "orage"; + ver_maj = "4.12"; + ver_min = "1"; + + src = fetchurl { + url = "mirror://xfce/src/apps/${p_name}/${ver_maj}/${name}.tar.bz2"; + sha256 = "0qlhvnl2m33vfxqlbkic2nmfpwyd4mq230jzhs48cg78392amy9w"; + }; + + nativeBuildInputs = [ pkgconfig intltool bison flex ]; + + buildInputs = [ gtk libical dbus_glib libnotify popt xfce.libxfce4util + xfce.xfce4panel ]; + + preFixup = "rm $out/share/icons/hicolor/icon-theme.cache "; + + meta = { + homepage = http://www.xfce.org/projects/; + description = "A simple calendar application with reminders"; + license = stdenv.lib.licenses.gpl2; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.romildo ]; + }; +} diff --git a/pkgs/desktops/xfce/default.nix b/pkgs/desktops/xfce/default.nix index 9453e85d253..96e6c55162a 100644 --- a/pkgs/desktops/xfce/default.nix +++ b/pkgs/desktops/xfce/default.nix @@ -51,6 +51,7 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od gigolo = callPackage ./applications/gigolo.nix { }; mousepad = callPackage ./applications/mousepad.nix { }; + orage = callPackage ./applications/orage.nix { }; parole = callPackage ./applications/parole.nix { }; ristretto = callPackage ./applications/ristretto.nix { }; terminal = xfce4terminal; # it has changed its name From 19492185fa1b4f76692978c17d92c03109abb02b Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Wed, 9 Mar 2016 02:36:53 +0100 Subject: [PATCH 0197/1059] nixos/tests: implement dnscrypt-proxy test This test verifies that the daemon actually activates upon a user-initiated ping, when using the recommended configuration. --- nixos/release.nix | 1 + nixos/tests/dnscrypt-proxy.nix | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 nixos/tests/dnscrypt-proxy.nix diff --git a/nixos/release.nix b/nixos/release.nix index 069cf3727de..101f68a43f7 100644 --- a/nixos/release.nix +++ b/nixos/release.nix @@ -240,6 +240,7 @@ in rec { tests.containers = callTest tests/containers.nix {}; tests.docker = hydraJob (import tests/docker.nix { system = "x86_64-linux"; }); tests.dockerRegistry = hydraJob (import tests/docker-registry.nix { system = "x86_64-linux"; }); + tests.dnscrypt-proxy = callTest tests/dnscrypt-proxy.nix { system = "x86_64-linux"; }; tests.etcd = hydraJob (import tests/etcd.nix { system = "x86_64-linux"; }); tests.ec2-nixops = hydraJob (import tests/ec2.nix { system = "x86_64-linux"; }).boot-ec2-nixops; tests.ec2-config = hydraJob (import tests/ec2.nix { system = "x86_64-linux"; }).boot-ec2-config; diff --git a/nixos/tests/dnscrypt-proxy.nix b/nixos/tests/dnscrypt-proxy.nix new file mode 100644 index 00000000000..20ec3a333e7 --- /dev/null +++ b/nixos/tests/dnscrypt-proxy.nix @@ -0,0 +1,32 @@ +import ./make-test.nix ({ pkgs, ... }: { + name = "dnscrypt-proxy"; + meta = with pkgs.stdenv.lib.maintainers; { + maintainers = [ joachifm ]; + }; + + nodes = { + # A client running the recommended setup: DNSCrypt proxy as a forwarder + # for a caching DNS client. + client = + { config, pkgs, ... }: + let localProxyPort = 43; in + { + security.apparmor.enable = true; + + services.dnscrypt-proxy.enable = true; + services.dnscrypt-proxy.localPort = localProxyPort; + + services.dnsmasq.enable = true; + services.dnsmasq.servers = [ "127.0.0.1#${toString localProxyPort}" ]; + }; + }; + + testScript = '' + $client->start; + $client->waitForUnit("multi-user.target"); + + # 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"); + ''; +}) From 71ac0cd55efe8fad3623001bb3b7b9a355961802 Mon Sep 17 00:00:00 2001 From: obadz Date: Mon, 7 Mar 2016 16:41:57 +0000 Subject: [PATCH 0198/1059] yeshup: init at 5461a8f --- pkgs/tools/system/yeshup/default.nix | 25 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 27 insertions(+) create mode 100644 pkgs/tools/system/yeshup/default.nix diff --git a/pkgs/tools/system/yeshup/default.nix b/pkgs/tools/system/yeshup/default.nix new file mode 100644 index 00000000000..806d6cc5b94 --- /dev/null +++ b/pkgs/tools/system/yeshup/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchFromGitHub }: + +stdenv.mkDerivation rec { + name = "yeshup-${builtins.substring 0 7 rev}"; + rev = "5461a8f957c686ccd0240be3f0fd8124d7381b08"; + + src = fetchFromGitHub { + owner = "RhysU"; + repo = "yeshup"; + inherit rev; + sha256 = "1wwbc158y46jsmdi1lp0m3dlbr9kvzvwxfvzj6646cpy9d6h21v9"; + }; + + installPhase = '' + mkdir -p $out/bin + cp -v yeshup $out/bin + ''; + + meta = with stdenv.lib; { + homepage = https://github.com/RhysU/yeshup; + platforms = platforms.all; + license = licenses.cc-by-sa-30; # From Stackoverflow answer + maintainers = with maintainers; [ obadz ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c540ff849c8..f3112324169 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3893,6 +3893,8 @@ let yaml-merge = callPackage ../tools/text/yaml-merge { }; + yeshup = callPackage ../tools/system/yeshup { }; + # To expose more packages for Yi, override the extraPackages arg. yi = callPackage ../applications/editors/yi/wrapper.nix { }; From 54571aa76b65d55c4a72c8fcbd35d7d237b30437 Mon Sep 17 00:00:00 2001 From: obadz Date: Thu, 10 Mar 2016 16:32:04 +0000 Subject: [PATCH 0199/1059] goPackages.dbus: a5942de -> 230e4b2 Keep old version around because I can't get lxd-go-systemd to build against the new one --- pkgs/top-level/go-packages.nix | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index dd9a9dde7bb..023936a2647 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -596,17 +596,20 @@ let sha256 = "09sdijfx5d05z4cd5k6lhl7k3kbpdf2amzlngv15h5v0fff9qw4s"; }; - dbus = buildGoPackage rec { - rev = "a5942dec6340eb0d57f43f2003c190ce06e43dea"; - name = "dbus-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/godbus/dbus"; + dbus-old-2015-05-19 = buildFromGitHub { + rev = "a5942dec6340eb0d57f43f2003c190ce06e43dea"; + date = "2015-05-19"; + owner = "godbus"; + repo = "dbus"; + sha256 = "1vk31wal7ncvjwvnb8q1myrkihv1np46f3q8dndi5k0csflbxxdf"; + }; - src = fetchFromGitHub { - inherit rev; - owner = "godbus"; - repo = "dbus"; - sha256 = "1vk31wal7ncvjwvnb8q1myrkihv1np46f3q8dndi5k0csflbxxdf"; - }; + dbus = buildFromGitHub { + rev = "230e4b23db2fd81c53eaa0073f76659d4849ce51"; + date = "2016-03-02"; + owner = "godbus"; + repo = "dbus"; + sha256 = "1wxv2cbihzcsz2z7iycyzl7f3arhhgagcc5kqln1k1mkm4l85z0q"; }; deis = buildFromGitHub { @@ -1705,7 +1708,7 @@ let owner = "stgraber"; repo = "lxd-go-systemd"; sha256 = "006dhy3j8ld0kycm8hrjxvakd7xdn1b6z2dsjp1l4sqrxdmm188w"; - buildInputs = [ dbus ]; + buildInputs = [ dbus-old-2015-05-19 ]; }; go-update-v0 = buildFromGitHub { From 8928aa9a7b11e76cdb7e3475bd0d0e7167e9a1d7 Mon Sep 17 00:00:00 2001 From: obadz Date: Thu, 10 Mar 2016 17:46:15 +0000 Subject: [PATCH 0200/1059] goPackages.go-systemd: 2688e91 -> 7b2428f --- pkgs/top-level/go-packages.nix | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 023936a2647..3ce1b797c7b 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -1687,18 +1687,13 @@ let sha256 = "1j53m2wjyczm9m55znfycdvm4c8vfniqgk93dvzwy8vpj5gm6sb3"; }; - go-systemd = buildGoPackage rec { - rev = "2688e91251d9d8e404e86dd8f096e23b2f086958"; - name = "go-systemd-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/coreos/go-systemd"; - - src = fetchFromGitHub { - inherit rev; - owner = "coreos"; - repo = "go-systemd"; - sha256 = "0c1k3y5msc1xplhx0ksa7g08yqjaavns8s5zrfg4ig8az30gwlpa"; - }; - + go-systemd = buildFromGitHub { + rev = "7b2428fec40033549c68f54e26e89e7ca9a9ce31"; + date = "2016-03-10"; + owner = "coreos"; + repo = "go-systemd"; + sha256 = "0kfbxvm9zsjgvgmiq2jl807y4s5z0rya65rm399llr5rr7vz1lxd"; + nativeBuildInputs = [ pkgs.pkgconfig pkgs.systemd ]; buildInputs = [ dbus ]; }; From a1f8b5bcd0c2860ed45a4761058b503b148112fb Mon Sep 17 00:00:00 2001 From: obadz Date: Wed, 2 Mar 2016 13:43:18 +0000 Subject: [PATCH 0201/1059] goPackages.upower-notify: init at a58ceb9 --- pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/go-packages.nix | 15 +++++++++++++++ 2 files changed, 17 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f3112324169..be6bcc8b3f7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1805,6 +1805,8 @@ let go-pup = goPackages.pup.bin // { outputs = [ "bin" ]; }; + go-upower-notify = goPackages.upower-notify.bin // { outputs = [ "bin" ]; }; + googleAuthenticator = callPackage ../os-specific/linux/google-authenticator { }; google-cloud-sdk = callPackage ../tools/admin/google-cloud-sdk { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 3ce1b797c7b..a6dac58a172 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3791,4 +3791,19 @@ let sha256 = "153hf4dq4jh1yv35pv30idmxhc917qzl590qy5394l48d4rapgb5"; buildInputs = [ go-colortext yaml-v2 godotenv ]; }; + + # To use upower-notify, the maintainer suggests adding something like this to your configuration.nix: + # + # service.xserver.displayManager.sessionCommands = '' + # ${pkgs.dunst}/bin/dunst -shrink -geometry 0x0-50-50 -key space & # ...if don't already have a dbus notification display app + # (sleep 3; exec ${pkgs.yeshup}/bin/yeshup ${pkgs.go-upower-notify}/bin/upower-notify) & + # ''; + upower-notify = buildFromGitHub rec { + rev = "14c581e683a7e90ec9fa6d409413c16599a5323c"; + date = "2016-03-10"; + owner = "omeid"; + repo = "upower-notify"; + sha256 = "16zlvn53p9m10ph8n9gps51fkkvl6sf4afdzni6azk05j0ng49jw"; + propagatedBuildInputs = [ dbus ]; + }; }; in self From 1146f460d3811474cf82f5fcc5fd74a665626b59 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 11 Mar 2016 12:52:46 +0100 Subject: [PATCH 0202/1059] 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 0203/1059] 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 603ea2652fae4e43d45a77a4ec23b94655299cbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Fri, 11 Mar 2016 12:18:18 +0000 Subject: [PATCH 0204/1059] nss: 3.22 -> 3.22.2 (CVE-2016-1950) --- pkgs/development/libraries/nspr/default.nix | 4 ++-- pkgs/development/libraries/nss/default.nix | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/nspr/default.nix b/pkgs/development/libraries/nspr/default.nix index e8d3fb3cdf2..230c22258e2 100644 --- a/pkgs/development/libraries/nspr/default.nix +++ b/pkgs/development/libraries/nspr/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl }: -let version = "4.11"; in +let version = "4.12"; in stdenv.mkDerivation { name = "nspr-${version}"; src = fetchurl { url = "http://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${version}/src/nspr-${version}.tar.gz"; - sha256 = "cb320a9eee7028275ac0fce7adc39dee36f14f02fd8432fce1b7e1aa5e3685c2"; + sha256 = "1pk98bmc5xzbl62q5wf2d6mryf0v95z6rsmxz27nclwiaqg0mcg0"; }; preConfigure = '' diff --git a/pkgs/development/libraries/nss/default.nix b/pkgs/development/libraries/nss/default.nix index d3c2deb609e..060aa20967f 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"; + version = "3.22.2"; src = fetchurl { - url = "http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_22_RTM/src/${name}.tar.gz"; - sha256 = "30ebd121c77e725a1383618eff79a6752d6e9f0f21882ad825ddab12e7227611"; + url = "http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_22_2_RTM/src/${name}.tar.gz"; + sha256 = "0l1n5mwgqkcwfh10hizdv0vfj6gg9i4zip021wh33b17qn3r5m07"; }; buildInputs = [ nspr perl zlib sqlite ]; From 5fac723799b04c3f1596989614a9d7b94274e23d Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Fri, 11 Mar 2016 13:24:48 +0100 Subject: [PATCH 0205/1059] pkgs.darktable: use https in homepage --- pkgs/applications/graphics/darktable/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/graphics/darktable/default.nix b/pkgs/applications/graphics/darktable/default.nix index cba19ba11a2..d0a1f7b78d3 100644 --- a/pkgs/applications/graphics/darktable/default.nix +++ b/pkgs/applications/graphics/darktable/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Virtual lighttable and darkroom for photographers"; - homepage = http://www.darktable.org; + homepage = https://www.darktable.org; license = licenses.gpl3Plus; platforms = platforms.linux; maintainers = [ maintainers.goibhniu maintainers.rickynils maintainers.flosse ]; From 4b998c1f94e072f5d93c48ca394f81d9aa2a1e8b Mon Sep 17 00:00:00 2001 From: Svein Ove Aas Date: Thu, 10 Mar 2016 23:08:32 +0000 Subject: [PATCH 0206/1059] simp_le: 2016-01-09 -> 2016-02-06 --- pkgs/tools/admin/simp_le/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/admin/simp_le/default.nix b/pkgs/tools/admin/simp_le/default.nix index d27c0a2da81..78ae1953ad7 100644 --- a/pkgs/tools/admin/simp_le/default.nix +++ b/pkgs/tools/admin/simp_le/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchFromGitHub, pythonPackages }: pythonPackages.buildPythonApplication rec { - name = "simp_le-2016-01-09"; + name = "simp_le-2016-02-06"; src = fetchFromGitHub { owner = "kuba"; repo = "simp_le"; - rev = "b9d95e862536d1242e1ca6d7dac5691f32f11373"; - sha256 = "0l4qs0y4cbih76zrpbkn77xj17iwsm5fi83zc3p048x4hj163805"; + rev = "8f258bc098a84b7a20c2732536d0740244d814f7"; + sha256 = "1r2c31bhj91n3cjyf01spx52vkqxi5475zzkc9s1aliy3fs3lc4r"; }; propagatedBuildInputs = with pythonPackages; [ acme_0_1 ]; From 4f5d48abf5c4e39da8636b18db1cc9bfebd14d68 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 11 Mar 2016 13:46:27 +0100 Subject: [PATCH 0207/1059] 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 d25135ff6e60b49464d482bb527f6bfff2452b49 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 11 Mar 2016 13:16:36 +0100 Subject: [PATCH 0208/1059] thunderbird: Fix hash Commit 4a54794d18683db41d2a4203f14c5debf628883c upgraded Thunderbird's version to 38.6.0 (accidentally?), but didn't change the hash. This wasn't caught due to tarballs.nixos.org being keyed on hash only. --- .../networking/mailreaders/thunderbird/default.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/thunderbird/default.nix b/pkgs/applications/networking/mailreaders/thunderbird/default.nix index 093e7a22b92..7fd4e3e1515 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird/default.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird/default.nix @@ -21,9 +21,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://archive.mozilla.org/pub/thunderbird/releases/${verName}/source/thunderbird-${verName}.source.tar.bz2"; - - # https://archive.mozilla.org/pub/thunderbird/releases/${verName}/SHA1SUMS - sha1 = "7c8ef066d6b6516fddbb654b38353f894f85d469"; + sha256 = "0sssw45sf4vfy63y0x1lj05zl9g3gjdcvgw232k6zfm44l9p25q4"; }; buildInputs = # from firefox30Pkgs.xulrunner, but without gstreamer and libvpx From e026b5c243ea39810826e68362718f5d703fb5d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Fri, 11 Mar 2016 14:29:56 +0100 Subject: [PATCH 0209/1059] Adding rowhammer test. --- pkgs/tools/system/rowhammer-test/default.nix | 27 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 pkgs/tools/system/rowhammer-test/default.nix diff --git a/pkgs/tools/system/rowhammer-test/default.nix b/pkgs/tools/system/rowhammer-test/default.nix new file mode 100644 index 00000000000..728b15bb298 --- /dev/null +++ b/pkgs/tools/system/rowhammer-test/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchFromGitHub }: + +stdenv.mkDerivation { + name = "rowhammer-test-20150811"; + + src = fetchFromGitHub { + owner = "google"; + repo = "rowhammer-test"; + rev = "c1d2bd9f629281402c10bb10e52bc1f1faf59cc4"; # 2015-08-11 + sha256 = "1fbfcnm5gjish47wdvikcsgzlb5vnlfqlzzm6mwiw2j5qkq0914i"; + }; + + buildPhase = "sh -e make.sh"; + + installPhase = '' + mkdir -p $out/bin + cp rowhammer_test double_sided_rowhammer $out/bin + ''; + + meta = with stdenv.lib; { + description = "Test DRAM for bit flips caused by the rowhammer problem"; + homepage = https://github.com/google/rowhammer-test; + license = licenses.asl20; + maintainers = [ maintainers.viric ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ede7ce944aa..a058eb409c9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3150,6 +3150,8 @@ let rosegarden = callPackage ../applications/audio/rosegarden { }; + rowhammer-test = callPackage ../tools/system/rowhammer-test { }; + rpPPPoE = callPackage ../tools/networking/rp-pppoe { }; rpm = callPackage ../tools/package-management/rpm { }; From d86633386f2f2b786628b3ca14609a710cc6b993 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 11 Mar 2016 14:26:56 +0100 Subject: [PATCH 0210/1059] sqlite: 3.9.2 -> 3.11.1 --- pkgs/development/libraries/sqlite/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/sqlite/default.nix b/pkgs/development/libraries/sqlite/default.nix index 1575d86ba7f..24be2c2a9c8 100644 --- a/pkgs/development/libraries/sqlite/default.nix +++ b/pkgs/development/libraries/sqlite/default.nix @@ -3,11 +3,11 @@ assert interactive -> readline != null && ncurses != null; stdenv.mkDerivation { - name = "sqlite-3.9.2"; + name = "sqlite-3.11.1"; src = fetchurl { - url = "http://sqlite.org/2015/sqlite-autoconf-3090200.tar.gz"; - sha256 = "0sy3zdnvwml9q2s8dj4sc95r5y82b5xcl2vp9i6m6xwikjz0lk06"; + url = "http://sqlite.org/2016/sqlite-autoconf-3110100.tar.gz"; + sha1 = "c4b4dcd735a4daf5a2e2bb90f374484c8d4dad29"; }; buildInputs = lib.optionals interactive [ readline ncurses ]; From 0d6d91739f1257285bd31904775f6adc73c83ed4 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 11 Mar 2016 15:09:54 +0100 Subject: [PATCH 0211/1059] firefox: 44.0.2 -> 45.0 --- 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 834c6ed339c..0ef3bc7f5da 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 = "44.0.2"; - sha256 = "17id7ala1slb2mjqkikryqjadcsmdzqmkxrrnb5m1316m50qichb"; + version = "45.0"; + sha256 = "1wbrygxj285vs5qbpv3cq26w36bd533779mgi8d0gpxin44hzarn"; }; firefox-esr-unwrapped = common { From 8b7adf808e6e068fbeaba3e0d5d294347e1ea727 Mon Sep 17 00:00:00 2001 From: Kevin Cox Date: Fri, 11 Mar 2016 09:23:48 -0500 Subject: [PATCH 0212/1059] mesos: Patch more executable paths. --- .../networking/cluster/mesos/default.nix | 35 ++++++++++++------- 1 file changed, 22 insertions(+), 13 deletions(-) diff --git a/pkgs/applications/networking/cluster/mesos/default.nix b/pkgs/applications/networking/cluster/mesos/default.nix index 86b82db60e1..b1b45185511 100644 --- a/pkgs/applications/networking/cluster/mesos/default.nix +++ b/pkgs/applications/networking/cluster/mesos/default.nix @@ -41,25 +41,43 @@ in stdenv.mkDerivation rec { preConfigure = '' substituteInPlace src/Makefile.am --subst-var-by mavenRepo ${mavenRepo} + + substituteInPlace 3rdparty/libprocess/include/process/subprocess.hpp \ + --replace '"sh"' '"${bash}/bin/bash"' + substituteInPlace 3rdparty/libprocess/3rdparty/stout/include/stout/posix/os.hpp \ + --replace '"sh"' '"${bash}/bin/bash"' + + substituteInPlace 3rdparty/libprocess/3rdparty/stout/include/stout/os/posix/fork.hpp \ + --replace '"sh"' '"${bash}/bin/bash"' + + substituteInPlace src/cli/mesos-scp \ + --replace "'scp " "'${openssh}/bin/scp " + + substituteInPlace src/launcher/executor.cpp \ + --replace '"sh"' '"${bash}/bin/bash"' + substituteInPlace src/launcher/fetcher.cpp \ --replace '"gzip' '"${gzip}/bin/gzip' \ --replace '"tar' '"${gnutar}/bin/tar' \ --replace '"unzip' '"${unzip}/bin/unzip' - substituteInPlace src/cli/mesos-scp \ - --replace "'scp " "'${openssh}/bin/scp " - substituteInPlace src/python/cli/src/mesos/cli.py \ --replace "['mesos-resolve'" "['$out/bin/mesos-resolve'" + + substituteInPlace src/slave/containerizer/mesos/launch.cpp \ + --replace '"sh"' '"${bash}/bin/bash"' - '' + lib.optionalString (stdenv.isLinux) '' + '' + lib.optionalString stdenv.isLinux '' substituteInPlace configure.ac \ --replace /usr/include/libnl3 ${libnl}/include/libnl3 substituteInPlace src/linux/perf.cpp \ --replace '"perf ' '"${perf}/bin/perf ' + + substituteInPlace src/linux/systemd.cpp \ + --replace 'os::realpath("/sbin/init")' '"${systemd}/lib/systemd/systemd"' substituteInPlace src/slave/containerizer/mesos/isolators/filesystem/shared.cpp \ --replace '"mount ' '"${utillinux}/bin/mount ' \ @@ -72,15 +90,6 @@ in stdenv.mkDerivation rec { --replace '"ip ' '"${iproute}/bin/ip ' \ --replace '"mount ' '"${utillinux}/bin/mount ' \ --replace '/bin/sh' "${stdenv.shell}" - - substituteInPlace src/launcher/executor.cpp \ - --replace '"sh"' '"${bash}/bin/bash"' - - substituteInPlace src/slave/containerizer/mesos/launch.cpp \ - --replace '"sh"' '"${bash}/bin/bash"' - - substituteInPlace src/linux/systemd.cpp \ - --replace 'os::realpath("/sbin/init")' '"${systemd}/lib/systemd/systemd"' ''; configureFlags = [ From d2dc8cc47ffef5f9c9c36ce3144b037f03f7edd9 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 11 Mar 2016 07:46:58 -0600 Subject: [PATCH 0213/1059] kde5.colord-kde: init at 0.5.0.20160224 --- pkgs/tools/misc/colord-kde/0.5.nix | 29 +++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/tools/misc/colord-kde/0.5.nix diff --git a/pkgs/tools/misc/colord-kde/0.5.nix b/pkgs/tools/misc/colord-kde/0.5.nix new file mode 100644 index 00000000000..9df8ace38f6 --- /dev/null +++ b/pkgs/tools/misc/colord-kde/0.5.nix @@ -0,0 +1,29 @@ +{ stdenv, lib, fetchgit +, extra-cmake-modules, ki18n +, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kiconthemes, kcmutils +, kio, knotifications, plasma-framework, kwidgetsaddons, kwindowsystem +, kitemviews, lcms2, libXrandr, qtx11extras +}: + +stdenv.mkDerivation { + name = "colord-kde-0.5.0.20160224"; + src = fetchgit { + url = "git://anongit.kde.org/colord-kde"; + rev = "3729d1348c57902b74283bc8280ffb5561b221db"; + sha256 = "03ww8nskgxl38dwkbb39by18gxvrcm6w2zg9s7q05i76rpl6kkkw"; + }; + + nativeBuildInputs = [ extra-cmake-modules ki18n ]; + + buildInputs = [ + kconfig kconfigwidgets kcoreaddons kdbusaddons kiconthemes + kcmutils kio knotifications plasma-framework kwidgetsaddons + kwindowsystem kitemviews lcms2 libXrandr qtx11extras + ]; + + meta = with lib; { + homepage = "https://projects.kde.org/projects/playground/graphics/colord-kde"; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ ttuegel ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a058eb409c9..603e451116c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15278,6 +15278,8 @@ let libyamlcpp = callPackage ../development/libraries/libyaml-cpp { makePIC=true; boost=boost; }; }; + colord-kde = callPackage ../tools/misc/colord-kde/0.5.nix {}; + dfilemanager = callPackage ../applications/misc/dfilemanager { }; fcitx-qt5 = callPackage ../tools/inputmethods/fcitx/fcitx-qt5.nix { }; From d8dceb7077a01e50f1add746acae640d7fb3e673 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 11 Mar 2016 07:47:16 -0600 Subject: [PATCH 0214/1059] kde5: install colord-kde when colord is enabled --- nixos/modules/services/x11/desktop-managers/kde5.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 867dea63cc2..9891da2169e 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -128,6 +128,7 @@ in ++ lib.optional config.networking.networkmanager.enable kde5.plasma-nm ++ lib.optional config.hardware.pulseaudio.enable kde5.plasma-pa ++ lib.optional config.powerManagement.enable kde5.powerdevil + ++ lib.optional config.services.colord.enable kde5.colord-kde ++ lib.optionals config.services.samba.enable [ kde5.kdenetwork-filesharing pkgs.samba ] ++ lib.optionals cfg.phonon.gstreamer.enable From a889c683ddd333dde80c52c722095426233a482f Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 11 Mar 2016 15:37:50 +0100 Subject: [PATCH 0215/1059] Drop support for postfix 2.x from Nixpkgs and NixOS. Version 3.x has been stable for a long time; let's give up support for the obsolete versions. --- nixos/modules/services/mail/postfix.nix | 2 +- pkgs/servers/mail/postfix/2.11.nix | 66 ----------- pkgs/servers/mail/postfix/3.0.nix | 91 -------------- pkgs/servers/mail/postfix/db-linux3.patch | 39 ------ pkgs/servers/mail/postfix/default.nix | 111 +++++++++++------- .../servers/mail/postfix/postfix-2.11.0.patch | 76 ------------ .../mail/postfix/postfix-2.2.9-db.patch | 40 ------- .../mail/postfix/postfix-2.2.9-lib.patch | 12 -- pkgs/top-level/all-packages.nix | 5 +- 9 files changed, 68 insertions(+), 374 deletions(-) delete mode 100644 pkgs/servers/mail/postfix/2.11.nix delete mode 100644 pkgs/servers/mail/postfix/3.0.nix delete mode 100644 pkgs/servers/mail/postfix/db-linux3.patch delete mode 100644 pkgs/servers/mail/postfix/postfix-2.11.0.patch delete mode 100644 pkgs/servers/mail/postfix/postfix-2.2.9-db.patch delete mode 100644 pkgs/servers/mail/postfix/postfix-2.2.9-lib.patch diff --git a/nixos/modules/services/mail/postfix.nix b/nixos/modules/services/mail/postfix.nix index 404cdf0f564..bad9d527f9a 100644 --- a/nixos/modules/services/mail/postfix.nix +++ b/nixos/modules/services/mail/postfix.nix @@ -27,7 +27,7 @@ let mainCf = '' - compatibility_level = 2 + compatibility_level = 9999 mail_owner = ${user} default_privs = nobody diff --git a/pkgs/servers/mail/postfix/2.11.nix b/pkgs/servers/mail/postfix/2.11.nix deleted file mode 100644 index 7c936bf1244..00000000000 --- a/pkgs/servers/mail/postfix/2.11.nix +++ /dev/null @@ -1,66 +0,0 @@ -{ stdenv, fetchurl, makeWrapper, gnused, db, openssl, cyrus_sasl, coreutils -, findutils, gnugrep, gawk -}: - -stdenv.mkDerivation rec { - - name = "postfix-${version}"; - - version = "2.11.5"; - - src = fetchurl { - url = "ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/${name}.tar.gz"; - sha256 = "11riz8ggaa09pi8d6xv2807qp7yjn918mrylfvkfwmvcdlgwck0a"; - }; - - patches = [ - ./postfix-2.11.0.patch - ./postfix-script-shell.patch - ]; - - buildInputs = [ makeWrapper gnused db openssl cyrus_sasl ]; - - preBuild = '' - sed -e '/^PATH=/d' -i postfix-install - - export command_directory=$out/sbin - export config_directory=$out/etc/postfix - export daemon_directory=$out/libexec/postfix - export data_directory=/var/lib/postfix - export html_directory=$out/share/postfix/doc/html - export mailq_path=$out/bin/mailq - export manpage_directory=$out/share/man - export newaliases_path=$out/bin/newaliases - export queue_directory=/var/spool/postfix - export readme_directory=$out/share/postfix/doc - export sendmail_path=$out/bin/sendmail - - make makefiles \ - CCARGS='-DUSE_TLS -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I${cyrus_sasl}/include/sasl \ - -fPIE -fstack-protector-all --param ssp-buffer-size=4 -O2 -D_FORTIFY_SOURCE=2' \ - AUXLIBS='-ldb -lnsl -lresolv -lsasl2 -lcrypto -lssl -pie -Wl,-z,relro,-z,now' - ''; - - installTargets = [ "non-interactive-package" ]; - - installFlags = [ " install_root=$out " ]; - - postInstall = '' - mkdir -p $out - mv -v ut/$out/* $out/ - sed -e '/^PATH=/d' -i $out/libexec/postfix/post-install - wrapProgram $out/libexec/postfix/post-install \ - --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin - wrapProgram $out/libexec/postfix/postfix-script \ - --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin:${gawk}/bin:${gnused}/bin - ''; - - meta = { - homepage = "http://www.postfix.org/"; - description = "A fast, easy to administer, and secure mail server"; - license = stdenv.lib.licenses.bsdOriginal; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.rickynils ]; - }; - -} diff --git a/pkgs/servers/mail/postfix/3.0.nix b/pkgs/servers/mail/postfix/3.0.nix deleted file mode 100644 index 52327090e44..00000000000 --- a/pkgs/servers/mail/postfix/3.0.nix +++ /dev/null @@ -1,91 +0,0 @@ -{ stdenv, lib, fetchurl, makeWrapper, gnused, db, openssl, cyrus_sasl -, coreutils, findutils, gnugrep, gawk, icu, pcre -, withPgSQL ? false, postgresql -, withMySQL ? false, libmysql -, withSQLite ? false, sqlite -}: - -let - ccargs = lib.concatStringsSep " " ([ - "-DUSE_TLS" "-DUSE_SASL_AUTH" "-DUSE_CYRUS_SASL" "-I${cyrus_sasl}/include/sasl" - "-DHAS_DB_BYPASS_MAKEDEFS_CHECK" - "-fPIE" "-fstack-protector-all" "--param" "ssp-buffer-size=4" "-O2" "-D_FORTIFY_SOURCE=2" - ] ++ lib.optional withPgSQL "-DHAS_PGSQL" - ++ lib.optionals withMySQL [ "-DHAS_MYSQL" "-I${libmysql}/include/mysql" ] - ++ lib.optional withSQLite "-DHAS_SQLITE"); - auxlibs = lib.concatStringsSep " " ([ - "-ldb" "-lnsl" "-lresolv" "-lsasl2" "-lcrypto" "-lssl" "-pie" "-Wl,-z,relro,-z,now" - ] ++ lib.optional withPgSQL "-lpq" - ++ lib.optional withMySQL "-lmysqlclient" - ++ lib.optional withSQLite "-lsqlite3"); - -in stdenv.mkDerivation rec { - - name = "postfix-${version}"; - - version = "3.0.3"; - - src = fetchurl { - url = "ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/${name}.tar.gz"; - sha256 = "00mc12k5p1zlrlqcf33vh5zizaqr5ai8q78dwv69smjh6kn4c7j0"; - }; - - buildInputs = [ makeWrapper gnused db openssl cyrus_sasl icu pcre ] - ++ lib.optional withPgSQL postgresql - ++ lib.optional withMySQL libmysql - ++ lib.optional withSQLite sqlite; - - patches = [ - ./postfix-script-shell.patch - ./postfix-3.0-no-warnings.patch - ./post-install-script.patch - ./relative-symlinks.patch - ]; - - preBuild = '' - sed -e '/^PATH=/d' -i postfix-install - sed -e "s|@PACKAGE@|$out|" -i conf/post-install - - # post-install need skip permissions check/set on all symlinks following to /nix/store - sed -e "s|@NIX_STORE@|$NIX_STORE|" -i conf/post-install - - export command_directory=$out/sbin - export config_directory=/etc/postfix - export meta_directory=$out/etc/postfix - export daemon_directory=$out/libexec/postfix - export data_directory=/var/lib/postfix/data - export html_directory=$out/share/postfix/doc/html - export mailq_path=$out/bin/mailq - export manpage_directory=$out/share/man - export newaliases_path=$out/bin/newaliases - export queue_directory=/var/lib/postfix/queue - export readme_directory=$out/share/postfix/doc - export sendmail_path=$out/bin/sendmail - - make makefiles CCARGS='${ccargs}' AUXLIBS='${auxlibs}' - ''; - - installTargets = [ "non-interactive-package" ]; - - installFlags = [ "install_root=installdir" ]; - - postInstall = '' - mkdir -p $out - mv -v installdir/$out/* $out/ - cp -rv installdir/etc $out - sed -e '/^PATH=/d' -i $out/libexec/postfix/post-install - wrapProgram $out/libexec/postfix/post-install \ - --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin - wrapProgram $out/libexec/postfix/postfix-script \ - --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin:${gawk}/bin:${gnused}/bin - ''; - - meta = { - homepage = "http://www.postfix.org/"; - description = "A fast, easy to administer, and secure mail server"; - license = lib.licenses.bsdOriginal; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.rickynils ]; - }; - -} diff --git a/pkgs/servers/mail/postfix/db-linux3.patch b/pkgs/servers/mail/postfix/db-linux3.patch deleted file mode 100644 index c9dd4646798..00000000000 --- a/pkgs/servers/mail/postfix/db-linux3.patch +++ /dev/null @@ -1,39 +0,0 @@ -diff --git a/makedefs b/makedefs -index b8b98c8..94443c0 100644 ---- a/makedefs -+++ b/makedefs -@@ -341,20 +341,20 @@ EOF - esac - ;; - Linux.3*) SYSTYPE=LINUX3 -- if [ -f /usr/include/db.h ] -- then -- : we are all set -- elif [ -f /usr/include/db/db.h ] -- then -- CCARGS="$CCARGS -I/usr/include/db" -- else -- # On a properly installed system, Postfix builds -- # by including and by linking with -ldb -- echo "No include file found." 1>&2 -- echo "Install the appropriate db*-devel package first." 1>&2 -- echo "See the RELEASE_NOTES file for more information." 1>&2 -- exit 1 -- fi -+ #if [ -f /usr/include/db.h ] -+ #then -+ #: we are all set -+ #elif [ -f /usr/include/db/db.h ] -+ #then -+ #CCARGS="$CCARGS -I/usr/include/db" -+ #else -+ ## On a properly installed system, Postfix builds -+ ## by including and by linking with -ldb -+ #echo "No include file found." 1>&2 -+ #echo "Install the appropriate db*-devel package first." 1>&2 -+ #echo "See the RELEASE_NOTES file for more information." 1>&2 -+ #exit 1 -+ #fi - SYSLIBS="-ldb" - for name in nsl resolv - do diff --git a/pkgs/servers/mail/postfix/default.nix b/pkgs/servers/mail/postfix/default.nix index 838ca7a8d8d..52327090e44 100644 --- a/pkgs/servers/mail/postfix/default.nix +++ b/pkgs/servers/mail/postfix/default.nix @@ -1,70 +1,91 @@ -{ stdenv, fetchurl, db, glibc, openssl, cyrus_sasl -, coreutils, findutils, gnused, gnugrep, bison, perl +{ stdenv, lib, fetchurl, makeWrapper, gnused, db, openssl, cyrus_sasl +, coreutils, findutils, gnugrep, gawk, icu, pcre +, withPgSQL ? false, postgresql +, withMySQL ? false, libmysql +, withSQLite ? false, sqlite }: -assert stdenv.isLinux; +let + ccargs = lib.concatStringsSep " " ([ + "-DUSE_TLS" "-DUSE_SASL_AUTH" "-DUSE_CYRUS_SASL" "-I${cyrus_sasl}/include/sasl" + "-DHAS_DB_BYPASS_MAKEDEFS_CHECK" + "-fPIE" "-fstack-protector-all" "--param" "ssp-buffer-size=4" "-O2" "-D_FORTIFY_SOURCE=2" + ] ++ lib.optional withPgSQL "-DHAS_PGSQL" + ++ lib.optionals withMySQL [ "-DHAS_MYSQL" "-I${libmysql}/include/mysql" ] + ++ lib.optional withSQLite "-DHAS_SQLITE"); + auxlibs = lib.concatStringsSep " " ([ + "-ldb" "-lnsl" "-lresolv" "-lsasl2" "-lcrypto" "-lssl" "-pie" "-Wl,-z,relro,-z,now" + ] ++ lib.optional withPgSQL "-lpq" + ++ lib.optional withMySQL "-lmysqlclient" + ++ lib.optional withSQLite "-lsqlite3"); -stdenv.mkDerivation rec { - name = "postfix-2.8.12"; +in stdenv.mkDerivation rec { + + name = "postfix-${version}"; + + version = "3.0.3"; src = fetchurl { url = "ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/${name}.tar.gz"; - sha256 = "11z07mjy53l1fnl7k4101yk4ilibgqr1164628mqcbmmr8bh2szl"; + sha256 = "00mc12k5p1zlrlqcf33vh5zizaqr5ai8q78dwv69smjh6kn4c7j0"; }; - buildInputs = [db openssl cyrus_sasl bison perl]; + buildInputs = [ makeWrapper gnused db openssl cyrus_sasl icu pcre ] + ++ lib.optional withPgSQL postgresql + ++ lib.optional withMySQL libmysql + ++ lib.optional withSQLite sqlite; patches = [ - ./postfix-2.2.9-db.patch - ./postfix-2.2.9-lib.patch - ./db-linux3.patch ./postfix-script-shell.patch + ./postfix-3.0-no-warnings.patch + ./post-install-script.patch + ./relative-symlinks.patch ]; - postPatch = '' - sed -i -e s,/usr/bin,/var/run/current-system/sw/bin, \ - -e s,/usr/sbin,/var/run/current-system/sw/bin, \ - -e s,:/sbin,, src/util/sys_defs.h - ''; - preBuild = '' - export daemon_directory=$out/libexec/postfix - export command_directory=$out/sbin - export queue_directory=/var/spool/postfix - export sendmail_path=$out/bin/sendmail - export mailq_path=$out/bin/mailq - export newaliases_path=$out/bin/newaliases - export html_directory=$out/share/postfix/doc/html - export manpage_directory=$out/share/man - export sample_directory=$out/share/postfix/doc/samples - export readme_directory=$out/share/postfix/doc - - make makefiles CCARGS='-DUSE_TLS -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I${cyrus_sasl}/include/sasl -fPIE -fstack-protector-all --param ssp-buffer-size=4 -O2 -D_FORTIFY_SOURCE=2' AUXLIBS='-lssl -lcrypto -lsasl2 -ldb -lnsl -pie -Wl,-z,relro,-z,now' - ''; - - installPhase = '' sed -e '/^PATH=/d' -i postfix-install - $SHELL postfix-install install_root=out -non-interactive -package + sed -e "s|@PACKAGE@|$out|" -i conf/post-install - mkdir -p $out - mv -v "out$out/"* $out/ + # post-install need skip permissions check/set on all symlinks following to /nix/store + sed -e "s|@NIX_STORE@|$NIX_STORE|" -i conf/post-install - mkdir -p $out/share/postfix - mv conf $out/share/postfix/ - mv LICENSE TLS_LICENSE $out/share/postfix/ + export command_directory=$out/sbin + export config_directory=/etc/postfix + export meta_directory=$out/etc/postfix + export daemon_directory=$out/libexec/postfix + export data_directory=/var/lib/postfix/data + export html_directory=$out/share/postfix/doc/html + export mailq_path=$out/bin/mailq + export manpage_directory=$out/share/man + export newaliases_path=$out/bin/newaliases + export queue_directory=/var/lib/postfix/queue + export readme_directory=$out/share/postfix/doc + export sendmail_path=$out/bin/sendmail - sed -e 's@^PATH=.*@PATH=${coreutils}/bin:${findutils}/bin:${gnused}/bin:${gnugrep}/bin:'$out'/sbin@' -i $out/share/postfix/conf/post-install $out/libexec/postfix/post-install - sed -e '2aPATH=${coreutils}/bin:${findutils}/bin:${gnused}/bin:${gnugrep}/bin:'$out'/sbin' -i $out/share/postfix/conf/postfix-script $out/libexec/postfix/postfix-script - chmod a+x $out/share/postfix/conf/{postfix-script,post-install} + make makefiles CCARGS='${ccargs}' AUXLIBS='${auxlibs}' ''; - inherit glibc; + installTargets = [ "non-interactive-package" ]; + + installFlags = [ "install_root=installdir" ]; + + postInstall = '' + mkdir -p $out + mv -v installdir/$out/* $out/ + cp -rv installdir/etc $out + sed -e '/^PATH=/d' -i $out/libexec/postfix/post-install + wrapProgram $out/libexec/postfix/post-install \ + --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin + wrapProgram $out/libexec/postfix/postfix-script \ + --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin:${gawk}/bin:${gnused}/bin + ''; meta = { homepage = "http://www.postfix.org/"; - description = "a fast, easy to administer, and secure mail server"; - license = stdenv.lib.licenses.bsdOriginal; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + description = "A fast, easy to administer, and secure mail server"; + license = lib.licenses.bsdOriginal; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.rickynils ]; }; + } diff --git a/pkgs/servers/mail/postfix/postfix-2.11.0.patch b/pkgs/servers/mail/postfix/postfix-2.11.0.patch deleted file mode 100644 index cdc4521c428..00000000000 --- a/pkgs/servers/mail/postfix/postfix-2.11.0.patch +++ /dev/null @@ -1,76 +0,0 @@ -diff -ruN postfix-2.11.0-orig/makedefs postfix-2.11.0/makedefs ---- postfix-2.11.0-orig/makedefs 2014-01-05 18:18:56.000000000 +0100 -+++ postfix-2.11.0/makedefs 2014-04-24 09:27:58.193869491 +0200 -@@ -290,36 +290,6 @@ - esac - ;; - Linux.2*) SYSTYPE=LINUX2 -- case "$CCARGS" in -- *-DNO_DB*) ;; -- *-DHAS_DB*) ;; -- *) if [ -f /usr/include/db.h ] -- then -- : we are all set -- elif [ -f /usr/include/db/db.h ] -- then -- CCARGS="$CCARGS -I/usr/include/db" -- else -- # No, we're not going to try db1 db2 db3 etc. -- # On a properly installed system, Postfix builds -- # by including and by linking with -ldb -- echo "No include file found." 1>&2 -- echo "Install the appropriate db*-devel package first." 1>&2 -- exit 1 -- fi -- SYSLIBS="-ldb" -- ;; -- esac -- for name in nsl resolv $GDBM_LIBS -- do -- for lib in /usr/lib64 /lib64 /usr/lib /lib -- do -- test -e $lib/lib$name.a -o -e $lib/lib$name.so && { -- SYSLIBS="$SYSLIBS -l$name" -- break -- } -- done -- done - # Kernel 2.4 added IPv6 - case "$RELEASE" in - 2.[0-3].*) CCARGS="$CCARGS -DNO_IPV6";; -@@ -363,35 +333,6 @@ - esac - ;; - Linux.3*) SYSTYPE=LINUX3 -- case "$CCARGS" in -- *-DNO_DB*) ;; -- *-DHAS_DB*) ;; -- *) if [ -f /usr/include/db.h ] -- then -- : we are all set -- elif [ -f /usr/include/db/db.h ] -- then -- CCARGS="$CCARGS -I/usr/include/db" -- else -- # On a properly installed system, Postfix builds -- # by including and by linking with -ldb -- echo "No include file found." 1>&2 -- echo "Install the appropriate db*-devel package first." 1>&2 -- exit 1 -- fi -- SYSLIBS="-ldb" -- ;; -- esac -- for name in nsl resolv -- do -- for lib in /usr/lib64 /lib64 /usr/lib /usr/lib/* /lib /lib/* -- do -- test -e $lib/lib$name.a -o -e $lib/lib$name.so && { -- SYSLIBS="$SYSLIBS -l$name" -- break -- } -- done -- done - ;; - GNU.0*|GNU/kFreeBSD.[567]*) - SYSTYPE=GNU0 diff --git a/pkgs/servers/mail/postfix/postfix-2.2.9-db.patch b/pkgs/servers/mail/postfix/postfix-2.2.9-db.patch deleted file mode 100644 index 65f55ffd8f0..00000000000 --- a/pkgs/servers/mail/postfix/postfix-2.2.9-db.patch +++ /dev/null @@ -1,40 +0,0 @@ -diff -ruN postfix-2.2.9/makedefs postfix-2.2.9.new/makedefs ---- postfix-2.2.9/makedefs 2006-01-03 21:50:25.000000000 +0000 -+++ postfix-2.2.9.new/makedefs 2006-03-11 00:38:30.000000000 +0000 -@@ -219,21 +219,21 @@ - ;; - Linux.2*) SYSTYPE=LINUX2 - # Postfix no longer needs DB 1.85 compatibility -- if [ -f /usr/include/db.h ] -- then -- : we are all set -- elif [ -f /usr/include/db/db.h ] -- then -- CCARGS="$CCARGS -I/usr/include/db" -- else -- # No, we're not going to try db1 db2 db3 etc. -- # On a properly installed system, Postfix builds -- # by including and by linking with -ldb -- echo "No include file found." 1>&2 -- echo "Install the appropriate db*-devel package first." 1>&2 -- echo "See the RELEASE_NOTES file for more information." 1>&2 -- exit 1 -- fi -+ #if [ -f /usr/include/db.h ] -+ #then -+ #: we are all set -+ #elif [ -f /usr/include/db/db.h ] -+ #then -+ #CCARGS="$CCARGS -I/usr/include/db" -+ #else -+ ## No, we're not going to try db1 db2 db3 etc. -+ ## On a properly installed system, Postfix builds -+ ## by including and by linking with -ldb -+ #echo "No include file found." 1>&2 -+ #echo "Install the appropriate db*-devel package first." 1>&2 -+ #echo "See the RELEASE_NOTES file for more information." 1>&2 -+ #exit 1 -+ #fi - # GDBM locks the DBM .pag file after open. This breaks postmap. - # if [ -f /usr/include/gdbm-ndbm.h ] - # then diff --git a/pkgs/servers/mail/postfix/postfix-2.2.9-lib.patch b/pkgs/servers/mail/postfix/postfix-2.2.9-lib.patch deleted file mode 100644 index 03dcaa87f23..00000000000 --- a/pkgs/servers/mail/postfix/postfix-2.2.9-lib.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ruN postfix-2.2.9/makedefs postfix-2.2.9.new/makedefs ---- postfix-2.2.9/makedefs 2006-01-03 21:50:25.000000000 +0000 -+++ postfix-2.2.9.new/makedefs 2006-03-11 01:40:30.000000000 +0000 -@@ -247,7 +247,7 @@ - SYSLIBS="-ldb" - for name in nsl resolv $GDBM_LIBS - do -- for lib in /usr/lib64 /lib64 /usr/lib /lib -+ for lib in $glibc/usr/lib64 $glibc/lib64 $glibc/usr/lib $glibc/lib - do - test -e $lib/lib$name.a -o -e $lib/lib$name.so && { - SYSLIBS="$SYSLIBS -l$name" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 603e451116c..4f089fd9dde 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9709,10 +9709,7 @@ let popa3d = callPackage ../servers/mail/popa3d { }; - postfix28 = callPackage ../servers/mail/postfix { }; - postfix211 = callPackage ../servers/mail/postfix/2.11.nix { }; - postfix30 = callPackage ../servers/mail/postfix/3.0.nix { }; - postfix = postfix30; + postfix = callPackage ../servers/mail/postfix { }; postsrsd = callPackage ../servers/mail/postsrsd { }; From ab0bc1ecaf4357801f83bc41868b4bfb7564a369 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Fri, 11 Mar 2016 15:53:43 +0100 Subject: [PATCH 0216/1059] symlinkJoin: preferLocalBuild && !allowSubstitutes --- pkgs/build-support/trivial-builders.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/build-support/trivial-builders.nix b/pkgs/build-support/trivial-builders.nix index 93b8b1cbc42..fef91e1d89d 100644 --- a/pkgs/build-support/trivial-builders.nix +++ b/pkgs/build-support/trivial-builders.nix @@ -48,7 +48,10 @@ rec { # Create a forest of symlinks to the files in `paths'. symlinkJoin = name: paths: - runCommand name { inherit paths; } + runCommand name + { inherit paths; + preferLocalBuild = true; allowSubstitutes = false; + } '' mkdir -p $out for i in $paths; do From 61556b727a1f340dc01618b6265dc05f7a6d5d4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Fri, 11 Mar 2016 15:55:10 +0100 Subject: [PATCH 0217/1059] nixos/mantisbt: add a simple service It doesn't really deserve a package, as it's just a bunch of PHP scripts copied into a folder and we have to copy on reconfiguration anyway. --- nixos/modules/module-list.nix | 1 + nixos/modules/services/misc/mantisbt.nix | 68 ++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 nixos/modules/services/misc/mantisbt.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 86cd87efdbe..9f5ba6c9da1 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -220,6 +220,7 @@ ./services/misc/gitolite.nix ./services/misc/gpsd.nix ./services/misc/ihaskell.nix + ./services/misc/mantisbt.nix ./services/misc/mathics.nix ./services/misc/matrix-synapse.nix ./services/misc/mbpfan.nix diff --git a/nixos/modules/services/misc/mantisbt.nix b/nixos/modules/services/misc/mantisbt.nix new file mode 100644 index 00000000000..372106149fd --- /dev/null +++ b/nixos/modules/services/misc/mantisbt.nix @@ -0,0 +1,68 @@ +{ config, lib, pkgs, ... }: + +with lib; +let + cfg = config.services.mantisbt; + + freshInstall = cfg.extraConfig == ""; + + # combined code+config directory + mantisbt = let + config_inc = pkgs.writeText "config_inc.php" (" Date: Fri, 11 Mar 2016 16:00:49 +0100 Subject: [PATCH 0218/1059] Revert "Drop support for postfix 2.x from Nixpkgs and NixOS." This reverts commit a889c683ddd333dde80c52c722095426233a482f. Sorry, I pushed to the wrong branch. :-( --- nixos/modules/services/mail/postfix.nix | 2 +- pkgs/servers/mail/postfix/2.11.nix | 66 +++++++++++ pkgs/servers/mail/postfix/3.0.nix | 91 +++++++++++++++ pkgs/servers/mail/postfix/db-linux3.patch | 39 +++++++ pkgs/servers/mail/postfix/default.nix | 107 +++++++----------- .../servers/mail/postfix/postfix-2.11.0.patch | 76 +++++++++++++ .../mail/postfix/postfix-2.2.9-db.patch | 40 +++++++ .../mail/postfix/postfix-2.2.9-lib.patch | 12 ++ pkgs/top-level/all-packages.nix | 5 +- 9 files changed, 372 insertions(+), 66 deletions(-) create mode 100644 pkgs/servers/mail/postfix/2.11.nix create mode 100644 pkgs/servers/mail/postfix/3.0.nix create mode 100644 pkgs/servers/mail/postfix/db-linux3.patch create mode 100644 pkgs/servers/mail/postfix/postfix-2.11.0.patch create mode 100644 pkgs/servers/mail/postfix/postfix-2.2.9-db.patch create mode 100644 pkgs/servers/mail/postfix/postfix-2.2.9-lib.patch diff --git a/nixos/modules/services/mail/postfix.nix b/nixos/modules/services/mail/postfix.nix index bad9d527f9a..404cdf0f564 100644 --- a/nixos/modules/services/mail/postfix.nix +++ b/nixos/modules/services/mail/postfix.nix @@ -27,7 +27,7 @@ let mainCf = '' - compatibility_level = 9999 + compatibility_level = 2 mail_owner = ${user} default_privs = nobody diff --git a/pkgs/servers/mail/postfix/2.11.nix b/pkgs/servers/mail/postfix/2.11.nix new file mode 100644 index 00000000000..7c936bf1244 --- /dev/null +++ b/pkgs/servers/mail/postfix/2.11.nix @@ -0,0 +1,66 @@ +{ stdenv, fetchurl, makeWrapper, gnused, db, openssl, cyrus_sasl, coreutils +, findutils, gnugrep, gawk +}: + +stdenv.mkDerivation rec { + + name = "postfix-${version}"; + + version = "2.11.5"; + + src = fetchurl { + url = "ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/${name}.tar.gz"; + sha256 = "11riz8ggaa09pi8d6xv2807qp7yjn918mrylfvkfwmvcdlgwck0a"; + }; + + patches = [ + ./postfix-2.11.0.patch + ./postfix-script-shell.patch + ]; + + buildInputs = [ makeWrapper gnused db openssl cyrus_sasl ]; + + preBuild = '' + sed -e '/^PATH=/d' -i postfix-install + + export command_directory=$out/sbin + export config_directory=$out/etc/postfix + export daemon_directory=$out/libexec/postfix + export data_directory=/var/lib/postfix + export html_directory=$out/share/postfix/doc/html + export mailq_path=$out/bin/mailq + export manpage_directory=$out/share/man + export newaliases_path=$out/bin/newaliases + export queue_directory=/var/spool/postfix + export readme_directory=$out/share/postfix/doc + export sendmail_path=$out/bin/sendmail + + make makefiles \ + CCARGS='-DUSE_TLS -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I${cyrus_sasl}/include/sasl \ + -fPIE -fstack-protector-all --param ssp-buffer-size=4 -O2 -D_FORTIFY_SOURCE=2' \ + AUXLIBS='-ldb -lnsl -lresolv -lsasl2 -lcrypto -lssl -pie -Wl,-z,relro,-z,now' + ''; + + installTargets = [ "non-interactive-package" ]; + + installFlags = [ " install_root=$out " ]; + + postInstall = '' + mkdir -p $out + mv -v ut/$out/* $out/ + sed -e '/^PATH=/d' -i $out/libexec/postfix/post-install + wrapProgram $out/libexec/postfix/post-install \ + --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin + wrapProgram $out/libexec/postfix/postfix-script \ + --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin:${gawk}/bin:${gnused}/bin + ''; + + meta = { + homepage = "http://www.postfix.org/"; + description = "A fast, easy to administer, and secure mail server"; + license = stdenv.lib.licenses.bsdOriginal; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.rickynils ]; + }; + +} diff --git a/pkgs/servers/mail/postfix/3.0.nix b/pkgs/servers/mail/postfix/3.0.nix new file mode 100644 index 00000000000..52327090e44 --- /dev/null +++ b/pkgs/servers/mail/postfix/3.0.nix @@ -0,0 +1,91 @@ +{ stdenv, lib, fetchurl, makeWrapper, gnused, db, openssl, cyrus_sasl +, coreutils, findutils, gnugrep, gawk, icu, pcre +, withPgSQL ? false, postgresql +, withMySQL ? false, libmysql +, withSQLite ? false, sqlite +}: + +let + ccargs = lib.concatStringsSep " " ([ + "-DUSE_TLS" "-DUSE_SASL_AUTH" "-DUSE_CYRUS_SASL" "-I${cyrus_sasl}/include/sasl" + "-DHAS_DB_BYPASS_MAKEDEFS_CHECK" + "-fPIE" "-fstack-protector-all" "--param" "ssp-buffer-size=4" "-O2" "-D_FORTIFY_SOURCE=2" + ] ++ lib.optional withPgSQL "-DHAS_PGSQL" + ++ lib.optionals withMySQL [ "-DHAS_MYSQL" "-I${libmysql}/include/mysql" ] + ++ lib.optional withSQLite "-DHAS_SQLITE"); + auxlibs = lib.concatStringsSep " " ([ + "-ldb" "-lnsl" "-lresolv" "-lsasl2" "-lcrypto" "-lssl" "-pie" "-Wl,-z,relro,-z,now" + ] ++ lib.optional withPgSQL "-lpq" + ++ lib.optional withMySQL "-lmysqlclient" + ++ lib.optional withSQLite "-lsqlite3"); + +in stdenv.mkDerivation rec { + + name = "postfix-${version}"; + + version = "3.0.3"; + + src = fetchurl { + url = "ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/${name}.tar.gz"; + sha256 = "00mc12k5p1zlrlqcf33vh5zizaqr5ai8q78dwv69smjh6kn4c7j0"; + }; + + buildInputs = [ makeWrapper gnused db openssl cyrus_sasl icu pcre ] + ++ lib.optional withPgSQL postgresql + ++ lib.optional withMySQL libmysql + ++ lib.optional withSQLite sqlite; + + patches = [ + ./postfix-script-shell.patch + ./postfix-3.0-no-warnings.patch + ./post-install-script.patch + ./relative-symlinks.patch + ]; + + preBuild = '' + sed -e '/^PATH=/d' -i postfix-install + sed -e "s|@PACKAGE@|$out|" -i conf/post-install + + # post-install need skip permissions check/set on all symlinks following to /nix/store + sed -e "s|@NIX_STORE@|$NIX_STORE|" -i conf/post-install + + export command_directory=$out/sbin + export config_directory=/etc/postfix + export meta_directory=$out/etc/postfix + export daemon_directory=$out/libexec/postfix + export data_directory=/var/lib/postfix/data + export html_directory=$out/share/postfix/doc/html + export mailq_path=$out/bin/mailq + export manpage_directory=$out/share/man + export newaliases_path=$out/bin/newaliases + export queue_directory=/var/lib/postfix/queue + export readme_directory=$out/share/postfix/doc + export sendmail_path=$out/bin/sendmail + + make makefiles CCARGS='${ccargs}' AUXLIBS='${auxlibs}' + ''; + + installTargets = [ "non-interactive-package" ]; + + installFlags = [ "install_root=installdir" ]; + + postInstall = '' + mkdir -p $out + mv -v installdir/$out/* $out/ + cp -rv installdir/etc $out + sed -e '/^PATH=/d' -i $out/libexec/postfix/post-install + wrapProgram $out/libexec/postfix/post-install \ + --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin + wrapProgram $out/libexec/postfix/postfix-script \ + --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin:${gawk}/bin:${gnused}/bin + ''; + + meta = { + homepage = "http://www.postfix.org/"; + description = "A fast, easy to administer, and secure mail server"; + license = lib.licenses.bsdOriginal; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.rickynils ]; + }; + +} diff --git a/pkgs/servers/mail/postfix/db-linux3.patch b/pkgs/servers/mail/postfix/db-linux3.patch new file mode 100644 index 00000000000..c9dd4646798 --- /dev/null +++ b/pkgs/servers/mail/postfix/db-linux3.patch @@ -0,0 +1,39 @@ +diff --git a/makedefs b/makedefs +index b8b98c8..94443c0 100644 +--- a/makedefs ++++ b/makedefs +@@ -341,20 +341,20 @@ EOF + esac + ;; + Linux.3*) SYSTYPE=LINUX3 +- if [ -f /usr/include/db.h ] +- then +- : we are all set +- elif [ -f /usr/include/db/db.h ] +- then +- CCARGS="$CCARGS -I/usr/include/db" +- else +- # On a properly installed system, Postfix builds +- # by including and by linking with -ldb +- echo "No include file found." 1>&2 +- echo "Install the appropriate db*-devel package first." 1>&2 +- echo "See the RELEASE_NOTES file for more information." 1>&2 +- exit 1 +- fi ++ #if [ -f /usr/include/db.h ] ++ #then ++ #: we are all set ++ #elif [ -f /usr/include/db/db.h ] ++ #then ++ #CCARGS="$CCARGS -I/usr/include/db" ++ #else ++ ## On a properly installed system, Postfix builds ++ ## by including and by linking with -ldb ++ #echo "No include file found." 1>&2 ++ #echo "Install the appropriate db*-devel package first." 1>&2 ++ #echo "See the RELEASE_NOTES file for more information." 1>&2 ++ #exit 1 ++ #fi + SYSLIBS="-ldb" + for name in nsl resolv + do diff --git a/pkgs/servers/mail/postfix/default.nix b/pkgs/servers/mail/postfix/default.nix index 52327090e44..838ca7a8d8d 100644 --- a/pkgs/servers/mail/postfix/default.nix +++ b/pkgs/servers/mail/postfix/default.nix @@ -1,91 +1,70 @@ -{ stdenv, lib, fetchurl, makeWrapper, gnused, db, openssl, cyrus_sasl -, coreutils, findutils, gnugrep, gawk, icu, pcre -, withPgSQL ? false, postgresql -, withMySQL ? false, libmysql -, withSQLite ? false, sqlite +{ stdenv, fetchurl, db, glibc, openssl, cyrus_sasl +, coreutils, findutils, gnused, gnugrep, bison, perl }: -let - ccargs = lib.concatStringsSep " " ([ - "-DUSE_TLS" "-DUSE_SASL_AUTH" "-DUSE_CYRUS_SASL" "-I${cyrus_sasl}/include/sasl" - "-DHAS_DB_BYPASS_MAKEDEFS_CHECK" - "-fPIE" "-fstack-protector-all" "--param" "ssp-buffer-size=4" "-O2" "-D_FORTIFY_SOURCE=2" - ] ++ lib.optional withPgSQL "-DHAS_PGSQL" - ++ lib.optionals withMySQL [ "-DHAS_MYSQL" "-I${libmysql}/include/mysql" ] - ++ lib.optional withSQLite "-DHAS_SQLITE"); - auxlibs = lib.concatStringsSep " " ([ - "-ldb" "-lnsl" "-lresolv" "-lsasl2" "-lcrypto" "-lssl" "-pie" "-Wl,-z,relro,-z,now" - ] ++ lib.optional withPgSQL "-lpq" - ++ lib.optional withMySQL "-lmysqlclient" - ++ lib.optional withSQLite "-lsqlite3"); +assert stdenv.isLinux; -in stdenv.mkDerivation rec { - - name = "postfix-${version}"; - - version = "3.0.3"; +stdenv.mkDerivation rec { + name = "postfix-2.8.12"; src = fetchurl { url = "ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/${name}.tar.gz"; - sha256 = "00mc12k5p1zlrlqcf33vh5zizaqr5ai8q78dwv69smjh6kn4c7j0"; + sha256 = "11z07mjy53l1fnl7k4101yk4ilibgqr1164628mqcbmmr8bh2szl"; }; - buildInputs = [ makeWrapper gnused db openssl cyrus_sasl icu pcre ] - ++ lib.optional withPgSQL postgresql - ++ lib.optional withMySQL libmysql - ++ lib.optional withSQLite sqlite; + buildInputs = [db openssl cyrus_sasl bison perl]; patches = [ + ./postfix-2.2.9-db.patch + ./postfix-2.2.9-lib.patch + ./db-linux3.patch ./postfix-script-shell.patch - ./postfix-3.0-no-warnings.patch - ./post-install-script.patch - ./relative-symlinks.patch ]; + postPatch = '' + sed -i -e s,/usr/bin,/var/run/current-system/sw/bin, \ + -e s,/usr/sbin,/var/run/current-system/sw/bin, \ + -e s,:/sbin,, src/util/sys_defs.h + ''; + preBuild = '' - sed -e '/^PATH=/d' -i postfix-install - sed -e "s|@PACKAGE@|$out|" -i conf/post-install - - # post-install need skip permissions check/set on all symlinks following to /nix/store - sed -e "s|@NIX_STORE@|$NIX_STORE|" -i conf/post-install - - export command_directory=$out/sbin - export config_directory=/etc/postfix - export meta_directory=$out/etc/postfix export daemon_directory=$out/libexec/postfix - export data_directory=/var/lib/postfix/data - export html_directory=$out/share/postfix/doc/html - export mailq_path=$out/bin/mailq - export manpage_directory=$out/share/man - export newaliases_path=$out/bin/newaliases - export queue_directory=/var/lib/postfix/queue - export readme_directory=$out/share/postfix/doc + export command_directory=$out/sbin + export queue_directory=/var/spool/postfix export sendmail_path=$out/bin/sendmail + export mailq_path=$out/bin/mailq + export newaliases_path=$out/bin/newaliases + export html_directory=$out/share/postfix/doc/html + export manpage_directory=$out/share/man + export sample_directory=$out/share/postfix/doc/samples + export readme_directory=$out/share/postfix/doc - make makefiles CCARGS='${ccargs}' AUXLIBS='${auxlibs}' + make makefiles CCARGS='-DUSE_TLS -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I${cyrus_sasl}/include/sasl -fPIE -fstack-protector-all --param ssp-buffer-size=4 -O2 -D_FORTIFY_SOURCE=2' AUXLIBS='-lssl -lcrypto -lsasl2 -ldb -lnsl -pie -Wl,-z,relro,-z,now' ''; - installTargets = [ "non-interactive-package" ]; + installPhase = '' + sed -e '/^PATH=/d' -i postfix-install + $SHELL postfix-install install_root=out -non-interactive -package - installFlags = [ "install_root=installdir" ]; - - postInstall = '' mkdir -p $out - mv -v installdir/$out/* $out/ - cp -rv installdir/etc $out - sed -e '/^PATH=/d' -i $out/libexec/postfix/post-install - wrapProgram $out/libexec/postfix/post-install \ - --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin - wrapProgram $out/libexec/postfix/postfix-script \ - --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin:${gawk}/bin:${gnused}/bin + mv -v "out$out/"* $out/ + + mkdir -p $out/share/postfix + mv conf $out/share/postfix/ + mv LICENSE TLS_LICENSE $out/share/postfix/ + + sed -e 's@^PATH=.*@PATH=${coreutils}/bin:${findutils}/bin:${gnused}/bin:${gnugrep}/bin:'$out'/sbin@' -i $out/share/postfix/conf/post-install $out/libexec/postfix/post-install + sed -e '2aPATH=${coreutils}/bin:${findutils}/bin:${gnused}/bin:${gnugrep}/bin:'$out'/sbin' -i $out/share/postfix/conf/postfix-script $out/libexec/postfix/postfix-script + chmod a+x $out/share/postfix/conf/{postfix-script,post-install} ''; + inherit glibc; + meta = { homepage = "http://www.postfix.org/"; - description = "A fast, easy to administer, and secure mail server"; - license = lib.licenses.bsdOriginal; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.rickynils ]; + description = "a fast, easy to administer, and secure mail server"; + license = stdenv.lib.licenses.bsdOriginal; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.simons ]; }; - } diff --git a/pkgs/servers/mail/postfix/postfix-2.11.0.patch b/pkgs/servers/mail/postfix/postfix-2.11.0.patch new file mode 100644 index 00000000000..cdc4521c428 --- /dev/null +++ b/pkgs/servers/mail/postfix/postfix-2.11.0.patch @@ -0,0 +1,76 @@ +diff -ruN postfix-2.11.0-orig/makedefs postfix-2.11.0/makedefs +--- postfix-2.11.0-orig/makedefs 2014-01-05 18:18:56.000000000 +0100 ++++ postfix-2.11.0/makedefs 2014-04-24 09:27:58.193869491 +0200 +@@ -290,36 +290,6 @@ + esac + ;; + Linux.2*) SYSTYPE=LINUX2 +- case "$CCARGS" in +- *-DNO_DB*) ;; +- *-DHAS_DB*) ;; +- *) if [ -f /usr/include/db.h ] +- then +- : we are all set +- elif [ -f /usr/include/db/db.h ] +- then +- CCARGS="$CCARGS -I/usr/include/db" +- else +- # No, we're not going to try db1 db2 db3 etc. +- # On a properly installed system, Postfix builds +- # by including and by linking with -ldb +- echo "No include file found." 1>&2 +- echo "Install the appropriate db*-devel package first." 1>&2 +- exit 1 +- fi +- SYSLIBS="-ldb" +- ;; +- esac +- for name in nsl resolv $GDBM_LIBS +- do +- for lib in /usr/lib64 /lib64 /usr/lib /lib +- do +- test -e $lib/lib$name.a -o -e $lib/lib$name.so && { +- SYSLIBS="$SYSLIBS -l$name" +- break +- } +- done +- done + # Kernel 2.4 added IPv6 + case "$RELEASE" in + 2.[0-3].*) CCARGS="$CCARGS -DNO_IPV6";; +@@ -363,35 +333,6 @@ + esac + ;; + Linux.3*) SYSTYPE=LINUX3 +- case "$CCARGS" in +- *-DNO_DB*) ;; +- *-DHAS_DB*) ;; +- *) if [ -f /usr/include/db.h ] +- then +- : we are all set +- elif [ -f /usr/include/db/db.h ] +- then +- CCARGS="$CCARGS -I/usr/include/db" +- else +- # On a properly installed system, Postfix builds +- # by including and by linking with -ldb +- echo "No include file found." 1>&2 +- echo "Install the appropriate db*-devel package first." 1>&2 +- exit 1 +- fi +- SYSLIBS="-ldb" +- ;; +- esac +- for name in nsl resolv +- do +- for lib in /usr/lib64 /lib64 /usr/lib /usr/lib/* /lib /lib/* +- do +- test -e $lib/lib$name.a -o -e $lib/lib$name.so && { +- SYSLIBS="$SYSLIBS -l$name" +- break +- } +- done +- done + ;; + GNU.0*|GNU/kFreeBSD.[567]*) + SYSTYPE=GNU0 diff --git a/pkgs/servers/mail/postfix/postfix-2.2.9-db.patch b/pkgs/servers/mail/postfix/postfix-2.2.9-db.patch new file mode 100644 index 00000000000..65f55ffd8f0 --- /dev/null +++ b/pkgs/servers/mail/postfix/postfix-2.2.9-db.patch @@ -0,0 +1,40 @@ +diff -ruN postfix-2.2.9/makedefs postfix-2.2.9.new/makedefs +--- postfix-2.2.9/makedefs 2006-01-03 21:50:25.000000000 +0000 ++++ postfix-2.2.9.new/makedefs 2006-03-11 00:38:30.000000000 +0000 +@@ -219,21 +219,21 @@ + ;; + Linux.2*) SYSTYPE=LINUX2 + # Postfix no longer needs DB 1.85 compatibility +- if [ -f /usr/include/db.h ] +- then +- : we are all set +- elif [ -f /usr/include/db/db.h ] +- then +- CCARGS="$CCARGS -I/usr/include/db" +- else +- # No, we're not going to try db1 db2 db3 etc. +- # On a properly installed system, Postfix builds +- # by including and by linking with -ldb +- echo "No include file found." 1>&2 +- echo "Install the appropriate db*-devel package first." 1>&2 +- echo "See the RELEASE_NOTES file for more information." 1>&2 +- exit 1 +- fi ++ #if [ -f /usr/include/db.h ] ++ #then ++ #: we are all set ++ #elif [ -f /usr/include/db/db.h ] ++ #then ++ #CCARGS="$CCARGS -I/usr/include/db" ++ #else ++ ## No, we're not going to try db1 db2 db3 etc. ++ ## On a properly installed system, Postfix builds ++ ## by including and by linking with -ldb ++ #echo "No include file found." 1>&2 ++ #echo "Install the appropriate db*-devel package first." 1>&2 ++ #echo "See the RELEASE_NOTES file for more information." 1>&2 ++ #exit 1 ++ #fi + # GDBM locks the DBM .pag file after open. This breaks postmap. + # if [ -f /usr/include/gdbm-ndbm.h ] + # then diff --git a/pkgs/servers/mail/postfix/postfix-2.2.9-lib.patch b/pkgs/servers/mail/postfix/postfix-2.2.9-lib.patch new file mode 100644 index 00000000000..03dcaa87f23 --- /dev/null +++ b/pkgs/servers/mail/postfix/postfix-2.2.9-lib.patch @@ -0,0 +1,12 @@ +diff -ruN postfix-2.2.9/makedefs postfix-2.2.9.new/makedefs +--- postfix-2.2.9/makedefs 2006-01-03 21:50:25.000000000 +0000 ++++ postfix-2.2.9.new/makedefs 2006-03-11 01:40:30.000000000 +0000 +@@ -247,7 +247,7 @@ + SYSLIBS="-ldb" + for name in nsl resolv $GDBM_LIBS + do +- for lib in /usr/lib64 /lib64 /usr/lib /lib ++ for lib in $glibc/usr/lib64 $glibc/lib64 $glibc/usr/lib $glibc/lib + do + test -e $lib/lib$name.a -o -e $lib/lib$name.so && { + SYSLIBS="$SYSLIBS -l$name" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4f089fd9dde..603e451116c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9709,7 +9709,10 @@ let popa3d = callPackage ../servers/mail/popa3d { }; - postfix = callPackage ../servers/mail/postfix { }; + postfix28 = callPackage ../servers/mail/postfix { }; + postfix211 = callPackage ../servers/mail/postfix/2.11.nix { }; + postfix30 = callPackage ../servers/mail/postfix/3.0.nix { }; + postfix = postfix30; postsrsd = callPackage ../servers/mail/postsrsd { }; From 24fe7bab087a6302671511e24fa49130985b8c29 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 11 Mar 2016 15:37:50 +0100 Subject: [PATCH 0219/1059] Drop support for postfix 2.x from Nixpkgs and NixOS. Version 3.x has been stable for a long time; let's give up support for the obsolete versions. --- nixos/modules/services/mail/postfix.nix | 2 +- pkgs/servers/mail/postfix/2.11.nix | 66 ----------- pkgs/servers/mail/postfix/3.0.nix | 91 -------------- pkgs/servers/mail/postfix/db-linux3.patch | 39 ------ pkgs/servers/mail/postfix/default.nix | 111 +++++++++++------- .../servers/mail/postfix/postfix-2.11.0.patch | 76 ------------ .../mail/postfix/postfix-2.2.9-db.patch | 40 ------- .../mail/postfix/postfix-2.2.9-lib.patch | 12 -- pkgs/top-level/all-packages.nix | 5 +- 9 files changed, 68 insertions(+), 374 deletions(-) delete mode 100644 pkgs/servers/mail/postfix/2.11.nix delete mode 100644 pkgs/servers/mail/postfix/3.0.nix delete mode 100644 pkgs/servers/mail/postfix/db-linux3.patch delete mode 100644 pkgs/servers/mail/postfix/postfix-2.11.0.patch delete mode 100644 pkgs/servers/mail/postfix/postfix-2.2.9-db.patch delete mode 100644 pkgs/servers/mail/postfix/postfix-2.2.9-lib.patch diff --git a/nixos/modules/services/mail/postfix.nix b/nixos/modules/services/mail/postfix.nix index 404cdf0f564..bad9d527f9a 100644 --- a/nixos/modules/services/mail/postfix.nix +++ b/nixos/modules/services/mail/postfix.nix @@ -27,7 +27,7 @@ let mainCf = '' - compatibility_level = 2 + compatibility_level = 9999 mail_owner = ${user} default_privs = nobody diff --git a/pkgs/servers/mail/postfix/2.11.nix b/pkgs/servers/mail/postfix/2.11.nix deleted file mode 100644 index 7c936bf1244..00000000000 --- a/pkgs/servers/mail/postfix/2.11.nix +++ /dev/null @@ -1,66 +0,0 @@ -{ stdenv, fetchurl, makeWrapper, gnused, db, openssl, cyrus_sasl, coreutils -, findutils, gnugrep, gawk -}: - -stdenv.mkDerivation rec { - - name = "postfix-${version}"; - - version = "2.11.5"; - - src = fetchurl { - url = "ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/${name}.tar.gz"; - sha256 = "11riz8ggaa09pi8d6xv2807qp7yjn918mrylfvkfwmvcdlgwck0a"; - }; - - patches = [ - ./postfix-2.11.0.patch - ./postfix-script-shell.patch - ]; - - buildInputs = [ makeWrapper gnused db openssl cyrus_sasl ]; - - preBuild = '' - sed -e '/^PATH=/d' -i postfix-install - - export command_directory=$out/sbin - export config_directory=$out/etc/postfix - export daemon_directory=$out/libexec/postfix - export data_directory=/var/lib/postfix - export html_directory=$out/share/postfix/doc/html - export mailq_path=$out/bin/mailq - export manpage_directory=$out/share/man - export newaliases_path=$out/bin/newaliases - export queue_directory=/var/spool/postfix - export readme_directory=$out/share/postfix/doc - export sendmail_path=$out/bin/sendmail - - make makefiles \ - CCARGS='-DUSE_TLS -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I${cyrus_sasl}/include/sasl \ - -fPIE -fstack-protector-all --param ssp-buffer-size=4 -O2 -D_FORTIFY_SOURCE=2' \ - AUXLIBS='-ldb -lnsl -lresolv -lsasl2 -lcrypto -lssl -pie -Wl,-z,relro,-z,now' - ''; - - installTargets = [ "non-interactive-package" ]; - - installFlags = [ " install_root=$out " ]; - - postInstall = '' - mkdir -p $out - mv -v ut/$out/* $out/ - sed -e '/^PATH=/d' -i $out/libexec/postfix/post-install - wrapProgram $out/libexec/postfix/post-install \ - --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin - wrapProgram $out/libexec/postfix/postfix-script \ - --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin:${gawk}/bin:${gnused}/bin - ''; - - meta = { - homepage = "http://www.postfix.org/"; - description = "A fast, easy to administer, and secure mail server"; - license = stdenv.lib.licenses.bsdOriginal; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.rickynils ]; - }; - -} diff --git a/pkgs/servers/mail/postfix/3.0.nix b/pkgs/servers/mail/postfix/3.0.nix deleted file mode 100644 index 52327090e44..00000000000 --- a/pkgs/servers/mail/postfix/3.0.nix +++ /dev/null @@ -1,91 +0,0 @@ -{ stdenv, lib, fetchurl, makeWrapper, gnused, db, openssl, cyrus_sasl -, coreutils, findutils, gnugrep, gawk, icu, pcre -, withPgSQL ? false, postgresql -, withMySQL ? false, libmysql -, withSQLite ? false, sqlite -}: - -let - ccargs = lib.concatStringsSep " " ([ - "-DUSE_TLS" "-DUSE_SASL_AUTH" "-DUSE_CYRUS_SASL" "-I${cyrus_sasl}/include/sasl" - "-DHAS_DB_BYPASS_MAKEDEFS_CHECK" - "-fPIE" "-fstack-protector-all" "--param" "ssp-buffer-size=4" "-O2" "-D_FORTIFY_SOURCE=2" - ] ++ lib.optional withPgSQL "-DHAS_PGSQL" - ++ lib.optionals withMySQL [ "-DHAS_MYSQL" "-I${libmysql}/include/mysql" ] - ++ lib.optional withSQLite "-DHAS_SQLITE"); - auxlibs = lib.concatStringsSep " " ([ - "-ldb" "-lnsl" "-lresolv" "-lsasl2" "-lcrypto" "-lssl" "-pie" "-Wl,-z,relro,-z,now" - ] ++ lib.optional withPgSQL "-lpq" - ++ lib.optional withMySQL "-lmysqlclient" - ++ lib.optional withSQLite "-lsqlite3"); - -in stdenv.mkDerivation rec { - - name = "postfix-${version}"; - - version = "3.0.3"; - - src = fetchurl { - url = "ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/${name}.tar.gz"; - sha256 = "00mc12k5p1zlrlqcf33vh5zizaqr5ai8q78dwv69smjh6kn4c7j0"; - }; - - buildInputs = [ makeWrapper gnused db openssl cyrus_sasl icu pcre ] - ++ lib.optional withPgSQL postgresql - ++ lib.optional withMySQL libmysql - ++ lib.optional withSQLite sqlite; - - patches = [ - ./postfix-script-shell.patch - ./postfix-3.0-no-warnings.patch - ./post-install-script.patch - ./relative-symlinks.patch - ]; - - preBuild = '' - sed -e '/^PATH=/d' -i postfix-install - sed -e "s|@PACKAGE@|$out|" -i conf/post-install - - # post-install need skip permissions check/set on all symlinks following to /nix/store - sed -e "s|@NIX_STORE@|$NIX_STORE|" -i conf/post-install - - export command_directory=$out/sbin - export config_directory=/etc/postfix - export meta_directory=$out/etc/postfix - export daemon_directory=$out/libexec/postfix - export data_directory=/var/lib/postfix/data - export html_directory=$out/share/postfix/doc/html - export mailq_path=$out/bin/mailq - export manpage_directory=$out/share/man - export newaliases_path=$out/bin/newaliases - export queue_directory=/var/lib/postfix/queue - export readme_directory=$out/share/postfix/doc - export sendmail_path=$out/bin/sendmail - - make makefiles CCARGS='${ccargs}' AUXLIBS='${auxlibs}' - ''; - - installTargets = [ "non-interactive-package" ]; - - installFlags = [ "install_root=installdir" ]; - - postInstall = '' - mkdir -p $out - mv -v installdir/$out/* $out/ - cp -rv installdir/etc $out - sed -e '/^PATH=/d' -i $out/libexec/postfix/post-install - wrapProgram $out/libexec/postfix/post-install \ - --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin - wrapProgram $out/libexec/postfix/postfix-script \ - --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin:${gawk}/bin:${gnused}/bin - ''; - - meta = { - homepage = "http://www.postfix.org/"; - description = "A fast, easy to administer, and secure mail server"; - license = lib.licenses.bsdOriginal; - platforms = lib.platforms.linux; - maintainers = [ lib.maintainers.rickynils ]; - }; - -} diff --git a/pkgs/servers/mail/postfix/db-linux3.patch b/pkgs/servers/mail/postfix/db-linux3.patch deleted file mode 100644 index c9dd4646798..00000000000 --- a/pkgs/servers/mail/postfix/db-linux3.patch +++ /dev/null @@ -1,39 +0,0 @@ -diff --git a/makedefs b/makedefs -index b8b98c8..94443c0 100644 ---- a/makedefs -+++ b/makedefs -@@ -341,20 +341,20 @@ EOF - esac - ;; - Linux.3*) SYSTYPE=LINUX3 -- if [ -f /usr/include/db.h ] -- then -- : we are all set -- elif [ -f /usr/include/db/db.h ] -- then -- CCARGS="$CCARGS -I/usr/include/db" -- else -- # On a properly installed system, Postfix builds -- # by including and by linking with -ldb -- echo "No include file found." 1>&2 -- echo "Install the appropriate db*-devel package first." 1>&2 -- echo "See the RELEASE_NOTES file for more information." 1>&2 -- exit 1 -- fi -+ #if [ -f /usr/include/db.h ] -+ #then -+ #: we are all set -+ #elif [ -f /usr/include/db/db.h ] -+ #then -+ #CCARGS="$CCARGS -I/usr/include/db" -+ #else -+ ## On a properly installed system, Postfix builds -+ ## by including and by linking with -ldb -+ #echo "No include file found." 1>&2 -+ #echo "Install the appropriate db*-devel package first." 1>&2 -+ #echo "See the RELEASE_NOTES file for more information." 1>&2 -+ #exit 1 -+ #fi - SYSLIBS="-ldb" - for name in nsl resolv - do diff --git a/pkgs/servers/mail/postfix/default.nix b/pkgs/servers/mail/postfix/default.nix index 838ca7a8d8d..52327090e44 100644 --- a/pkgs/servers/mail/postfix/default.nix +++ b/pkgs/servers/mail/postfix/default.nix @@ -1,70 +1,91 @@ -{ stdenv, fetchurl, db, glibc, openssl, cyrus_sasl -, coreutils, findutils, gnused, gnugrep, bison, perl +{ stdenv, lib, fetchurl, makeWrapper, gnused, db, openssl, cyrus_sasl +, coreutils, findutils, gnugrep, gawk, icu, pcre +, withPgSQL ? false, postgresql +, withMySQL ? false, libmysql +, withSQLite ? false, sqlite }: -assert stdenv.isLinux; +let + ccargs = lib.concatStringsSep " " ([ + "-DUSE_TLS" "-DUSE_SASL_AUTH" "-DUSE_CYRUS_SASL" "-I${cyrus_sasl}/include/sasl" + "-DHAS_DB_BYPASS_MAKEDEFS_CHECK" + "-fPIE" "-fstack-protector-all" "--param" "ssp-buffer-size=4" "-O2" "-D_FORTIFY_SOURCE=2" + ] ++ lib.optional withPgSQL "-DHAS_PGSQL" + ++ lib.optionals withMySQL [ "-DHAS_MYSQL" "-I${libmysql}/include/mysql" ] + ++ lib.optional withSQLite "-DHAS_SQLITE"); + auxlibs = lib.concatStringsSep " " ([ + "-ldb" "-lnsl" "-lresolv" "-lsasl2" "-lcrypto" "-lssl" "-pie" "-Wl,-z,relro,-z,now" + ] ++ lib.optional withPgSQL "-lpq" + ++ lib.optional withMySQL "-lmysqlclient" + ++ lib.optional withSQLite "-lsqlite3"); -stdenv.mkDerivation rec { - name = "postfix-2.8.12"; +in stdenv.mkDerivation rec { + + name = "postfix-${version}"; + + version = "3.0.3"; src = fetchurl { url = "ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/${name}.tar.gz"; - sha256 = "11z07mjy53l1fnl7k4101yk4ilibgqr1164628mqcbmmr8bh2szl"; + sha256 = "00mc12k5p1zlrlqcf33vh5zizaqr5ai8q78dwv69smjh6kn4c7j0"; }; - buildInputs = [db openssl cyrus_sasl bison perl]; + buildInputs = [ makeWrapper gnused db openssl cyrus_sasl icu pcre ] + ++ lib.optional withPgSQL postgresql + ++ lib.optional withMySQL libmysql + ++ lib.optional withSQLite sqlite; patches = [ - ./postfix-2.2.9-db.patch - ./postfix-2.2.9-lib.patch - ./db-linux3.patch ./postfix-script-shell.patch + ./postfix-3.0-no-warnings.patch + ./post-install-script.patch + ./relative-symlinks.patch ]; - postPatch = '' - sed -i -e s,/usr/bin,/var/run/current-system/sw/bin, \ - -e s,/usr/sbin,/var/run/current-system/sw/bin, \ - -e s,:/sbin,, src/util/sys_defs.h - ''; - preBuild = '' - export daemon_directory=$out/libexec/postfix - export command_directory=$out/sbin - export queue_directory=/var/spool/postfix - export sendmail_path=$out/bin/sendmail - export mailq_path=$out/bin/mailq - export newaliases_path=$out/bin/newaliases - export html_directory=$out/share/postfix/doc/html - export manpage_directory=$out/share/man - export sample_directory=$out/share/postfix/doc/samples - export readme_directory=$out/share/postfix/doc - - make makefiles CCARGS='-DUSE_TLS -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I${cyrus_sasl}/include/sasl -fPIE -fstack-protector-all --param ssp-buffer-size=4 -O2 -D_FORTIFY_SOURCE=2' AUXLIBS='-lssl -lcrypto -lsasl2 -ldb -lnsl -pie -Wl,-z,relro,-z,now' - ''; - - installPhase = '' sed -e '/^PATH=/d' -i postfix-install - $SHELL postfix-install install_root=out -non-interactive -package + sed -e "s|@PACKAGE@|$out|" -i conf/post-install - mkdir -p $out - mv -v "out$out/"* $out/ + # post-install need skip permissions check/set on all symlinks following to /nix/store + sed -e "s|@NIX_STORE@|$NIX_STORE|" -i conf/post-install - mkdir -p $out/share/postfix - mv conf $out/share/postfix/ - mv LICENSE TLS_LICENSE $out/share/postfix/ + export command_directory=$out/sbin + export config_directory=/etc/postfix + export meta_directory=$out/etc/postfix + export daemon_directory=$out/libexec/postfix + export data_directory=/var/lib/postfix/data + export html_directory=$out/share/postfix/doc/html + export mailq_path=$out/bin/mailq + export manpage_directory=$out/share/man + export newaliases_path=$out/bin/newaliases + export queue_directory=/var/lib/postfix/queue + export readme_directory=$out/share/postfix/doc + export sendmail_path=$out/bin/sendmail - sed -e 's@^PATH=.*@PATH=${coreutils}/bin:${findutils}/bin:${gnused}/bin:${gnugrep}/bin:'$out'/sbin@' -i $out/share/postfix/conf/post-install $out/libexec/postfix/post-install - sed -e '2aPATH=${coreutils}/bin:${findutils}/bin:${gnused}/bin:${gnugrep}/bin:'$out'/sbin' -i $out/share/postfix/conf/postfix-script $out/libexec/postfix/postfix-script - chmod a+x $out/share/postfix/conf/{postfix-script,post-install} + make makefiles CCARGS='${ccargs}' AUXLIBS='${auxlibs}' ''; - inherit glibc; + installTargets = [ "non-interactive-package" ]; + + installFlags = [ "install_root=installdir" ]; + + postInstall = '' + mkdir -p $out + mv -v installdir/$out/* $out/ + cp -rv installdir/etc $out + sed -e '/^PATH=/d' -i $out/libexec/postfix/post-install + wrapProgram $out/libexec/postfix/post-install \ + --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin + wrapProgram $out/libexec/postfix/postfix-script \ + --prefix PATH ":" ${coreutils}/bin:${findutils}/bin:${gnugrep}/bin:${gawk}/bin:${gnused}/bin + ''; meta = { homepage = "http://www.postfix.org/"; - description = "a fast, easy to administer, and secure mail server"; - license = stdenv.lib.licenses.bsdOriginal; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.simons ]; + description = "A fast, easy to administer, and secure mail server"; + license = lib.licenses.bsdOriginal; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.rickynils ]; }; + } diff --git a/pkgs/servers/mail/postfix/postfix-2.11.0.patch b/pkgs/servers/mail/postfix/postfix-2.11.0.patch deleted file mode 100644 index cdc4521c428..00000000000 --- a/pkgs/servers/mail/postfix/postfix-2.11.0.patch +++ /dev/null @@ -1,76 +0,0 @@ -diff -ruN postfix-2.11.0-orig/makedefs postfix-2.11.0/makedefs ---- postfix-2.11.0-orig/makedefs 2014-01-05 18:18:56.000000000 +0100 -+++ postfix-2.11.0/makedefs 2014-04-24 09:27:58.193869491 +0200 -@@ -290,36 +290,6 @@ - esac - ;; - Linux.2*) SYSTYPE=LINUX2 -- case "$CCARGS" in -- *-DNO_DB*) ;; -- *-DHAS_DB*) ;; -- *) if [ -f /usr/include/db.h ] -- then -- : we are all set -- elif [ -f /usr/include/db/db.h ] -- then -- CCARGS="$CCARGS -I/usr/include/db" -- else -- # No, we're not going to try db1 db2 db3 etc. -- # On a properly installed system, Postfix builds -- # by including and by linking with -ldb -- echo "No include file found." 1>&2 -- echo "Install the appropriate db*-devel package first." 1>&2 -- exit 1 -- fi -- SYSLIBS="-ldb" -- ;; -- esac -- for name in nsl resolv $GDBM_LIBS -- do -- for lib in /usr/lib64 /lib64 /usr/lib /lib -- do -- test -e $lib/lib$name.a -o -e $lib/lib$name.so && { -- SYSLIBS="$SYSLIBS -l$name" -- break -- } -- done -- done - # Kernel 2.4 added IPv6 - case "$RELEASE" in - 2.[0-3].*) CCARGS="$CCARGS -DNO_IPV6";; -@@ -363,35 +333,6 @@ - esac - ;; - Linux.3*) SYSTYPE=LINUX3 -- case "$CCARGS" in -- *-DNO_DB*) ;; -- *-DHAS_DB*) ;; -- *) if [ -f /usr/include/db.h ] -- then -- : we are all set -- elif [ -f /usr/include/db/db.h ] -- then -- CCARGS="$CCARGS -I/usr/include/db" -- else -- # On a properly installed system, Postfix builds -- # by including and by linking with -ldb -- echo "No include file found." 1>&2 -- echo "Install the appropriate db*-devel package first." 1>&2 -- exit 1 -- fi -- SYSLIBS="-ldb" -- ;; -- esac -- for name in nsl resolv -- do -- for lib in /usr/lib64 /lib64 /usr/lib /usr/lib/* /lib /lib/* -- do -- test -e $lib/lib$name.a -o -e $lib/lib$name.so && { -- SYSLIBS="$SYSLIBS -l$name" -- break -- } -- done -- done - ;; - GNU.0*|GNU/kFreeBSD.[567]*) - SYSTYPE=GNU0 diff --git a/pkgs/servers/mail/postfix/postfix-2.2.9-db.patch b/pkgs/servers/mail/postfix/postfix-2.2.9-db.patch deleted file mode 100644 index 65f55ffd8f0..00000000000 --- a/pkgs/servers/mail/postfix/postfix-2.2.9-db.patch +++ /dev/null @@ -1,40 +0,0 @@ -diff -ruN postfix-2.2.9/makedefs postfix-2.2.9.new/makedefs ---- postfix-2.2.9/makedefs 2006-01-03 21:50:25.000000000 +0000 -+++ postfix-2.2.9.new/makedefs 2006-03-11 00:38:30.000000000 +0000 -@@ -219,21 +219,21 @@ - ;; - Linux.2*) SYSTYPE=LINUX2 - # Postfix no longer needs DB 1.85 compatibility -- if [ -f /usr/include/db.h ] -- then -- : we are all set -- elif [ -f /usr/include/db/db.h ] -- then -- CCARGS="$CCARGS -I/usr/include/db" -- else -- # No, we're not going to try db1 db2 db3 etc. -- # On a properly installed system, Postfix builds -- # by including and by linking with -ldb -- echo "No include file found." 1>&2 -- echo "Install the appropriate db*-devel package first." 1>&2 -- echo "See the RELEASE_NOTES file for more information." 1>&2 -- exit 1 -- fi -+ #if [ -f /usr/include/db.h ] -+ #then -+ #: we are all set -+ #elif [ -f /usr/include/db/db.h ] -+ #then -+ #CCARGS="$CCARGS -I/usr/include/db" -+ #else -+ ## No, we're not going to try db1 db2 db3 etc. -+ ## On a properly installed system, Postfix builds -+ ## by including and by linking with -ldb -+ #echo "No include file found." 1>&2 -+ #echo "Install the appropriate db*-devel package first." 1>&2 -+ #echo "See the RELEASE_NOTES file for more information." 1>&2 -+ #exit 1 -+ #fi - # GDBM locks the DBM .pag file after open. This breaks postmap. - # if [ -f /usr/include/gdbm-ndbm.h ] - # then diff --git a/pkgs/servers/mail/postfix/postfix-2.2.9-lib.patch b/pkgs/servers/mail/postfix/postfix-2.2.9-lib.patch deleted file mode 100644 index 03dcaa87f23..00000000000 --- a/pkgs/servers/mail/postfix/postfix-2.2.9-lib.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ruN postfix-2.2.9/makedefs postfix-2.2.9.new/makedefs ---- postfix-2.2.9/makedefs 2006-01-03 21:50:25.000000000 +0000 -+++ postfix-2.2.9.new/makedefs 2006-03-11 01:40:30.000000000 +0000 -@@ -247,7 +247,7 @@ - SYSLIBS="-ldb" - for name in nsl resolv $GDBM_LIBS - do -- for lib in /usr/lib64 /lib64 /usr/lib /lib -+ for lib in $glibc/usr/lib64 $glibc/lib64 $glibc/usr/lib $glibc/lib - do - test -e $lib/lib$name.a -o -e $lib/lib$name.so && { - SYSLIBS="$SYSLIBS -l$name" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 603e451116c..4f089fd9dde 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9709,10 +9709,7 @@ let popa3d = callPackage ../servers/mail/popa3d { }; - postfix28 = callPackage ../servers/mail/postfix { }; - postfix211 = callPackage ../servers/mail/postfix/2.11.nix { }; - postfix30 = callPackage ../servers/mail/postfix/3.0.nix { }; - postfix = postfix30; + postfix = callPackage ../servers/mail/postfix { }; postsrsd = callPackage ../servers/mail/postsrsd { }; From c73a22aed586787acfebb9bb039404d3c393297b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 11 Mar 2016 15:45:01 +0100 Subject: [PATCH 0220/1059] 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 d73dfd2780337232654dfe46eaa7a776d1693738 Mon Sep 17 00:00:00 2001 From: Michiel Leenaars Date: Sun, 28 Feb 2016 11:00:49 +0100 Subject: [PATCH 0221/1059] rimshot: init at 1.0 --- pkgs/games/rimshot/default.nix | 62 +++++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 64 insertions(+) create mode 100644 pkgs/games/rimshot/default.nix diff --git a/pkgs/games/rimshot/default.nix b/pkgs/games/rimshot/default.nix new file mode 100644 index 00000000000..ac6fdee1f6b --- /dev/null +++ b/pkgs/games/rimshot/default.nix @@ -0,0 +1,62 @@ +{ stdenv, fetchurl, unzip, love, lua, makeWrapper, makeDesktopItem }: + +let + pname = "rimshot"; + version = "1.0"; + + icon = fetchurl { + url = "http://stabyourself.net/images/screenshots/rimshot-2.png"; + sha256 = "08fyiqym3gcpq2vgb5dvafkban42fsbzfcr3iiyw03hz99q53psd"; + }; + + desktopItem = makeDesktopItem { + name = "rimshot"; + exec = "${pname}"; + icon = "${icon}"; + comment = "Create your own music"; + desktopName = "Rimshot"; + genericName = "rimshot"; + categories = "Audio;AudioVideo;Music"; + }; + +in + +stdenv.mkDerivation rec { + name = "${pname}-${version}"; + + src = fetchurl { + url = "http://stabyourself.net/dl.php?file=${pname}/${pname}-source.zip"; + sha256 = "08pdkyvki92549605m9bqnr24ipkbwkp5nkr5aagdqnr8ai4rgmi"; + }; + + nativeBuildInputs = [ makeWrapper unzip ]; + buildInputs = [ lua love ]; + + phases = [ "unpackPhase" "installPhase" ]; + + unpackPhase = '' + unzip -j $src + ''; + + installPhase = + '' + mkdir -p $out/bin + mkdir -p $out/share/games/lovegames + + cp -v ./*.love $out/share/games/lovegames/${pname}.love + makeWrapper ${love}/bin/love $out/bin/${pname} --add-flags $out/share/games/lovegames/${pname}.love + + chmod +x $out/bin/${pname} + mkdir -p $out/share/applications + ln -s ${desktopItem}/share/applications/* $out/share/applications/ + ''; + + meta = with stdenv.lib; { + description = "Create your own music"; + maintainers = with maintainers; [ leenaars ]; + platforms = platforms.linux; + license = licenses.free; + downloadPage = http://stabyourself.net/rimshot/; + }; + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index de648bc16f6..cfe5c428030 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14616,6 +14616,8 @@ let rili = callPackage ../games/rili { }; + rimshot = callPackage ../games/rimshot { love = love_0_7; }; + rogue = callPackage ../games/rogue { }; saga = callPackage ../applications/gis/saga { }; From 4eaffab2f3837e225d95720dbd17b4d013a5e46d Mon Sep 17 00:00:00 2001 From: Robert Klotzner Date: Fri, 11 Mar 2016 18:16:15 +0100 Subject: [PATCH 0222/1059] pkgs: Made git-crypt installable --- 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 603e451116c..40fffd288da 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12395,7 +12395,7 @@ let gitAndTools = recurseIntoAttrs (callPackage ../applications/version-management/git-and-tools {}); - inherit (gitAndTools) git gitFull gitSVN git-cola svn2git git-radar transcrypt; + inherit (gitAndTools) git gitFull gitSVN git-cola svn2git git-radar transcrypt git-crypt; gitMinimal = git.override { withManual = false; From c97c6676103a90245c0bed5969d6c9e9f2cc19dc Mon Sep 17 00:00:00 2001 From: Markus Hauck Date: Fri, 11 Mar 2016 12:33:08 +0100 Subject: [PATCH 0223/1059] lib.maintainers: add markus1189 --- lib/maintainers.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 1d3544b1077..80b40730fc9 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -208,6 +208,7 @@ malyn = "Michael Alyn Miller "; manveru = "Michael Fellinger "; marcweber = "Marc Weber "; + markus1189 = "Markus Hauck "; markWot = "Markus Wotringer "; matejc = "Matej Cotman "; mathnerd314 = "Mathnerd314 "; From 7b09191563dceeac7627e1a93b9f500bbd1baa1f Mon Sep 17 00:00:00 2001 From: Markus Hauck Date: Fri, 11 Mar 2016 12:37:23 +0100 Subject: [PATCH 0224/1059] jo: init at 1.0 --- pkgs/development/tools/jo/default.nix | 26 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/tools/jo/default.nix diff --git a/pkgs/development/tools/jo/default.nix b/pkgs/development/tools/jo/default.nix new file mode 100644 index 00000000000..09b5edeeecd --- /dev/null +++ b/pkgs/development/tools/jo/default.nix @@ -0,0 +1,26 @@ +{stdenv, fetchFromGitHub, autoreconfHook}: + +stdenv.mkDerivation rec { + name = "jo-${version}"; + version = "1.0"; + + src = fetchFromGitHub { + owner = "jpmens"; + repo = "jo"; + + rev = "v${version}"; + sha256="0vyi0aaxsp6x3cvym7mlcfdsxjhj5h0b00mqc42mg8kc95cyp2c1"; + }; + + enableParallelBuilding = true; + + nativeBuildInputs = [ autoreconfHook ]; + + meta = with stdenv.lib; { + description = "A small utility to create JSON objects"; + homepage = https://github.com/jpmens/jo; + license = licenses.gpl2Plus; + maintainers = [maintainers.markus1189]; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index db1418be33a..8817719aa17 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2138,7 +2138,9 @@ let jpegoptim = callPackage ../applications/graphics/jpegoptim { }; - jq = callPackage ../development/tools/jq {}; + jq = callPackage ../development/tools/jq { }; + + jo = callPackage ../development/tools/jo { }; jscoverage = callPackage ../development/tools/misc/jscoverage { }; From 184aca39077f4c3184b255ce10e55bbca0f0caf6 Mon Sep 17 00:00:00 2001 From: "tg(x)" <*@tg-x.net> Date: Fri, 11 Mar 2016 20:22:17 +0100 Subject: [PATCH 0225/1059] pax-utils: 1.1.1 -> 1.1.6 --- pkgs/os-specific/linux/pax-utils/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/pax-utils/default.nix b/pkgs/os-specific/linux/pax-utils/default.nix index a35b8181544..1351a441763 100644 --- a/pkgs/os-specific/linux/pax-utils/default.nix +++ b/pkgs/os-specific/linux/pax-utils/default.nix @@ -2,15 +2,14 @@ stdenv.mkDerivation rec { name = "pax-utils-${version}"; - version = "1.1.1"; + version = "1.1.6"; src = fetchurl { url = "http://dev.gentoo.org/~vapier/dist/${name}.tar.xz"; - sha256 = "0gldvyr96jgbcahq7rl3k4krzyhvlz95ckiqh3yhink56s5z58cy"; + sha256 = "04hvsizzspfzfq6hhfif7ya9nwsc0cs6z6n2bq1zfh7agd8nqhzm"; }; makeFlags = [ - "DESTDIR=$(out)" "PREFIX=$(out)" ]; From 2f6f3c7b55a3aa1e07a7d936bbad28dea05925eb Mon Sep 17 00:00:00 2001 From: Anthony Cowley Date: Thu, 10 Mar 2016 17:14:44 -0500 Subject: [PATCH 0226/1059] ffmpeg-full: 2.8.5 -> 3.0 Also changes the homepage URL to https. --- pkgs/development/libraries/ffmpeg-full/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/ffmpeg-full/default.nix b/pkgs/development/libraries/ffmpeg-full/default.nix index eed6a3bc763..91974a31175 100644 --- a/pkgs/development/libraries/ffmpeg-full/default.nix +++ b/pkgs/development/libraries/ffmpeg-full/default.nix @@ -235,11 +235,11 @@ assert x11grabExtlib -> libX11 != null && libXv != null; stdenv.mkDerivation rec { name = "ffmpeg-full-${version}"; - version = "2.8.5"; + version = "3.0"; src = fetchurl { url = "https://www.ffmpeg.org/releases/ffmpeg-${version}.tar.bz2"; - sha256 = "0nk1j3i7qc1k3dygpq74pxq382vqg9kaf2hxl9jfw8rkad8rjv9v"; + sha256 = "1h0k05cj6j0nd2i16z7hc5scpwsbg3sfx68lvm0nlwvz5xxgg7zi"; }; patchPhase = ''patchShebangs .''; @@ -449,7 +449,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "A complete, cross-platform solution to record, convert and stream audio and video"; - homepage = http://www.ffmpeg.org/; + homepage = https://www.ffmpeg.org/; longDescription = '' FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines From 9a67d1dcab481108f8ee3e24836639661a32d255 Mon Sep 17 00:00:00 2001 From: Michiel Leenaars Date: Fri, 11 Mar 2016 21:51:06 +0100 Subject: [PATCH 0227/1059] 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 0228/1059] 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 0229/1059] 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 0230/1059] 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 f3e5ee51bd616a0a1ad17733893ed0bd26ba9504 Mon Sep 17 00:00:00 2001 From: "tg(x)" <*@tg-x.net> Date: Fri, 11 Mar 2016 22:36:22 +0100 Subject: [PATCH 0231/1059] pax-utils: https urls --- pkgs/os-specific/linux/pax-utils/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/pax-utils/default.nix b/pkgs/os-specific/linux/pax-utils/default.nix index 1351a441763..65cbf1c4589 100644 --- a/pkgs/os-specific/linux/pax-utils/default.nix +++ b/pkgs/os-specific/linux/pax-utils/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { version = "1.1.6"; src = fetchurl { - url = "http://dev.gentoo.org/~vapier/dist/${name}.tar.xz"; + url = "https://dev.gentoo.org/~vapier/dist/${name}.tar.xz"; sha256 = "04hvsizzspfzfq6hhfif7ya9nwsc0cs6z6n2bq1zfh7agd8nqhzm"; }; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "A suite of tools for PaX/grsecurity"; - homepage = "http://dev.gentoo.org/~vapier/dist/"; + homepage = "https://dev.gentoo.org/~vapier/dist/"; license = licenses.gpl2; platforms = platforms.linux; maintainers = with maintainers; [ thoughtpolice ]; From c81118c76cfe7e2509ab032476e37366803dee71 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Fri, 11 Mar 2016 15:46:35 -0600 Subject: [PATCH 0232/1059] ntplib: 0.3.2 -> 0.3.3 --- 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 0e7484287ce..9429e601f2c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12860,10 +12860,10 @@ in modules // { }; ntplib = buildPythonPackage rec { - name = "ntplib-0.3.2"; + name = "ntplib-0.3.3"; src = pkgs.fetchurl { - url = https://pypi.python.org/packages/source/n/ntplib/ntplib-0.3.2.tar.gz; - md5 = "0f386dc00c0056ac4d77af0b4c21bb8e"; + url = https://pypi.python.org/packages/source/n/ntplib/ntplib-0.3.3.tar.gz; + md5 = "c7cc8e9b09f40c84819859d70b7784ca"; }; meta = { From 53d31634ed5a4f949f661f3999333f6a1ea5ca71 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Fri, 11 Mar 2016 12:59:55 -0600 Subject: [PATCH 0233/1059] pushbullet: 0.5.0 -> 0.10.0 because 0.5.0 doesn't exist upstream --- 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 9429e601f2c..57e79d17443 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -24040,11 +24040,11 @@ in modules // { pushbullet = buildPythonPackage rec { name = "pushbullet.py-${version}"; - version = "0.5.0"; + version = "0.10.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pushbullet.py/pushbullet.py-0.5.0.tar.gz"; - md5 = "36c83ba5f7d5208bb86c00eba633f921"; + url = "https://pypi.python.org/packages/source/p/pushbullet.py/pushbullet.py-0.10.0.tar.gz"; + md5 = "24db6917a12e1c9b3fecca102615376b"; }; propagatedBuildInputs = with self; [requests websocket_client python_magic ]; From 00078e317e63d1d934806efd62f56e48150a4f64 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Fri, 11 Mar 2016 13:03:07 -0600 Subject: [PATCH 0234/1059] libxkbdcommon: sha1 to sha256, also: upstream sha1 changed? --- pkgs/development/libraries/libxkbcommon/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libxkbcommon/default.nix b/pkgs/development/libraries/libxkbcommon/default.nix index 5543b05ce9d..ea74bea152c 100644 --- a/pkgs/development/libraries/libxkbcommon/default.nix +++ b/pkgs/development/libraries/libxkbcommon/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://xkbcommon.org/download/${name}.tar.xz"; - sha1 = "z9dvxrkcyb4b7f2zybgkrqb9zcxrj9vi"; + sha256 = "176ii5dn2wh74q48sd8ac37ljlvgvp5f506glr96z6ibfhj7igch"; }; buildInputs = [ pkgconfig yacc flex xkeyboard_config libxcb ]; @@ -23,4 +23,3 @@ stdenv.mkDerivation rec { homepage = http://xkbcommon.org; }; } - From f8225925981c9aa9777aef5118da0ac2f78d4aad Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Fri, 11 Mar 2016 15:46:48 -0600 Subject: [PATCH 0235/1059] pyusb: md5sum changed upstream? --- 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 57e79d17443..7af8a4e3f83 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -23529,7 +23529,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyusb/${name}.tar.gz"; - md5 = "5cc9c7dd77b4d12fcc22fee3b39844bc"; + md5 = "bc12e83ff3ef1045d4306d13a9955fc1"; }; # Fix the USB backend library lookup From 57830093e7ff7dcd9be2ce8c79c6574dffd89bb9 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Fri, 11 Mar 2016 12:12:41 -0600 Subject: [PATCH 0236/1059] pythonPackages: upgrade hashes to sha256 --- pkgs/top-level/python-packages.nix | 555 +++++++++++++++-------------- 1 file changed, 279 insertions(+), 276 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7af8a4e3f83..aa836eee786 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -104,7 +104,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/discid/${name}.tar.gz"; - md5 = "2ad2141452dd10b03ad96ccdad075235"; + sha256 = "b39d443051b26d0230be7a6c616243daae93337a8711dd5d4119bb6a0e516fa8"; }; patchPhase = '' @@ -196,7 +196,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/aafigure/${name}.tar.gz"; - md5 = "5322888a21eb0bb2e749fbf98eddf574"; + sha256 = "090c88beb091d28a233f854e239713aa15d8d1906ea16211855345c912e8a091"; }; propagatedBuildInputs = with self; [ pillow ]; @@ -533,7 +533,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/a/almir/${name}.zip"; - md5 = "9a1f3c72a039622ca72b74be7a1cd37e"; + sha256 = "5dc0b8a5071f3ff46cd2d92608f567ba446e4c733c063b17d89703caeb9868fe"; }; buildInputs = with self; [ @@ -627,7 +627,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/a/anyjson/${name}.tar.gz"; - md5 = "2ea28d6ec311aeeebaf993cb3008b27c"; + sha256 = "37812d863c9ad3e35c0734c42e0bf0320ce8c3bed82cd20ad54cb34d158157ba"; }; buildInputs = with self; [ self.nose ]; @@ -664,7 +664,7 @@ in modules // { src = pkgs.fetchurl { url = "http://py-amqplib.googlecode.com/files/${name}.tgz"; - sha1 = "f124e5e4a6644bf6d1734032a01ac44db1b25a29"; + sha256 = "0f2618b74d95cd360a6d46a309a3fb1c37d881a237e269ac195a69a34e0e2f62"; }; # error: invalid command 'test' @@ -745,7 +745,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/apipkg/${name}.tar.gz"; - md5 = "17e5668601a2322aff41548cb957e7c8"; + sha256 = "2e38399dbe842891fe85392601aab8f40a8f4cc5a9053c326de35a1cc0297ac6"; }; buildInputs = with self; [ pytest ]; @@ -762,7 +762,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/appdirs/appdirs-1.4.0.tar.gz"; - md5 = "1d17b4c9694ab84794e228f28dc3275b"; + sha256 = "8fc245efb4387a4e3e0ac8ebcc704582df7d72ff6a42a53f5600bbb18fdaadc5"; }; meta = { @@ -805,7 +805,7 @@ in modules // { src = pkgs.fetchurl { url = "http://apsw.googlecode.com/files/${name}.zip"; - sha1 = "fa4aec08e59fa5964197f59ba42408d64031675b"; + sha256 = "cb121b2bce052609570a2f6def914c0aa526ede07b7096dddb78624d77f013eb"; }; buildInputs = with self; [ pkgs.sqlite ]; @@ -841,7 +841,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/f/funcsigs/${name}.tar.gz"; - md5 = "fb1d031f284233e09701f6db1281c2a5"; + sha256 = "d83ce6df0b0ea6618700fe1db353526391a8a3ada1b7aba52fed7a61da772033"; }; buildInputs = with self; [ @@ -895,7 +895,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/args/${name}.tar.gz"; - md5 = "66faf79ba2511def7b8b81d542482046"; + sha256 = "a785b8d837625e9b61c39108532d95b85274acd679693b71ebb5156848fcf814"; }; meta = { @@ -1049,7 +1049,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/attrdict/${name}.tar.gz"; - md5 = "8a7c1a4e737fe9e2b2b8844c0f7746f8"; + sha256 = "86aeb6d3809e0344409f8148d7cac9eabce5f0b577c160b5e90d10df3f8d2ad3"; }; propagatedBuildInputs = with self; [ coverage nose six ]; @@ -1149,7 +1149,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/avro/${name}.tar.gz"; - md5 = "7f4893205e5ad69ac86f6b44efb7df72"; + sha256 = "edf14143cabb2891f05a73d60a57a9fc5a9ebd305c2188abb3f5db777c707ad5"; }; meta = { @@ -1272,7 +1272,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/azure/${name}.zip"; - md5 = "5499efd85c54c757c0e757b5407ee47f"; + sha256 = "89c20b2efaaed3c6f56345d55c32a8d4e7d2a16c032d0acb92f8f490c508fe24"; }; propagatedBuildInputs = with self; [ dateutil futures pyopenssl requests2 ]; @@ -1479,7 +1479,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/b/backports.ssl_match_hostname/backports.ssl_match_hostname-3.4.0.2.tar.gz"; - md5 = "788214f20214c64631f0859dc79f23c6"; + sha256 = "07410e7fb09aab7bdaf5e618de66c3dac84e2e3d628352814dc4c37de321d6ae"; }; meta = { @@ -1494,7 +1494,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/b/backports.lzma/${name}.tar.gz"; - md5 = "c3d109746aefa86268e500c07d7e8e0f"; + sha256 = "bac58aec8d39ac3d22250840fb24830d0e4a0ef05ad8f3f09172dc0cc80cdbca"; }; buildInputs = [ pkgs.lzma ]; @@ -1818,7 +1818,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/circus/${name}.tar.gz"; - md5 = "5c07cdbe9bb4a9b82e52737ad590617b"; + sha256 = "3757344aa5073ea29e6e2607b3de8ba1652502c61964316116931884293fe846"; }; doCheck = false; # weird error @@ -1984,7 +1984,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/i/iowait/${name}.tar.gz"; - md5 = "f49ca7766fe4a67e03a731e575614f87"; + sha256 = "ab1bc2eb84c22ccf61f17a0024f9fb6df781b39f1852764a66a7769d5adfb299"; }; meta = { @@ -2012,7 +2012,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/r/rarfile/rarfile-2.6.tar.gz"; - md5 = "50ce3f3fdb9196a00059a5ea7b3739fd"; + sha256 = "326700c5450cfb367f612e918866ea27551bac02f4656f340003c88873fa1a56"; }; meta = { @@ -2026,7 +2026,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/proboscis/proboscis-1.2.6.0.tar.gz"; - md5 = "e4b36449ef7c18f70b8243f4c8bddbca"; + sha256 = "b822b243a7c82030fce0de97bdc432345941306d2c24ef227ca561dd019cd238"; }; propagatedBuildInputs = with self; [ nose ]; @@ -2044,7 +2044,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyechonest/pyechonest-8.0.2.tar.gz"; - md5 = "5586fe8ece7af4e24f71ea740185127e"; + sha256 = "496265f4b7d33483ec153b9e1b8333fe959b115f7e781510089c8313b7d86560"; }; meta = { @@ -2101,7 +2101,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/b/bitbucket-api/${name}.tar.gz"; - md5 = "6f3cee3586c4aad9c0b2e04fce9704fb"; + sha256 = "e890bc3893d59a6f203c1eb2bae60e78ac4d3869da7ea4fb104dca588aea85b2"; }; propagatedBuildInputs = with self; [ requests_oauth2 nose sh ]; @@ -2119,7 +2119,7 @@ in modules // { name = "bitbucket-cli-0.4.1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/b/bitbucket-cli/${name}.tar.gz"; - md5 = "79cdbdc6c95dfa313d12cbdef406c9f2"; + sha256 = "d8909627ae7a46519379c6343698d49f9ffd5de839ff44796974828d843a9419"; }; pythonPath = [ self.requests ]; @@ -2233,7 +2233,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/b/blinker/${name}.tar.gz"; - md5 = "66e9688f2d287593a0e698cd8a5fbc57"; + sha256 = "6811010809262261e41ab7b92f3f6d23f35cf816fbec2bc05077992eebec6e2f"; }; meta = { @@ -2483,7 +2483,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/B/Box2D/Box2D-2.3b0.zip"; - md5="25fc4f69cd580bdca0022ac3ace53865"; + sha256 = "4519842c650b0153550eb0c9864da46b5a4ec8555c68b70f5cd2952a21c788b0"; }; patches = [ ../development/python-modules/box2d/disable-test.patch ]; @@ -2586,7 +2586,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/check-manifest/check-manifest-${version}.tar.gz"; - md5 = "b18f7f0bcd02f52d40148c388ace9290"; + sha256 = "b19fd0d8b9286532ba3dc0282484fd76d11200cf24b340dc3d08f293c7dd0500"; }; doCheck = false; @@ -2605,7 +2605,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/devpi-common/devpi-common-${version}.tar.gz"; - md5 = "3739af0f59151d1aaa67035fec8f97c6"; + sha256 = "a059c4099002d4af8f3ccfc8a9f4bf133b20ea404049b21a31fc1003e1d79452"; }; propagatedBuildInputs = [ self.requests2 self.py ]; @@ -2629,7 +2629,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zc.buildout/${name}.tar.gz"; - md5 = "476a06eed08506925c700109119b6e41"; + sha256 = "a6122ea5c06c6c044a9efce4a3df452c8573e1aebfda7b24262655daac894ef5"; }; meta = { @@ -2647,7 +2647,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zc.buildout/${name}.tar.gz"; - md5 = "8834a21586bf2be53dc412002241a996"; + sha256 = "a5c2fafa4d073ad3dabec267c44a996cbc624700a9a49467cd6b1ef63d35e029"; }; meta = { @@ -2665,7 +2665,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zc.buildout/${name}.tar.gz"; - md5 = "87f7b3f8d13926c806242fd5f6fe36f7"; + sha256 = "0ac5a325d3ffbc5a988fb3ba87f4159d4769cc73e3331cb5234edc8839b6506b"; }; # TODO: consider if this patch should be an option @@ -2795,7 +2795,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/c/carrot/${name}.tar.gz"; - md5 = "530a0614de3a669314c3acd4995c54d5"; + sha256 = "cb46374f3c883c580d142a79d2609883713a867cc86e0514163adce784ce2468"; }; buildInputs = with self; [ self.nose ]; @@ -2936,7 +2936,7 @@ in modules // { name = "characteristic-14.1.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/characteristic/${name}.tar.gz"; - md5 = "68ea7e28997fc57d3631791ec0567a05"; + sha256 = "91e254948180678dd69e6143202b4686f2fa47cce136936079bb4d9a3b82419d"; }; buildInputs = with self; [ self.pytest ]; @@ -2955,7 +2955,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/C/Cheetah/Cheetah-${version}.tar.gz"; - md5 = "853917116e731afbc8c8a43c37e6ddba"; + sha256 = "be308229f0c1e5e5af4f27d7ee06d90bb19e6af3059794e5fd536a6f29a9b550"; }; propagatedBuildInputs = with self; [ self.markdown ]; @@ -3255,7 +3255,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/C/CoilMQ/CoilMQ-0.6.1.tar.gz"; - md5 = "5f39727415b837abd02651eeb2721749"; + sha256 = "9755733bdae33a9d87630232d166a7da2382f68c2cffb3bb81503806e8d310cb"; }; propagatedBuildInputs = with self; [ self.stompclient ]; @@ -3283,7 +3283,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/c/colander/${name}.tar.gz"; - md5 = "058576123da7216288c079c9f47693f8"; + sha256 = "7389413266b9e680c9529c16d56284edf87e0d5de557948e75f41d65683c23b3"; }; propagatedBuildInputs = with self; [ self.translationstring self.iso8601 ]; @@ -3320,7 +3320,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/C/ColanderAlchemy/${name}.tar.gz"; - md5 = "b054837bd2753cbf15f7d5028cba421b"; + sha256 = "d10e97b5f4648dcdc38c5e5c9f9b77fe39c8fa7f594d89d558b0d82e5631bfd7"; }; buildInputs = with self; [ unittest2 ]; @@ -3342,7 +3342,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/c/configobj/${name}.tar.gz"; - md5 = "e472a3a1c2a67bb0ec9b5d54c13a47d6"; + sha256 = "a2f5650770e1c87fb335af19a9b7eb73fc05ccf22144eb68db7d00cd2bcb0902"; }; # error: invalid command 'test' @@ -3426,7 +3426,7 @@ in modules // { src = pkgs.fetchurl rec { url = "https://pypi.python.org/packages/source/c/contextlib2/${name}.tar.gz"; - md5 = "ea687207db25f65552061db4a2c6727d"; + sha256 = "55a5dc78f7a742a0e756645134ffb39bbe11da0fea2bc0f7070d40dac208b732"; }; }; @@ -3494,7 +3494,7 @@ in modules // { name = "cov-core-1.15.0"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/c/cov-core/${name}.tar.gz"; - md5 = "f519d4cb4c4e52856afb14af52919fe6"; + sha256 = "4a14c67d520fda9d42b0da6134638578caae1d374b9bb462d8de00587dba764c"; }; meta = { description = "plugin core for use by pytest-cov, nose-cov and nose2-cov"; @@ -3579,7 +3579,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/c/cryptacular/${name}.tar.gz"; - md5 = "fe12232ac660185186dd8057d8ca7b0e"; + sha256 = "273f03d03f9b316671ae4f1c1c6b8d3c883da19a5706873e8f3d6543e13dd4a1"; }; # TODO: tests fail: TypeError: object of type 'NoneType' has no len() @@ -3919,7 +3919,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/detox/detox-0.9.3.tar.gz"; - md5 = "b52588ec61cd4c2d33e419677a5eac8c"; + sha256 = "39d48b6758c43ba579f694507d54da96931195eb1b72ad79b46f50af9520b2f3"; }; meta = { @@ -3934,7 +3934,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pbkdf2/${name}.tar.gz"; - md5 = "40cda566f61420490206597243dd869f"; + sha256 = "ac6397369f128212c43064a2b4878038dab78dab41875364554aaf2a684e6979"; }; # ImportError: No module named test @@ -4228,7 +4228,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pytest-xdist/pytest-xdist-1.8.zip"; - md5 = "9c0b8efe9d43b460f8cf049fa46ce14d"; + sha256 = "b02135db7080c0978b7ce5d8f43a5879231441c2062a4791bc42b6f98c94fa69"; }; buildInputs = with self; [ pytest ]; @@ -4594,7 +4594,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/d/deform/${name}.tar.gz"; - md5 = "7a90d41f7fbc18002ce74f39bd90a5e4"; + sha256 = "3fa4d287c8da77a83556e4a5686de006ddd69da359272120b915dc8f5a70cabd"; }; buildInputs = with self; [] ++ optional isPy26 unittest2; @@ -4698,7 +4698,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/derpconf/${name}.tar.gz"; - md5 = "a164807d7bf0c4adf1de781305f29b82"; + sha256 = "9129419e3a6477fe6366c339d2df8c614bdde82a639f33f2f40d4de9a1ed236a"; }; meta = { @@ -4768,7 +4768,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/discogs-client/${name}.tar.gz"; - md5 = "2cc57e1d134aa93404e779b9311676fa"; + sha256 = "0a3616a818dd9fa61a61c3d9731d176e9123130d1b1b97a6beee63b4c72306b7"; }; propagatedBuildInputs = with self; [ oauth2 requests2 ]; @@ -4825,7 +4825,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/dockerpty/${name}.tar.gz"; - md5 = "92fb66d28aa19bf5268e7e3935670e5d"; + sha256 = "a51044cc49089a2408fdf6769a63eebe0b16d91f34716ecee681984446ce467d"; }; propagatedBuildInputs = with self; [ six ]; @@ -4843,7 +4843,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/docker-registry-core/${name}.tar.gz"; - md5 = "610ef9395f2e9a2f91c68d13325fce7b"; + sha256 = "347e804f1f35b28dbe27bf8d7a0b630fca29d684032139bf26e3940572360360"; }; DEPS = "loose"; @@ -4898,7 +4898,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/docopt/${name}.tar.gz"; - md5 = "4bc74561b37fad5d3e7d037f82a4c3b1"; + sha256 = "49b3a825280bd66b3aa83585ef59c4a8c82f2c8a522dbe754a8bc8d08c85c491"; }; meta = { @@ -4933,7 +4933,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/dogpile.cache/dogpile.cache-0.5.4.tar.gz"; - md5 = "513b77ba1bd0c31bb15dd9dd0d8471af"; + sha256 = "9eab7a5dc05ad1b6573144c4a2717226b5c38811f9ec29b514e774535a91ea24"; }; doCheck = false; @@ -4950,7 +4950,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/dogpile.core/dogpile.core-0.4.1.tar.gz"; - md5 = "01cb19f52bba3e95c9b560f39341f045"; + sha256 = "be652fb11a8eaf66f7e5c94d418d2eaa60a2fe81dae500f3743a863cc9dbed76"; }; doCheck = false; @@ -4967,7 +4967,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/dotfiles/${name}.tar.gz"; - md5 = "95a0792eb92a8fc0db8a7e59389470fe"; + sha256 = "45ecfd7f2ed9d0f2a7ac632c9bd0ebdca758d8bbc2b6f11562579d525f0467b8"; }; doCheck = true; @@ -5130,7 +5130,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/E/EasyProcess/${name}.tar.gz"; - md5 = "3da72e2fe16781fe5c7b3b0c6c40ee7b"; + sha256 = "c9980c0b0eeab97969305d8829bed966a3e28a77284e4f45a9b38fb23ce83633"; }; meta = { @@ -5326,7 +5326,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/e/execnet/${name}.zip"; - md5 = "be885ccd9612966bb81839670d2da099"; + sha256 = "fa1d8bd6b6d2282ff4df474b8ac687e1775bff4fc6462b219a5f89d5e9e6908c"; }; doCheck = !isPy3k; # failures.. @@ -5344,7 +5344,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/f/facebook-sdk/facebook-sdk-0.4.0.tar.gz"; - md5 = "ac9f38e197e54b8ba9f3a61988cc33b7"; + sha256 = "5a96c54d06213039dff1fe1fabc51972e394666cd6d83ea70f7c2e67472d9b72"; }; meta = with pkgs.stdenv.lib; { @@ -5492,7 +5492,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/f/funcparserlib/${name}.tar.gz"; - md5 = "3aba546bdad5d0826596910551ce37c0"; + sha256 = "b7992eac1a3eb97b3d91faa342bfda0729e990bd8a43774c1592c091e563c91d"; }; checkPhase = '' @@ -5517,7 +5517,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/singledispatch/${name}.tar.gz"; - md5 = "af2fc6a3d6cc5a02d0bf54d909785fcb"; + sha256 = "5b06af87df13818d14f08a028e42f566640aef80805c3b50c5056b086e3c2b9c"; }; meta = { @@ -5600,7 +5600,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/g/gmpy/${name}.zip"; - md5 = "2bf419076b06e107167e219f60ac6d27"; + sha256 = "1a79118a5332b40aba6aa24b051ead3a31b9b3b9642288934da754515da8fa14"; }; buildInputs = [ @@ -5620,7 +5620,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/g/gmpy2/${name}.zip"; - md5 = "7365d880953ba54c2cdcf171c7e19b2b"; + sha256 = "5041d0ae24407c24487106099f5bcc4abb1a5f58d90e6712cc95321975eddbd4"; }; buildInputs = [ @@ -5925,7 +5925,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/h/humanize/${name}.tar.gz"; - md5 = "e8473d9dc1b220911cac2edd53b1d973"; + sha256 = "a43f57115831ac7c70de098e6ac46ac13be00d69abbf60bdcac251344785bb19"; }; buildInputs = with self; [ mock ]; @@ -5972,7 +5972,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/h/httpauth/${name}.tar.gz"; - md5 = "78d1835a80955e68e98a3ca5ab7f7dbd"; + sha256 = "294029b5dfed27bca5746a31e3ffb5ed99268761536705e8bbd44231b7ca15ec"; }; doCheck = false; @@ -6117,7 +6117,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/j/jsonpatch/${name}.tar.gz"; - md5 = "9f2d0aa31f99cc97089a203c5bed3924"; + sha256 = "22d0bc0f5522a4a03dd9fb4c4cdf7c1f03256546c88be4c61e5ceabd22280e47"; }; propagatedBuildInputs = with self; [ jsonpointer ]; @@ -6134,7 +6134,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/j/jsonpointer/${name}.tar.gz"; - md5 = "c4d3f28e72ba77062538d1c0864c40a9"; + sha256 = "39403b47a71aa782de6d80db3b78f8a5f68ad8dfc9e674ca3bb5b32c15ec7308"; }; meta = { @@ -6436,7 +6436,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.pediapress.com/packages/mirror/${name}.zip"; - md5 = "36193837359204d3337b297ba0f20bc8"; + sha256 = "9229193ee719568d482192d9d913b3c4bb96af7c589d6c31ed4a62caf5054278"; }; meta = { @@ -6452,7 +6452,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.pediapress.com/packages/mirror/${name}.zip"; - md5 = "49d72b0172f69cbe039f62dd4efb65ea"; + sha256 = "7f596fd60eb24d8d3da3ab4880f095294028880eafb653810a7bdaabdb031238"; }; buildInputs = with self; @@ -6474,7 +6474,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/n/natsort/${name}.tar.gz"; - md5 = "38cc0bb27c95bf549fe737d9f267f453"; + sha256 = "a0d4239bd609eae5cd5163db6f9794378ce0e3f43ae16c10c35472d866ae20cd"; }; buildInputs = with self; @@ -6566,7 +6566,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/o/odfpy/${name}.tar.gz"; - md5 = "3f570ead2b5f5eb6eab97eecce22d491"; + sha256 = "e458f969f1ccd7ed77d70a45fe69ad656ac61b39e36e4d32c42d4e3216030891"; }; buildInputs = with self; with pkgs; [ ]; @@ -6626,8 +6626,8 @@ in modules // { name = "passlib-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/passlib/passlib-${version}.tar.gz"; - md5 = "2f872ae7c72ca338634c618f2cff5863"; + url = "https://pypi.python.org/packages/source/p/passlib/passlib-${version}.tar.gz"; + sha256 = "e987f6000d16272f75314c7147eb015727e8532a3b747b1a8fb58e154c68392d"; }; buildInputs = with self; [ nose pybcrypt]; @@ -6664,7 +6664,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/peppercorn/${name}.tar.gz"; - md5 = "f08efbca5790019ab45d76b7244abd40"; + sha256 = "921cba5d51fa211e6da0fbd2120b9a98d663422a80f5bb669ad81ffb0909774b"; }; meta = { @@ -6699,7 +6699,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pies/${name}.tar.gz"; - md5 = "caba1ce15d312bf68d65a5d2cf9ccff2"; + sha256 = "d8d6ae4faa0a7da5d634ad8c6ca4bb22b70ad53bb7ecd91af23d490fcd2a88e8"; }; deps = if !isPy3k then [ self.pies2overrides self.enum34 ] @@ -6721,7 +6721,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pies2overrides/${name}.tar.gz"; - md5 = "e73716454a2560341edf99d8f6fe5135"; + sha256 = "2a91445afc7f692bdbabfbf00d3defb1d47ad7825eb568a6464359758ab35763"; }; propagatedBuildInputs = with self; [ ipaddress ]; @@ -6762,7 +6762,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/plotly/${name}.tar.gz"; - md5 = "56fb77dff80325413c8cf40cf229ce90"; + sha256 = "628679e880caab22e2a46273e85e1d1ce1382b631e1c7bbfe539f804c5269b21"; }; propagatedBuildInputs = with self; [ self.pytz self.six self.requests ]; @@ -6783,7 +6783,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/python-poppler-qt4/" + "python-poppler-qt4-${version}.tar.gz"; - md5 = "9c4c5a59b878aed78e96a6ae58c6c185"; + sha256 = "00e3f89f4e23a844844d082918a89c2cbb1e8231ecb011b81d592e7e3c33a74c"; }; propagatedBuildInputs = [ pkgs.pyqt4 pkgs.pkgconfig pkgs.poppler_qt4 ]; @@ -6808,7 +6808,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pudb/${name}.tar.gz"; - md5 = "063030763bf914166a0b2bc8c011143b"; + sha256 = "81b20a995803c4be513e6d36c8ec9a531d3ccb24670b2416abc20f3933ddb8be"; }; propagatedBuildInputs = with self; [ self.pygments self.urwid ]; @@ -6953,7 +6953,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyramid_beaker/${name}.tar.gz"; - md5 = "acb863517a98b90b5f29648ce55dd563"; + sha256 = "c76578dac3ea717e9ca89c327daf13975987d0b8827d15157319c20614fab74a"; }; propagatedBuildInputs = with self; [ beaker pyramid ]; @@ -6970,7 +6970,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyramid_chameleon/${name}.tar.gz"; - md5 = "5bb5938356dfd13fce06e095f132e137"; + sha256 = "d176792a50eb015d7865b44bd9b24a7bd0489fa9a5cebbd17b9e05048cef9017"; }; propagatedBuildInputs = with self; [ @@ -7036,7 +7036,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyramid_exclog/${name}.tar.gz"; - md5 = "05df86758b0d30ee6f8339ff36cef7a0"; + sha256 = "a58c82866c3e1a350684e6b83b440d5dc5e92ca5d23794b56d53aac06fb65a2c"; }; propagatedBuildInputs = with self; [ pyramid ]; @@ -7053,7 +7053,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyramid_tm/${name}.tar.gz"; - md5 = "89a293488093d6c30036345fa46184d2"; + sha256 = "99528c54accf2bd5860d10634fe8972e8375b2d0f50ee08f208ed0484ffafc1d"; }; propagatedBuildInputs = with self; [ transaction pyramid ]; @@ -7070,7 +7070,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyramid_multiauth/${name}.tar.gz"; - md5 = "044e423abc4fb76937ac0c21c1205e9c"; + sha256 = "c33f357e0a216cd6ef7d143d40d4679c9fb0796a1eabaf1249aeef63ed000828"; }; propagatedBuildInputs = with self; [ pyramid ]; @@ -7149,7 +7149,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/r/raven/${name}.tar.gz"; - md5 = "6a9264133bf646149ffb9118d81445be"; + sha256 = "c27e40ab3ccf37f30a9f77acb4917370d9341e25abda8e94b9bd48c7127f7d48"; }; # way too many dependencies to run tests @@ -7167,7 +7167,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/r/roman/${name}.zip"; - md5 = "aa71d131eec16d45c030fd06a27c9d17"; + sha256 = "90e83b512b44dd7fc83d67eb45aa5eb707df623e6fc6e66e7f273abd4b2613ae"; }; buildInputs = with self; with pkgs; [ ]; @@ -7188,7 +7188,7 @@ in modules // { version = "0.4.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/l/librosa/librosa-0.4.0.tar.gz"; - md5 = "8149a70a5a5783c3cceeb69de3e07458"; + sha256 = "cc11dcc41f51c08e442292e8a2fc7d7ee77e0d47ff771259eb63f57fcee6f6e7"; }; propagatedBuildInputs = with self; @@ -7273,7 +7273,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/h/hypatia/${name}.tar.gz"; - md5 = "d74c6dda31ff459a39fa5da9e98f2425"; + sha256 = "fb4d394eeac4b06ff2259cada6174aebbe77edd243ffd1deda320cb327f98bd9"; }; buildInputs = with self; [ zope_interface zodb ]; @@ -7289,7 +7289,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.copy/${name}.zip"; - md5 = "36aa2c96dec4cfeea57f54da2b733eb9"; + sha256 = "eb2a95866df1377741876a3ee62d8600e80089e6246e1a235e86791b29534457"; }; buildInputs = with self; [ zope_interface zope_location zope_schema ]; @@ -7375,7 +7375,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyramid_zodbconn/${name}.tar.gz"; - md5 = "3c7746a227fbcda3e138ab8bfab7700b"; + sha256 = "56cfdb6b13dc87b1c51c7abc1557c63960d6b858e14a2d4c9693c3f7877f5f63"; }; # should be fixed in next release @@ -7395,7 +7395,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyramid_mailer/${name}.tar.gz"; - md5 = "43800c7c894097a23140da58e3638c93"; + sha256 = "4debfad05ee65a05ba6f43e2af913e6e30db75ba42254e4aa0291500c4caa1fc"; }; buildInputs = with self; [ pyramid transaction ]; @@ -7411,7 +7411,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyrtlsdr/${name}.zip"; - md5 = "646336675a00d38e6f54e77a17011b95"; + sha256 = "cbb9086efe4320858c48f4856d09f7face191c4156510b1459ef4e5588935b6a"; }; postPatch = '' @@ -7433,7 +7433,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/r/repoze.sendmail/${name}.tar.gz"; - md5 = "81d15f1f03cc67d6f56f2091c594ef57"; + sha256 = "51813730adc24728d5ce2609038f7bb81aa1632539d7a79045ef4aa6942eaba2"; }; buildInputs = with self; [ transaction ]; @@ -7449,7 +7449,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zodburi/${name}.tar.gz"; - md5 = "7876893829c2f784506c80d49f861b67"; + sha256 = "c04b9beca032bb7b968a3464417596ba4607a927c5e65929860962ddba1cccc0"; }; buildInputs = with self; [ zodb mock ZEO ]; @@ -7466,7 +7466,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/Z/ZEO/${name}.tar.gz"; - md5 = "494d8320549185097ba4a6b6b76017d6"; + sha256 = "63555b6d2b5f98d215c4b5fdce004fb0475daa6efc8b70f39c77d646c12d7e51"; }; meta = { @@ -7481,7 +7481,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/r/random2/${name}.zip"; - md5 = "48a0a86fe00e447212d0095de8cf3e21"; + sha256 = "34ad30aac341039872401595df9ab2c9dc36d0b7c077db1cea9ade430ed1c007"; }; }; @@ -7569,7 +7569,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/r/repoze.lru/${name}.tar.gz"; - md5 = "2c3b64b17a8e18b405f55d46173e14dd"; + sha256 = "0f7a323bf716d3cb6cb3910cd4fccbee0b3d3793322738566ecce163b01bbd31"; }; meta = { @@ -7585,7 +7585,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/r/repoze.sphinx.autointerface/${name}.tar.gz"; - md5 = "f2fee996ae28dc16eb48f1a3e8f64801"; + sha256 = "97ef5fac0ab0a96f1578017f04aea448651fa9f063fc43393a8253bff8d8d504"; }; propagatedBuildInputs = with self; [ zope_interface sphinx ]; @@ -7627,7 +7627,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/setuptools-git/${name}.tar.gz"; - md5 = "7b5967e9527c789c3113b07a1f196f6e"; + sha256 = "047d7595546635edebef226bc566579d422ccc48a8a91c7d32d8bd174f68f831"; }; propagatedBuildInputs = [ pkgs.git ]; @@ -7670,7 +7670,7 @@ in modules // { version = "1.3.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pywatchman/pywatchman-${version}.tar.gz"; - md5 = "852eab2b7d2f4f56580c3cfff4803350"; + sha256 = "c3d5be183b5b04f6ad575fc71b06dd196185dea1558d9f4d0598ba9beaab8245"; }; postPatch = '' substituteInPlace pywatchman/__init__.py \ @@ -7685,7 +7685,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/z/zope.tales/${name}.zip"; - md5 = "902b03a5f9774f6e2decf3f06d18a09d"; + sha256 = "c0485f09c3f23c7a0ceddabcb02d4a40ebecf8f8f36c87fa9a02c415f96c969e"; }; }; @@ -7695,7 +7695,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.deprecation/${name}.tar.gz"; - md5 = "e9a663ded58f4f9f7881beb56cae2782"; + sha256 = "fed622b51ffc600c13cc5a5b6916b8514c115f34f7ea2730409f30c061eb0b78"; }; buildInputs = with self; [ zope_testing ]; @@ -7711,7 +7711,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/v/validictory/validictory-1.0.0a2.tar.gz"; - md5 = "54c206827931cc4ed8a9b1cc78e380c5"; + sha256 = "c02388a70f5b854e71e2e09bd6d762a2d8c2a017557562e866d8ffafb0934b07"; }; doCheck = false; @@ -7728,7 +7728,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/v/venusian/${name}.tar.gz"; - md5 = "dccf2eafb7113759d60c86faf5538756"; + sha256 = "1720cff2ca9c369c840c1d685a7c7a21da1afa687bfe62edd93cae4bf429ca5a"; }; # TODO: https://github.com/Pylons/venusian/issues/23 @@ -7746,7 +7746,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/C/Chameleon/${name}.tar.gz"; - md5 = "0214647152fcfcb9ce357624f8f9f203"; + sha256 = "bd1dfc96742c2a5b0b2adcab823bdd848e70c45a994dc4e51dd2cc31e2bae3be"; }; buildInputs = with self; [] ++ optionals isPy26 [ ordereddict unittest2 ]; @@ -7765,7 +7765,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/ddt/${name}.tar.gz"; - md5 = "29688456f9ee42d09d7d7c864ce6e17b"; + sha256 = "e24ecb7e2cf0bf43fa9d4255d3ae2bd0b7ce30b1d1b89ace7aa68aca1152f37a"; }; meta = { @@ -7782,7 +7782,7 @@ in modules // { src = pkgs.fetchurl { url = "http://launchpad.net/python-distutils-extra/trunk/2.26/+download/python-${name}.tar.gz"; - md5 = "7caded30a45907b5cdb10ac4182846eb"; + sha256 = "11a3d16efffb00c2b50f40c48531dadaf553ed7a36c5621fde437a16ca40f7ea"; }; meta = { @@ -7826,7 +7826,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyxdg/${name}.tar.gz"; - md5 = "bedcdb3a0ed85986d40044c87f23477c"; + sha256 = "81e883e0b9517d624e8b0499eb267b82a815c0b7146d5269f364988ae031279d"; }; # error: invalid command 'test' @@ -7845,7 +7845,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/c/chardet/${name}.tar.gz"; - md5 = "25274d664ccb5130adae08047416e1a8"; + sha256 = "e53e38b3a4afe6d1132de62b7400a4ac363452dc5dfcf8d88e8e0cce663c68aa"; }; meta = { @@ -8048,7 +8048,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/d/django-tagging/${name}.tar.gz"; - md5 = "a0855f2b044db15f3f8a025fa1016ddf"; + sha256 = "e5fbeb7ca6e0c22a9a96239095dff508040ec95171e51c69e6f8ada72ea4bce2"; }; # error: invalid command 'test' @@ -8387,7 +8387,7 @@ in modules // { src = pkgs.fetchurl { url = "mirror://sourceforge/docutils/${name}.tar.gz"; - md5 = "4622263b62c5c771c03502afa3157768"; + sha256 = "c7db717810ab6965f66c8cf0398a98c9d8df982da39b4cd7f162911eb89596fa"; }; # error: invalid command 'test' @@ -8422,7 +8422,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/d/dtopt/${name}.tar.gz"; - md5 = "9a41317149e926fcc408086aedee6bab"; + sha256 = "06ae07a12294a7ba708abaa63f838017d1a2faf6147a1e7a14ca4fa28f86da7f"; }; meta = { @@ -8460,7 +8460,7 @@ in modules // { version = "1.9.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/e/elpy/${name}.tar.gz"; - md5 = "651f6f46767b7132e5c0f83d5ac3b1f7"; + sha256 = "419f7b05b19182bc1aedde1ae80812c1534e59a0493476aa01ea819e76ba26f0"; }; python2Deps = if isPy3k then [ ] else [ self.rope ]; propagatedBuildInputs = with self; [ flake8 autopep8 jedi importmagic ] ++ python2Deps; @@ -8480,7 +8480,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/e/enum/${name}.tar.gz"; - md5 = "ce75c7c3c86741175a84456cc5bd531e"; + sha256 = "9bdfacf543baf2350df7613eb37f598a802f346985ca0dc1548be6494140fdff"; }; doCheck = !isPyPy; @@ -8517,7 +8517,7 @@ in modules // { name = "epc-0.0.3"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/e/epc/${name}.tar.gz"; - md5 = "04a93c0cd32b496969ead09f414dac74"; + sha256 = "30b594bd4a4acbd5bda0d3fa3d25b4e8117f2ff8f24d2d1e3e36c90374f3c55e"; }; propagatedBuildInputs = with self; [ sexpdata ]; @@ -8610,7 +8610,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/f/feedgenerator/${name}.tar.gz"; - md5 = "92978492871342ad64e8ae0ccfcf200c"; + sha256 = "5d6b0b10134ac392be0c0c3a39c0e1d7e9c17cc7894590f75981e3f497a4a60f"; }; buildInputs = [ pkgs.glibcLocales ]; @@ -8652,7 +8652,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyfribidi/${name}.zip"; - md5 = "a3fc1f9d34571305782d1a54ee36f904"; + sha256 = "6f7d83c09eae0cb98a40b85ba3dedc31af4dbff8fc4425f244c1e9f44392fded"; }; meta = { @@ -8747,7 +8747,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/F/Flask/Flask-0.10.1.tar.gz"; - md5 = "378670fe456957eb3c27ddaef60b2b24"; + sha256 = "4c83829ff83d408b5e1d4995472265411d2c414112298f2eb4b359d9e4563373"; }; propagatedBuildInputs = with self; [ itsdangerous click werkzeug jinja2 ]; @@ -8784,7 +8784,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/F/Flask-Cache/${name}.tar.gz"; - md5 = "ab82a9cd0844891ccdb54fbb93fd6c59"; + sha256 = "90126ca9bc063854ef8ee276e95d38b2b4ec8e45fd77d5751d37971ee27c7ef4"; }; propagatedBuildInputs = with self; [ werkzeug flask ]; @@ -8969,7 +8969,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/F/FlexGet/${name}.tar.gz"; - md5 = "2c249c43bc594726f908b1425a8b8081"; + sha256 = "0f7aaf0bf37860f0c5adfb0ba59ca228aa3f5c582131445623a4c3bc82d45346"; }; doCheck = false; @@ -9003,7 +9003,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/g/grappelli_safe/${name}.tar.gz"; - md5 = "5c8c681a0b1df94ecd6dc0b3a8b80892"; + sha256 = "8b21b4724bce449cc4f22dc74ed0be9b3e841d968f3271850bf4836864304eb6"; }; meta = { @@ -9031,7 +9031,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/python-tvrage/python-tvrage-${version}.tar.gz"; - md5 = "cdfec252158c5047b626861900186dfb"; + sha256 = "f8a530376c5cf1bc573d1945a8504c3394b228c731a3eff5100c705997a72063"; }; # has mostly networking dependent tests @@ -9409,7 +9409,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/g/gcovr/${name}.tar.gz"; - md5 = "672db629469882b93c40016aebff50ac"; + sha256 = "2c878e03c2eff2282e64035bec0a30532b2b1173aadf08486401883b79e4dab1"; }; meta = { @@ -9559,7 +9559,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/g/genzshcomp/genzshcomp-0.5.1.tar.gz"; - md5 = "7a954f1835875002e9044fe55ed1b488"; + sha256 = "c77d007cc32cdff836ecf8df6192371767976c108a75b055e057bb6f4a09cd42"; }; buildInputs = with self; [ pkgs.setuptools ] ++ (optional isPy26 argparse); @@ -9788,7 +9788,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/g/gspread/${name}.tar.gz"; - md5 = "5a71e4e3fc509dc1c4d34722f102dec1"; + sha256 = "dba45ef9e652dcd8cf561ae65569bd6ecd18fcc77b991521490698fb2d847106"; }; meta = { @@ -9876,7 +9876,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/g/gunicorn/${name}.tar.gz"; - md5 = "3d759bec3c46a680ff010775258c4c56"; + sha256 = "ae1dd6452f62b3470bc9acaf62cb5301545fbb9c697d863a5bfe35097ed7a0b3"; }; buildInputs = with self; [ pytest ]; @@ -9949,7 +9949,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/h/htmllaundry/${name}.tar.gz"; - md5 = "6db6909de76c4b259e65d90b5debdbda"; + sha256 = "e428cba78d5a965e959f5dac2eb7d5f7d627dd889990d5efa8d4e03f3dd768d9"; }; buildInputs = with self; [ nose ]; @@ -10002,7 +10002,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/h/http_signature/${name}.tar.gz"; - md5 = "015061846254bd5d8c5dbc2913985153"; + sha256 = "14acc192ef20459d5e11b4e800dd3a4542f6bd2ab191bf5717c696bf30936c62"; }; propagatedBuildInputs = with self; [pycrypto]; @@ -10019,7 +10019,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/h/httpbin/${name}.tar.gz"; - md5 = "9b2bb2fab45f5fa839e9a776a64d6089"; + sha256 = "6b57f563900ecfe126015223a259463848daafbdc2687442317c0992773b9054"; }; propagatedBuildInputs = with self; [ flask markupsafe decorator itsdangerous six ]; @@ -10107,7 +10107,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/i/icalendar/${name}.tar.gz"; - md5 = "072c67a4c461864abd604631d7cf67e7"; + sha256 = "93d0b94eab23d08f62962542309916a9681f16de3d5eca1c75497f30f1b07792"; }; buildInputs = with self; [ setuptools ]; @@ -10137,7 +10137,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/i/influxdb/${name}.tar.gz"; - md5 = "6c975058ccc4df41dad8d8234c52d754"; + sha256 = "6b5ea154454b86d14f2a3960d180e666ba9863da964032dacf2b50628e774a33"; }; # ImportError: No module named tests @@ -10263,7 +10263,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/i/iptools/iptools-${version}.tar.gz"; - md5 = "aed4045638fd40c16f8d9bb04606f700"; + sha256 = "0f03875a5bed740ba4bf44decb6a78679cca914a1ee8a6cc468114485c4d98e3"; }; buildInputs = with self; [ nose ]; @@ -10281,7 +10281,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/I/IPy/IPy-${version}.tar.gz"; - md5 = "f4f7ddc7c5e55a47222a5cc6c0a87b6d"; + sha256 = "5d6abb870c25f946c45c35cf50e66155598660f2765b35cb12e36ed5223c2b89"; }; # error: invalid command 'test' @@ -10479,7 +10479,7 @@ in modules // { name = "ipdbplugin-1.4"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/i/ipdbplugin/ipdbplugin-1.4.tar.gz"; - md5 = "f9a41512e5d901ea0fa199c3f648bba7"; + sha256 = "4778d78b5d0af1a2a6d341aed9e72eb73b1df6b179e145b4845d3a209137029c"; }; propagatedBuildInputs = with self; [ self.nose self.ipython ]; }; @@ -10671,7 +10671,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/j/jrnl/${name}.tar.gz"; - md5 = "395faff36de8a08a5bfeedbf123e9067"; + sha256 = "af599a863ac298533685a7236fb86307eebc00a38eb8bb96f4f67b5d83227ec8"; }; propagatedBuildInputs = with self; [ @@ -10748,7 +10748,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/j/jsonpath-rw/${name}.tar.gz"; - md5 = "3a807e05c2c12158fc6bb0a402fd5778"; + sha256 = "05c471281c45ae113f6103d1268ec7a4831a2e96aa80de45edc89b11fac4fbec"; }; propagatedBuildInputs = with self; [ @@ -10881,7 +10881,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pylast/${name}.tar.gz"; - md5 = "506cf1b13020b3ed2f3c845ea0c9830e"; + sha256 = "bf35820be35447d55564d36072d40b09ac8a7fd41a6f1a7a9d408f4d0eaefac4"; }; # error: invalid command 'test' @@ -11034,7 +11034,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/l/linode/linode-${version}.tar.gz"; - md5 = "03a306575cf274719b3206ecee0bda9e"; + sha256 = "db3c2a7fab8966d903a63f16c515bff241533e4ef2d746aa7aae4a49bba5e573"; }; propagatedBuildInputs = with self; [ requests2 ]; @@ -11071,7 +11071,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/l/locustio/${name}.tar.gz"; - md5 = "90cf4d029d58ad58d19ea17a16e59c34"; + sha256 = "c9ca6fdfe6a6fb187a3d54ddf9b1518196348e8f20537f0a14ca81a264ffafa2"; }; propagatedBuildInputs = [ self.msgpack self.requests2 self.flask self.gevent self.pyzmq ]; @@ -11247,7 +11247,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/M/M2Crypto/M2Crypto-${version}.tar.gz"; - md5 = "89557730e245294a6cab06de8ad4fb42"; + sha256 = "1ac3b6eafa5ff7e2a0796675316d7569b28aada45a7ab74042ad089d15a9567f"; }; buildInputs = with self; [ pkgs.swig2 pkgs.openssl ]; @@ -11396,7 +11396,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/m/mccabe/${name}.tar.gz"; - md5 = "81640948ff226f8c12b3277059489157"; + sha256 = "3d8ca9bf65c5014f469180544d1dd5bb5b9df709aad6304f9c2e4370ae0a7b7c"; }; # See https://github.com/flintwork/mccabe/issues/31 @@ -11464,7 +11464,7 @@ in modules // { src = pkgs.fetchurl { url = https://pypi.python.org/packages/source/m/meld3/meld3-1.0.0.tar.gz; - md5 = "ca270506dd4ecb20ae26fa72fbd9b0be"; + sha256 = "57b41eebbb5a82d4a928608962616442e239ec6d611fe6f46343e765e36f0b2b"; }; doCheck = false; @@ -11799,7 +11799,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pymox.googlecode.com/files/${name}.tar.gz"; - sha1 = "b71aeaacf31898c3b38d8b9ca5bcc0664499c0de"; + sha256 = "4d18a4577d14da13d032be21cbdfceed302171c275b72adaa4c5997d589a5030"; }; # error: invalid command 'test' @@ -11863,7 +11863,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/python-mpd/python-mpd-0.3.0.tar.gz"; - md5 = "5b3849b131e2fb12f251434597d65635"; + sha256 = "02812eba1d2e0f46e37457f5a6fa23ba203622e4bcab0a19b265e66b08cd21b4"; }; meta = with pkgs.stdenv.lib; { @@ -11947,7 +11947,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/m/msgpack-python/${name}.tar.gz"; - md5 = "8b317669314cf1bc881716cccdaccb30"; + sha256 = "bfcc581c9dbbf07cc2f951baf30c3249a57e20dcbd60f7e6ffc43ab3cc614794"; }; propagatedBuildInputs = with self; [ ]; @@ -11987,7 +11987,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/m/munkres/${name}.tar.gz"; - md5 = "d7ba3b8c5001578ae229a2d5a655872f"; + sha256 = "c78f803b9b776bfb20a25c9c7bb44adbf0f9202c2024d51aa5969d21e560208d"; }; # error: invalid command 'test' @@ -12007,7 +12007,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/m/musicbrainzngs/${name}.tar.gz"; - md5 = "9e17a181af72d04a291c9a960bc73d44"; + sha256 = "281388ab750d2996e9feca4580fd4215d616a698e02cd6719cb9b8562945c489"; }; buildInputs = [ pkgs.glibcLocales ]; @@ -12045,7 +12045,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/m/mutagen/${name}.tar.gz"; - md5 = "6a9bb5cc33214add35348f1bb3448340"; + sha256 = "cc884fe1e20fe220be7ce7c3b269f4cadc69a8310150a3a41162fba1ca9c88bd"; }; # Needed for tests only @@ -12254,7 +12254,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/m/mysql-connector-repackaged/${name}.tar.gz"; - md5 = "0b17ad1cb3fe763fd44487cb97cf45b2"; + sha256 = "170fbf11c54def1b5fcc919be0a890b760bb2eca81f56123a5dda0c69b5b099e"; }; meta = { @@ -12552,7 +12552,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/n/nibabel/${name}.tar.gz"; - md5 = "3be518fde5ec5b09483d4f28c81dc974"; + sha256 = "e559bcb40ae395c7f75c51079f815a13a94cd8a035a47315fc9fba0d2ae2ecaf"; }; propagatedBuildInputs = with self; [ @@ -12589,7 +12589,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/n/nipype/${name}.tar.gz"; - md5 = "480013709633a6d292e2ef668443e0c9"; + sha256 = "7fb143cd4d05f18db1cb7f0b83dba13d3dcf55b4eb3d16df08c97033ccae507b"; }; # Tests fail due to getcwd returning ENOENT??? @@ -12714,7 +12714,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/n/nosexcover/${name}.tar.gz"; - md5 = "12bf494a801b376debeb6a167c247391"; + sha256 = "f5b3a7c936c4f703f15418c1f325775098184b69fa572f868edb8a99f8f144a8"; }; propagatedBuildInputs = with self; [ coverage nose ]; @@ -12748,7 +12748,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/n/nose-cprof/${name}.tar.gz"; - md5 = "5db27c3b8f01915335ae6fc5fd3afd44"; + sha256 = "d1edd5cb3139e897752294d2968bfb066abdd754743fa416e024e5c688893344"; }; meta = { @@ -12863,7 +12863,8 @@ in modules // { name = "ntplib-0.3.3"; src = pkgs.fetchurl { url = https://pypi.python.org/packages/source/n/ntplib/ntplib-0.3.3.tar.gz; - md5 = "c7cc8e9b09f40c84819859d70b7784ca"; + + sha256 = "c4621b64d50be9461d9bd9a71ba0b4af06fbbf818bbd483752d95c1a4e273ede"; }; meta = { @@ -14606,7 +14607,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pagerduty/pagerduty-${version}.tar.gz"; - md5 = "8109a330d16751a7f4041c0ccedec787"; + sha256 = "e8c237239d3ffb061069aa04fc5b3d8ae4fb0af16a9713fe0977f02261d323e9"; }; }; @@ -14752,7 +14753,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/parsedatetime/${name}.tar.gz"; - md5 = "3aca729761be5259a508ed184df73c68"; + sha256 = "09bfcd8f3c239c75e77b3ff05d782ab2c1aed0892f250ce2adf948d4308fe9dc"; }; }; @@ -14761,7 +14762,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/paramiko/${name}.tar.gz"; - md5 = "48c274c3f9b1282932567b21f6acf3b5"; + sha256 = "6ed97e2281bb48728692cdc621f6b86a65fdc1d46b178ce250cfec10b977a04c"; }; propagatedBuildInputs = with self; [ pycrypto ecdsa ]; @@ -14796,7 +14797,7 @@ in modules // { src = pkgs.fetchurl{ url = "https://pypi.python.org/packages/source/p/patsy/${name}.zip"; - md5 = "7545518b413136ba8343dcebea07e5e2"; + sha256 = "a55dd4ca09af4b9608b81f30322beb450510964c022708ab50e83a065ccf15f0"; }; buildInputs = with self; [ nose ]; @@ -14815,7 +14816,7 @@ in modules // { src = pkgs.fetchurl { url = http://pypi.python.org/packages/source/P/Paste/Paste-1.7.5.1.tar.gz; - md5 = "7ea5fabed7dca48eb46dc613c4b6c4ed"; + sha256 = "11645842ba8ec986ae8cfbe4c6cacff5c35f0f4527abf4f5581ae8b4ad49c0b6"; }; buildInputs = with self; [ nose ]; @@ -14835,7 +14836,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/P/PasteDeploy/PasteDeploy-${version}.tar.gz"; - md5 = "352b7205c78c8de4987578d19431af3b"; + sha256 = "d5858f89a255e6294e63ed46b73613c56e3b9a2d82a42f1df4d06c8421a9e3cb"; }; buildInputs = with self; [ nose ]; @@ -15121,7 +15122,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pg8000/${name}.tar.gz"; - md5 = "173275fd76628b0e0cbed70ed9ce9eb9"; + sha256 = "188658db63c2ca931ae1bf0167b34efaac0ecc743b707f0118cc4b87e90ce488"; }; propagatedBuildInputs = with self; [ pytz ]; @@ -15227,7 +15228,7 @@ in modules // { disabled = isPy3k; src = pkgs.fetchurl { url = https://pypi.python.org/packages/source/p/pika/pika-0.9.12.tar.gz; - md5 = "7174fc7cc5570314fa3cfaa729106482"; + sha256 = "670787ee6ade47cadd1ec8220876b9b7ae4df7bc4b9dd1d808261a6b47e9ce5d"; }; buildInputs = with self; [ nose mock pyyaml ]; @@ -15573,7 +15574,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/P/PrettyTable/${name}.tar.bz2"; - sha1 = "ad346a18d92c1d95f2295397c7a8a4f489e48851"; + sha256 = "599bc5b4b9602e28294cf795733c889c26dd934aa7e0ee9cff9b905d4fbad188"; }; buildInputs = [ pkgs.glibcLocales ]; @@ -15729,7 +15730,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/publicsuffix/${name}.tar.gz"; - md5 = "f86babf56f6e58b564d3853adebcf37a"; + sha256 = "f6dfcb8a33fb3ac4f09e644cd26f8af6a09d1a45a019d105c8da58e289ca0096"; }; meta = { @@ -15765,7 +15766,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyacoustid/${name}.tar.gz"; - md5 = "b27c714d530300b917eb869726334226"; + sha256 = "0117039cb116af245e6866e8e8bf3c9c8b2853ad087142bd0c2dfc0acc09d452"; }; propagatedBuildInputs = with self; [ requests2 audioread ]; @@ -15791,7 +15792,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/P/PyAlgoTrade/PyAlgoTrade-0.16.tar.gz"; - md5 = "01d70583ab15eb3bad21027bdeb30ae5"; + sha256 = "a253617254194b91cfebae7bfd184cb109d4e48a8c70051b9560000a2c0f94b3"; }; propagatedBuildInputs = with self; [ numpy scipy pytz ]; @@ -16058,7 +16059,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pybfd/${name}.tar.gz"; - md5 = "79dd6e12c90ad0515d0ad7fb1bd2f571"; + sha256 = "d99b32ad077e704ddddc0b488c83cae851c14919e5cbc51715d00464a1932df4"; }; preConfigure = '' @@ -16078,11 +16079,12 @@ in modules // { pyblock = stdenv.mkDerivation rec { name = "pyblock-${version}"; version = "0.53"; + md5_path = "f6d33a8362dee358517d0a9e2ebdd044"; src = pkgs.fetchurl rec { url = "http://pkgs.fedoraproject.org/repo/pkgs/python-pyblock/" - + "${name}.tar.bz2/${md5}/${name}.tar.bz2"; - md5 = "f6d33a8362dee358517d0a9e2ebdd044"; + + "${name}.tar.bz2/${md5_path}/${name}.tar.bz2"; + sha256 = "f6cef88969300a6564498557eeea1d8da58acceae238077852ff261a2cb1d815"; }; postPatch = '' @@ -16109,7 +16111,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/py-bcrypt/py-bcrypt-${version}.tar.gz"; - md5 = "dd8b367d6b716a2ea2e72392525f4e36"; + sha256 = "5fa13bce551468350d66c4883694850570f3da28d6866bb638ba44fe5eabda78"; }; meta = { @@ -16311,7 +16313,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pydot/${name}.tar.gz"; - md5 = "cd739651ae5e1063a89f7efd5a9ec72b"; + sha256 = "80ea01a7ba75671a3b7890375be0ad8d5321b07bfb6f572192c31409062b59f3"; }; propagatedBuildInputs = with self; [pyparsing pkgs.graphviz]; meta = { @@ -16371,7 +16373,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyenchant/pyenchant-1.6.6.tar.gz"; - md5 = "9f5acfd87d04432bf8df5f9710a17358"; + sha256 = "25c9d2667d512f8fc4410465fdd2e868377ca07eb3d56e2b6e534a86281d64d3"; }; propagatedBuildInputs = [ pkgs.enchant ]; @@ -16512,7 +16514,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pygeoip/pygeoip-0.3.2.tar.gz"; - md5 = "861664f8be3bed44820356539f2ea5b6"; + sha256 = "f22c4e00ddf1213e0fae36dc60b46ee7c25a6339941ec1a975539014c1f9a96d"; }; # requires geoip samples @@ -16840,11 +16842,12 @@ in modules // { pykickstart = buildPythonPackage rec { name = "pykickstart-${version}"; version = "1.99.39"; + md5_path = "d249f60aa89b1b4facd63f776925116d"; src = pkgs.fetchurl rec { url = "http://pkgs.fedoraproject.org/repo/pkgs/pykickstart/" - + "${name}.tar.gz/${md5}/${name}.tar.gz"; - md5 = "d249f60aa89b1b4facd63f776925116d"; + + "${name}.tar.gz/${md5_path}/${name}.tar.gz"; + sha256 = "e0d0f98ac4c5607e6a48d5c1fba2d50cc804de1081043f9da68cbfc69cad957a"; }; postPatch = '' @@ -16910,7 +16913,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyparsing/${name}.tar.gz"; - md5 = "9be0fcdcc595199c646ab317c1d9a709"; + sha256 = "646e14f90b3689b005c19ac9b6b390c9a39bf976481849993e277d7380e6e79f"; }; meta = { @@ -17035,7 +17038,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/P/PyStemmer/${name}.tar.gz"; - md5 = "46ee623eeeba5a7cc0d95cbfa7e18abd"; + sha256 = "d1ac14eb64978c1697fcfba76e3ac7ebe24357c9428e775390f634648947cb91"; }; checkPhase = '' @@ -17056,7 +17059,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/P/Pyro/${name}.tar.gz"; - md5 = "59d4d3f4a8786776c9d7f9051b8f1a69"; + sha256 = "1bed508453ef7a7556b51424a58101af2349b662baab7e7331c5cb85dbe7e578"; }; meta = { @@ -17095,7 +17098,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/P/PyRSS2Gen/${name}.tar.gz"; - md5 = "eae2bc6412c5679c287ecc1a59588f75"; + sha256 = "4929d022713129401160fd47550d5158931e4ea6a7136b5d8dfe3b13ac16f2f0"; }; meta = { @@ -17169,7 +17172,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/python-simple-hipchat/python-simple-hipchat-${version}.zip"; - md5 = "3806b3729a021511bac065360832f197"; + sha256 = "404e5ff7187abb09c2227f22063d06baf0fd525725e9c9ad280176bed1c94a3f"; }; buildInputs = [ pkgs.unzip ]; @@ -17200,7 +17203,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyudev/${name}.tar.gz"; - md5 = "4034de584b6d9efcbfc590a047c63285"; + sha256 = "765d1c14bd9bd031f64e2612225621984cb2bbb8cbc0c03538bcc4c735ff1c95"; }; postPatch = '' @@ -17225,7 +17228,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pynzb/${name}.tar.gz"; - md5 = "63c74a36348ac28aa99732dcb8be8c59"; + sha256 = "0735b3889a1174bbb65418ee503629d3f5e4a63f04b16f46ffba18253ec3ef17"; }; meta = { @@ -17241,7 +17244,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/progressbar/${name}.tar.gz"; - md5 = "8ea4e2c17a8ec9e7d153767c5f2a7b28"; + sha256 = "dfee5201237ca0e942baa4d451fee8bf8a54065a337fabe7378b8585aeda56a3"; }; # invalid command 'test' @@ -17389,7 +17392,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyPdf/${name}.tar.gz"; - md5 = "7a75ef56f227b78ae62d6e38d4b6b1da"; + sha256 = "3aede4c3c9c6ad07c98f059f90db0b09ed383f7c791c46100f649e1cabda0e3b"; }; buildInputs = with self; [ ]; @@ -17514,7 +17517,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyreport/${name}.tar.gz"; - md5 = "3076164a7079891d149a23f9435581db"; + sha256 = "1584607596b7b310bf0b6ce79f424bd44238a017fd870aede11cd6732dbe0d4d"; }; # error: invalid command 'test' @@ -17623,7 +17626,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pysphere.googlecode.com/files/${name}.zip"; - md5 = "c57cba33626ac4b1e3d1974923d59232"; + sha256 = "b3f9ba1f67afb17ac41725b01737cd42e8a39d9e745282dd9b692ae631af0add"; }; disabled = isPy3k; @@ -17741,7 +17744,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/python-wifi/${name}.tar.bz2"; - md5 = "f9d520a8c17b0dfffce95a8a7efba7dd"; + sha256 = "504639e5953eaec0e41758900fbe143d33d82ea86762b19b659a118c77d8403d"; }; meta = { @@ -17914,7 +17917,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyaml/${name}.tar.gz"; - md5 = "e98cf27f50b9ca291ca4937c135db1c9"; + sha256 = "8dfe1b295116115695752acc84d15ecf5c1c469975fbed7672bf41a6bc6d6d51"; }; buildInputs = with self; [ pyyaml ]; @@ -17969,7 +17972,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/r/recaptcha-client/${name}.tar.gz"; - md5 = "74228180f7e1fb76c4d7089160b0d919"; + sha256 = "28c6853c1d13d365b7dc71a6b05e5ffb56471f70a850de318af50d3d7c0dea2f"; }; meta = { @@ -18057,7 +18060,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/r/requests/${name}.tar.gz"; - md5 = "adbd3f18445f7fe5e77f65c502e264fb"; + sha256 = "156bf3ec27ba9ec7e0cf8fbe02808718099d218de403eb64a714d73ba1a29ab1"; }; meta = { @@ -18178,7 +18181,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/q/qserve/${name}.zip"; - md5 = "d481f0dad66a93d0479022fe0487e8ee"; + sha256 = "0b04b2d4d11b464ff1efd42a9ea9f8136187d59f4076f57c9ba95361d41cd7ed"; }; buildInputs = with self; [ ]; @@ -18218,7 +18221,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/q/quantities/quantities-0.10.1.tar.gz"; - md5 = "e924e21c0a5ddc9ebcdacbbe511b8ec7"; + sha256 = "2d27caf31a5e0c37130ac0c14bfa8f9412a5ff1fbf3378a1d6085594776c4315"; }; meta = with pkgs.stdenv.lib; { @@ -18233,7 +18236,7 @@ in modules // { src = pkgs.fetchurl { url = "https://qutip.googlecode.com/files/QuTiP-2.2.0.tar.gz"; - sha1 = "76ba4991322a991d580e78a197adc80d58bd5fb3"; + sha256 = "a26a639d74b2754b3a1e329d91300e587e8c399d8a81d8f18a4a74c6d6f02ba3"; }; propagatedBuildInputs = with self; [ numpy scipy matplotlib pyqt4 @@ -18574,7 +18577,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/R/RoboMachine/RoboMachine-0.6.tar.gz"; - md5 = "4e95eaa43afda0f363c78a88e9da7159"; + sha256 = "6c9a9bae7bffa272b2a09b05df06c29a3a776542c70cae8041a8975a061d2e54"; }; propagatedBuildInputs = with self; [ pyparsing argparse robotframework ]; @@ -18776,7 +18779,7 @@ in modules // { src = pkgs.fetchurl { url = http://pypi.python.org/packages/source/R/Routes/Routes-1.12.3.tar.gz; - md5 = "9740ff424ff6b841632c784a38fb2be3"; + sha256 = "eacc0dfb7c883374e698cebaa01a740d8c78d364b6e7f3df0312de042f77aa36"; }; propagatedBuildInputs = with self; [ paste webtest ]; @@ -18809,7 +18812,7 @@ in modules // { disabled = isPyPy; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/r/rpy2/${name}.tar.gz"; - md5 = "a36e758b633ce6aec6a5f450bfee980f"; + sha256 = "d0d584c435b5ed376925a95a4525dbe87de7fa9260117e9f208029e0c919ad06"; }; buildInputs = with pkgs; [ readline R pcre lzma bzip2 zlib icu ]; propagatedBuildInputs = [ self.singledispatch ]; @@ -18827,7 +18830,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/r/rpyc/${name}.tar.gz"; - md5 = "6931cb92c41f547591b525142ccaeef1"; + sha256 = "43fa845314f0bf442f5f5fab15bb1d1b5fe2011a8fc603f92d8022575cef8b4b"; }; propagatedBuildInputs = with self; [ nose plumbum ]; @@ -18868,7 +18871,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/S/SquareMap/SquareMap-1.0.4.tar.gz"; - md5 = "e36a453baddb97c19af6f79d5ba51f38"; + sha256 = "feab6cb3b222993df68440e34825d8a16de2c74fdb290ae3974c86b1d5f3eef8"; }; meta = { @@ -18935,7 +18938,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/R/RunSnakeRun/RunSnakeRun-2.0.4.tar.gz"; - md5 = "3220b5b89994baee70b1c24d7e42a306"; + sha256 = "61d03a13f1dcb3c1829f5a146da1fe0cc0e27947558a51e848b6d469902815ef"; }; propagatedBuildInputs = [ self.squaremap self.wxPython28 ]; @@ -19141,7 +19144,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/scripttest/scripttest-${version}.tar.gz"; - md5 = "1d1c5117ccfc7b5961cae6c1020c0848"; + sha256 = "951cfc25219b0cd003493a565f2e621fd791beaae9f9a3bdd7024d8626419c38"; }; buildInputs = with self; [ pytest ]; @@ -19159,7 +19162,7 @@ in modules // { name = "seaborn-0.6.0"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/seaborn/${name}.tar.gz"; - md5 = "bc518f1f45dadb9deb2bb57ca3af3cad"; + sha256 = "e078399b56ed0d53a4aa8bd4d6bd4a9a9deebc0b4acad259d0ef81830affdb68"; }; buildInputs = with self; [ nose ]; @@ -19261,7 +19264,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/setuptools_trial/setuptools_trial-0.5.12.tar.gz"; - md5 = "f16f4237c9ee483a0cd13208849d96ad"; + sha256 = "9cc4ca5fd432944eb95e193f28b5a602e8b07201fea4d7077c0976a40f073432"; }; propagatedBuildInputs = with self; [ twisted ]; @@ -19369,7 +19372,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/simpleldap/simpleldap-${version}.tar.gz"; - md5 = "f8a95b24895596338032ca4b4450f1de"; + sha256 = "a5916680a7fe1b2c5d74dc76351be2941d03b7b94a50d8520280e3f588a84e61"; }; meta = { @@ -19468,7 +19471,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/sqlite3dbm/${name}.tar.gz"; - md5 = "fc2f8fb09a4bbc0260b97e835b369184"; + sha256 = "4721607e0b817b89efdba7e79cab881a03164b94777f4cf796ad5dd59a7612c5"; }; buildInputs = with self; [ modules.sqlite3 ]; @@ -19485,7 +19488,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pgpdump/pgpdump-1.5.tar.gz"; - md5 = "040a451c8e63de3e61fc5b66efa7fca5"; + sha256 = "1c4700857bf7ba735b08cfe4101aa3a4f5fd839657af249c17b2697c20829668"; }; meta = { @@ -19641,7 +19644,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pytidylib/pytidylib-${version}.tar.gz"; - md5 = "2a28267370c9409b592cdb786649cb25"; + sha256 = "0af07bd8ebd256af70ca925ada9337faf16d85b3072624f975136a5134150ab6"; }; # Judging from SyntaxError in tests @@ -19691,7 +19694,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/timelib/${name}.zip"; - md5 = "400e316f81001ec0842fa9b2cef5ade9"; + sha256 = "49142233bdb5971d64a41e05a1f80a408a02be0dc7d9f8c99e7bdd0613ba81cb"; }; buildInputs = with self; [ ]; @@ -19745,7 +19748,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pilkit/${name}.tar.gz"; - md5 = "659dd67440f4b576889f2cd350f43d7b"; + sha256 = "e00585f5466654ea2cdbf7decef9862cb00e16fd363017fa7ef6623a16b0d2c7"; }; preConfigure = '' @@ -19851,7 +19854,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/semantic/semantic-1.0.3.tar.gz"; - md5 = "78a150190e3e7d0f6f357b4c828e5f0d"; + sha256 = "bbc47dad03dddb1ba5895612fdfa1e43cfb3c497534976cebacd4f3684b505b4"; }; # strange setuptools error (can not import semantic.test) @@ -19888,7 +19891,7 @@ in modules // { name = "semantic_version-2.4.2"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/semantic_version/${name}.tar.gz"; - md5 = "fd7d5ade76e78d8540b9a4044496a57c"; + sha256 = "7e8b7fa74a3bc9b6e90b15b83b9bc2377c78eaeae3447516425f475d5d6932d2"; }; meta = { @@ -19902,7 +19905,7 @@ in modules // { name = "sexpdata-0.0.2"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/sexpdata/${name}.tar.gz"; - md5 = "efc44265bc27cb3d6ffed4fbf5733fc1"; + sha256 = "eb696bc66b35def5fb356de09481447dff4e9a3ed926823134e1d0f35eade428"; }; doCheck = false; @@ -19919,7 +19922,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/sh/${name}.tar.gz"; - md5 = "7af8df6c92d29ff927b6db0146bddec3"; + sha256 = "590fb9b84abf8b1f560df92d73d87965f1e85c6b8330f8a5f6b336b36f0559a4"; }; doCheck = false; @@ -20004,7 +20007,7 @@ in modules // { src = pkgs.fetchurl { url = https://pypi.python.org/packages/source/s/smartdc/smartdc-0.1.12.tar.gz; - md5 = "b960f61facafc879142b699050f6d8b4"; + sha256 = "36206f4fddecae080c66faf756712537e650936b879abb23a8c428731d2415fe"; }; propagatedBuildInputs = with self; [ requests http_signature ]; @@ -20054,7 +20057,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/supervisor/${name}.tar.gz"; - md5 = "8c9714feaa63902f03871317e3ebf62e"; + sha256 = "e3c3b35804c24b6325b5ba462553ebee80d5f4d1766274737b5c532cd4a11d59"; }; buildInputs = with self; [ mock ]; @@ -20075,7 +20078,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/subprocess32/${name}.tar.gz"; - md5 = "754c5ab9f533e764f931136974b618f1"; + sha256 = "ddf4d46ed2be2c7e7372dfd00c464cabb6b3e29ca4113d85e26f82b3d2c220f6"; }; buildInputs = [ pkgs.bash ]; @@ -20169,7 +20172,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/sphinxcontrib-httpdomain/${name}.tar.gz"; - md5 = "ad7ea42bd4c7c0ee57b1cb25bbf24aab"; + sha256 = "ba8fbe82eddc96cfa9d7b975b0422801a14ace9d7e051b8b2c725b92ea6137b5"; }; propagatedBuildInputs = with self; [sphinx]; @@ -20189,7 +20192,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/sphinxcontrib-plantuml/${name}.tar.gz"; - md5 = "4a8840fe3475a19c2af3fa877ab9d296"; + sha256 = "654a1c206156634398ffdc87c481c67777610a9311c6677d280963cf28813400"; }; propagatedBuildInputs = with self; [sphinx plantuml]; @@ -20209,7 +20212,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/S/Sphinx-PyPI-upload/${name}.tar.gz"; - md5 = "b9f1df5c8443197e4d49abbba1cfddc4"; + sha256 = "5f919a47ce7a7e6028dba809de81ae1297ac192347cf6fc54efca919d4865159"; }; meta = { @@ -20266,7 +20269,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/S/SQLAlchemy/${name}.tar.gz"; - md5 = "4f3377306309e46739696721b1785335"; + sha256 = "9edb47d137db42d57fd26673d6c841e189b1aeb9b566cca908962fcc8448c0bc"; }; preConfigure = optionalString isPy3k '' @@ -20458,7 +20461,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/python-statsd/${name}.tar.gz"; - md5 = "3a0c71a160b504b843703c3041c7d7fb"; + sha256 = "3d2fc153e0d894aa9983531ef47d20d75bd4ee9fd0e46a9d82f452dde58a0a71"; }; buildInputs = with self; [ mock nose coverage ]; @@ -20477,7 +20480,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/stompclient/${name}.tar.gz"; - md5 = "af0a314b6106dd80da24a918c24a1eab"; + sha256 = "95a4e98dd0bba348714439ea11a25ee8a74acb8953f95a683924b5bf2a527e4e"; }; buildInputs = with self; [ mock nose ]; @@ -20832,7 +20835,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/T/Tempita/Tempita-${version}.tar.gz"; - md5 = "4c2f17bb9d481821c41b6fbee904cea1"; + sha256 = "cacecf0baa674d356641f1d406b8bff1d756d739c46b869a54de515d08e6fc9c"; }; disabled = isPy3k; @@ -21123,7 +21126,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/tmdb3/${name}.zip"; - md5 = "cd259427454472164c9a2479504c9cbb"; + sha256 = "64a6c3f1a60a9d8bf18f96a5403f3735b334040345ac3646064931c209720972"; }; meta = { @@ -21235,7 +21238,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/t/traits/${name}.tar.gz"; - md5 = "3ad558eebaedc63c29c80183c0371d2f"; + sha256 = "5293a8786030b0b243e059f52004355b6939d7c0f1be2eb5a605b63cca484c84"; }; # Use pytest because its easier to discover tests @@ -21266,7 +21269,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/t/transaction/${name}.tar.gz"; - md5 = "b4ca5983c9e3a0808ff5ff7648092c76"; + sha256 = "1b2304a886a85ad014f73d93346c14350fc214ae22a4f565f42f6761cfb9ecc5"; }; propagatedBuildInputs = with self; [ zope_interface ]; @@ -21284,7 +21287,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/transmissionrpc/${name}.tar.gz"; - md5 = "b2f918593e509f0e66e2e643291b436d"; + sha256 = "ec43b460f9fde2faedbfa6d663ef495b3fd69df855a135eebe8f8a741c0dde60"; }; propagatedBuildInputs = with self; [ six ]; @@ -21302,7 +21305,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/t/tl.eggdeps/tl.${name}.tar.gz"; - md5 = "2472204a2abd0d8cd4d11ff0fbf36ae7"; + sha256 = "a99de5e4652865224daab09b2e2574a4f7c1d0d9a267048f9836aa914a2caf3a"; }; # tests fail, see http://hydra.nixos.org/build/4316603/log/raw @@ -21478,7 +21481,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/tzlocal/tzlocal-1.1.1.zip"; - md5 = "56c2a04501b98f2a1188d003fd6d3dba"; + sha256 = "696bfd8d7c888de039af6c6fdf86fd52e32508277d89c75d200eb2c150487ed4"; }; # test fail (timezone test fail) @@ -21659,7 +21662,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/u/update_checker/${name}.tar.gz"; - md5 = "1daa54bac316be6624d7ee77373144bb"; + sha256 = "681bc7c26cffd1564eb6f0f3170d975a31c2a9f2224a32f80fe954232b86f173"; }; propagatedBuildInputs = with self; [ requests2 ]; @@ -21704,7 +21707,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/u/urwid/${name}.tar.gz"; - md5 = "a989acd54f4ff1a554add464803a9175"; + sha256 = "29f04fad3bf0a79c5491f7ebec2d50fa086e9d16359896c9204c6a92bc07aba2"; }; meta = { @@ -21764,7 +21767,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/P/PyVirtualDisplay/${name}.tar.gz"; - md5 = "90b65fe15b81788c2e208d124e3a3c14"; + sha256 = "aa6aef08995e14c20cc670d933bfa6e70d736d0b555af309b2e989e2faa9ee53"; }; meta = { @@ -21805,7 +21808,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/v/virtualenv-clone/${name}.tar.gz"; - md5 = "23e71d255058b2543d839af7f4ce3208"; + sha256 = "7087ba4eb48acfd5209a3fd03e15d072f28742619127c98333057e32748d91c4"; }; buildInputs = with self; [pytest]; @@ -21916,7 +21919,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/w/waitress/${name}.tar.gz"; - md5 = "da3f2e62b3676be5dd630703a68e2a04"; + sha256 = "826527dc9d334ed4ed76cdae672fdcbbccf614186657db71679ab58df869458a"; }; doCheck = false; @@ -21952,7 +21955,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/w/webcolors/${name}.tar.gz"; - md5 = "35de9d785b5c04a9cc66a2eae0519254"; + sha256 = "304fc95dab2848c7bf64f378356766e692c2f8b4a8b15fa3509544e6412936e8"; }; # error: invalid command 'test' @@ -21972,7 +21975,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/W/Wand/${name}.tar.gz"; - md5 = "10bab03bf86ce8da2a95a3b15197ae2e"; + sha256 = "31e2186ce8d1da0d2ea84d1428fc4d441c2e9d0e25156cc746b35b781026bcff"; }; buildInputs = with self; [ pkgs.imagemagick pytest psutil memory_profiler pytest_xdist ]; @@ -22018,7 +22021,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/w/web.py/web.py-${version}.tar.gz"; - md5 = "93375e3f03e74d6bf5c5096a4962a8db"; + sha256 = "748c7e99ad9e36f62ea19f7965eb7dd7860b530e8f563ed60ce3e53e7409a550"; }; meta = { @@ -22076,7 +22079,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/W/WebTest/WebTest-${version}.zip"; - md5 = "49314bdba23f4d0bd807facb2a6d3f90"; + sha256 = "c320adc2cd862ea71ca9e2012e6157eb12f5f8d1632d1541f2eabf984aaa3ecc"; }; preConfigure = '' @@ -22153,7 +22156,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/w/willie/willie-5.2.0.tar.gz"; - md5 = "a19f8c34e10e3c2d0d915c894224e521"; + sha256 = "2da2e91b65c471b4c8e5e5e11471b25887635258d24aaf76b5354147b3ab577d"; }; propagatedBuildInputs = with self; [ feedparser pytz lxml praw pyenchant pygeoip backports_ssl_match_hostname_3_4_0_2 ]; @@ -22343,7 +22346,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/Z/ZConfig/ZConfig-${version}.tar.gz"; - md5 = "60a107c5857c3877368dfe5930559804"; + sha256 = "6577da957511d8c2f805fefd2e31cacc4117bb5c54aec03ad8ce374020c021f3"; }; propagatedBuildInputs = with self; [ zope_testrunner ]; @@ -22363,7 +22366,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zc.lockfile/${name}.tar.gz"; - md5 = "f099d4cf2583a0c7bea0146a44dc4d59"; + sha256 = "96bb2aa0438f3e29a31e4702316f832ec1482837daef729a92e28c202d8fba5c"; }; meta = { @@ -22381,7 +22384,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zdaemon/${name}.tar.gz"; - md5 = "4056e2ea35855695ed15389d9c168b92"; + sha256 = "82d7eaa4d831ff1ecdcffcb274f3457e095c0cc86e630bc72009a863c341ab9f"; }; propagatedBuildInputs = [ self.zconfig ]; @@ -22435,7 +22438,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/Z/ZODB3/ZODB3-${version}.tar.gz"; - md5 = "21975c1609296e7834e8cf4025af3039"; + sha256 = "b5767028e732c619f45c27189dd001e14ec155d7984807991fce751b35b4fcb0"; }; propagatedBuildInputs = with self; [ manuel transaction zc_lockfile zconfig zdaemon zope_interface zope_event BTrees persistent ZEO ]; @@ -22456,7 +22459,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/Z/ZODB/ZODB-${version}.tar.gz"; - md5 = "092d787524b095164231742c96b32f50"; + sha256 = "c5d8ffcca37ab4d0a9bfffead6228d58c00cf1c78135abc98a8dbf05b8c8fb58"; }; propagatedBuildInputs = with self; [ manuel transaction zc_lockfile zconfig zdaemon zope_interface persistent BTrees ] @@ -22481,7 +22484,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/z/zodbpickle/${name}.tar.gz"; - md5 = "d401bd89f99ec8d56c22493e6f8c0443"; + sha256 = "f65c00fbc13523fced63de6cc11747aa1a6343aeb2895c89838ed55a5ab12cca"; }; # fails.. @@ -22519,7 +22522,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/persistent/${name}.tar.gz"; - md5 = "2942f1ca7764b1bef8d48fa0d9a236b7"; + sha256 = "678902217c5370d33694c6dc95b89e1e6284b4dc41f04c056326194a3f6f3e22"; }; meta = { @@ -22533,7 +22536,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/x/xdot/xdot-0.6.tar.gz"; - md5 = "a8e5fc5208657b03ad1bd4c46de75724"; + sha256 = "c71d82bad0fec696af36af788c2a1dbb5d9975bd70bfbdc14bda15b5c7319e6c"; }; propagatedBuildInputs = with self; [ pygtk pygobject pkgs.graphviz ]; @@ -22550,7 +22553,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.broken/${name}.zip"; - md5 = "eff24d7918099a3e899ee63a9c31bee6"; + sha256 = "b9b8776002da4f7b6b12dfcce77eb642ae62b39586dbf60e1d9bdc992c9f2999"; }; buildInputs = with self; [ zope_interface ]; @@ -22589,7 +22592,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/z/zope.browserresource/zope.browserresource-4.0.1.zip"; - md5 = "81bbe92c1f04725561470f89d73222c5"; + sha256 = "d580184562e7098950ae377b5b37fbb88becdaa2256ac2a6760b69a3e86a99b2"; }; }; @@ -22638,7 +22641,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.container/${name}.tar.gz"; - md5 = "b24d2303ece65a2d9ce23a5bd074c335"; + sha256 = "5c04e61b52fd04d8b7103476532f557c2278c86281aae30d44f88a5fbe888940"; }; # a test is failing @@ -22661,7 +22664,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.contenttype/${name}.tar.gz"; - md5 = "171be44753e86742da8c81b3ad008ce0"; + sha256 = "9decc7531ad6925057f1a667ac0ef9d658577a92b0b48dafa7daa97b78a02bbb"; }; meta = { @@ -22675,7 +22678,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.dottedname/${name}.tar.gz"; - md5 = "62d639f75b31d2d864fe5982cb23959c"; + sha256 = "331d801d98e539fa6c5d50c3835ecc144c429667f483281505de53fc771e6bf5"; }; meta = { maintainers = with maintainers; [ goibhniu ]; @@ -22729,7 +22732,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.filerepresentation/${name}.tar.gz"; - md5 = "4a7a434094f4bfa99a7f22e75966c359"; + sha256 = "d775ebba4aff7687e0381f050ebda4e48ce50900c1438f3f7e901220634ed3e0"; }; propagatedBuildInputs = with self; [ zope_schema ]; @@ -22833,7 +22836,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.publisher/${name}.tar.gz"; - md5 = "495131970cc7cb14de8e517fb3857ade"; + sha256 = "d994d8eddfba504841492115032a9a7d86b1713ebc96d0ca16fbc6ee93168ba4"; }; propagatedBuildInputs = with self; [ @@ -22867,7 +22870,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.security/${name}.tar.gz"; - md5 = "27d1f2873a0ee9c1f485f7b8f22d8e1c"; + sha256 = "8da30b03d5491464d59397e03b88192f31f587325ee6c6eb1ca596a1e487e2ec"; }; propagatedBuildInputs = with self; [ @@ -22904,7 +22907,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.sqlalchemy/${name}.zip"; - md5 = "0a468bd5b8884cd29fb71acbf7eaa31e"; + sha256 = "e196d1b2cf796f46e2c6127717e359ddd35d8d084a8ba059f0f0fabff245b9e1"; }; buildInputs = with self; [ zope_testing zope_interface ]; @@ -22964,7 +22967,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.traversing/${name}.zip"; - md5 = "5cc40c552f953939f7c597ebbedd586f"; + sha256 = "79d38b92ec1d9a2467966ee954b792d83ac66f22e45e928113d4b5dc1f5e74eb"; }; propagatedBuildInputs = with self; [ zope_location zope_security zope_publisher transaction zope_tales ]; @@ -23298,7 +23301,7 @@ in modules // { name = "tissue-0.9.2"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/t/tissue/${name}.tar.gz"; - md5 = "87dbcdafff41bfa1b424413f79aa9153"; + sha256 = "7e34726c3ec8fae358a7faf62de172db15716f5582e5192a109e33348bd76c2e"; }; buildInputs = with self; [ nose ]; @@ -23337,7 +23340,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/t/translationstring/${name}.tar.gz"; - md5 = "a4b62e0f3c189c783a1685b3027f7c90"; + sha256 = "4ee44cfa58c52ade8910ea0ebc3d2d84bdcad9fa0422405b1801ec9b9a65b72d"; }; meta = { @@ -23397,7 +23400,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/w/websocket-client/${name}.tar.gz"; - md5 = "b07a897511a3c585251fe2ea85a9d9d9"; + sha256 = "cb3ab95617ed2098d24723e3ad04ed06c4fde661400b96daa1859af965bfe040"; }; propagatedBuildInputs = with self; [ six backports_ssl_match_hostname_3_4_0_2 unittest2 argparse ]; @@ -23415,7 +23418,7 @@ in modules // { src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/W/WebHelpers/${name}.tar.gz"; - md5 = "32749ffadfc40fea51075a7def32588b"; + sha256 = "ea86f284e929366b77424ba9a89341f43ae8dee3cbeb8702f73bcf86058aa583"; }; buildInputs = with self; [ routes markupsafe webob nose ]; @@ -23453,7 +23456,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/w/whisper/${name}.tar.gz"; - md5 = "5fac757cc4822ab0678dbe0d781d904e"; + sha256 = "0eca66449d6ceb29e2ab5457b01618e0fe525710dd130a286a18282d849ae5b2"; }; # error: invalid command 'test' @@ -23492,7 +23495,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/u/ujson/${name}.zip"; - md5 = "8148a2493fff78940feab1e11dc0a893"; + sha256 = "68cf825f227c82e1ac61e423cfcad923ff734c27b5bdd7174495d162c42c602b"; }; meta = { @@ -23529,7 +23532,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyusb/${name}.tar.gz"; - md5 = "bc12e83ff3ef1045d4306d13a9955fc1"; + sha256 = "14ec66077bdcd6f1aa9e892a0a35a54bb3c1ec56aa740ead64349c18f0186d19"; }; # Fix the USB backend library lookup @@ -23641,7 +23644,7 @@ in modules // { src = pkgs.fetchurl rec { url = "https://pypi.python.org/packages/source/g/graphite-web/${name}.tar.gz"; - md5 = "8edbb61f1ffe11c181bd2cb9ec977c72"; + sha256 = "472a4403fd5b5364939aee10e78f171b1489e5f6bfe6f150ed9cae8476410114"; }; propagatedBuildInputs = with self; [ django_1_5 django_tagging modules.sqlite3 whisper pkgs.pycairo ldap memcached ]; @@ -23712,7 +23715,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/g/graphite_beacon/${name}.tar.gz"; - md5 = "3d7b2bf8a41b6c3ec5ba2c14db321096"; + sha256 = "ebde1aba8030c8aeffaeea39f9d44a2be464b198583ad4a390a2bff5f4172543"; }; propagatedBuildInputs = [ self.tornado ]; @@ -24044,7 +24047,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pushbullet.py/pushbullet.py-0.10.0.tar.gz"; - md5 = "24db6917a12e1c9b3fecca102615376b"; + sha256 = "537d3132e1dbc91e31ade4cccf4c7def6f9d48e904a67f341d35b8a54a9be74d"; }; propagatedBuildInputs = with self; [requests websocket_client python_magic ]; @@ -24595,7 +24598,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/thumbor-pexif/${name}.tar.gz"; - md5 = "fb4cdb60f4a0bead5193fb483ccd3430"; + sha256 = "715cd24760c7c28d6270c79c9e29b55b8d952a24e0e56833d827c2c62451bc3c"; }; meta = { @@ -24660,7 +24663,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/datadiff/datadiff-1.1.6.zip"; - md5 = "c34a690db75eead148aa5fa89e575d1e"; + sha256 = "f1402701063998f6a70609789aae8dc05703f3ad0a34882f6199653654c55543"; }; buildInputs = with self; [ nose ]; @@ -24677,7 +24680,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/termcolor/termcolor-1.1.0.tar.gz"; - md5 = "043e89644f8909d462fbbfa511c768df"; + sha256 = "1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b"; }; meta = { @@ -24760,7 +24763,7 @@ in modules // { name = "ofxclient-1.3.8"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/o/ofxclient/${name}.tar.gz"; - md5 = "a632e157f9c98524bf9302a0c6788174"; + sha256 = "99ab03bffdb30d9ec98724898f428f8e73129483417d5892799a0f0d2249f233"; }; # ImportError: No module named tests @@ -24773,7 +24776,7 @@ in modules // { name = "ofxhome-0.3.1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/o/ofxhome/${name}.tar.gz"; - md5 = "98e8ef92ccd443ab750fcb0741efe816"; + sha256 = "0000db437fd1a8c7c65cea5d88ce9d3b54642a1f4844dde04f860e29330ac68d"; }; buildInputs = with self; [ nose ]; @@ -24792,7 +24795,7 @@ in modules // { name = "ofxparse-0.14"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/o/ofxparse/${name}.tar.gz"; - md5 = "4ad8a34e008d4893a61eadd593176f0f"; + sha256 = "d8c486126a94d912442d040121db44fbc4a646ea70fa935df33b5b4dbfbbe42a"; }; propagatedBuildInputs = with self; [ six beautifulsoup4 ]; @@ -24808,7 +24811,7 @@ in modules // { name = "ofxtools-0.3.8"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/o/ofxtools/${name}.tar.gz"; - md5 = "4ac3c3f5223816bc2c48dd818fd434d8"; + sha256 = "88f289a60f4312a1599c38a8fb3216e2b46d10cc34476f9a16a33ac8aac7ec35"; }; meta = { homepage = "https://github.com/csingley/ofxtools"; @@ -24859,7 +24862,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/dicttoxml/dicttoxml-1.6.4.tar.gz"; - md5 = "154b47d2b7405280b871a81502a05657"; + sha256 = "5f29e95fec56680823dc41911c04c2af08727ee53c1b60e83c489212bab71161"; }; propagatedBuildInputs = with self; [ ]; @@ -24988,7 +24991,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/trollius/${name}.tar.gz"; - md5 = "3631a464d49d0cbfd30ab2918ef2b783"; + sha256 = "8884cae4ec6a2d593abcffd5e700626ad4618f42b11beb2b75998f2e8247de76"; }; buildInputs = with self; [ mock ] @@ -25046,7 +25049,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/n/neovim/${name}.tar.gz"; - md5 = "8b723417d3bf15bab0b245d080d45298"; + sha256 = "93f475d5583a053af919ba0729b32b3fefef1dbde4717b5657d806bdc69b76b3"; }; propagatedBuildInputs = with self; [ msgpack ] @@ -25094,7 +25097,7 @@ in modules // { name = "ghp-import-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/g/ghp-import/${name}.tar.gz"; - md5 = "99e018372990c03ab355aa62c34965c5"; + sha256 = "6058810e1c46dd3b5b1eee87e203bdfbd566e10cfc77566edda7aa4dbf6a3053"; }; disabled = isPyPy; buildInputs = [ pkgs.glibcLocales ]; @@ -25113,7 +25116,7 @@ in modules // { name = "typogrify-2.0.7"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/typogrify/${name}.tar.gz"; - md5 = "63f38f80531996f187d2894cc497ba08"; + sha256 = "8be4668cda434163ce229d87ca273a11922cb1614cb359970b7dc96eed13cb38"; }; disabled = isPyPy; # Wants to set up Django @@ -25204,7 +25207,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/dot2tex/dot2tex-2.9.0.tar.gz"; - md5 = "2dbaeac905424d0410751235bde4b8b2"; + sha256 = "7d3e54add7dccdaeb6cc9e61ceaf7b587914cf8ebd6821cfea008acdc1e50d4a"; }; propagatedBuildInputs = with self; [ @@ -25291,7 +25294,7 @@ in modules // { src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/x/xcffib/${name}.tar.gz"; - md5 = "fa13f3fee67c83016a1242982a7c8bda"; + sha256 = "a84eecd5a1bb7570e26c83aca87a2016578ca4e353e1fa56189e95bdef063e6a"; }; patchPhase = '' @@ -25563,7 +25566,7 @@ in modules // { version = "0.7.2"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/x/xlsx2csv/${name}.tar.gz"; - md5 = "eea39d8ab08ff4503bb145171d0a46f6"; + sha256 = "7c6c8fa6c2774224d03a6a96049e116822484dccfa3634893397212ebcd23866"; }; meta = { homepage = https://github.com/bitprophet/alabaster; From e079de30ad4b3fd0a530e96171293f7e423dcad3 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Fri, 11 Mar 2016 15:42:37 -0600 Subject: [PATCH 0237/1059] nixpart: pykickstart, pyblock: upgrade to sha256 --- pkgs/tools/filesystems/nixpart/0.4/pyblock.nix | 5 +++-- pkgs/tools/filesystems/nixpart/0.4/pykickstart.nix | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/filesystems/nixpart/0.4/pyblock.nix b/pkgs/tools/filesystems/nixpart/0.4/pyblock.nix index 2ce126d7169..3ed145c82f2 100644 --- a/pkgs/tools/filesystems/nixpart/0.4/pyblock.nix +++ b/pkgs/tools/filesystems/nixpart/0.4/pyblock.nix @@ -3,11 +3,12 @@ stdenv.mkDerivation rec { name = "pyblock-${version}"; version = "0.53"; + md5_path = "f6d33a8362dee358517d0a9e2ebdd044"; src = fetchurl rec { url = "http://pkgs.fedoraproject.org/repo/pkgs/python-pyblock/" - + "${name}.tar.bz2/${md5}/${name}.tar.bz2"; - md5 = "f6d33a8362dee358517d0a9e2ebdd044"; + + "${name}.tar.bz2/${md5_path}/${name}.tar.bz2"; + sha256 = "f6cef88969300a6564498557eeea1d8da58acceae238077852ff261a2cb1d815"; }; postPatch = '' diff --git a/pkgs/tools/filesystems/nixpart/0.4/pykickstart.nix b/pkgs/tools/filesystems/nixpart/0.4/pykickstart.nix index 86479126d39..f13ad14aded 100644 --- a/pkgs/tools/filesystems/nixpart/0.4/pykickstart.nix +++ b/pkgs/tools/filesystems/nixpart/0.4/pykickstart.nix @@ -3,11 +3,12 @@ buildPythonApplication rec { name = "pykickstart-${version}"; version = "1.99.39"; + md5_path = "d249f60aa89b1b4facd63f776925116d"; src = fetchurl rec { url = "http://pkgs.fedoraproject.org/repo/pkgs/pykickstart/" - + "${name}.tar.gz/${md5}/${name}.tar.gz"; - md5 = "d249f60aa89b1b4facd63f776925116d"; + + "${name}.tar.gz/${md5_path}/${name}.tar.gz"; + sha256 = "e0d0f98ac4c5607e6a48d5c1fba2d50cc804de1081043f9da68cbfc69cad957a"; }; postPatch = '' From 1b556f9f461553117fa408e3b15dfe1856b917b7 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Fri, 11 Mar 2016 15:44:27 -0600 Subject: [PATCH 0238/1059] docbook: convert md5 to sha256 --- pkgs/data/sgml+xml/schemas/xml-dtd/docbook/4.2.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/data/sgml+xml/schemas/xml-dtd/docbook/4.2.nix b/pkgs/data/sgml+xml/schemas/xml-dtd/docbook/4.2.nix index 7071d4a471f..3875362dcb3 100644 --- a/pkgs/data/sgml+xml/schemas/xml-dtd/docbook/4.2.nix +++ b/pkgs/data/sgml+xml/schemas/xml-dtd/docbook/4.2.nix @@ -5,7 +5,7 @@ import ./generic.nix { name = "docbook-xml-4.2"; src = fetchurl { url = http://www.docbook.org/xml/4.2/docbook-xml-4.2.zip; - md5 = "73fe50dfe74ca631c1602f558ed8961f"; + sha256 = "acc4601e4f97a196076b7e64b368d9248b07c7abf26b34a02cca40eeebe60fa2"; }; meta = { branch = "4.2"; From 8f6be38247578cba40c596a838f7b8cf12d53153 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Fri, 11 Mar 2016 15:44:38 -0600 Subject: [PATCH 0239/1059] giflib: convert md5 to sha256 --- pkgs/development/libraries/giflib/libungif.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/giflib/libungif.nix b/pkgs/development/libraries/giflib/libungif.nix index f3302f8f333..ca2d0945722 100644 --- a/pkgs/development/libraries/giflib/libungif.nix +++ b/pkgs/development/libraries/giflib/libungif.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation { name = "libungif-4.1.4"; src = fetchurl { url = mirror://sourceforge/giflib/libungif-4.1.4.tar.gz; - md5 = "efdfcf8e32e35740288a8c5625a70ccb"; + sha256 = "5e65e1e5deacd0cde489900dbf54c6c2ee2ebc818199e720dbad685d87abda3d"; }; } From bdb1e5c73fdc8348ee6caafdd9505825960b28e2 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Fri, 11 Mar 2016 12:39:42 -0600 Subject: [PATCH 0240/1059] svn: convert sha1 to sha256 --- .../version-management/subversion/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/version-management/subversion/default.nix b/pkgs/applications/version-management/subversion/default.nix index 219dd0babb7..bb7ee259ee0 100644 --- a/pkgs/applications/version-management/subversion/default.nix +++ b/pkgs/applications/version-management/subversion/default.nix @@ -17,13 +17,13 @@ assert javahlBindings -> jdk != null && perl != null; let - common = { version, sha1 }: stdenv.mkDerivation (rec { + common = { version, sha256 }: stdenv.mkDerivation (rec { inherit version; name = "subversion-${version}"; src = fetchurl { url = "mirror://apache/subversion/${name}.tar.bz2"; - inherit sha1; + inherit sha256; }; buildInputs = [ zlib apr aprutil sqlite ] @@ -89,12 +89,12 @@ in { subversion18 = common { version = "1.8.15"; - sha1 = "680acf88f0db978fbbeac89ed63776d805b918ef"; + sha256 = "8bbf6bb125003d88ee1c22935a36b7b1ab7d957e0c8b5fbfe5cb6310b6e86ae0"; }; subversion19 = common { version = "1.9.3"; - sha1 = "27e8df191c92095f48314a415194ec37c682cbcf"; + sha256 = "8bbf6bb125003d88ee1c22935a36b7b1ab7d957e0c8b5fbfe5cb6310b6e86ae0"; }; } From b2b8c1345a22388ce105cfa246b9c5d348ce5f7b Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Fri, 11 Mar 2016 12:58:21 -0600 Subject: [PATCH 0241/1059] tornadokick: Removed, missing upstream. --- pkgs/top-level/python-packages.nix | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index aa836eee786..1263e4adef9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -23096,23 +23096,6 @@ in modules // { propagatedBuildInputs = with self; [ requests webob ]; }; - tornadokick = buildPythonPackage rec { - name = "tornadokick-0.2.1"; - - propagatedBuildInputs = with self; [ tornado ]; - - src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/tornadokick/${name}.tar.gz"; - md5 = "95ee5a295ce3f361c6f843c4f39cbb8c"; - }; - - meta = { - description = "A Toolkit for the Tornado Web Framework"; - homepage = http://github.com/multoncore/tornadokick; - license = licenses.asl20; - }; - }; - tunigo = buildPythonPackage rec { name = "tunigo-${version}"; version = "0.1.3"; From 6e8db533ecbf6a615438ea0fca366bbbbe7b1611 Mon Sep 17 00:00:00 2001 From: Cole Mickens Date: Fri, 11 Mar 2016 15:38:07 -0800 Subject: [PATCH 0242/1059] azure-cli: 0.9.15 -> 0.9.17 --- .../azure-cli/node-packages.nix | 928 ++++++++---------- 1 file changed, 400 insertions(+), 528 deletions(-) diff --git a/pkgs/tools/virtualization/azure-cli/node-packages.nix b/pkgs/tools/virtualization/azure-cli/node-packages.nix index 2cf7380caee..84379ae4c4a 100644 --- a/pkgs/tools/virtualization/azure-cli/node-packages.nix +++ b/pkgs/tools/virtualization/azure-cli/node-packages.nix @@ -14,7 +14,7 @@ }; deps = { "date-utils-1.2.18" = self.by-version."date-utils"."1.2.18"; - "jws-3.1.1" = self.by-version."jws"."3.1.1"; + "jws-3.1.3" = self.by-version."jws"."3.1.3"; "node-uuid-1.4.1" = self.by-version."node-uuid"."1.4.1"; "request-2.69.0" = self.by-version."request"."2.69.0"; "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; @@ -41,7 +41,7 @@ }; deps = { "date-utils-1.2.18" = self.by-version."date-utils"."1.2.18"; - "jws-3.1.1" = self.by-version."jws"."3.1.1"; + "jws-3.1.3" = self.by-version."jws"."3.1.3"; "node-uuid-1.4.1" = self.by-version."node-uuid"."1.4.1"; "request-2.69.0" = self.by-version."request"."2.69.0"; "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; @@ -94,17 +94,18 @@ cpu = [ ]; }; by-spec."ansi-styles"."^2.1.0" = - self.by-version."ansi-styles"."2.1.0"; - by-version."ansi-styles"."2.1.0" = self.buildNodePackage { - name = "ansi-styles-2.1.0"; - version = "2.1.0"; + self.by-version."ansi-styles"."2.2.0"; + by-version."ansi-styles"."2.2.0" = self.buildNodePackage { + name = "ansi-styles-2.2.0"; + version = "2.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ansi-styles/-/ansi-styles-2.1.0.tgz"; - name = "ansi-styles-2.1.0.tgz"; - sha1 = "990f747146927b559a932bf92959163d60c0d0e2"; + url = "http://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.0.tgz"; + name = "ansi-styles-2.2.0.tgz"; + sha1 = "c59191936e6ed1c1315a4b6b6b97f3acfbfa68b0"; }; deps = { + "color-convert-1.0.0" = self.by-version."color-convert"."1.0.0"; }; optionalDependencies = { }; @@ -190,6 +191,25 @@ }; by-spec."assert-plus"."^0.2.0" = self.by-version."assert-plus"."0.2.0"; + by-spec."assert-plus"."^1.0.0" = + self.by-version."assert-plus"."1.0.0"; + by-version."assert-plus"."1.0.0" = self.buildNodePackage { + name = "assert-plus-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; + name = "assert-plus-1.0.0.tgz"; + sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."async"."0.1.x" = self.by-version."async"."0.1.22"; by-version."async"."0.1.22" = self.buildNodePackage { @@ -326,40 +346,18 @@ cpu = [ ]; }; by-spec."aws4"."^1.2.1" = - self.by-version."aws4"."1.2.1"; - by-version."aws4"."1.2.1" = self.buildNodePackage { - name = "aws4-1.2.1"; - version = "1.2.1"; + self.by-version."aws4"."1.3.2"; + by-version."aws4"."1.3.2" = self.buildNodePackage { + name = "aws4-1.3.2"; + version = "1.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/aws4/-/aws4-1.2.1.tgz"; - name = "aws4-1.2.1.tgz"; - sha1 = "52b5659a4d32583d405f65e1124ac436d07fe5ac"; + url = "http://registry.npmjs.org/aws4/-/aws4-1.3.2.tgz"; + name = "aws4-1.3.2.tgz"; + sha1 = "d39e0bee412ced0e8ed94a23e314f313a95b9fd1"; }; deps = { - "lru-cache-2.7.3" = self.by-version."lru-cache"."2.7.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."azure-arm-apiapp"."0.1.3" = - self.by-version."azure-arm-apiapp"."0.1.3"; - by-version."azure-arm-apiapp"."0.1.3" = self.buildNodePackage { - name = "azure-arm-apiapp-0.1.3"; - version = "0.1.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/azure-arm-apiapp/-/azure-arm-apiapp-0.1.3.tgz"; - name = "azure-arm-apiapp-0.1.3.tgz"; - sha1 = "5fcc896027965655e27b63bfba7c5592db44ee91"; - }; - deps = { - "azure-common-0.9.16" = self.by-version."azure-common"."0.9.16"; - "underscore-1.4.4" = self.by-version."underscore"."1.4.4"; - "moment-2.6.0" = self.by-version."moment"."2.6.0"; + "lru-cache-4.0.0" = self.by-version."lru-cache"."4.0.0"; }; optionalDependencies = { }; @@ -408,20 +406,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."azure-arm-compute"."0.14.0" = - self.by-version."azure-arm-compute"."0.14.0"; - by-version."azure-arm-compute"."0.14.0" = self.buildNodePackage { - name = "azure-arm-compute-0.14.0"; - version = "0.14.0"; + by-spec."azure-arm-compute"."0.15.0" = + self.by-version."azure-arm-compute"."0.15.0"; + by-version."azure-arm-compute"."0.15.0" = self.buildNodePackage { + name = "azure-arm-compute-0.15.0"; + version = "0.15.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/azure-arm-compute/-/azure-arm-compute-0.14.0.tgz"; - name = "azure-arm-compute-0.14.0.tgz"; - sha1 = "5c2d2b981541b703335294a60718bd96a19cd285"; + url = "http://registry.npmjs.org/azure-arm-compute/-/azure-arm-compute-0.15.0.tgz"; + name = "azure-arm-compute-0.15.0.tgz"; + sha1 = "a057ba240bd5ee9972c8813066d925204af09e27"; }; deps = { - "ms-rest-1.9.0" = self.by-version."ms-rest"."1.9.0"; - "ms-rest-azure-1.9.0" = self.by-version."ms-rest-azure"."1.9.0"; + "ms-rest-1.10.0" = self.by-version."ms-rest"."1.10.0"; + "ms-rest-azure-1.10.0" = self.by-version."ms-rest-azure"."1.10.0"; }; optionalDependencies = { }; @@ -442,7 +440,7 @@ }; deps = { "azure-common-0.9.16" = self.by-version."azure-common"."0.9.16"; - "moment-2.11.2" = self.by-version."moment"."2.11.2"; + "moment-2.12.0" = self.by-version."moment"."2.12.0"; "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; "underscore-1.4.4" = self.by-version."underscore"."1.4.4"; }; @@ -557,20 +555,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."azure-arm-network"."0.12.0" = - self.by-version."azure-arm-network"."0.12.0"; - by-version."azure-arm-network"."0.12.0" = self.buildNodePackage { - name = "azure-arm-network-0.12.0"; - version = "0.12.0"; + by-spec."azure-arm-network"."0.12.1" = + self.by-version."azure-arm-network"."0.12.1"; + by-version."azure-arm-network"."0.12.1" = self.buildNodePackage { + name = "azure-arm-network-0.12.1"; + version = "0.12.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/azure-arm-network/-/azure-arm-network-0.12.0.tgz"; - name = "azure-arm-network-0.12.0.tgz"; - sha1 = "676f042f643c49d2af0071dd809789b53a70162b"; + url = "http://registry.npmjs.org/azure-arm-network/-/azure-arm-network-0.12.1.tgz"; + name = "azure-arm-network-0.12.1.tgz"; + sha1 = "57c659e9d25f35e2ac0b79a0f78f7d025ceb20b8"; }; deps = { - "ms-rest-1.9.0" = self.by-version."ms-rest"."1.9.0"; - "ms-rest-azure-1.9.0" = self.by-version."ms-rest-azure"."1.9.0"; + "ms-rest-1.10.0" = self.by-version."ms-rest"."1.10.0"; + "ms-rest-azure-1.10.0" = self.by-version."ms-rest-azure"."1.10.0"; }; optionalDependencies = { }; @@ -578,20 +576,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."azure-arm-rediscache"."0.2.0" = - self.by-version."azure-arm-rediscache"."0.2.0"; - by-version."azure-arm-rediscache"."0.2.0" = self.buildNodePackage { - name = "azure-arm-rediscache-0.2.0"; - version = "0.2.0"; + by-spec."azure-arm-rediscache"."0.2.1" = + self.by-version."azure-arm-rediscache"."0.2.1"; + by-version."azure-arm-rediscache"."0.2.1" = self.buildNodePackage { + name = "azure-arm-rediscache-0.2.1"; + version = "0.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/azure-arm-rediscache/-/azure-arm-rediscache-0.2.0.tgz"; - name = "azure-arm-rediscache-0.2.0.tgz"; - sha1 = "cd9a25e4a2e0e58accdba5064811ddaa62eafeef"; + url = "http://registry.npmjs.org/azure-arm-rediscache/-/azure-arm-rediscache-0.2.1.tgz"; + name = "azure-arm-rediscache-0.2.1.tgz"; + sha1 = "22e516e7519dd12583e174cca4eeb3b20c993d02"; }; deps = { - "ms-rest-1.9.0" = self.by-version."ms-rest"."1.9.0"; - "ms-rest-azure-1.9.0" = self.by-version."ms-rest-azure"."1.9.0"; + "ms-rest-1.10.0" = self.by-version."ms-rest"."1.10.0"; + "ms-rest-azure-1.10.0" = self.by-version."ms-rest-azure"."1.10.0"; }; optionalDependencies = { }; @@ -599,20 +597,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."azure-arm-resource"."0.10.7" = - self.by-version."azure-arm-resource"."0.10.7"; - by-version."azure-arm-resource"."0.10.7" = self.buildNodePackage { - name = "azure-arm-resource-0.10.7"; - version = "0.10.7"; + by-spec."azure-arm-resource"."1.0.0-preview" = + self.by-version."azure-arm-resource"."1.0.0-preview"; + by-version."azure-arm-resource"."1.0.0-preview" = self.buildNodePackage { + name = "azure-arm-resource-1.0.0-preview"; + version = "1.0.0-preview"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/azure-arm-resource/-/azure-arm-resource-0.10.7.tgz"; - name = "azure-arm-resource-0.10.7.tgz"; - sha1 = "f637acc4c1f1ea17fc52a31164c75f6b4f7c70be"; + url = "http://registry.npmjs.org/azure-arm-resource/-/azure-arm-resource-1.0.0-preview.tgz"; + name = "azure-arm-resource-1.0.0-preview.tgz"; + sha1 = "c664d4d0f3c4394680106f34359340e3c6a0cac2"; }; deps = { - "azure-common-0.9.16" = self.by-version."azure-common"."0.9.16"; - "underscore-1.4.4" = self.by-version."underscore"."1.4.4"; + "ms-rest-1.10.0" = self.by-version."ms-rest"."1.10.0"; + "ms-rest-azure-1.10.0" = self.by-version."ms-rest-azure"."1.10.0"; }; optionalDependencies = { }; @@ -620,20 +618,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."azure-arm-storage"."0.12.1-preview" = - self.by-version."azure-arm-storage"."0.12.1-preview"; - by-version."azure-arm-storage"."0.12.1-preview" = self.buildNodePackage { - name = "azure-arm-storage-0.12.1-preview"; - version = "0.12.1-preview"; + by-spec."azure-arm-storage"."0.12.2-preview" = + self.by-version."azure-arm-storage"."0.12.2-preview"; + by-version."azure-arm-storage"."0.12.2-preview" = self.buildNodePackage { + name = "azure-arm-storage-0.12.2-preview"; + version = "0.12.2-preview"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/azure-arm-storage/-/azure-arm-storage-0.12.1-preview.tgz"; - name = "azure-arm-storage-0.12.1-preview.tgz"; - sha1 = "e793fe390348d809763623bbdc7ab5a7d1dd0d27"; + url = "http://registry.npmjs.org/azure-arm-storage/-/azure-arm-storage-0.12.2-preview.tgz"; + name = "azure-arm-storage-0.12.2-preview.tgz"; + sha1 = "ecdfe608b58fe7e136f47cd2f4139ee010a724e6"; }; deps = { - "ms-rest-1.9.0" = self.by-version."ms-rest"."1.9.0"; - "ms-rest-azure-1.9.0" = self.by-version."ms-rest-azure"."1.9.0"; + "ms-rest-1.10.0" = self.by-version."ms-rest"."1.10.0"; + "ms-rest-azure-1.10.0" = self.by-version."ms-rest-azure"."1.10.0"; }; optionalDependencies = { }; @@ -683,16 +681,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."azure-asm-compute"."0.11.0" = - self.by-version."azure-asm-compute"."0.11.0"; - by-version."azure-asm-compute"."0.11.0" = self.buildNodePackage { - name = "azure-asm-compute-0.11.0"; - version = "0.11.0"; + by-spec."azure-asm-compute"."0.13.0" = + self.by-version."azure-asm-compute"."0.13.0"; + by-version."azure-asm-compute"."0.13.0" = self.buildNodePackage { + name = "azure-asm-compute-0.13.0"; + version = "0.13.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/azure-asm-compute/-/azure-asm-compute-0.11.0.tgz"; - name = "azure-asm-compute-0.11.0.tgz"; - sha1 = "348ffae392ac0ce4aade50be99b8c89fd89701a0"; + url = "http://registry.npmjs.org/azure-asm-compute/-/azure-asm-compute-0.13.0.tgz"; + name = "azure-asm-compute-0.13.0.tgz"; + sha1 = "321999c92fcabb7da852a251cd97f461a0758065"; }; deps = { "azure-common-0.9.16" = self.by-version."azure-common"."0.9.16"; @@ -891,45 +889,44 @@ cpu = [ ]; }; by-spec."azure-cli"."*" = - self.by-version."azure-cli"."0.9.15"; - by-version."azure-cli"."0.9.15" = self.buildNodePackage { - name = "azure-cli-0.9.15"; - version = "0.9.15"; + self.by-version."azure-cli"."0.9.17"; + by-version."azure-cli"."0.9.17" = self.buildNodePackage { + name = "azure-cli-0.9.17"; + version = "0.9.17"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/azure-cli/-/azure-cli-0.9.15.tgz"; - name = "azure-cli-0.9.15.tgz"; - sha1 = "c629199efd96c217c8b4341c5b8489c119fdbe4a"; + url = "http://registry.npmjs.org/azure-cli/-/azure-cli-0.9.17.tgz"; + name = "azure-cli-0.9.17.tgz"; + sha1 = "1f1cd28719c5fb8e201c01bf2a257a0880e743eb"; }; deps = { "adal-node-0.1.17" = self.by-version."adal-node"."0.1.17"; "async-1.4.2" = self.by-version."async"."1.4.2"; "azure-common-0.9.16" = self.by-version."azure-common"."0.9.16"; - "azure-arm-apiapp-0.1.3" = self.by-version."azure-arm-apiapp"."0.1.3"; "azure-arm-authorization-2.0.0" = self.by-version."azure-arm-authorization"."2.0.0"; "azure-arm-commerce-0.1.1" = self.by-version."azure-arm-commerce"."0.1.1"; - "azure-arm-compute-0.14.0" = self.by-version."azure-arm-compute"."0.14.0"; + "azure-arm-compute-0.15.0" = self.by-version."azure-arm-compute"."0.15.0"; "azure-arm-hdinsight-0.1.0" = self.by-version."azure-arm-hdinsight"."0.1.0"; "azure-arm-hdinsight-jobs-0.1.0" = self.by-version."azure-arm-hdinsight-jobs"."0.1.0"; "azure-arm-insights-0.10.2" = self.by-version."azure-arm-insights"."0.10.2"; - "azure-arm-network-0.12.0" = self.by-version."azure-arm-network"."0.12.0"; + "azure-arm-network-0.12.1" = self.by-version."azure-arm-network"."0.12.1"; "azure-arm-trafficmanager-0.10.5" = self.by-version."azure-arm-trafficmanager"."0.10.5"; "azure-arm-dns-0.10.1" = self.by-version."azure-arm-dns"."0.10.1"; "azure-arm-website-0.10.0" = self.by-version."azure-arm-website"."0.10.0"; - "azure-arm-rediscache-0.2.0" = self.by-version."azure-arm-rediscache"."0.2.0"; + "azure-arm-rediscache-0.2.1" = self.by-version."azure-arm-rediscache"."0.2.1"; "azure-arm-datalake-analytics-0.1.2" = self.by-version."azure-arm-datalake-analytics"."0.1.2"; "azure-arm-datalake-store-0.1.2" = self.by-version."azure-arm-datalake-store"."0.1.2"; "azure-extra-0.2.12" = self.by-version."azure-extra"."0.2.12"; "azure-gallery-2.0.0-pre.18" = self.by-version."azure-gallery"."2.0.0-pre.18"; "azure-keyvault-0.10.1" = self.by-version."azure-keyvault"."0.10.1"; - "azure-asm-compute-0.11.0" = self.by-version."azure-asm-compute"."0.11.0"; + "azure-asm-compute-0.13.0" = self.by-version."azure-asm-compute"."0.13.0"; "azure-asm-hdinsight-0.10.2" = self.by-version."azure-asm-hdinsight"."0.10.2"; "azure-asm-trafficmanager-0.10.3" = self.by-version."azure-asm-trafficmanager"."0.10.3"; "azure-asm-mgmt-0.10.1" = self.by-version."azure-asm-mgmt"."0.10.1"; "azure-monitoring-0.10.2" = self.by-version."azure-monitoring"."0.10.2"; "azure-asm-network-0.10.2" = self.by-version."azure-asm-network"."0.10.2"; - "azure-arm-resource-0.10.7" = self.by-version."azure-arm-resource"."0.10.7"; - "azure-arm-storage-0.12.1-preview" = self.by-version."azure-arm-storage"."0.12.1-preview"; + "azure-arm-resource-1.0.0-preview" = self.by-version."azure-arm-resource"."1.0.0-preview"; + "azure-arm-storage-0.12.2-preview" = self.by-version."azure-arm-storage"."0.12.2-preview"; "azure-asm-sb-0.10.1" = self.by-version."azure-asm-sb"."0.10.1"; "azure-asm-sql-0.10.1" = self.by-version."azure-asm-sql"."0.10.1"; "azure-asm-storage-0.10.1" = self.by-version."azure-asm-storage"."0.10.1"; @@ -943,14 +940,11 @@ "event-stream-3.1.5" = self.by-version."event-stream"."3.1.5"; "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; "github-0.1.6" = self.by-version."github"."0.1.6"; - "image-size-0.3.5" = self.by-version."image-size"."0.3.5"; "js2xmlparser-1.0.0" = self.by-version."js2xmlparser"."1.0.0"; "jsrsasign-4.8.2" = self.by-version."jsrsasign"."4.8.2"; - "jszip-2.5.0" = self.by-version."jszip"."2.5.0"; "kuduscript-1.0.6" = self.by-version."kuduscript"."1.0.6"; - "mime-1.2.11" = self.by-version."mime"."1.2.11"; "moment-2.6.0" = self.by-version."moment"."2.6.0"; - "ms-rest-azure-1.9.0" = self.by-version."ms-rest-azure"."1.9.0"; + "ms-rest-azure-1.10.0" = self.by-version."ms-rest-azure"."1.10.0"; "node-forge-0.6.23" = self.by-version."node-forge"."0.6.23"; "node-uuid-1.2.0" = self.by-version."node-uuid"."1.2.0"; "number-is-nan-1.0.0" = self.by-version."number-is-nan"."1.0.0"; @@ -961,14 +955,10 @@ "ssh-key-to-pem-0.11.0" = self.by-version."ssh-key-to-pem"."0.11.0"; "streamline-0.10.17" = self.by-version."streamline"."0.10.17"; "streamline-streams-0.1.5" = self.by-version."streamline-streams"."0.1.5"; - "swagger-schema-official-2.0.0-a33091a" = self.by-version."swagger-schema-official"."2.0.0-a33091a"; "through-2.3.4" = self.by-version."through"."2.3.4"; - "tmp-0.0.25" = self.by-version."tmp"."0.0.25"; "tunnel-0.0.2" = self.by-version."tunnel"."0.0.2"; - "tv4-1.2.7" = self.by-version."tv4"."1.2.7"; "underscore-1.4.4" = self.by-version."underscore"."1.4.4"; "validator-3.1.0" = self.by-version."validator"."3.1.0"; - "walk-2.3.9" = self.by-version."walk"."2.3.9"; "winston-0.6.2" = self.by-version."winston"."0.6.2"; "wordwrap-0.0.2" = self.by-version."wordwrap"."0.0.2"; "xml2js-0.1.14" = self.by-version."xml2js"."0.1.14"; @@ -980,7 +970,7 @@ os = [ ]; cpu = [ ]; }; - "azure-cli" = self.by-version."azure-cli"."0.9.15"; + "azure-cli" = self.by-version."azure-cli"."0.9.17"; by-spec."azure-common"."0.9.12" = self.by-version."azure-common"."0.9.12"; by-version."azure-common"."0.9.12" = self.buildNodePackage { @@ -1176,35 +1166,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."base64url"."~0.0.4" = - self.by-version."base64url"."0.0.6"; - by-version."base64url"."0.0.6" = self.buildNodePackage { - name = "base64url-0.0.6"; - version = "0.0.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/base64url/-/base64url-0.0.6.tgz"; - name = "base64url-0.0.6.tgz"; - sha1 = "9597b36b330db1c42477322ea87ea8027499b82b"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."base64url"."~1.0.4" = - self.by-version."base64url"."1.0.5"; - by-version."base64url"."1.0.5" = self.buildNodePackage { - name = "base64url-1.0.5"; - version = "1.0.5"; + self.by-version."base64url"."1.0.6"; + by-version."base64url"."1.0.6" = self.buildNodePackage { + name = "base64url-1.0.6"; + version = "1.0.6"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/base64url/-/base64url-1.0.5.tgz"; - name = "base64url-1.0.5.tgz"; - sha1 = "c54bcb4f9a2b7da422bca549e71c1640b533b825"; + url = "http://registry.npmjs.org/base64url/-/base64url-1.0.6.tgz"; + name = "base64url-1.0.6.tgz"; + sha1 = "d64d375d68a7c640d912e2358d170dca5bb54681"; }; deps = { "concat-stream-1.4.10" = self.by-version."concat-stream"."1.4.10"; @@ -1237,15 +1208,15 @@ cpu = [ ]; }; by-spec."bl"."~1.0.0" = - self.by-version."bl"."1.0.2"; - by-version."bl"."1.0.2" = self.buildNodePackage { - name = "bl-1.0.2"; - version = "1.0.2"; + self.by-version."bl"."1.0.3"; + by-version."bl"."1.0.3" = self.buildNodePackage { + name = "bl-1.0.3"; + version = "1.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bl/-/bl-1.0.2.tgz"; - name = "bl-1.0.2.tgz"; - sha1 = "8c66490d825ba84d560de1f62196a29555b3a0c4"; + url = "http://registry.npmjs.org/bl/-/bl-1.0.3.tgz"; + name = "bl-1.0.3.tgz"; + sha1 = "fc5421a28fd4226036c3b3891a66a25bc64d226e"; }; deps = { "readable-stream-2.0.5" = self.by-version."readable-stream"."2.0.5"; @@ -1501,10 +1472,10 @@ sha1 = "509afb67066e7499f7eb3535c77445772ae2d019"; }; deps = { - "ansi-styles-2.1.0" = self.by-version."ansi-styles"."2.1.0"; - "escape-string-regexp-1.0.4" = self.by-version."escape-string-regexp"."1.0.4"; + "ansi-styles-2.2.0" = self.by-version."ansi-styles"."2.2.0"; + "escape-string-regexp-1.0.5" = self.by-version."escape-string-regexp"."1.0.5"; "has-ansi-2.0.0" = self.by-version."has-ansi"."2.0.0"; - "strip-ansi-3.0.0" = self.by-version."strip-ansi"."3.0.0"; + "strip-ansi-3.0.1" = self.by-version."strip-ansi"."3.0.1"; "supports-color-2.0.0" = self.by-version."supports-color"."2.0.0"; }; optionalDependencies = { @@ -1515,6 +1486,25 @@ }; by-spec."chalk"."^1.1.1" = self.by-version."chalk"."1.1.1"; + by-spec."color-convert"."^1.0.0" = + self.by-version."color-convert"."1.0.0"; + by-version."color-convert"."1.0.0" = self.buildNodePackage { + name = "color-convert-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/color-convert/-/color-convert-1.0.0.tgz"; + name = "color-convert-1.0.0.tgz"; + sha1 = "3c26fcd885d272d45beacf6e41baba75c89a8579"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."colors"."0.x.x" = self.by-version."colors"."0.6.2"; by-version."colors"."0.6.2" = self.buildNodePackage { @@ -1781,18 +1771,18 @@ cpu = [ ]; }; by-spec."dashdash".">=1.10.1 <2.0.0" = - self.by-version."dashdash"."1.12.2"; - by-version."dashdash"."1.12.2" = self.buildNodePackage { - name = "dashdash-1.12.2"; - version = "1.12.2"; + self.by-version."dashdash"."1.13.0"; + by-version."dashdash"."1.13.0" = self.buildNodePackage { + name = "dashdash-1.13.0"; + version = "1.13.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/dashdash/-/dashdash-1.12.2.tgz"; - name = "dashdash-1.12.2.tgz"; - sha1 = "1c6f70588498d047b8cd5777b32ba85a5e25be36"; + url = "http://registry.npmjs.org/dashdash/-/dashdash-1.13.0.tgz"; + name = "dashdash-1.13.0.tgz"; + sha1 = "a5aae6fd9d8e156624eb0dd9259eb12ba245385a"; }; deps = { - "assert-plus-0.2.0" = self.by-version."assert-plus"."0.2.0"; + "assert-plus-1.0.0" = self.by-version."assert-plus"."1.0.0"; }; optionalDependencies = { }; @@ -1993,15 +1983,15 @@ cpu = [ ]; }; by-spec."escape-string-regexp"."^1.0.2" = - self.by-version."escape-string-regexp"."1.0.4"; - by-version."escape-string-regexp"."1.0.4" = self.buildNodePackage { - name = "escape-string-regexp-1.0.4"; - version = "1.0.4"; + self.by-version."escape-string-regexp"."1.0.5"; + by-version."escape-string-regexp"."1.0.5" = self.buildNodePackage { + name = "escape-string-regexp-1.0.5"; + version = "1.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.4.tgz"; - name = "escape-string-regexp-1.0.4.tgz"; - sha1 = "b85e679b46f72d03fbbe8a3bf7259d535c21b62f"; + url = "http://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; + name = "escape-string-regexp-1.0.5.tgz"; + sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; }; deps = { }; @@ -2116,34 +2106,15 @@ by-spec."eyes"."0.x.x" = self.by-version."eyes"."0.1.8"; by-spec."fibers"."^1.0.1" = - self.by-version."fibers"."1.0.8"; - by-version."fibers"."1.0.8" = self.buildNodePackage { - name = "fibers-1.0.8"; - version = "1.0.8"; + self.by-version."fibers"."1.0.10"; + by-version."fibers"."1.0.10" = self.buildNodePackage { + name = "fibers-1.0.10"; + version = "1.0.10"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fibers/-/fibers-1.0.8.tgz"; - name = "fibers-1.0.8.tgz"; - sha1 = "cbffda427c4e588a6f8601c2a07d134b092077f2"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."foreachasync"."^3.0.0" = - self.by-version."foreachasync"."3.0.0"; - by-version."foreachasync"."3.0.0" = self.buildNodePackage { - name = "foreachasync-3.0.0"; - version = "3.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/foreachasync/-/foreachasync-3.0.0.tgz"; - name = "foreachasync-3.0.0.tgz"; - sha1 = "5502987dc8714be3392097f32e0071c9dee07cf6"; + url = "http://registry.npmjs.org/fibers/-/fibers-1.0.10.tgz"; + name = "fibers-1.0.10.tgz"; + sha1 = "0ccea7287e5dafd2626c2c9d3f15113a1b5829cd"; }; deps = { }; @@ -2251,7 +2222,7 @@ deps = { "async-1.5.2" = self.by-version."async"."1.5.2"; "combined-stream-1.0.5" = self.by-version."combined-stream"."1.0.5"; - "mime-types-2.1.9" = self.by-version."mime-types"."2.1.9"; + "mime-types-2.1.10" = self.by-version."mime-types"."2.1.10"; }; optionalDependencies = { }; @@ -2408,7 +2379,7 @@ "bluebird-2.10.2" = self.by-version."bluebird"."2.10.2"; "chalk-1.1.1" = self.by-version."chalk"."1.1.1"; "commander-2.9.0" = self.by-version."commander"."2.9.0"; - "is-my-json-valid-2.12.4" = self.by-version."is-my-json-valid"."2.12.4"; + "is-my-json-valid-2.13.1" = self.by-version."is-my-json-valid"."2.13.1"; }; optionalDependencies = { }; @@ -2430,7 +2401,7 @@ deps = { "chalk-1.1.1" = self.by-version."chalk"."1.1.1"; "commander-2.9.0" = self.by-version."commander"."2.9.0"; - "is-my-json-valid-2.12.4" = self.by-version."is-my-json-valid"."2.12.4"; + "is-my-json-valid-2.13.1" = self.by-version."is-my-json-valid"."2.13.1"; "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; }; optionalDependencies = { @@ -2624,26 +2595,7 @@ deps = { "assert-plus-0.2.0" = self.by-version."assert-plus"."0.2.0"; "jsprim-1.2.2" = self.by-version."jsprim"."1.2.2"; - "sshpk-1.7.3" = self.by-version."sshpk"."1.7.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."image-size"."^0.3.5" = - self.by-version."image-size"."0.3.5"; - by-version."image-size"."0.3.5" = self.buildNodePackage { - name = "image-size-0.3.5"; - version = "0.3.5"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/image-size/-/image-size-0.3.5.tgz"; - name = "image-size-0.3.5.tgz"; - sha1 = "83240eab2fb5b00b04aab8c74b0471e9cba7ad8c"; - }; - deps = { + "sshpk-1.7.4" = self.by-version."sshpk"."1.7.4"; }; optionalDependencies = { }; @@ -2713,15 +2665,15 @@ cpu = [ ]; }; by-spec."is-my-json-valid"."^2.12.0" = - self.by-version."is-my-json-valid"."2.12.4"; - by-version."is-my-json-valid"."2.12.4" = self.buildNodePackage { - name = "is-my-json-valid-2.12.4"; - version = "2.12.4"; + self.by-version."is-my-json-valid"."2.13.1"; + by-version."is-my-json-valid"."2.13.1" = self.buildNodePackage { + name = "is-my-json-valid-2.13.1"; + version = "2.13.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.12.4.tgz"; - name = "is-my-json-valid-2.12.4.tgz"; - sha1 = "d4ed2bc1d7f88daf8d0f763b3e3e39a69bd37880"; + url = "http://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.13.1.tgz"; + name = "is-my-json-valid-2.13.1.tgz"; + sha1 = "d55778a82feb6b0963ff4be111d5d1684e890707"; }; deps = { "generate-function-2.0.0" = self.by-version."generate-function"."2.0.0"; @@ -2736,7 +2688,7 @@ cpu = [ ]; }; by-spec."is-my-json-valid"."^2.12.4" = - self.by-version."is-my-json-valid"."2.12.4"; + self.by-version."is-my-json-valid"."2.13.1"; by-spec."is-property"."^1.0.0" = self.by-version."is-property"."1.0.2"; by-version."is-property"."1.0.2" = self.buildNodePackage { @@ -2975,39 +2927,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."jszip"."^2.5.0" = - self.by-version."jszip"."2.5.0"; - by-version."jszip"."2.5.0" = self.buildNodePackage { - name = "jszip-2.5.0"; - version = "2.5.0"; + by-spec."jwa"."^1.1.2" = + self.by-version."jwa"."1.1.3"; + by-version."jwa"."1.1.3" = self.buildNodePackage { + name = "jwa-1.1.3"; + version = "1.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jszip/-/jszip-2.5.0.tgz"; - name = "jszip-2.5.0.tgz"; - sha1 = "7444fd8551ddf3e5da7198fea0c91bc8308cc274"; + url = "http://registry.npmjs.org/jwa/-/jwa-1.1.3.tgz"; + name = "jwa-1.1.3.tgz"; + sha1 = "fa9f2f005ff0c630e7c41526a31f37f79733cd6d"; }; deps = { - "pako-0.2.8" = self.by-version."pako"."0.2.8"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."jwa"."^1.1.0" = - self.by-version."jwa"."1.1.1"; - by-version."jwa"."1.1.1" = self.buildNodePackage { - name = "jwa-1.1.1"; - version = "1.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/jwa/-/jwa-1.1.1.tgz"; - name = "jwa-1.1.1.tgz"; - sha1 = "b83c05279f0707f55ca5387b7b3f23da9f80195f"; - }; - deps = { - "base64url-0.0.6" = self.by-version."base64url"."0.0.6"; + "base64url-1.0.6" = self.by-version."base64url"."1.0.6"; "buffer-equal-constant-time-1.0.1" = self.by-version."buffer-equal-constant-time"."1.0.1"; "ecdsa-sig-formatter-1.0.5" = self.by-version."ecdsa-sig-formatter"."1.0.5"; }; @@ -3018,19 +2950,19 @@ cpu = [ ]; }; by-spec."jws"."3.x.x" = - self.by-version."jws"."3.1.1"; - by-version."jws"."3.1.1" = self.buildNodePackage { - name = "jws-3.1.1"; - version = "3.1.1"; + self.by-version."jws"."3.1.3"; + by-version."jws"."3.1.3" = self.buildNodePackage { + name = "jws-3.1.3"; + version = "3.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jws/-/jws-3.1.1.tgz"; - name = "jws-3.1.1.tgz"; - sha1 = "34f5a424e628af4551121e860ba279f55cfa6629"; + url = "http://registry.npmjs.org/jws/-/jws-3.1.3.tgz"; + name = "jws-3.1.3.tgz"; + sha1 = "b88f1b4581a2c5ee8813c06b3fdf90ea9b5c7e6c"; }; deps = { - "base64url-1.0.5" = self.by-version."base64url"."1.0.5"; - "jwa-1.1.1" = self.by-version."jwa"."1.1.1"; + "base64url-1.0.6" = self.by-version."base64url"."1.0.6"; + "jwa-1.1.3" = self.by-version."jwa"."1.1.3"; }; optionalDependencies = { }; @@ -3078,18 +3010,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."lru-cache"."^2.6.5" = - self.by-version."lru-cache"."2.7.3"; - by-version."lru-cache"."2.7.3" = self.buildNodePackage { - name = "lru-cache-2.7.3"; - version = "2.7.3"; + by-spec."lru-cache"."^4.0.0" = + self.by-version."lru-cache"."4.0.0"; + by-version."lru-cache"."4.0.0" = self.buildNodePackage { + name = "lru-cache-4.0.0"; + version = "4.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz"; - name = "lru-cache-2.7.3.tgz"; - sha1 = "6d4524e8b955f95d4f5b58851ce21dd72fb4e952"; + url = "http://registry.npmjs.org/lru-cache/-/lru-cache-4.0.0.tgz"; + name = "lru-cache-4.0.0.tgz"; + sha1 = "b5cbf01556c16966febe54ceec0fb4dc90df6c28"; }; deps = { + "pseudomap-1.0.2" = self.by-version."pseudomap"."1.0.2"; + "yallist-2.0.0" = self.by-version."yallist"."2.0.0"; }; optionalDependencies = { }; @@ -3177,8 +3111,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."mime"."~1.2.4" = - self.by-version."mime"."1.2.11"; by-spec."mime-db"."~1.12.0" = self.by-version."mime-db"."1.12.0"; by-version."mime-db"."1.12.0" = self.buildNodePackage { @@ -3198,16 +3130,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."mime-db"."~1.21.0" = - self.by-version."mime-db"."1.21.0"; - by-version."mime-db"."1.21.0" = self.buildNodePackage { - name = "mime-db-1.21.0"; - version = "1.21.0"; + by-spec."mime-db"."~1.22.0" = + self.by-version."mime-db"."1.22.0"; + by-version."mime-db"."1.22.0" = self.buildNodePackage { + name = "mime-db-1.22.0"; + version = "1.22.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mime-db/-/mime-db-1.21.0.tgz"; - name = "mime-db-1.21.0.tgz"; - sha1 = "9b5239e3353cf6eb015a00d890261027c36d4bac"; + url = "http://registry.npmjs.org/mime-db/-/mime-db-1.22.0.tgz"; + name = "mime-db-1.22.0.tgz"; + sha1 = "ab23a6372dc9d86d3dc9121bd0ebd38105a1904a"; }; deps = { }; @@ -3218,18 +3150,18 @@ cpu = [ ]; }; by-spec."mime-types"."^2.1.3" = - self.by-version."mime-types"."2.1.9"; - by-version."mime-types"."2.1.9" = self.buildNodePackage { - name = "mime-types-2.1.9"; - version = "2.1.9"; + self.by-version."mime-types"."2.1.10"; + by-version."mime-types"."2.1.10" = self.buildNodePackage { + name = "mime-types-2.1.10"; + version = "2.1.10"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mime-types/-/mime-types-2.1.9.tgz"; - name = "mime-types-2.1.9.tgz"; - sha1 = "dfb396764b5fdf75be34b1f4104bc3687fb635f8"; + url = "http://registry.npmjs.org/mime-types/-/mime-types-2.1.10.tgz"; + name = "mime-types-2.1.10.tgz"; + sha1 = "b93c7cb4362e16d41072a7e54538fb4d43070837"; }; deps = { - "mime-db-1.21.0" = self.by-version."mime-db"."1.21.0"; + "mime-db-1.22.0" = self.by-version."mime-db"."1.22.0"; }; optionalDependencies = { }; @@ -3279,7 +3211,7 @@ by-spec."mime-types"."~2.0.3" = self.by-version."mime-types"."2.0.14"; by-spec."mime-types"."~2.1.7" = - self.by-version."mime-types"."2.1.9"; + self.by-version."mime-types"."2.1.10"; by-spec."minimist"."^1.1.0" = self.by-version."minimist"."1.2.0"; by-version."minimist"."1.2.0" = self.buildNodePackage { @@ -3319,15 +3251,15 @@ cpu = [ ]; }; by-spec."moment"."^2.6.0" = - self.by-version."moment"."2.11.2"; - by-version."moment"."2.11.2" = self.buildNodePackage { - name = "moment-2.11.2"; - version = "2.11.2"; + self.by-version."moment"."2.12.0"; + by-version."moment"."2.12.0" = self.buildNodePackage { + name = "moment-2.12.0"; + version = "2.12.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/moment/-/moment-2.11.2.tgz"; - name = "moment-2.11.2.tgz"; - sha1 = "87968e5f95ac038c2e42ac959c75819cd3f52901"; + url = "http://registry.npmjs.org/moment/-/moment-2.12.0.tgz"; + name = "moment-2.12.0.tgz"; + sha1 = "dc2560d19838d6c0731b1a6afa04675264d360d6"; }; deps = { }; @@ -3337,53 +3269,51 @@ os = [ ]; cpu = [ ]; }; + by-spec."ms-rest"."^1.10.0" = + self.by-version."ms-rest"."1.10.0"; + by-version."ms-rest"."1.10.0" = self.buildNodePackage { + name = "ms-rest-1.10.0"; + version = "1.10.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/ms-rest/-/ms-rest-1.10.0.tgz"; + name = "ms-rest-1.10.0.tgz"; + sha1 = "d1d9a93f3c7f7189500475ac680875ed1da56d99"; + }; + deps = { + "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; + "tunnel-0.0.4" = self.by-version."tunnel"."0.0.4"; + "request-2.69.0" = self.by-version."request"."2.69.0"; + "duplexer-0.1.1" = self.by-version."duplexer"."0.1.1"; + "through-2.3.8" = self.by-version."through"."2.3.8"; + "moment-2.12.0" = self.by-version."moment"."2.12.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."ms-rest"."^1.8.0" = - self.by-version."ms-rest"."1.9.0"; - by-version."ms-rest"."1.9.0" = self.buildNodePackage { - name = "ms-rest-1.9.0"; - version = "1.9.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ms-rest/-/ms-rest-1.9.0.tgz"; - name = "ms-rest-1.9.0.tgz"; - sha1 = "12b20c5477874c1ec09133b5fa77ea4bb67824ce"; - }; - deps = { - "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; - "tunnel-0.0.4" = self.by-version."tunnel"."0.0.4"; - "request-2.52.0" = self.by-version."request"."2.52.0"; - "validator-3.1.0" = self.by-version."validator"."3.1.0"; - "duplexer-0.1.1" = self.by-version."duplexer"."0.1.1"; - "through-2.3.8" = self.by-version."through"."2.3.8"; - "tough-cookie-2.2.1" = self.by-version."tough-cookie"."2.2.1"; - "moment-2.11.2" = self.by-version."moment"."2.11.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ms-rest"."^1.9.0" = - self.by-version."ms-rest"."1.9.0"; + self.by-version."ms-rest"."1.10.0"; by-spec."ms-rest-azure"."^1.8.0" = - self.by-version."ms-rest-azure"."1.9.0"; - by-version."ms-rest-azure"."1.9.0" = self.buildNodePackage { - name = "ms-rest-azure-1.9.0"; - version = "1.9.0"; + self.by-version."ms-rest-azure"."1.10.0"; + by-version."ms-rest-azure"."1.10.0" = self.buildNodePackage { + name = "ms-rest-azure-1.10.0"; + version = "1.10.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ms-rest-azure/-/ms-rest-azure-1.9.0.tgz"; - name = "ms-rest-azure-1.9.0.tgz"; - sha1 = "b172ac72f890ac31511e9c68899f4aa4d50c5bd1"; + url = "http://registry.npmjs.org/ms-rest-azure/-/ms-rest-azure-1.10.0.tgz"; + name = "ms-rest-azure-1.10.0.tgz"; + sha1 = "467f481de7f3f10b5d020de393d0de71ada6278a"; }; deps = { "async-0.2.7" = self.by-version."async"."0.2.7"; "uuid-2.0.1" = self.by-version."uuid"."2.0.1"; "adal-node-0.1.16" = self.by-version."adal-node"."0.1.16"; - "ms-rest-1.9.0" = self.by-version."ms-rest"."1.9.0"; + "ms-rest-1.10.0" = self.by-version."ms-rest"."1.10.0"; "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; - "moment-2.11.2" = self.by-version."moment"."2.11.2"; + "moment-2.12.0" = self.by-version."moment"."2.12.0"; }; optionalDependencies = { }; @@ -3610,25 +3540,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."pako"."~0.2.5" = - self.by-version."pako"."0.2.8"; - by-version."pako"."0.2.8" = self.buildNodePackage { - name = "pako-0.2.8"; - version = "0.2.8"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/pako/-/pako-0.2.8.tgz"; - name = "pako-0.2.8.tgz"; - sha1 = "15ad772915362913f20de4a8a164b4aacc6165d6"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."pause-stream"."0.0.11" = self.by-version."pause-stream"."0.0.11"; by-version."pause-stream"."0.0.11" = self.buildNodePackage { @@ -3726,6 +3637,25 @@ os = [ ]; cpu = [ ]; }; + by-spec."pseudomap"."^1.0.1" = + self.by-version."pseudomap"."1.0.2"; + by-version."pseudomap"."1.0.2" = self.buildNodePackage { + name = "pseudomap-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"; + name = "pseudomap-1.0.2.tgz"; + sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."q"."~0.9.3" = self.by-version."q"."0.9.7"; by-version."q"."0.9.7" = self.buildNodePackage { @@ -3939,7 +3869,7 @@ "form-data-0.1.4" = self.by-version."form-data"."0.1.4"; }; optionalDependencies = { - "tough-cookie-2.2.1" = self.by-version."tough-cookie"."2.2.1"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; "http-signature-0.10.1" = self.by-version."http-signature"."0.10.1"; "oauth-sign-0.4.0" = self.by-version."oauth-sign"."0.4.0"; "hawk-1.1.1" = self.by-version."hawk"."1.1.1"; @@ -3971,7 +3901,7 @@ "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; "qs-2.3.3" = self.by-version."qs"."2.3.3"; "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; - "tough-cookie-2.2.1" = self.by-version."tough-cookie"."2.2.1"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; "http-signature-0.10.1" = self.by-version."http-signature"."0.10.1"; "oauth-sign-0.6.0" = self.by-version."oauth-sign"."0.6.0"; "hawk-2.3.1" = self.by-version."hawk"."2.3.1"; @@ -3986,6 +3916,46 @@ os = [ ]; cpu = [ ]; }; + by-spec."request"."2.69.0" = + self.by-version."request"."2.69.0"; + by-version."request"."2.69.0" = self.buildNodePackage { + name = "request-2.69.0"; + version = "2.69.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/request/-/request-2.69.0.tgz"; + name = "request-2.69.0.tgz"; + sha1 = "cf91d2e000752b1217155c005241911991a2346a"; + }; + deps = { + "aws-sign2-0.6.0" = self.by-version."aws-sign2"."0.6.0"; + "aws4-1.3.2" = self.by-version."aws4"."1.3.2"; + "bl-1.0.3" = self.by-version."bl"."1.0.3"; + "caseless-0.11.0" = self.by-version."caseless"."0.11.0"; + "combined-stream-1.0.5" = self.by-version."combined-stream"."1.0.5"; + "extend-3.0.0" = self.by-version."extend"."3.0.0"; + "forever-agent-0.6.1" = self.by-version."forever-agent"."0.6.1"; + "form-data-1.0.0-rc3" = self.by-version."form-data"."1.0.0-rc3"; + "har-validator-2.0.6" = self.by-version."har-validator"."2.0.6"; + "hawk-3.1.3" = self.by-version."hawk"."3.1.3"; + "http-signature-1.1.1" = self.by-version."http-signature"."1.1.1"; + "is-typedarray-1.0.0" = self.by-version."is-typedarray"."1.0.0"; + "isstream-0.1.2" = self.by-version."isstream"."0.1.2"; + "json-stringify-safe-5.0.1" = self.by-version."json-stringify-safe"."5.0.1"; + "mime-types-2.1.10" = self.by-version."mime-types"."2.1.10"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; + "oauth-sign-0.8.1" = self.by-version."oauth-sign"."0.8.1"; + "qs-6.0.2" = self.by-version."qs"."6.0.2"; + "stringstream-0.0.5" = self.by-version."stringstream"."0.0.5"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; + "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."request"."2.9.x" = self.by-version."request"."2.9.203"; by-version."request"."2.9.203" = self.buildNodePackage { @@ -4007,44 +3977,6 @@ }; by-spec."request".">= 2.52.0" = self.by-version."request"."2.69.0"; - by-version."request"."2.69.0" = self.buildNodePackage { - name = "request-2.69.0"; - version = "2.69.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.69.0.tgz"; - name = "request-2.69.0.tgz"; - sha1 = "cf91d2e000752b1217155c005241911991a2346a"; - }; - deps = { - "aws-sign2-0.6.0" = self.by-version."aws-sign2"."0.6.0"; - "aws4-1.2.1" = self.by-version."aws4"."1.2.1"; - "bl-1.0.2" = self.by-version."bl"."1.0.2"; - "caseless-0.11.0" = self.by-version."caseless"."0.11.0"; - "combined-stream-1.0.5" = self.by-version."combined-stream"."1.0.5"; - "extend-3.0.0" = self.by-version."extend"."3.0.0"; - "forever-agent-0.6.1" = self.by-version."forever-agent"."0.6.1"; - "form-data-1.0.0-rc3" = self.by-version."form-data"."1.0.0-rc3"; - "har-validator-2.0.6" = self.by-version."har-validator"."2.0.6"; - "hawk-3.1.3" = self.by-version."hawk"."3.1.3"; - "http-signature-1.1.1" = self.by-version."http-signature"."1.1.1"; - "is-typedarray-1.0.0" = self.by-version."is-typedarray"."1.0.0"; - "isstream-0.1.2" = self.by-version."isstream"."0.1.2"; - "json-stringify-safe-5.0.1" = self.by-version."json-stringify-safe"."5.0.1"; - "mime-types-2.1.9" = self.by-version."mime-types"."2.1.9"; - "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; - "oauth-sign-0.8.1" = self.by-version."oauth-sign"."0.8.1"; - "qs-6.0.2" = self.by-version."qs"."6.0.2"; - "stringstream-0.0.5" = self.by-version."stringstream"."0.0.5"; - "tough-cookie-2.2.1" = self.by-version."tough-cookie"."2.2.1"; - "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."request".">= 2.9.203" = self.by-version."request"."2.69.0"; by-spec."request"."~2.57.0" = @@ -4068,7 +4000,7 @@ "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; "qs-3.1.0" = self.by-version."qs"."3.1.0"; "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; - "tough-cookie-2.2.1" = self.by-version."tough-cookie"."2.2.1"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; "http-signature-0.11.0" = self.by-version."http-signature"."0.11.0"; "oauth-sign-0.8.1" = self.by-version."oauth-sign"."0.8.1"; "hawk-2.3.1" = self.by-version."hawk"."2.3.1"; @@ -4104,15 +4036,15 @@ cpu = [ ]; }; by-spec."sax".">=0.1.1" = - self.by-version."sax"."1.1.5"; - by-version."sax"."1.1.5" = self.buildNodePackage { - name = "sax-1.1.5"; - version = "1.1.5"; + self.by-version."sax"."1.1.6"; + by-version."sax"."1.1.6" = self.buildNodePackage { + name = "sax-1.1.6"; + version = "1.1.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/sax/-/sax-1.1.5.tgz"; - name = "sax-1.1.5.tgz"; - sha1 = "1da50a8d00cdecd59405659f5ff85349fe773743"; + url = "http://registry.npmjs.org/sax/-/sax-1.1.6.tgz"; + name = "sax-1.1.6.tgz"; + sha1 = "5d616be8a5e607d54e114afae55b7eaf2fcc3240"; }; deps = { }; @@ -4224,24 +4156,24 @@ cpu = [ ]; }; by-spec."sshpk"."^1.7.0" = - self.by-version."sshpk"."1.7.3"; - by-version."sshpk"."1.7.3" = self.buildNodePackage { - name = "sshpk-1.7.3"; - version = "1.7.3"; + self.by-version."sshpk"."1.7.4"; + by-version."sshpk"."1.7.4" = self.buildNodePackage { + name = "sshpk-1.7.4"; + version = "1.7.4"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/sshpk/-/sshpk-1.7.3.tgz"; - name = "sshpk-1.7.3.tgz"; - sha1 = "caa8ef95e30765d856698b7025f9f211ab65962f"; + url = "http://registry.npmjs.org/sshpk/-/sshpk-1.7.4.tgz"; + name = "sshpk-1.7.4.tgz"; + sha1 = "ad7b47defca61c8415d964243b62b0ce60fbca38"; }; deps = { "asn1-0.2.3" = self.by-version."asn1"."0.2.3"; "assert-plus-0.2.0" = self.by-version."assert-plus"."0.2.0"; - "dashdash-1.12.2" = self.by-version."dashdash"."1.12.2"; + "dashdash-1.13.0" = self.by-version."dashdash"."1.13.0"; }; optionalDependencies = { "jsbn-0.1.0" = self.by-version."jsbn"."0.1.0"; - "tweetnacl-0.13.3" = self.by-version."tweetnacl"."0.13.3"; + "tweetnacl-0.14.1" = self.by-version."tweetnacl"."0.14.1"; "jodid25519-1.0.2" = self.by-version."jodid25519"."1.0.2"; "ecc-jsbn-0.1.1" = self.by-version."ecc-jsbn"."0.1.1"; }; @@ -4305,7 +4237,7 @@ "source-map-0.1.43" = self.by-version."source-map"."0.1.43"; }; optionalDependencies = { - "fibers-1.0.8" = self.by-version."fibers"."1.0.8"; + "fibers-1.0.10" = self.by-version."fibers"."1.0.10"; "galaxy-0.1.12" = self.by-version."galaxy"."0.1.12"; }; peerDependencies = []; @@ -4389,15 +4321,15 @@ cpu = [ ]; }; by-spec."strip-ansi"."^3.0.0" = - self.by-version."strip-ansi"."3.0.0"; - by-version."strip-ansi"."3.0.0" = self.buildNodePackage { - name = "strip-ansi-3.0.0"; - version = "3.0.0"; + self.by-version."strip-ansi"."3.0.1"; + by-version."strip-ansi"."3.0.1" = self.buildNodePackage { + name = "strip-ansi-3.0.1"; + version = "3.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.0.tgz"; - name = "strip-ansi-3.0.0.tgz"; - sha1 = "7510b665567ca914ccb5d7e072763ac968be3724"; + url = "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; + name = "strip-ansi-3.0.1.tgz"; + sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; }; deps = { "ansi-regex-2.0.0" = self.by-version."ansi-regex"."2.0.0"; @@ -4427,25 +4359,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."swagger-schema-official"."2.0.0-a33091a" = - self.by-version."swagger-schema-official"."2.0.0-a33091a"; - by-version."swagger-schema-official"."2.0.0-a33091a" = self.buildNodePackage { - name = "swagger-schema-official-2.0.0-a33091a"; - version = "2.0.0-a33091a"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/swagger-schema-official/-/swagger-schema-official-2.0.0-a33091a.tgz"; - name = "swagger-schema-official-2.0.0-a33091a.tgz"; - sha1 = "54cd2c83aac5b2203572fcd70e6e092d17b763fd"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."through"."2" = self.by-version."through"."2.3.8"; by-version."through"."2.3.8" = self.buildNodePackage { @@ -4490,48 +4403,27 @@ self.by-version."through"."2.3.8"; by-spec."through"."~2.3.4" = self.by-version."through"."2.3.8"; - by-spec."tmp"."0.0.25" = - self.by-version."tmp"."0.0.25"; - by-version."tmp"."0.0.25" = self.buildNodePackage { - name = "tmp-0.0.25"; - version = "0.0.25"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tmp/-/tmp-0.0.25.tgz"; - name = "tmp-0.0.25.tgz"; - sha1 = "b29629768c55f38df0bff33f6dfde052443da27d"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tough-cookie"."*" = - self.by-version."tough-cookie"."2.2.1"; - by-version."tough-cookie"."2.2.1" = self.buildNodePackage { - name = "tough-cookie-2.2.1"; - version = "2.2.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.1.tgz"; - name = "tough-cookie-2.2.1.tgz"; - sha1 = "3b0516b799e70e8164436a1446e7e5877fda118e"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."tough-cookie".">=0.12.0" = - self.by-version."tough-cookie"."2.2.1"; + self.by-version."tough-cookie"."2.2.2"; + by-version."tough-cookie"."2.2.2" = self.buildNodePackage { + name = "tough-cookie-2.2.2"; + version = "2.2.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.2.tgz"; + name = "tough-cookie-2.2.2.tgz"; + sha1 = "c83a1830f4e5ef0b93ef2a3488e724f8de016ac7"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."tough-cookie"."~2.2.0" = - self.by-version."tough-cookie"."2.2.1"; + self.by-version."tough-cookie"."2.2.2"; by-spec."tunnel"."0.0.2" = self.by-version."tunnel"."0.0.2"; by-version."tunnel"."0.0.2" = self.buildNodePackage { @@ -4591,35 +4483,16 @@ }; by-spec."tunnel-agent"."~0.4.1" = self.by-version."tunnel-agent"."0.4.2"; - by-spec."tv4"."^1.1.9" = - self.by-version."tv4"."1.2.7"; - by-version."tv4"."1.2.7" = self.buildNodePackage { - name = "tv4-1.2.7"; - version = "1.2.7"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tv4/-/tv4-1.2.7.tgz"; - name = "tv4-1.2.7.tgz"; - sha1 = "bd29389afc73ade49ae5f48142b5d544bf68d120"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."tweetnacl".">=0.13.0 <1.0.0" = - self.by-version."tweetnacl"."0.13.3"; - by-version."tweetnacl"."0.13.3" = self.buildNodePackage { - name = "tweetnacl-0.13.3"; - version = "0.13.3"; + self.by-version."tweetnacl"."0.14.1"; + by-version."tweetnacl"."0.14.1" = self.buildNodePackage { + name = "tweetnacl-0.14.1"; + version = "0.14.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/tweetnacl/-/tweetnacl-0.13.3.tgz"; - name = "tweetnacl-0.13.3.tgz"; - sha1 = "d628b56f3bcc3d5ae74ba9d4c1a704def5ab4b56"; + url = "http://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.1.tgz"; + name = "tweetnacl-0.14.1.tgz"; + sha1 = "37c6a1fb5cd4b63b7acee450d8419d9c0024cc03"; }; deps = { }; @@ -4786,26 +4659,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."walk"."^2.3.9" = - self.by-version."walk"."2.3.9"; - by-version."walk"."2.3.9" = self.buildNodePackage { - name = "walk-2.3.9"; - version = "2.3.9"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/walk/-/walk-2.3.9.tgz"; - name = "walk-2.3.9.tgz"; - sha1 = "31b4db6678f2ae01c39ea9fb8725a9031e558a7b"; - }; - deps = { - "foreachasync-3.0.0" = self.by-version."foreachasync"."3.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."winston"."0.6.x" = self.by-version."winston"."0.6.2"; by-version."winston"."0.6.2" = self.buildNodePackage { @@ -4863,7 +4716,7 @@ sha1 = "5274e67f5a64c5f92974cd85139e0332adc6b90c"; }; deps = { - "sax-1.1.5" = self.by-version."sax"."1.1.5"; + "sax-1.1.6" = self.by-version."sax"."1.1.6"; }; optionalDependencies = { }; @@ -4969,4 +4822,23 @@ os = [ ]; cpu = [ ]; }; + by-spec."yallist"."^2.0.0" = + self.by-version."yallist"."2.0.0"; + by-version."yallist"."2.0.0" = self.buildNodePackage { + name = "yallist-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/yallist/-/yallist-2.0.0.tgz"; + name = "yallist-2.0.0.tgz"; + sha1 = "306c543835f09ee1a4cb23b7bce9ab341c91cdd4"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; } From e358d9498c493a3e53769e0514afed8836ae0b3e Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 12 Mar 2016 02:43:40 +0300 Subject: [PATCH 0243/1059] e19: rename to enlightenment, drop old one --- nixos/modules/rename.nix | 3 ++ .../services/x11/desktop-managers/default.nix | 2 +- .../{e19.nix => enlightenment.nix} | 25 +++++------ pkgs/desktops/e19/default.nix | 16 -------- pkgs/desktops/enlightenment/default.nix | 41 +++++++------------ .../{e19 => enlightenment}/econnman.nix | 8 ++-- .../{e19 => enlightenment}/efl-elua.patch | 0 pkgs/desktops/{e19 => enlightenment}/efl.nix | 0 .../{e19 => enlightenment}/elementary.nix | 4 +- .../{e19 => enlightenment}/elementary.patch | 0 .../{e19 => enlightenment}/emotion.nix | 6 +-- .../{e19 => enlightenment}/enlightenment.nix | 24 +++++------ pkgs/desktops/{e19 => enlightenment}/evas.nix | 4 +- pkgs/desktops/{e19 => enlightenment}/rage.nix | 4 +- .../{e19 => enlightenment}/terminology.nix | 4 +- pkgs/top-level/all-packages.nix | 6 +-- pkgs/top-level/python-packages.nix | 4 +- 17 files changed, 62 insertions(+), 89 deletions(-) rename nixos/modules/services/x11/desktop-managers/{e19.nix => enlightenment.nix} (78%) delete mode 100644 pkgs/desktops/e19/default.nix rename pkgs/desktops/{e19 => enlightenment}/econnman.nix (70%) rename pkgs/desktops/{e19 => enlightenment}/efl-elua.patch (100%) rename pkgs/desktops/{e19 => enlightenment}/efl.nix (100%) rename pkgs/desktops/{e19 => enlightenment}/elementary.nix (78%) rename pkgs/desktops/{e19 => enlightenment}/elementary.patch (100%) rename pkgs/desktops/{e19 => enlightenment}/emotion.nix (79%) rename pkgs/desktops/{e19 => enlightenment}/enlightenment.nix (61%) rename pkgs/desktops/{e19 => enlightenment}/evas.nix (75%) rename pkgs/desktops/{e19 => enlightenment}/rage.nix (85%) rename pkgs/desktops/{e19 => enlightenment}/terminology.nix (85%) diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 85435884b19..0de6ca758c1 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -98,6 +98,9 @@ with lib; (mkRenamedOptionModule [ "services" "hostapd" "extraCfg" ] [ "services" "hostapd" "extraConfig" ]) + # Enlightenment + (mkRenamedOptionModule [ "services" "xserver" "desktopManager" "e19" "enable" ] [ "services" "xserver" "desktopManager" "enlightenment" "enable" ]) + # Options that are obsolete and have no replacement. (mkRemovedOptionModule [ "boot" "initrd" "luks" "enable" ]) (mkRemovedOptionModule [ "programs" "bash" "enable" ]) diff --git a/nixos/modules/services/x11/desktop-managers/default.nix b/nixos/modules/services/x11/desktop-managers/default.nix index 3e91450a39d..1ea7b5ccf16 100644 --- a/nixos/modules/services/x11/desktop-managers/default.nix +++ b/nixos/modules/services/x11/desktop-managers/default.nix @@ -19,7 +19,7 @@ in # E.g., if KDE is enabled, it supersedes xterm. imports = [ ./none.nix ./xterm.nix ./xfce.nix ./kde4.nix ./kde5.nix - ./e19.nix ./gnome3.nix ./kodi.nix + ./enlightenment.nix ./gnome3.nix ./kodi.nix ]; options = { diff --git a/nixos/modules/services/x11/desktop-managers/e19.nix b/nixos/modules/services/x11/desktop-managers/enlightenment.nix similarity index 78% rename from nixos/modules/services/x11/desktop-managers/e19.nix rename to nixos/modules/services/x11/desktop-managers/enlightenment.nix index 2d5c7b192bc..6c77a725679 100644 --- a/nixos/modules/services/x11/desktop-managers/e19.nix +++ b/nixos/modules/services/x11/desktop-managers/enlightenment.nix @@ -4,9 +4,10 @@ with lib; let + e = pkgs.enlightenment; xcfg = config.services.xserver; - cfg = xcfg.desktopManager.e19; - e19_enlightenment = pkgs.e19.enlightenment.override { set_freqset_setuid = true; }; + cfg = xcfg.desktopManager.enlightenment; + enlightenment = e.enlightenment.override { set_freqset_setuid = true; }; GST_PLUGIN_PATH = lib.makeSearchPath "lib/gstreamer-1.0" [ pkgs.gst_all_1.gst-plugins-base pkgs.gst_all_1.gst-plugins-good @@ -18,10 +19,10 @@ in { options = { - services.xserver.desktopManager.e19.enable = mkOption { + services.xserver.desktopManager.enlightenment.enable = mkOption { default = false; example = true; - description = "Enable the E19 desktop environment."; + description = "Enable the Enlightenment desktop environment."; }; }; @@ -29,8 +30,8 @@ in config = mkIf (xcfg.enable && cfg.enable) { environment.systemPackages = [ - pkgs.e19.efl pkgs.e19.evas pkgs.e19.emotion pkgs.e19.elementary e19_enlightenment - pkgs.e19.terminology pkgs.e19.econnman + e.efl e.evas e.emotion e.elementary enlightenment + e.terminology e.econnman pkgs.xorg.xauth # used by kdesu pkgs.gtk # To get GTK+'s themes. pkgs.tango-icon-theme @@ -42,7 +43,7 @@ in environment.pathsToLink = [ "/etc/enlightenment" "/etc/xdg" "/share/enlightenment" "/share/elementary" "/share/applications" "/share/locale" "/share/icons" "/share/themes" "/share/mime" "/share/desktop-directories" ]; services.xserver.desktopManager.session = [ - { name = "E19"; + { name = "Enlightenment"; start = '' # Set GTK_DATA_PREFIX so that GTK+ can find the themes export GTK_DATA_PREFIX=${config.system.path} @@ -53,17 +54,17 @@ in export GST_PLUGIN_PATH="${GST_PLUGIN_PATH}" # make available for D-BUS user services - #export XDG_DATA_DIRS=$XDG_DATA_DIRS''${XDG_DATA_DIRS:+:}:${config.system.path}/share:${pkgs.e19.efl}/share + #export XDG_DATA_DIRS=$XDG_DATA_DIRS''${XDG_DATA_DIRS:+:}:${config.system.path}/share:${e.efl}/share # Update user dirs as described in http://freedesktop.org/wiki/Software/xdg-user-dirs/ ${pkgs.xdg-user-dirs}/bin/xdg-user-dirs-update - ${e19_enlightenment}/bin/enlightenment_start + ${enlightenment}/bin/enlightenment_start waitPID=$! ''; }]; - security.setuidPrograms = [ "e19_freqset" ]; + security.setuidPrograms = [ "e_freqset" ]; environment.etc = singleton { source = "${pkgs.xkeyboard_config}/etc/X11/xkb"; @@ -81,7 +82,7 @@ in { enable = true; description = "org.enlightenment.Efreet"; serviceConfig = - { ExecStart = "${pkgs.e19.efl}/bin/efreetd"; + { ExecStart = "${e.efl}/bin/efreetd"; StandardOutput = "null"; }; }; @@ -90,7 +91,7 @@ in { enable = true; description = "org.enlightenment.Ethumb"; serviceConfig = - { ExecStart = "${pkgs.e19.efl}/bin/ethumbd"; + { ExecStart = "${e.efl}/bin/ethumbd"; StandardOutput = "null"; }; }; diff --git a/pkgs/desktops/e19/default.nix b/pkgs/desktops/e19/default.nix deleted file mode 100644 index b285498be9d..00000000000 --- a/pkgs/desktops/e19/default.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ callPackage, pkgs }: -rec { - #### CORE EFL - efl = callPackage ./efl.nix { openjpeg = pkgs.openjpeg_1; }; - evas = callPackage ./evas.nix { }; - emotion = callPackage ./emotion.nix { }; - elementary = callPackage ./elementary.nix { }; - - #### WINDOW MANAGER - enlightenment = callPackage ./enlightenment.nix { }; - - #### APPLICATIONS - econnman = callPackage ./econnman.nix { }; - terminology = callPackage ./terminology.nix { }; - rage = callPackage ./rage.nix { }; -} diff --git a/pkgs/desktops/enlightenment/default.nix b/pkgs/desktops/enlightenment/default.nix index 5aa3d781e4b..b285498be9d 100644 --- a/pkgs/desktops/enlightenment/default.nix +++ b/pkgs/desktops/enlightenment/default.nix @@ -1,29 +1,16 @@ -{ stdenv, fetchurl, pkgconfig, xlibsWrapper, xorg, dbus, imlib2, freetype }: +{ callPackage, pkgs }: +rec { + #### CORE EFL + efl = callPackage ./efl.nix { openjpeg = pkgs.openjpeg_1; }; + evas = callPackage ./evas.nix { }; + emotion = callPackage ./emotion.nix { }; + elementary = callPackage ./elementary.nix { }; -let version = "0.16.8.15"; in - stdenv.mkDerivation { - name = "enlightenment-${version}"; + #### WINDOW MANAGER + enlightenment = callPackage ./enlightenment.nix { }; - src = fetchurl { - url = "mirror://sourceforge/enlightenment/e16-${version}.tar.gz"; - sha256 = "0f8hg79mrk6b3fsvynvsrnqh1zgmvnnza0lf7qn4pq2mqyigbhgk"; - }; - - buildInputs = [pkgconfig imlib2 freetype - xorg.libX11 xorg.libXt xorg.libXext xorg.libXrender xorg.libXft ]; - - meta = { - description = "Desktop shell built on the Enlightenment Foundation Libraries"; - - longDescription = '' - Enlightenment is a window manager. Enlightenment is a desktop - shell. Enlightenment is the building blocks to create - beautiful applications. Enlightenment, or simply e, is a - group of people trying to make a new generation of software. - ''; - - homepage = http://enlightenment.org/; - - license = "BSD-style"; - }; - } + #### APPLICATIONS + econnman = callPackage ./econnman.nix { }; + terminology = callPackage ./terminology.nix { }; + rage = callPackage ./rage.nix { }; +} diff --git a/pkgs/desktops/e19/econnman.nix b/pkgs/desktops/enlightenment/econnman.nix similarity index 70% rename from pkgs/desktops/e19/econnman.nix rename to pkgs/desktops/enlightenment/econnman.nix index 35b58aec638..f1ffe7cd604 100644 --- a/pkgs/desktops/e19/econnman.nix +++ b/pkgs/desktops/enlightenment/econnman.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, e19, python27, python27Packages, dbus, makeWrapper }: +{ stdenv, fetchurl, pkgconfig, efl, elementary, python27, python27Packages, dbus, makeWrapper }: stdenv.mkDerivation rec { name = "econnman-${version}"; version = "1.1"; @@ -7,10 +7,10 @@ stdenv.mkDerivation rec { sha256 = "057pwwavlvrrq26bncqnfrf449zzaim0zq717xv86av4n940gwv0"; }; - buildInputs = [ makeWrapper pkgconfig e19.efl python27 dbus ]; - propagatedBuildInputs = [ python27Packages.pythonefl_1_16 python27Packages.dbus e19.elementary ]; + buildInputs = [ makeWrapper pkgconfig efl python27 dbus ]; + propagatedBuildInputs = [ python27Packages.pythonefl python27Packages.dbus elementary ]; postInstall = '' - wrapProgram $out/bin/econnman-bin --prefix PYTHONPATH : ${python27Packages.dbus}/lib/python2.7/site-packages:${python27Packages.pythonefl_1_16}/lib/python2.7/site-packages + wrapProgram $out/bin/econnman-bin --prefix PYTHONPATH : ${python27Packages.dbus}/lib/python2.7/site-packages:${python27Packages.pythonefl}/lib/python2.7/site-packages ''; meta = { diff --git a/pkgs/desktops/e19/efl-elua.patch b/pkgs/desktops/enlightenment/efl-elua.patch similarity index 100% rename from pkgs/desktops/e19/efl-elua.patch rename to pkgs/desktops/enlightenment/efl-elua.patch diff --git a/pkgs/desktops/e19/efl.nix b/pkgs/desktops/enlightenment/efl.nix similarity index 100% rename from pkgs/desktops/e19/efl.nix rename to pkgs/desktops/enlightenment/efl.nix diff --git a/pkgs/desktops/e19/elementary.nix b/pkgs/desktops/enlightenment/elementary.nix similarity index 78% rename from pkgs/desktops/e19/elementary.nix rename to pkgs/desktops/enlightenment/elementary.nix index 1793a7e87c4..a1a4b955d9e 100644 --- a/pkgs/desktops/e19/elementary.nix +++ b/pkgs/desktops/enlightenment/elementary.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, e19, libcap, automake114x, autoconf, libdrm, gdbm }: +{ stdenv, fetchurl, pkgconfig, efl, libcap, automake114x, autoconf, libdrm, gdbm }: stdenv.mkDerivation rec { name = "elementary-${version}"; version = "1.16.1"; @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { url = "http://download.enlightenment.org/rel/libs/elementary/${name}.tar.xz"; sha256 = "0q58imh7s35q6cq5hsa6gqj84rkckh8s61iass8zyvcw19j66f3y"; }; - buildInputs = [ pkgconfig e19.efl libdrm gdbm automake114x autoconf ] ++ stdenv.lib.optionals stdenv.isLinux [ libcap ]; + buildInputs = [ pkgconfig efl libdrm gdbm automake114x autoconf ] ++ stdenv.lib.optionals stdenv.isLinux [ libcap ]; NIX_CFLAGS_COMPILE = [ "-I${libdrm}/include/libdrm" ]; patches = [ ./elementary.patch ]; enableParallelBuilding = true; diff --git a/pkgs/desktops/e19/elementary.patch b/pkgs/desktops/enlightenment/elementary.patch similarity index 100% rename from pkgs/desktops/e19/elementary.patch rename to pkgs/desktops/enlightenment/elementary.patch diff --git a/pkgs/desktops/e19/emotion.nix b/pkgs/desktops/enlightenment/emotion.nix similarity index 79% rename from pkgs/desktops/e19/emotion.nix rename to pkgs/desktops/enlightenment/emotion.nix index c38119719a0..282ef81ab4e 100644 --- a/pkgs/desktops/e19/emotion.nix +++ b/pkgs/desktops/enlightenment/emotion.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, e19, vlc }: +{ stdenv, fetchurl, pkgconfig, efl, vlc }: stdenv.mkDerivation rec { name = "emotion_generic_players-${version}"; version = "1.16.0"; @@ -6,8 +6,8 @@ stdenv.mkDerivation rec { url = "http://download.enlightenment.org/rel/libs/emotion_generic_players/${name}.tar.xz"; sha256 = "163ay26c6dx49m1am7vsxxn0gy877zhayxq0yxn9zkbq2srzvjym"; }; - buildInputs = [ pkgconfig e19.efl vlc ]; - NIX_CFLAGS_COMPILE = [ "-I${e19.efl}/include/eo-1" ]; + buildInputs = [ pkgconfig efl vlc ]; + NIX_CFLAGS_COMPILE = [ "-I${efl}/include/eo-1" ]; meta = { description = "Extra video decoders"; homepage = http://enlightenment.org/; diff --git a/pkgs/desktops/e19/enlightenment.nix b/pkgs/desktops/enlightenment/enlightenment.nix similarity index 61% rename from pkgs/desktops/e19/enlightenment.nix rename to pkgs/desktops/enlightenment/enlightenment.nix index 5112058f8c6..ee9b3fbc526 100644 --- a/pkgs/desktops/e19/enlightenment.nix +++ b/pkgs/desktops/enlightenment/enlightenment.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, e19, xorg, libffi, pam, alsaLib, luajit, bzip2, libuuid +{ stdenv, fetchurl, pkgconfig, efl, elementary, xorg, libffi, pam, alsaLib, luajit, bzip2, libuuid , libpthreadstubs, gdbm, libcap, mesa_glu, xkeyboard_config, set_freqset_setuid ? false }: stdenv.mkDerivation rec { @@ -8,10 +8,10 @@ stdenv.mkDerivation rec { url = "http://download.enlightenment.org/rel/apps/enlightenment/${name}.tar.xz"; sha256 = "19z3bwdzwpzwi330l5g5mj7xy6wy8xrc39zivjhm0d1ql3fh649j"; }; - buildInputs = [ pkgconfig e19.efl e19.elementary xorg.libXdmcp xorg.libxcb + buildInputs = [ pkgconfig efl elementary xorg.libXdmcp xorg.libxcb xorg.xcbutilkeysyms xorg.libXrandr libffi pam alsaLib luajit bzip2 libuuid libpthreadstubs gdbm ] ++ stdenv.lib.optionals stdenv.isLinux [ libcap ]; - NIX_CFLAGS_COMPILE = [ "-I${e19.efl}/include/eo-1" "-I${e19.efl}/include/emile-1" "-I${libuuid}/include/uuid" ]; + NIX_CFLAGS_COMPILE = [ "-I${efl}/include/eo-1" "-I${efl}/include/emile-1" "-I${libuuid}/include/uuid" ]; preConfigure = '' export USER_SESSION_DIR=$prefix/lib/systemd/user @@ -19,23 +19,23 @@ stdenv.mkDerivation rec { --replace "/usr/share/X11/xkb/rules/xorg.lst" "${xkeyboard_config}/share/X11/xkb/rules/base.lst" substituteInPlace "src/bin/e_import_config_dialog.c" \ - --replace "e_prefix_bin_get()" "\"${e19.efl}/bin\"" + --replace "e_prefix_bin_get()" "\"${efl}/bin\"" ''; enableParallelBuilding = true; # this is a hack and without this cpufreq module is not working: - # when set_freqset_setuid is true and "e19_freqset" is set in setuidPrograms (this is taken care of in e19 NixOS module), + # when set_freqset_setuid is true and "e_freqset" is set in setuidPrograms (this is taken care of in e19 NixOS module), # then this postInstall does the folowing: - # 1. moves the "freqset" binary to "e19_freqset", - # 2. linkes "e19_freqset" to enlightenment/bin so that, - # 3. setuidPrograms detects it and makes appropriate stuff to /var/setuid-wrappers/e19_freqset, - # 4. and finaly, linkes /var/setuid-wrappers/e19_freqset to original destination where enlightenment wants it + # 1. moves the "freqset" binary to "e_freqset", + # 2. linkes "e_freqset" to enlightenment/bin so that, + # 3. setuidPrograms detects it and makes appropriate stuff to /var/setuid-wrappers/e_freqset, + # 4. and finaly, linkes /var/setuid-wrappers/e_freqset to original destination where enlightenment wants it postInstall = if set_freqset_setuid then '' export CPUFREQ_DIRPATH=`readlink -f $out/lib/enlightenment/modules/cpufreq/linux-gnu-*`; - mv $CPUFREQ_DIRPATH/freqset $CPUFREQ_DIRPATH/e19_freqset - ln -sv $CPUFREQ_DIRPATH/e19_freqset $out/bin/e19_freqset - ln -sv /var/setuid-wrappers/e19_freqset $CPUFREQ_DIRPATH/freqset + mv $CPUFREQ_DIRPATH/freqset $CPUFREQ_DIRPATH/e_freqset + ln -sv $CPUFREQ_DIRPATH/e_freqset $out/bin/e_freqset + ln -sv /var/setuid-wrappers/e_freqset $CPUFREQ_DIRPATH/freqset '' else ""; meta = { description = "The Compositing Window Manager and Desktop Shell"; diff --git a/pkgs/desktops/e19/evas.nix b/pkgs/desktops/enlightenment/evas.nix similarity index 75% rename from pkgs/desktops/e19/evas.nix rename to pkgs/desktops/enlightenment/evas.nix index b777dc893d7..6cc6af9678b 100644 --- a/pkgs/desktops/e19/evas.nix +++ b/pkgs/desktops/enlightenment/evas.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, e19, zlib, libspectre, gstreamer, gst_plugins_base, gst_ffmpeg, gst_plugins_good, poppler, librsvg, libraw }: +{ stdenv, fetchurl, pkgconfig, efl, zlib, libspectre, gstreamer, gst_plugins_base, gst_ffmpeg, gst_plugins_good, poppler, librsvg, libraw }: stdenv.mkDerivation rec { name = "evas_generic_loaders-${version}"; version = "1.16.0"; @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { url = "http://download.enlightenment.org/rel/libs/evas_generic_loaders/${name}.tar.xz"; sha256 = "1il3i3rii6ddpj7cw2mdqnb0q2wmhwnvs6qi9janna1n5hhrqyfm"; }; - buildInputs = [ pkgconfig e19.efl zlib libspectre gstreamer gst_plugins_base gst_ffmpeg gst_plugins_good poppler librsvg libraw ]; + buildInputs = [ pkgconfig efl zlib libspectre gstreamer gst_plugins_base gst_ffmpeg gst_plugins_good poppler librsvg libraw ]; meta = { description = "Extra image decoders"; homepage = http://enlightenment.org/; diff --git a/pkgs/desktops/e19/rage.nix b/pkgs/desktops/enlightenment/rage.nix similarity index 85% rename from pkgs/desktops/e19/rage.nix rename to pkgs/desktops/enlightenment/rage.nix index 19c99ac17eb..8c3391cf271 100644 --- a/pkgs/desktops/e19/rage.nix +++ b/pkgs/desktops/enlightenment/rage.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, e19, automake, autoconf, libtool, pkgconfig, gst_all_1 +{ stdenv, fetchurl, elementary, efl, automake, autoconf, libtool, pkgconfig, gst_all_1 , makeWrapper, lib }: stdenv.mkDerivation rec { name = "rage-${version}"; @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { url = "http://download.enlightenment.org/rel/apps/rage/${name}.tar.gz"; sha256 = "10j3n8crk16jzqz2hn5djx6vms5f6x83qyiaphhqx94h9dgv2mgg"; }; - buildInputs = [ e19.elementary e19.efl automake autoconf libtool pkgconfig + buildInputs = [ elementary efl automake autoconf libtool pkgconfig makeWrapper ]; GST_PLUGIN_PATH = lib.makeSearchPath "lib/gstreamer-1.0" [ gst_all_1.gst-plugins-base diff --git a/pkgs/desktops/e19/terminology.nix b/pkgs/desktops/enlightenment/terminology.nix similarity index 85% rename from pkgs/desktops/e19/terminology.nix rename to pkgs/desktops/enlightenment/terminology.nix index 195a1f43664..a302b7d5f61 100644 --- a/pkgs/desktops/e19/terminology.nix +++ b/pkgs/desktops/enlightenment/terminology.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, e19 }: +{ stdenv, fetchurl, pkgconfig, efl, elementary }: stdenv.mkDerivation rec { name = "terminology-${version}"; version = "0.9.1"; @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { url = "http://download.enlightenment.org/rel/apps/terminology/${name}.tar.xz"; sha256 = "1kwv9vkhngdm5v38q93xpcykghnyawhjjcb5bgy0p89gpbk7mvpc"; }; - buildInputs = [ pkgconfig e19.efl e19.elementary ]; + buildInputs = [ pkgconfig efl elementary ]; meta = { description = "The best terminal emulator written with the EFL"; homepage = http://enlightenment.org/; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c540ff849c8..dea54f0e098 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14907,10 +14907,8 @@ let clearlooks-phenix = callPackage ../misc/themes/gtk3/clearlooks-phenix { }; - enlightenment = callPackage ../desktops/enlightenment { }; - - e19 = recurseIntoAttrs (callPackage ../desktops/e19 { - callPackage = newScope pkgs.e19; + enlightenment = recurseIntoAttrs (callPackage ../desktops/enlightenment { + callPackage = newScope pkgs.enlightenment; }); gnome2 = callPackage ../desktops/gnome-2 { diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ade98083aa3..6e748fae415 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -24047,7 +24047,7 @@ in modules // { }; }; - pythonefl_1_16 = buildPythonPackage rec { + pythonefl = buildPythonPackage rec { name = "python-efl-${version}"; version = "1.16.0"; src = pkgs.fetchurl { @@ -24061,7 +24061,7 @@ in modules // { preBuild = "${python}/bin/${python.executable} setup.py build_ext"; installPhase= "${python}/bin/${python.executable} setup.py install --prefix=$out"; - buildInputs = with self; [ pkgs.pkgconfig pkgs.e19.efl pkgs.e19.elementary ]; + buildInputs = with self; [ pkgs.pkgconfig pkgs.enlightenment.efl pkgs.enlightenment.elementary ]; doCheck = false; meta = { From 3f6ad460e7586133bef4bf609ad96b0257271e21 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 12 Mar 2016 02:52:32 +0300 Subject: [PATCH 0244/1059] enlightenment.efl: 1.16.1 -> 1.17.0 --- nixos/modules/services/x11/desktop-managers/enlightenment.nix | 2 +- pkgs/desktops/enlightenment/efl.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/x11/desktop-managers/enlightenment.nix b/nixos/modules/services/x11/desktop-managers/enlightenment.nix index 6c77a725679..994960b1d37 100644 --- a/nixos/modules/services/x11/desktop-managers/enlightenment.nix +++ b/nixos/modules/services/x11/desktop-managers/enlightenment.nix @@ -76,7 +76,7 @@ in services.udisks2.enable = true; services.upower.enable = config.powerManagement.enable; - #services.dbus.packages = [ pkgs.efl ]; # dbus-1 folder is not in /etc but in /share, so needs fixing first + services.dbus.packages = [ e.efl ]; systemd.user.services.efreet = { enable = true; diff --git a/pkgs/desktops/enlightenment/efl.nix b/pkgs/desktops/enlightenment/efl.nix index dd9c837ed8b..c2124f0b292 100644 --- a/pkgs/desktops/enlightenment/efl.nix +++ b/pkgs/desktops/enlightenment/efl.nix @@ -3,10 +3,10 @@ stdenv.mkDerivation rec { name = "efl-${version}"; - version = "1.16.1"; + version = "1.17.0"; src = fetchurl { url = "http://download.enlightenment.org/rel/libs/efl/${name}.tar.xz"; - sha256 = "116s4lcfj5lrfhyvvka3np9glqyrh21cyl9rhw7al0wgb60vw0gg"; + sha256 = "1zisnz4x54mn9sm46kcr571faqnazkcglyf0lbz19l34syx40df1"; }; buildInputs = [ pkgconfig openssl zlib freetype fontconfig fribidi SDL2 SDL mesa From 7fb2291f55ecd5a657d6d2e9e208c05d3a794adc Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 12 Mar 2016 02:53:02 +0300 Subject: [PATCH 0245/1059] enlightenment.enlightenment: 0.20.3 -> 0.20.6 --- .../x11/desktop-managers/enlightenment.nix | 6 ++--- pkgs/desktops/enlightenment/enlightenment.nix | 22 +++++++++---------- 2 files changed, 13 insertions(+), 15 deletions(-) diff --git a/nixos/modules/services/x11/desktop-managers/enlightenment.nix b/nixos/modules/services/x11/desktop-managers/enlightenment.nix index 994960b1d37..c981b40f74a 100644 --- a/nixos/modules/services/x11/desktop-managers/enlightenment.nix +++ b/nixos/modules/services/x11/desktop-managers/enlightenment.nix @@ -7,7 +7,6 @@ let e = pkgs.enlightenment; xcfg = config.services.xserver; cfg = xcfg.desktopManager.enlightenment; - enlightenment = e.enlightenment.override { set_freqset_setuid = true; }; GST_PLUGIN_PATH = lib.makeSearchPath "lib/gstreamer-1.0" [ pkgs.gst_all_1.gst-plugins-base pkgs.gst_all_1.gst-plugins-good @@ -30,7 +29,7 @@ in config = mkIf (xcfg.enable && cfg.enable) { environment.systemPackages = [ - e.efl e.evas e.emotion e.elementary enlightenment + e.efl e.evas e.emotion e.elementary e.enlightenment e.terminology e.econnman pkgs.xorg.xauth # used by kdesu pkgs.gtk # To get GTK+'s themes. @@ -59,8 +58,7 @@ in # Update user dirs as described in http://freedesktop.org/wiki/Software/xdg-user-dirs/ ${pkgs.xdg-user-dirs}/bin/xdg-user-dirs-update - ${enlightenment}/bin/enlightenment_start - waitPID=$! + exec ${e.enlightenment}/bin/enlightenment_start ''; }]; diff --git a/pkgs/desktops/enlightenment/enlightenment.nix b/pkgs/desktops/enlightenment/enlightenment.nix index ee9b3fbc526..ea232a2c607 100644 --- a/pkgs/desktops/enlightenment/enlightenment.nix +++ b/pkgs/desktops/enlightenment/enlightenment.nix @@ -1,15 +1,16 @@ -{ stdenv, fetchurl, pkgconfig, efl, elementary, xorg, libffi, pam, alsaLib, luajit, bzip2, libuuid -, libpthreadstubs, gdbm, libcap, mesa_glu, xkeyboard_config, set_freqset_setuid ? false }: +{ stdenv, fetchurl, pkgconfig, efl, elementary, xcbutilkeysyms, libXrandr, libXdmcp, libxcb, +libffi, pam, alsaLib, luajit, bzip2, libuuid, libpthreadstubs, gdbm, libcap, mesa_glu +, xkeyboard_config }: stdenv.mkDerivation rec { name = "enlightenment-${version}"; - version = "0.20.3"; + version = "0.20.6"; src = fetchurl { url = "http://download.enlightenment.org/rel/apps/enlightenment/${name}.tar.xz"; - sha256 = "19z3bwdzwpzwi330l5g5mj7xy6wy8xrc39zivjhm0d1ql3fh649j"; + sha256 = "11ahll68nlci214ka05whp5l32hy9lznmcdfqx3hxsmq2p7bl7zj"; }; - buildInputs = [ pkgconfig efl elementary xorg.libXdmcp xorg.libxcb - xorg.xcbutilkeysyms xorg.libXrandr libffi pam alsaLib luajit bzip2 libuuid + buildInputs = [ pkgconfig efl elementary libXdmcp libxcb + xcbutilkeysyms libXrandr libffi pam alsaLib luajit bzip2 libuuid libpthreadstubs gdbm ] ++ stdenv.lib.optionals stdenv.isLinux [ libcap ]; NIX_CFLAGS_COMPILE = [ "-I${efl}/include/eo-1" "-I${efl}/include/emile-1" "-I${libuuid}/include/uuid" ]; preConfigure = '' @@ -24,19 +25,18 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - # this is a hack and without this cpufreq module is not working: - # when set_freqset_setuid is true and "e_freqset" is set in setuidPrograms (this is taken care of in e19 NixOS module), - # then this postInstall does the folowing: + # this is a hack and without this cpufreq module is not working. does the following: # 1. moves the "freqset" binary to "e_freqset", # 2. linkes "e_freqset" to enlightenment/bin so that, # 3. setuidPrograms detects it and makes appropriate stuff to /var/setuid-wrappers/e_freqset, # 4. and finaly, linkes /var/setuid-wrappers/e_freqset to original destination where enlightenment wants it - postInstall = if set_freqset_setuid then '' + postInstall = '' export CPUFREQ_DIRPATH=`readlink -f $out/lib/enlightenment/modules/cpufreq/linux-gnu-*`; mv $CPUFREQ_DIRPATH/freqset $CPUFREQ_DIRPATH/e_freqset ln -sv $CPUFREQ_DIRPATH/e_freqset $out/bin/e_freqset ln -sv /var/setuid-wrappers/e_freqset $CPUFREQ_DIRPATH/freqset - '' else ""; + ''; + meta = { description = "The Compositing Window Manager and Desktop Shell"; homepage = http://enlightenment.org/; From eaab584a3fa56a5719c26a2e1f6eff2cd5e449a6 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 12 Mar 2016 02:53:35 +0300 Subject: [PATCH 0246/1059] python2Packages.pythonefl: 1.16.0 -> 1.17.0 --- 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 6e748fae415..00f338e147e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -24047,12 +24047,13 @@ in modules // { }; }; + # Should be bumped along with EFL! pythonefl = buildPythonPackage rec { name = "python-efl-${version}"; - version = "1.16.0"; + version = "1.17.0"; src = pkgs.fetchurl { url = "http://download.enlightenment.org/rel/bindings/python/${name}.tar.xz"; - sha256 = "142ffki41xj0z2dnf011g8j4b35waviprk4x1dhvy1wgqdywl61l"; + sha256 = "0yciffcgmyfmy95gidg9jhczv96jyi38zcdj0q19fjmx704zx84y"; }; preConfigure = '' From db090ce659682c9359d1abbf99785cd41d5df3d0 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 12 Mar 2016 03:18:58 +0300 Subject: [PATCH 0247/1059] openbox: add platforms, split version --- pkgs/applications/window-managers/openbox/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/window-managers/openbox/default.nix b/pkgs/applications/window-managers/openbox/default.nix index 326cd2a49f4..ba0c812ef6a 100644 --- a/pkgs/applications/window-managers/openbox/default.nix +++ b/pkgs/applications/window-managers/openbox/default.nix @@ -3,7 +3,8 @@ , imlib2, pango, libstartup_notification, makeWrapper }: stdenv.mkDerivation rec { - name = "openbox-3.6.1"; + name = "openbox-${version}"; + version = "3.6.1"; buildInputs = [ pkgconfig libxml2 @@ -40,5 +41,6 @@ stdenv.mkDerivation rec { description = "X window manager for non-desktop embedded systems"; homepage = http://openbox.org/; license = stdenv.lib.licenses.gpl2Plus; + platforms = stdenv.lib.platforms.linux; }; } From e17ff07c0b9043d630b4a1f76a937daf013640a0 Mon Sep 17 00:00:00 2001 From: Cole Mickens Date: Fri, 11 Mar 2016 16:24:12 -0800 Subject: [PATCH 0248/1059] libinput: 1.2.0 -> 1.2.1 --- pkgs/development/libraries/libinput/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libinput/default.nix b/pkgs/development/libraries/libinput/default.nix index 4db3913bdd2..6d80bfdccf1 100644 --- a/pkgs/development/libraries/libinput/default.nix +++ b/pkgs/development/libraries/libinput/default.nix @@ -15,11 +15,11 @@ in with stdenv.lib; stdenv.mkDerivation rec { - name = "libinput-1.2.0"; + name = "libinput-1.2.1"; src = fetchurl { url = "http://www.freedesktop.org/software/libinput/${name}.tar.xz"; - sha256 = "0b3f67xsy1s84cvzw22mjfkbcv6pj4p4yns4h3m0fmb7zqbvjm0p"; + sha256 = "1hy1h0a4zx5wj23sah4kms2z0285yl0kcn4fqlrrp1gqax9qrnz2"; }; configureFlags = [ From f09d15489e71d2e333c721207585c9d69fa6a409 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 12 Mar 2016 02:53:48 +0300 Subject: [PATCH 0249/1059] enlightenment.evas: 1.16.0 -> 1.17.0 --- pkgs/desktops/enlightenment/evas.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/enlightenment/evas.nix b/pkgs/desktops/enlightenment/evas.nix index 6cc6af9678b..fe8897b8be7 100644 --- a/pkgs/desktops/enlightenment/evas.nix +++ b/pkgs/desktops/enlightenment/evas.nix @@ -1,10 +1,10 @@ { stdenv, fetchurl, pkgconfig, efl, zlib, libspectre, gstreamer, gst_plugins_base, gst_ffmpeg, gst_plugins_good, poppler, librsvg, libraw }: stdenv.mkDerivation rec { name = "evas_generic_loaders-${version}"; - version = "1.16.0"; + version = "1.17.0"; src = fetchurl { url = "http://download.enlightenment.org/rel/libs/evas_generic_loaders/${name}.tar.xz"; - sha256 = "1il3i3rii6ddpj7cw2mdqnb0q2wmhwnvs6qi9janna1n5hhrqyfm"; + sha256 = "0ynq1nx0bfgg19p4vki1fap36yyip53zaxpzncx2slr6jcx1kxf2"; }; buildInputs = [ pkgconfig efl zlib libspectre gstreamer gst_plugins_base gst_ffmpeg gst_plugins_good poppler librsvg libraw ]; meta = { From 94a2187cc001ee50d6dfdda4e75095a7e9d6df57 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 12 Mar 2016 02:53:55 +0300 Subject: [PATCH 0250/1059] enlightenment.emotion: 1.16.0 -> 1.17.0 --- pkgs/desktops/enlightenment/emotion.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/enlightenment/emotion.nix b/pkgs/desktops/enlightenment/emotion.nix index 282ef81ab4e..39b3b162075 100644 --- a/pkgs/desktops/enlightenment/emotion.nix +++ b/pkgs/desktops/enlightenment/emotion.nix @@ -1,10 +1,10 @@ { stdenv, fetchurl, pkgconfig, efl, vlc }: stdenv.mkDerivation rec { name = "emotion_generic_players-${version}"; - version = "1.16.0"; + version = "1.17.0"; src = fetchurl { url = "http://download.enlightenment.org/rel/libs/emotion_generic_players/${name}.tar.xz"; - sha256 = "163ay26c6dx49m1am7vsxxn0gy877zhayxq0yxn9zkbq2srzvjym"; + sha256 = "03kaql95mk0c5j50v3c5i5lmlr3gz7xlh8p8q87xz8zf9j5h1pp7"; }; buildInputs = [ pkgconfig efl vlc ]; NIX_CFLAGS_COMPILE = [ "-I${efl}/include/eo-1" ]; From 42285cb36d78e064fa951acc405cc9aef143ad81 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 12 Mar 2016 02:54:09 +0300 Subject: [PATCH 0251/1059] enlightenment.elementary: 1.16.1 -> 1.17.0 --- pkgs/desktops/enlightenment/elementary.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/enlightenment/elementary.nix b/pkgs/desktops/enlightenment/elementary.nix index a1a4b955d9e..ffb0d70920e 100644 --- a/pkgs/desktops/enlightenment/elementary.nix +++ b/pkgs/desktops/enlightenment/elementary.nix @@ -1,12 +1,12 @@ -{ stdenv, fetchurl, pkgconfig, efl, libcap, automake114x, autoconf, libdrm, gdbm }: +{ stdenv, fetchurl, pkgconfig, efl, libcap, automake, autoconf, libdrm, gdbm }: stdenv.mkDerivation rec { name = "elementary-${version}"; - version = "1.16.1"; + version = "1.17.0"; src = fetchurl { url = "http://download.enlightenment.org/rel/libs/elementary/${name}.tar.xz"; - sha256 = "0q58imh7s35q6cq5hsa6gqj84rkckh8s61iass8zyvcw19j66f3y"; + sha256 = "0avb0d6nk4d88l81c2j6py13vdfnvg080ycw2y3qvawyjf1mhska"; }; - buildInputs = [ pkgconfig efl libdrm gdbm automake114x autoconf ] ++ stdenv.lib.optionals stdenv.isLinux [ libcap ]; + buildInputs = [ pkgconfig efl libdrm gdbm automake autoconf ] ++ stdenv.lib.optionals stdenv.isLinux [ libcap ]; NIX_CFLAGS_COMPILE = [ "-I${libdrm}/include/libdrm" ]; patches = [ ./elementary.patch ]; enableParallelBuilding = true; From b4390eaac3ab176a650864a3252b3921c4da0c4e Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 12 Mar 2016 02:54:29 +0300 Subject: [PATCH 0252/1059] enlightenment.econnman: cleanup, use python wrapper --- pkgs/desktops/enlightenment/econnman.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/enlightenment/econnman.nix b/pkgs/desktops/enlightenment/econnman.nix index f1ffe7cd604..0dabd7f1347 100644 --- a/pkgs/desktops/enlightenment/econnman.nix +++ b/pkgs/desktops/enlightenment/econnman.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, efl, elementary, python27, python27Packages, dbus, makeWrapper }: +{ stdenv, fetchurl, pkgconfig, efl, elementary, python2Packages, dbus, makeWrapper }: stdenv.mkDerivation rec { name = "econnman-${version}"; version = "1.1"; @@ -7,10 +7,10 @@ stdenv.mkDerivation rec { sha256 = "057pwwavlvrrq26bncqnfrf449zzaim0zq717xv86av4n940gwv0"; }; - buildInputs = [ makeWrapper pkgconfig efl python27 dbus ]; - propagatedBuildInputs = [ python27Packages.pythonefl python27Packages.dbus elementary ]; + buildInputs = [ makeWrapper pkgconfig efl python2Packages.python python2Packages.wrapPython dbus ]; + pythonPath = [ python2Packages.pythonefl python2Packages.dbus elementary ]; postInstall = '' - wrapProgram $out/bin/econnman-bin --prefix PYTHONPATH : ${python27Packages.dbus}/lib/python2.7/site-packages:${python27Packages.pythonefl}/lib/python2.7/site-packages + wrapPythonPrograms ''; meta = { From 626bfce3b867b4bb17d48887a7c1b53ce1b1e8cd Mon Sep 17 00:00:00 2001 From: makefu Date: Sat, 12 Mar 2016 01:53:15 +0100 Subject: [PATCH 0253/1059] graphite: fix carbonCache graphiteWeb graphiteApi This commit implements the changes necessary to start up a graphite carbon Cache with twisted and start the corresponding graphiteWeb service. Dependencies need to be included via python buildEnv to include all recursive implicit dependencies. Additionally cairo is a requirement of graphiteWeb and pycairo is not a standard python package (buildPythonPackage) and therefore cannot be included via buildEnv. It also needs cairo in the Library PATH. --- .../modules/services/monitoring/graphite.nix | 29 +++++++++++++++---- 1 file changed, 24 insertions(+), 5 deletions(-) diff --git a/nixos/modules/services/monitoring/graphite.nix b/nixos/modules/services/monitoring/graphite.nix index 976fd253a7c..7104a5796f7 100644 --- a/nixos/modules/services/monitoring/graphite.nix +++ b/nixos/modules/services/monitoring/graphite.nix @@ -51,7 +51,13 @@ let ''; carbonEnv = { - PYTHONPATH = "${pkgs.python27Packages.carbon}/lib/python2.7/site-packages"; + PYTHONPATH = let + cenv = pkgs.python.buildEnv.override { + extraLibs = [ pkgs.python27Packages.carbon ]; + }; + cenvPack = "${cenv}/${pkgs.python.sitePackages}"; + # opt/graphite/lib contains twisted.plugins.carbon-cache + in "${cenvPack}/opt/graphite/lib:${cenvPack}"; GRAPHITE_ROOT = dataDir; GRAPHITE_CONF_DIR = configDir; GRAPHITE_STORAGE_DIR = dataDir; @@ -445,10 +451,21 @@ in { after = [ "network-interfaces.target" ]; path = [ pkgs.perl ]; environment = { - PYTHONPATH = "${pkgs.python27Packages.graphite_web}/lib/python2.7/site-packages"; + PYTHONPATH = let + penv = pkgs.python.buildEnv.override { + extraLibs = [ + pkgs.python27Packages.graphite_web + pkgs.python27Packages.pysqlite + ]; + }; + penvPack = "${penv}/${pkgs.python.sitePackages}"; + # opt/graphite/webapp contains graphite/settings.py + # explicitly adding pycairo in path because it cannot be imported via buildEnv + in "${penvPack}/opt/graphite/webapp:${penvPack}:${pkgs.pycairo}/${pkgs.python.sitePackages}"; DJANGO_SETTINGS_MODULE = "graphite.settings"; GRAPHITE_CONF_DIR = configDir; GRAPHITE_STORAGE_DIR = dataDir; + LD_LIBRARY_PATH = "${pkgs.cairo}/lib"; }; serviceConfig = { ExecStart = '' @@ -486,9 +503,11 @@ in { wantedBy = [ "multi-user.target" ]; after = [ "network-interfaces.target" ]; environment = { - PYTHONPATH = - "${cfg.api.package}/lib/python2.7/site-packages:" + - concatMapStringsSep ":" (f: f + "/lib/python2.7/site-packages") cfg.api.finders; + PYTHONPATH = let + aenv = pkgs.python.buildEnv.override { + extraLibs = [ cfg.api.package pkgs.cairo ] ++ cfg.api.finders; + }; + in "${aenv}/${pkgs.python.sitePackages}"; GRAPHITE_API_CONFIG = graphiteApiConfig; LD_LIBRARY_PATH = "${pkgs.cairo}/lib"; }; From b80f82378997b1c88b42df45ad2213cc89a050db Mon Sep 17 00:00:00 2001 From: Allan Espinosa Date: Fri, 11 Mar 2016 03:42:16 -0600 Subject: [PATCH 0254/1059] unrar: build on darwin --- pkgs/tools/archivers/unrar/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/tools/archivers/unrar/default.nix b/pkgs/tools/archivers/unrar/default.nix index cbfced7aa6b..768c7afd7eb 100644 --- a/pkgs/tools/archivers/unrar/default.nix +++ b/pkgs/tools/archivers/unrar/default.nix @@ -9,6 +9,10 @@ stdenv.mkDerivation rec { sha256 = "0qw77gvr57azjbn76cjlm4sv1hf2hh90g7n7n33gfvlpnbs7mf3p"; }; + postPatch = '' + sed 's/^CXX=g++/#CXX/' -i makefile + ''; + buildPhase = '' make unrar make clean From b4fc87b06291f8943d9dd3c8b47e3337329baf00 Mon Sep 17 00:00:00 2001 From: Michiel Leenaars Date: Sat, 12 Mar 2016 12:10:38 +0100 Subject: [PATCH 0255/1059] 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 2a288ad435be06b68ff90bc768bc512b9094d29a Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 12 Mar 2016 14:12:44 +0300 Subject: [PATCH 0256/1059] spin: add gcc to path --- pkgs/development/tools/analysis/spin/default.nix | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/analysis/spin/default.nix b/pkgs/development/tools/analysis/spin/default.nix index 29559bf8b0e..ab9954735f3 100644 --- a/pkgs/development/tools/analysis/spin/default.nix +++ b/pkgs/development/tools/analysis/spin/default.nix @@ -1,6 +1,9 @@ -{stdenv, fetchurl, yacc }: +{ stdenv, fetchurl, makeWrapper, yacc, gcc }: -stdenv.mkDerivation rec { +let + binPath = stdenv.lib.makeBinPath [ gcc ]; + +in stdenv.mkDerivation rec { name = "spin-${version}"; version = "6.4.5"; url-version = stdenv.lib.replaceChars ["."] [""] version; @@ -13,11 +16,16 @@ stdenv.mkDerivation rec { sha256 = "0x8qnwm2xa8f176c52mzpvnfzglxs6xgig7bcgvrvkb3xf114224"; }; + nativeBuildInputs = [ makeWrapper ]; buildInputs = [ yacc ]; sourceRoot = "Spin/Src${version}"; - installPhase = "install -D spin $out/bin/spin"; + installPhase = '' + install -D spin $out/bin/spin + wrapProgram $out/bin/spin \ + --prefix PATH : ${binPath} + ''; meta = with stdenv.lib; { description = "Formal verification tool for distributed software systems"; From 0f22f51d6000d979b7936f6435fe97ed9277e5bc Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Wed, 3 Feb 2016 12:48:22 +0000 Subject: [PATCH 0257/1059] django_nose: init at 1.4.3 --- 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 30c62450962..a519e4e8ab8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8062,6 +8062,27 @@ in modules // { }; }; + django_nose = buildPythonPackage rec { + name = "django-nose-${version}"; + version = "1.4.3"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/d/django-nose/${name}.tar.gz"; + sha256 = "0rl9ipa98smprlw56xqlhzhps28p84wg0640qlyn0rjyrpsdmf0r"; + }; + + # vast dependency list + doCheck = false; + + propagatedBuildInputs = with self; [ django nose ]; + + meta = { + description = "Provides all the goodness of nose in your Django tests"; + homepage = https://github.com/django-nose/django-nose; + license = licenses.bsd3; + }; + }; + django_modelcluster = buildPythonPackage rec { name = "django-modelcluster-${version}"; version = "0.6.2"; From fb26e993c5cdccad58945f8613512dd8346cf182 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Wed, 3 Feb 2016 12:50:16 +0000 Subject: [PATCH 0258/1059] django_compat: init at 1.0.8 --- pkgs/top-level/python-packages.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a519e4e8ab8..ef27d454402 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8002,6 +8002,28 @@ in modules // { }; }; + django_compat = buildPythonPackage rec { + name = "django-compat-${version}"; + version = "1.0.8"; + + # build process attempts to access a missing README.rst + disabled = isPy35; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/d/django-compat/${name}.tar.gz"; + sha256 = "195dgr55vzpw1fbjvbw2h35k9bfhvm5zchh2p7nzbq57xmwb3sra"; + }; + + buildInputs = with self; [ django_nose ]; + propagatedBuildInputs = with self; [ django six ]; + + meta = { + description = "Forward and backwards compatibility layer for Django 1.4, 1.7, 1.8, and 1.9"; + homepage = https://github.com/arteria/django-compat; + license = licenses.mit; + }; + }; + django_evolution = buildPythonPackage rec { name = "django_evolution-0.7.5"; disabled = isPy3k; From 607ea3ef766f2b24350d04c3c6a34e62691f46df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Sat, 12 Mar 2016 10:05:49 -0300 Subject: [PATCH 0259/1059] uget: init at 2.0.5 --- pkgs/tools/networking/uget/default.nix | 45 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 47 insertions(+) create mode 100644 pkgs/tools/networking/uget/default.nix diff --git a/pkgs/tools/networking/uget/default.nix b/pkgs/tools/networking/uget/default.nix new file mode 100644 index 00000000000..28d3f2c1633 --- /dev/null +++ b/pkgs/tools/networking/uget/default.nix @@ -0,0 +1,45 @@ +{ stdenv, fetchurl, pkgconfig, intltool, openssl, curl, libnotify, gstreamer, + gst_plugins_base, gst_plugins_good, gnome3, makeWrapper, aria2 ? null }: + +stdenv.mkDerivation rec { + name = "uget-${version}"; + version = "2.0.5"; + + src = fetchurl { + url = "mirror://sourceforge/urlget/${name}.tar.gz"; + sha256 = "0cqz8cd8dyciam07w6ipgzj52zhf9q0zvg6ag6wz481sxkpdnfh3"; + }; + + nativeBuildInputs = [ pkgconfig intltool makeWrapper ]; + + buildInputs = [ + openssl curl libnotify gstreamer gst_plugins_base gst_plugins_good + gnome3.gtk gnome3.dconf + ] + ++ (stdenv.lib.optional (aria2 != null) aria2); + + enableParallelBuilding = true; + + preFixup = '' + wrapProgram $out/bin/uget-gtk \ + ${stdenv.lib.optionalString (aria2 != null) ''--suffix PATH : "${aria2}/bin"''} \ + --prefix XDG_DATA_DIRS : "$out/share:$GSETTINGS_SCHEMAS_PATH" \ + --prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH" \ + --prefix GIO_EXTRA_MODULES : "${gnome3.dconf}/lib/gio/modules" + ''; + + meta = with stdenv.lib; { + description = "Download manager using gtk+ and libcurl"; + longDescription = '' + uGet is a VERY Powerful download manager application with a large + inventory of features but is still very light-weight and low on + resources, so don't let the impressive list of features scare you into + thinking that it "might be too powerful" because remember power is good + and lightweight power is uGet! + ''; + license = licenses.lgpl21; + homepage = http://www.ugetdm.com; + maintainers = with maintainers; [ romildo ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ede7ce944aa..6a6123604be 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3554,6 +3554,8 @@ let ufraw = callPackage ../applications/graphics/ufraw { }; + uget = callPackage ../tools/networking/uget { }; + umlet = callPackage ../tools/misc/umlet { }; unetbootin = callPackage ../tools/cd-dvd/unetbootin { }; From 7b32e5497cc523bc4d2fd74c0a7edeeb52bb19cb Mon Sep 17 00:00:00 2001 From: devhell <^@regexmail.net> Date: Fri, 11 Mar 2016 22:11:22 +0000 Subject: [PATCH 0260/1059] libzen: 0.4.32 -> 0.4.33 Built and tested locally. From the changelog: ``` Version 0.4.33, 2016-02-29 x File::Open(): using now FILE_APPEND_DATA on windows when append mode is requested x File::Open(): accept file names with * and ? characters on non-Windows platforms x Better MinGW and CygWin compatibility x autogen.sh: Adding missing shebang x Dir/Create: create the parents directory if not existing ``` Additionally, the package was cleaned up, now using `autoreconfHook` and with some helpful pointers by @hrdinka. --- pkgs/development/libraries/libzen/default.nix | 23 +++++++++---------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/pkgs/development/libraries/libzen/default.nix b/pkgs/development/libraries/libzen/default.nix index 127eeaeaca9..23597c2e03b 100644 --- a/pkgs/development/libraries/libzen/default.nix +++ b/pkgs/development/libraries/libzen/default.nix @@ -1,26 +1,25 @@ -{ stdenv, fetchurl, automake, autoconf, libtool, pkgconfig }: +{ stdenv, fetchurl, autoreconfHook }: -let version = "0.4.32"; in - -stdenv.mkDerivation { +stdenv.mkDerivation rec { + version = "0.4.33"; name = "libzen-${version}"; src = fetchurl { - url = "http://mediaarea.net/download/source/libzen/${version}/libzen_${version}.tar.bz2"; - sha256 = "0rhbiaywij6jj8d7vkc4v7y21ic1kv9fbn9lk82mm12yjwzlhhyd"; + url = "https://mediaarea.net/download/source/libzen/${version}/libzen_${version}.tar.bz2"; + sha256 = "0py5iagajz6m5zh26svkjyy85k1dmyhi6cdbmc3cb56a4ix1k2d2"; }; - buildInputs = [ automake autoconf libtool pkgconfig ]; + nativeBuildInputs = [ autoreconfHook ]; configureFlags = [ "--enable-shared" ]; sourceRoot = "./ZenLib/Project/GNU/Library/"; preConfigure = "sh autogen.sh"; - meta = { + meta = with stdenv.lib; { description = "Shared library for libmediainfo and mediainfo"; - homepage = http://mediaarea.net/; - license = stdenv.lib.licenses.bsd2; - platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.devhell ]; + homepage = https://mediaarea.net/; + license = licenses.bsd2; + platforms = platforms.unix; + maintainers = [ maintainers.devhell ]; }; } From 5d36644f42dc6793b2819007023776873f3df99f Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 12 Mar 2016 07:48:12 -0600 Subject: [PATCH 0261/1059] mantisbt: fix typo in documentation --- nixos/modules/services/misc/mantisbt.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/misc/mantisbt.nix b/nixos/modules/services/misc/mantisbt.nix index 372106149fd..7e3474feb67 100644 --- a/nixos/modules/services/misc/mantisbt.nix +++ b/nixos/modules/services/misc/mantisbt.nix @@ -46,7 +46,7 @@ in type = types.lines; default = ""; description = '' - The contents of config_inc.php, without leading Date: Fri, 11 Mar 2016 21:45:19 +0100 Subject: [PATCH 0262/1059] kdevelop: 4.7.1 -> 4.7.3 --- pkgs/applications/editors/kdevelop/default.nix | 10 ++++++---- pkgs/applications/editors/kdevelop/gettext.patch | 8 ++++++++ .../libraries/kdevplatform/default.nix | 15 ++++++--------- .../libraries/kdevplatform/gettext.patch | 8 ++++++++ 4 files changed, 28 insertions(+), 13 deletions(-) create mode 100644 pkgs/applications/editors/kdevelop/gettext.patch create mode 100644 pkgs/development/libraries/kdevplatform/gettext.patch diff --git a/pkgs/applications/editors/kdevelop/default.nix b/pkgs/applications/editors/kdevelop/default.nix index b0ac24ee61a..938a56518d5 100644 --- a/pkgs/applications/editors/kdevelop/default.nix +++ b/pkgs/applications/editors/kdevelop/default.nix @@ -3,12 +3,12 @@ stdenv.mkDerivation rec { name = "${pname}-${version}"; - version = "4.7.1"; + version = "4.7.3"; pname = "kdevelop"; src = fetchurl { - url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz"; - sha256 = "e3ad5377f53739a67216d37cda3f88c03f8fbb0c96e2a9ef4056df3c124e95c1"; + url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.bz2"; + sha256 = "9db388d1c8274da7d168c13db612c7e94ece7815757b945b0aa0371620a06b35"; }; buildInputs = [ kdevplatform kdebase_workspace okteta qjson ]; @@ -17,6 +17,8 @@ stdenv.mkDerivation rec { propagatedUserEnvPkgs = [ kdevplatform kate konsole kde_runtime oxygen_icons ]; + patches = [ ./gettext.patch ]; + NIX_CFLAGS_COMPILE = "-I${okteta}/include/KDE"; meta = with stdenv.lib; { @@ -31,6 +33,6 @@ stdenv.mkDerivation rec { programing languages. It is based on KDevPlatform, KDE and Qt libraries and is under development since 1998. ''; - homepage = http://www.kdevelop.org; + homepage = https://www.kdevelop.org; }; } diff --git a/pkgs/applications/editors/kdevelop/gettext.patch b/pkgs/applications/editors/kdevelop/gettext.patch new file mode 100644 index 00000000000..cefbc743fc3 --- /dev/null +++ b/pkgs/applications/editors/kdevelop/gettext.patch @@ -0,0 +1,8 @@ +diff -urN kdevelop-4.7.3.orig/po/CMakeLists.txt kdevelop-4.7.3/po/CMakeLists.txt +--- kdevelop-4.7.3.orig/po/CMakeLists.txt 2016-03-04 23:29:09.411886565 +0100 ++++ kdevelop-4.7.3/po/CMakeLists.txt 2016-03-04 23:28:35.108451713 +0100 +@@ -1,3 +1,4 @@ ++cmake_policy(SET CMP0002 OLD) + find_package(Gettext REQUIRED) + if (NOT GETTEXT_MSGMERGE_EXECUTABLE) + MESSAGE(FATAL_ERROR "Please install msgmerge binary") diff --git a/pkgs/development/libraries/kdevplatform/default.nix b/pkgs/development/libraries/kdevplatform/default.nix index 8398f2d7db4..44e1a1f63ad 100644 --- a/pkgs/development/libraries/kdevplatform/default.nix +++ b/pkgs/development/libraries/kdevplatform/default.nix @@ -1,19 +1,15 @@ -{ stdenv, fetchurl, fetchpatch, cmake, kdelibs, subversion, qt4, automoc4, phonon, +{ stdenv, fetchurl, cmake, kdelibs, subversion, qt4, automoc4, phonon, gettext, pkgconfig, apr, aprutil, boost, qjson, grantlee }: stdenv.mkDerivation rec { - name = "kdevplatform-1.7.1"; + name = "kdevplatform-1.7.3"; src = fetchurl { - url = "mirror://kde/stable/kdevelop/4.7.1/src/${name}.tar.xz"; - sha256 = "dfd8953aec204f04bd949443781aa0f6d9d58c40f73027619a168bb4ffc4b1ac"; + url = "mirror://kde/stable/kdevelop/4.7.3/src/${name}.tar.bz2"; + sha256 = "195134bde11672de38838f4b341ed28c58042374ca12beedacca9d30e6ab4a2b"; }; - patches = [(fetchpatch { - name = "svn-1.9.patch"; - url = "https://git.reviewboard.kde.org/r/124783/diff/raw/"; - sha256 = "1ixll5pvynb3l4znc65d82a5bj2s3c7c7is585s2wdpfzjgl5ay0"; - })]; + patches = [ ./gettext.patch ]; propagatedBuildInputs = [ kdelibs qt4 phonon ]; buildInputs = [ apr aprutil subversion boost qjson grantlee ]; @@ -31,5 +27,6 @@ stdenv.mkDerivation rec { IDE-like programs. It is programing-language independent, and is planned to be used by programs like: KDevelop, Quanta, Kile, KTechLab ... etc." ''; + homepage = https://www.kdevelop.org; }; } diff --git a/pkgs/development/libraries/kdevplatform/gettext.patch b/pkgs/development/libraries/kdevplatform/gettext.patch new file mode 100644 index 00000000000..733a542e0c8 --- /dev/null +++ b/pkgs/development/libraries/kdevplatform/gettext.patch @@ -0,0 +1,8 @@ +diff -urN kdevplatform-1.7.3.orig/po/CMakeLists.txt kdevplatform-1.7.3/po/CMakeLists.txt +--- kdevplatform-1.7.3.orig/po/CMakeLists.txt 2016-03-04 23:25:30.102112596 +0100 ++++ kdevplatform-1.7.3/po/CMakeLists.txt 2016-03-04 23:26:06.242570024 +0100 +@@ -1,3 +1,4 @@ ++cmake_policy(SET CMP0002 OLD) + find_package(Gettext REQUIRED) + if (NOT GETTEXT_MSGMERGE_EXECUTABLE) + MESSAGE(FATAL_ERROR "Please install msgmerge binary") From eac89788da77c95529b4cc29bc03a9b4e1f8af86 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Fri, 11 Mar 2016 23:03:14 +0000 Subject: [PATCH 0263/1059] apacheHttpd: add support for HTTP/2 In NixOS you can enable HTTP/2 like this: services.httpd.extraModules = [ "http2" ]; services.httpd.extraConfig = '' Protocols h2 http/1.1 ''; --- pkgs/servers/http/apache-httpd/2.4.nix | 4 ++++ pkgs/top-level/all-packages.nix | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/http/apache-httpd/2.4.nix b/pkgs/servers/http/apache-httpd/2.4.nix index ddb1ec443a0..a2e039bd399 100644 --- a/pkgs/servers/http/apache-httpd/2.4.nix +++ b/pkgs/servers/http/apache-httpd/2.4.nix @@ -1,6 +1,7 @@ { stdenv, fetchurl, perl, zlib, apr, aprutil, pcre, libiconv , proxySupport ? true , sslSupport ? true, openssl +, http2Support ? true, libnghttp2 , ldapSupport ? true, openldap , libxml2Support ? true, libxml2 , luaSupport ? false, lua5 @@ -12,6 +13,7 @@ in assert sslSupport -> aprutil.sslSupport && openssl != null; assert ldapSupport -> aprutil.ldapSupport && openldap != null; +assert http2Support -> libnghttp2 != null; stdenv.mkDerivation rec { version = "2.4.18"; @@ -25,6 +27,7 @@ stdenv.mkDerivation rec { buildInputs = [perl] ++ optional ldapSupport openldap ++ # there is no --with-ldap flag optional libxml2Support libxml2 ++ + optional http2Support libnghttp2 ++ optional stdenv.isDarwin libiconv; # Required for ‘pthread_cancel’. @@ -44,6 +47,7 @@ stdenv.mkDerivation rec { --enable-cgi ${optionalString proxySupport "--enable-proxy"} ${optionalString sslSupport "--enable-ssl --with-ssl=${openssl}"} + ${optionalString http2Support "--enable-http2 --with-nghttp2=${libnghttp2}"} ${optionalString luaSupport "--enable-lua --with-lua=${lua5}"} ${optionalString libxml2Support "--with-libxml2=${libxml2}/include/libxml2"} ''; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b2bb982625c..c95d9d45868 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9461,7 +9461,8 @@ let }; apacheHttpd_2_4 = lowPrio (callPackage ../servers/http/apache-httpd/2.4.nix { - sslSupport = true; + # 1.0.2+ for ALPN support + openssl = openssl_1_0_2; }); apacheHttpdPackagesFor = apacheHttpd: self: let callPackage = newScope self; in { From 0ba77c4cbd41a02345218594583aaea5580f4349 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 12 Mar 2016 17:36:25 +0300 Subject: [PATCH 0264/1059] octoprint-plugins.m3d-fio: 0.28.2 -> 0.29 --- .../0001-Don-t-use-static-library.patch | 16 ++++++++-------- pkgs/applications/misc/octoprint/plugins.nix | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/pkgs/applications/misc/octoprint/0001-Don-t-use-static-library.patch b/pkgs/applications/misc/octoprint/0001-Don-t-use-static-library.patch index 01b0c8f9cce..54116b80a6e 100644 --- a/pkgs/applications/misc/octoprint/0001-Don-t-use-static-library.patch +++ b/pkgs/applications/misc/octoprint/0001-Don-t-use-static-library.patch @@ -1,7 +1,7 @@ -From 73ff28c3ee5b737303871268a5487db0fcffc0f6 Mon Sep 17 00:00:00 2001 +From 0be3198cccf753226758684955f49a32d8d920c0 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 17 Feb 2016 14:37:31 +0300 -Subject: [PATCH 1/2] Don't use static library +Subject: [PATCH] Don't use static library --- octoprint_m3dfio/__init__.py | 67 +----------------------------------------- @@ -9,23 +9,23 @@ Subject: [PATCH 1/2] Don't use static library 2 files changed, 5 insertions(+), 68 deletions(-) diff --git a/octoprint_m3dfio/__init__.py b/octoprint_m3dfio/__init__.py -index 5e5369b..9f59768 100644 +index a2ca533..43f178a 100644 --- a/octoprint_m3dfio/__init__.py +++ b/octoprint_m3dfio/__init__.py -@@ -764,72 +764,7 @@ class M3DFioPlugin( +@@ -793,72 +793,7 @@ class M3DFioPlugin( # Set file locations self.setFileLocations() - # Check if running on Linux - if platform.uname()[0].startswith("Linux") : - -- # Check if running on a Raspberry Pi +- # Check if running on a Raspberry Pi 1 - if platform.uname()[4].startswith("armv6l") and self.getCpuHardware() == "BCM2708" : - - # Set shared library - self.sharedLibrary = ctypes.cdll.LoadLibrary(self._basefolder.replace('\\', '/') + "/static/libraries/preprocessor_arm1176jzf-s.so") - -- # Otherwise check if running on a Raspberry Pi 2 +- # Otherwise check if running on a Raspberry Pi 2 or Raspberry Pi 3 - elif platform.uname()[4].startswith("armv7l") and self.getCpuHardware() == "BCM2709" : - - # Set shared library @@ -87,7 +87,7 @@ index 5e5369b..9f59768 100644 if self.sharedLibrary : diff --git a/shared library source/Makefile b/shared library source/Makefile -index 4062a91..89dab71 100644 +index 9d015a1..a24f134 100644 --- a/shared library source/Makefile +++ b/shared library source/Makefile @@ -58,13 +58,15 @@ ifeq ($(TARGET_PLATFORM), OSX64) @@ -109,5 +109,5 @@ index 4062a91..89dab71 100644 clean: rm -f ../octoprint_m3dfio/static/libraries/$(PROG) -- -2.7.0 +2.7.1 diff --git a/pkgs/applications/misc/octoprint/plugins.nix b/pkgs/applications/misc/octoprint/plugins.nix index 1ae11be3cdd..d7927535f15 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.28.2"; + version = "0.29"; src = fetchFromGitHub { owner = "donovan6000"; repo = "M3D-Fio"; rev = "V${version}"; - sha256 = "1fwy6xmbid89rn7w7v779wb34gmfzc1fkggv3im1r7a7jrzph6nx"; + sha256 = "17jyr7qf9psq3xcckk1zjhaw0h8a0mh3v8lcv9vgqzni27kq9pnb"; }; patches = [ From 4a01f70f8f374f3f0e07f24957e212305325cf11 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 12 Mar 2016 17:52:09 +0300 Subject: [PATCH 0265/1059] octoprint service: add extraConfig --- nixos/modules/services/misc/octoprint.nix | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/misc/octoprint.nix b/nixos/modules/services/misc/octoprint.nix index 9cf46345c22..8ab2a9307a7 100644 --- a/nixos/modules/services/misc/octoprint.nix +++ b/nixos/modules/services/misc/octoprint.nix @@ -6,12 +6,16 @@ let cfg = config.services.octoprint; - cfgUpdate = pkgs.writeText "octoprint-config.yaml" (builtins.toJSON { + baseConfig = { plugins.cura.cura_engine = "${pkgs.curaengine}/bin/CuraEngine"; server.host = cfg.host; server.port = cfg.port; webcam.ffmpeg = "${pkgs.ffmpeg}/bin/ffmpeg"; - }); + }; + + fullConfig = recursiveUpdate cfg.extraConfig baseConfig; + + cfgUpdate = pkgs.writeText "octoprint-config.yaml" (builtins.toJSON fullConfig); pluginsEnv = pkgs.python.buildEnv.override { extraLibs = cfg.plugins pkgs.octoprint-plugins; @@ -62,13 +66,18 @@ in }; plugins = mkOption { - #type = types.functionTo (types.listOf types.package); default = plugins: []; defaultText = "plugins: []"; example = literalExample "plugins: [ m3d-fio ]"; description = "Additional plugins."; }; + extraConfig = mkOption { + type = types.attrs; + default = {}; + description = "Extra options which are added to OctoPrint's YAML configuration file."; + }; + }; }; From 84e8fece4187662d65d12feda26f2c39c003a7ed Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 12 Mar 2016 17:36:52 +0300 Subject: [PATCH 0266/1059] mjpg-streamer: 182 -> 2016-03-08 --- .../video/mjpg-streamer/default.nix | 37 +++++++++---------- 1 file changed, 17 insertions(+), 20 deletions(-) diff --git a/pkgs/applications/video/mjpg-streamer/default.nix b/pkgs/applications/video/mjpg-streamer/default.nix index 7cacc4fcf05..5409cf9f2f7 100644 --- a/pkgs/applications/video/mjpg-streamer/default.nix +++ b/pkgs/applications/video/mjpg-streamer/default.nix @@ -1,34 +1,31 @@ -{stdenv, fetchsvn, pkgconfig, libjpeg, imagemagick, libv4l}: +{ stdenv, fetchFromGitHub, cmake, libjpeg }: stdenv.mkDerivation rec { - rev = "182"; - name = "mjpg-streamer-${rev}"; + name = "mjpg-streamer-${version}"; + version = "2016-03-08"; - src = fetchsvn { - url = https://mjpg-streamer.svn.sourceforge.net/svnroot/mjpg-streamer/mjpg-streamer; - inherit rev; - sha256 = "008k2wk6xagprbiwk8fvzbz4dd6i8kzrr9n62gj5i1zdv7zcb16q"; + src = fetchFromGitHub { + owner = "jacksonliam"; + repo = "mjpg-streamer"; + rev = "4060cb64e3557037fd404d10e1c1d076b672e9e8"; + sha256 = "0g7y832jsz4ylmq9qp2l4fq6bm8l6dhsbi60fr5jfqpx4l0pia8m"; }; - patchPhase = '' - substituteInPlace Makefile "make -C plugins\/input_gspcav1" "# make -C plugins\/input_gspcav1" - substituteInPlace Makefile "cp plugins\/input_gspcav1\/input_gspcav1.so" "# cp plugins\/input_gspcav1\/input_gspcav1.so" + prePatch = '' + cd mjpg-streamer-experimental ''; + nativeBuildInputs = [ cmake ]; + buildInputs = [ libjpeg ]; + postFixup = '' - patchelf --set-rpath "$(patchelf --print-rpath $out/bin/mjpg_streamer):$out/lib:$out/lib/plugins" $out/bin/mjpg_streamer + patchelf --set-rpath "$(patchelf --print-rpath $out/bin/mjpg_streamer):$out/lib/mjpg-streamer" $out/bin/mjpg_streamer ''; - makeFlags = "DESTDIR=$(out)"; - - preInstall = '' - mkdir -p $out/{bin,lib} - ''; - - buildInputs = [ pkgconfig libjpeg imagemagick libv4l ]; - - meta = { + meta = with stdenv.lib; { homepage = http://sourceforge.net/projects/mjpg-streamer/; description = "MJPG-streamer takes JPGs from Linux-UVC compatible webcams, filesystem or other input plugins and streams them as M-JPEG via HTTP to webbrowsers, VLC and other software"; + platforms = platforms.linux; + licenses = licenses.gpl2; }; } From 83ff545bfd21815edd0f2ea194d49b198b0ca52b Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 12 Mar 2016 17:38:13 +0300 Subject: [PATCH 0267/1059] mjpg-streamer service: init --- nixos/modules/misc/ids.nix | 1 + nixos/modules/module-list.nix | 1 + .../services/networking/mjpg-streamer.nix | 75 +++++++++++++++++++ 3 files changed, 77 insertions(+) create mode 100644 nixos/modules/services/networking/mjpg-streamer.nix diff --git a/nixos/modules/misc/ids.nix b/nixos/modules/misc/ids.nix index 0ab2b8a76fc..919271cc4e9 100644 --- a/nixos/modules/misc/ids.nix +++ b/nixos/modules/misc/ids.nix @@ -254,6 +254,7 @@ octoprint = 230; avahi-autoipd = 231; nntp-proxy = 232; + mjpg-streamer = 233; # When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399! diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 9f5ba6c9da1..3dd60ad99dc 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -331,6 +331,7 @@ ./services/networking/lambdabot.nix ./services/networking/libreswan.nix ./services/networking/mailpile.nix + ./services/networking/mjpg-streamer.nix ./services/networking/minidlna.nix ./services/networking/miniupnpd.nix ./services/networking/mstpd.nix diff --git a/nixos/modules/services/networking/mjpg-streamer.nix b/nixos/modules/services/networking/mjpg-streamer.nix new file mode 100644 index 00000000000..9986f549aec --- /dev/null +++ b/nixos/modules/services/networking/mjpg-streamer.nix @@ -0,0 +1,75 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + + cfg = config.services.mjpg-streamer; + +in { + + options = { + + services.mjpg-streamer = { + + enable = mkEnableOption "mjpg-streamer webcam streamer"; + + inputPlugin = mkOption { + type = types.str; + default = "input_uvc.so"; + description = '' + Input plugin. See plugins documentation for more information. + ''; + }; + + outputPlugin = mkOption { + type = types.str; + default = "output_http.so -w @www@ -n -p 5050"; + description = '' + Output plugin. @www@ is substituted for default mjpg-streamer www directory. + See plugins documentation for more information. + ''; + }; + + user = mkOption { + type = types.str; + default = "mjpg-streamer"; + description = "mjpg-streamer user name."; + }; + + group = mkOption { + type = types.str; + default = "video"; + description = "mjpg-streamer group name."; + }; + + }; + + }; + + config = mkIf cfg.enable { + + users.extraUsers = optional (cfg.user == "mjpg-streamer") { + name = "mjpg-streamer"; + uid = config.ids.uids.mjpg-streamer; + group = cfg.group; + }; + + systemd.services.mjpg-streamer = { + description = "mjpg-streamer webcam streamer"; + wantedBy = [ "multi-user.target" ]; + + serviceConfig.User = cfg.user; + serviceConfig.Group = cfg.group; + + script = '' + IPLUGIN="${cfg.inputPlugin}" + OPLUGIN="${cfg.outputPlugin}" + OPLUGIN="''${OPLUGIN//@www@/${pkgs.mjpg-streamer}/share/mjpg-streamer/www}" + exec ${pkgs.mjpg-streamer}/bin/mjpg_streamer -i "$IPLUGIN" -o "$OPLUGIN" + ''; + }; + + }; + +} From b776e0cd5fe0e33f52e6458a726e3c3db0b9fc05 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Fri, 11 Mar 2016 23:02:49 +0000 Subject: [PATCH 0268/1059] 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 3f5bf201d55f28fcaadcb11d99f7fa9383c04aa4 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 12 Mar 2016 10:40:23 -0600 Subject: [PATCH 0269/1059] spotify: 1.0.23.93 -> 1.0.25.127 --- pkgs/applications/audio/spotify/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix index bf06761bc53..498a4be7ff4 100644 --- a/pkgs/applications/audio/spotify/default.nix +++ b/pkgs/applications/audio/spotify/default.nix @@ -5,7 +5,7 @@ assert stdenv.system == "x86_64-linux"; let - version = "1.0.23.93.gd6cfae15-30"; + version = "1.0.25.127.g58007b4c-22"; deps = [ alsaLib @@ -50,7 +50,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://repository-origin.spotify.com/pool/non-free/s/spotify-client/spotify-client_${version}_amd64.deb"; - sha256 = "0n6vz51jv6s20dp4zlqkk52bpmpyfm1qn5bfm4lfq09x1g6ir5lr"; + sha256 = "1fxps0ls0g4idw10la3qrpmp2jn85lkm3xj4nam4ycx0jj8g1v2p"; }; buildInputs = [ dpkg makeWrapper ]; From 29a90dbc2bea410a80b7f6c1f00745e8683de5a5 Mon Sep 17 00:00:00 2001 From: devhell <^@regexmail.net> Date: Sat, 12 Mar 2016 14:13:39 +0000 Subject: [PATCH 0270/1059] {lib}mediainfo{-gui}: 0.7.82 -> 0.7.83 Built and tested locally. From the changelog: ``` Version 0.7.83, 2016-02-29 + HEVC: Maximum Content Light Level (MaxCLL) and Maximum Frame-Average Light Level (MaxFALL), metadata mandated by CEA-861.3 for HDR support + HEVC: Mastering display color primaries and luminance (based on SMPTE ST 2084), metadata mandated by CEA-861.3 for HDR support + HEVC: SMPTE ST 2048 and SMPTE ST 428-1 transfer characteristics + HEVC: Chroma subsampling location (indication of the location type described in the HEVC spec) + MPEG-TS: ATSC Modulation Mode (Analog, SCTE_mode_1 aka 64-QAM, SCTE_mode_2 aka 256-QAM, 8-VSB, 16-VSB) + #B981, MP4: support of buggy file having "hint" SubType x HLS: better handling of media playlists having EXT-X-BYTERANGE ``` Additionally, some cleanup and package uses `autoreconfHook` now. Thanks to @hrdinka for helpful pointers! --- .../misc/mediainfo-gui/default.nix | 21 ++++++++++--------- pkgs/applications/misc/mediainfo/default.nix | 10 ++++----- .../libraries/libmediainfo/default.nix | 18 ++++++++-------- 3 files changed, 25 insertions(+), 24 deletions(-) diff --git a/pkgs/applications/misc/mediainfo-gui/default.nix b/pkgs/applications/misc/mediainfo-gui/default.nix index ffb4c147c77..83130164fd9 100644 --- a/pkgs/applications/misc/mediainfo-gui/default.nix +++ b/pkgs/applications/misc/mediainfo-gui/default.nix @@ -1,28 +1,29 @@ -{ stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, wxGTK, desktop_file_utils, libSM, imagemagick }: +{ stdenv, fetchurl, autoreconfHook, pkgconfig, libzen, libmediainfo, wxGTK +, desktop_file_utils, libSM, imagemagick }: stdenv.mkDerivation rec { - version = "0.7.82"; + version = "0.7.83"; name = "mediainfo-gui-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; - sha256 = "0ivvmxx93aldfbms6wg46x9npghg304j2zxl5i70m710gybjr232"; + sha256 = "0d8mph9lbg2lw0ccg1la0kqhbisra8q9rzn195lncch5cia5zyg7"; }; - buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo wxGTK desktop_file_utils libSM imagemagick ]; + nativeBuildInputs = [ autoreconfHook pkgconfig ]; + buildInputs = [ libzen libmediainfo wxGTK desktop_file_utils libSM + imagemagick ]; sourceRoot = "./MediaInfo/Project/GNU/GUI/"; - preConfigure = "sh autogen.sh"; - - meta = { + meta = with stdenv.lib; { description = "Supplies technical and tag information about a video or audio file (GUI version)"; longDescription = '' MediaInfo is a convenient unified display of the most relevant technical and tag data for video and audio files. ''; homepage = http://mediaarea.net/; - license = stdenv.lib.licenses.bsd2; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.devhell ]; + license = licenses.bsd2; + platforms = platforms.linux; + maintainers = [ maintainers.devhell ]; }; } diff --git a/pkgs/applications/misc/mediainfo/default.nix b/pkgs/applications/misc/mediainfo/default.nix index 5d953fed53a..cf1a4ce8280 100644 --- a/pkgs/applications/misc/mediainfo/default.nix +++ b/pkgs/applications/misc/mediainfo/default.nix @@ -1,19 +1,19 @@ -{ stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, zlib }: +{ stdenv, fetchurl, autoreconfHook, pkgconfig, libzen, libmediainfo, zlib }: stdenv.mkDerivation rec { - version = "0.7.82"; + version = "0.7.83"; name = "mediainfo-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; - sha256 = "0ivvmxx93aldfbms6wg46x9npghg304j2zxl5i70m710gybjr232"; + sha256 = "0d8mph9lbg2lw0ccg1la0kqhbisra8q9rzn195lncch5cia5zyg7"; }; - buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo zlib ]; + nativeBuildInputs = [ autoreconfHook pkgconfig ]; + buildInputs = [ libzen libmediainfo zlib ]; sourceRoot = "./MediaInfo/Project/GNU/CLI/"; configureFlags = [ "--with-libmediainfo=${libmediainfo}" ]; - preConfigure = "sh autogen.sh"; meta = with stdenv.lib; { description = "Supplies technical and tag information about a video or audio file"; diff --git a/pkgs/development/libraries/libmediainfo/default.nix b/pkgs/development/libraries/libmediainfo/default.nix index 2bc18a5a61d..b3d76b1c931 100644 --- a/pkgs/development/libraries/libmediainfo/default.nix +++ b/pkgs/development/libraries/libmediainfo/default.nix @@ -1,29 +1,29 @@ -{ stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, zlib }: +{ stdenv, fetchurl, autoreconfHook, pkgconfig, libzen, zlib }: stdenv.mkDerivation rec { - version = "0.7.82"; + version = "0.7.83"; name = "libmediainfo-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/libmediainfo/${version}/libmediainfo_${version}.tar.xz"; - sha256 = "1mqmk1q2phwqwrak54jc9hfwjllhhr4nqyigisrh9rcvd6wx6r86"; + sha256 = "0kl5x07j3jp5mnmhpjvdq0a2nnlgvqnhwar0xalvg3b3msdf8417"; }; - buildInputs = [ automake autoconf libtool pkgconfig libzen zlib ]; + nativeBuildInputs = [ autoreconfHook pkgconfig ]; + buildInputs = [ libzen zlib ]; sourceRoot = "./MediaInfoLib/Project/GNU/Library/"; configureFlags = [ "--enable-shared" ]; - preConfigure = "sh autogen.sh"; postInstall = '' install -vD -m 644 libmediainfo.pc "$out/lib/pkgconfig/libmediainfo.pc" ''; - meta = { + meta = with stdenv.lib; { description = "Shared library for mediainfo"; homepage = http://mediaarea.net/; - license = stdenv.lib.licenses.bsd2; - platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.devhell ]; + license = licenses.bsd2; + platforms = platforms.unix; + maintainers = [ maintainers.devhell ]; }; } From 60a6f4c3f1e1e22ac3a261a741a55cfd68691266 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 7 Mar 2016 19:02:02 +0100 Subject: [PATCH 0271/1059] macchanger: move build deps to nativeBuildInputs Also inline redundant toplevel let bindings --- pkgs/os-specific/linux/macchanger/default.nix | 22 +++++++++---------- 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/pkgs/os-specific/linux/macchanger/default.nix b/pkgs/os-specific/linux/macchanger/default.nix index b6ae89afbaf..c335031f2e5 100644 --- a/pkgs/os-specific/linux/macchanger/default.nix +++ b/pkgs/os-specific/linux/macchanger/default.nix @@ -1,12 +1,8 @@ { stdenv, fetchFromGitHub, autoreconfHook, texinfo }: -let - pname = "macchanger"; - version = "1.7.0"; -in - stdenv.mkDerivation rec { - name = "${pname}-${version}"; + name = "macchanger-${version}"; + version = "1.7.0"; src = fetchFromGitHub { owner = "alobbs"; @@ -15,13 +11,15 @@ stdenv.mkDerivation rec { sha256 = "1hypx6sxhd2b1nsxj314hpkhj7q4x9p2kfaaf20rjkkkig0nck9r"; }; - buildInputs = [ autoreconfHook texinfo ]; + nativeBuildInputs = [ autoreconfHook texinfo ]; - meta = { + outputs = [ "out" "info" ]; + + meta = with stdenv.lib; { description = "A utility for viewing/manipulating the MAC address of network interfaces"; - maintainers = [ stdenv.lib.maintainers.joachifm ]; - license = stdenv.lib.licenses.gpl2Plus; - homepage = "https://www.gnu.org/software/macchanger"; - platforms = stdenv.lib.platforms.linux; + maintainers = with maintainers; [ joachifm ]; + license = licenses.gpl2Plus; + homepage = https://www.gnu.org/software/macchanger; + platforms = platforms.linux; }; } From b3592d0b205af19576bf86371c2cf4847a7d6dbf Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 7 Mar 2016 18:26:13 +0100 Subject: [PATCH 0272/1059] dnscrypt-proxy: refactorings - move build deps to nativeBuildInputs - use https urls --- .../networking/dnscrypt-proxy/default.nix | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/pkgs/tools/networking/dnscrypt-proxy/default.nix b/pkgs/tools/networking/dnscrypt-proxy/default.nix index b98570a7341..380dd676411 100644 --- a/pkgs/tools/networking/dnscrypt-proxy/default.nix +++ b/pkgs/tools/networking/dnscrypt-proxy/default.nix @@ -1,25 +1,29 @@ { stdenv, fetchurl, libsodium, pkgconfig, systemd }: +with stdenv.lib; + stdenv.mkDerivation rec { name = "dnscrypt-proxy-${version}"; version = "1.6.1"; src = fetchurl { - url = "http://download.dnscrypt.org/dnscrypt-proxy/${name}.tar.bz2"; + url = "https://download.dnscrypt.org/dnscrypt-proxy/${name}.tar.bz2"; sha256 = "16lif3qhyfjpgg54vjlwpslxk90akmbhlpnn1szxm628bmpw6nl9"; }; configureFlags = '' - ${stdenv.lib.optionalString stdenv.isLinux "--with-systemd"} + ${optionalString stdenv.isLinux "--with-systemd"} ''; - buildInputs = [ pkgconfig libsodium ] ++ stdenv.lib.optional stdenv.isLinux systemd; + nativeBuildInputs = [ pkgconfig ]; + + buildInputs = [ libsodium ] ++ optional stdenv.isLinux systemd; meta = { description = "A tool for securing communications between a client and a DNS resolver"; - homepage = http://dnscrypt.org/; - license = stdenv.lib.licenses.isc; - maintainers = with stdenv.lib.maintainers; [ joachifm jgeerds ]; - platforms = stdenv.lib.platforms.all; + homepage = https://dnscrypt.org/; + license = licenses.isc; + maintainers = with maintainers; [ joachifm jgeerds ]; + platforms = platforms.all; }; } From b10288eaa556ee119a80251bc5f1b02857f57a69 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Sat, 12 Mar 2016 18:57:42 +0100 Subject: [PATCH 0273/1059] haskell-hs-blake2: fix dependency on libb2 `hs-blake2` currently wrongly depends on `pkgs.b2` which is an application for backblazes storage service. This patch overrides it to link against its correct native library `pkgs.libb2`. --- pkgs/development/haskell-modules/configuration-common.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 01c0298b0f0..34ed3bb19db 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -46,6 +46,9 @@ 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 098c04683a613e9ce0121a0269fcec75c1ac6e8c Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 7 Mar 2016 18:34:29 +0100 Subject: [PATCH 0274/1059] scsh: move build deps to nativeBuildInputs Also remove redundant inputs already implied by autoreconfHook. --- pkgs/development/interpreters/scsh/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/scsh/default.nix b/pkgs/development/interpreters/scsh/default.nix index ad2bf945f96..91ae67474ff 100644 --- a/pkgs/development/interpreters/scsh/default.nix +++ b/pkgs/development/interpreters/scsh/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, autoconf, automake, autoreconfHook, scheme48 }: +{ stdenv, fetchgit, autoreconfHook, scheme48 }: stdenv.mkDerivation { name = "scsh-0.7pre"; @@ -10,7 +10,8 @@ stdenv.mkDerivation { sha256 = "0fz1r0bmiii9ld91r84dqkqwhnqk0h6drdycq93zcy5ndyn12fqp"; }; - buildInputs = [ autoconf automake autoreconfHook scheme48 ]; + nativeBuildInputs = [ autoreconfHook ]; + buildInputs = [ scheme48 ]; configureFlags = ''--with-scheme48=${scheme48}''; meta = with stdenv.lib; { From 249d28b08c0ab1adc1a56952d411a09fc17bb974 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 7 Mar 2016 18:35:10 +0100 Subject: [PATCH 0275/1059] minisign: move build deps to nativeBuildInputs --- pkgs/tools/security/minisign/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/security/minisign/default.nix b/pkgs/tools/security/minisign/default.nix index 781ca6ca600..373ebc1e6ff 100644 --- a/pkgs/tools/security/minisign/default.nix +++ b/pkgs/tools/security/minisign/default.nix @@ -9,7 +9,8 @@ stdenv.mkDerivation rec { sha256 = "029g8ian72fy07k73nf451dw1yggav6crjjc2x6kv4nfpq3pl9pj"; }; - buildInputs = [ cmake libsodium ]; + nativeBuildInputs = [ cmake ]; + buildInputs = [ libsodium ]; meta = with stdenv.lib; { description = "A simple tool for signing files and verifying signatures"; From 5d2ed453b3adb006de71993fe84be492636ab0ca Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 7 Mar 2016 19:20:05 +0100 Subject: [PATCH 0276/1059] unrtf: move build deps to nativeBuildInputs --- pkgs/tools/text/unrtf/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/text/unrtf/default.nix b/pkgs/tools/text/unrtf/default.nix index 6b177b8b37b..c2b845064d9 100644 --- a/pkgs/tools/text/unrtf/default.nix +++ b/pkgs/tools/text/unrtf/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "1pcdzf2h1prn393dkvg93v80vh38q0v817xnbwrlwxbdz4k7i8r2"; }; - buildInputs = [ autoconf automake ]; + nativeBuildInputs = [ autoconf automake ]; preConfigure = "./bootstrap"; From 93efa92367031d6e8294f0b85c4507938242c7bb Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 7 Mar 2016 19:35:38 +0100 Subject: [PATCH 0277/1059] cppcheck: move build-time dependencies to nativeBuildInputs --- pkgs/development/tools/analysis/cppcheck/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/analysis/cppcheck/default.nix b/pkgs/development/tools/analysis/cppcheck/default.nix index 5955f34b58e..e89d8c113a1 100644 --- a/pkgs/development/tools/analysis/cppcheck/default.nix +++ b/pkgs/development/tools/analysis/cppcheck/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { sha256 = "085lm8v7biixy6rykq836gfy91jcccpz9qpk8i9x339dzy2b2q4l"; }; - buildInputs = [ libxslt docbook_xsl docbook_xml_dtd_45 ]; + nativeBuildInputs = [ libxslt docbook_xsl docbook_xml_dtd_45 ]; makeFlags = ''PREFIX=$(out) CFGDIR=$(out)/cfg''; From 6da91e9e4a900a72f74eab0c7d10fc94da22d3b0 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 12 Mar 2016 18:59:17 +0100 Subject: [PATCH 0278/1059] dnscrypt-wrapper: refactorings - use fetchFromGitHub - move build deps to nativeBuildInputs - use https for meta.homepage --- .../networking/dnscrypt-wrapper/default.nix | 23 +++++++++++-------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/pkgs/tools/networking/dnscrypt-wrapper/default.nix b/pkgs/tools/networking/dnscrypt-wrapper/default.nix index f443e545048..03204d6ccf3 100644 --- a/pkgs/tools/networking/dnscrypt-wrapper/default.nix +++ b/pkgs/tools/networking/dnscrypt-wrapper/default.nix @@ -1,21 +1,24 @@ -{ stdenv, fetchurl, libsodium, libevent, pkgconfig, autoreconfHook }: +{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, libsodium, libevent }: stdenv.mkDerivation rec { name = "dnscrypt-wrapper-${version}"; version = "0.2"; - src = fetchurl { - url = "https://github.com/Cofyc/dnscrypt-wrapper/releases/download/v0.2/dnscrypt-wrapper-v0.2.tar.bz2"; - sha256 = "0kh52dc0v9lxwi39y88z0ab6bwa5bcw8b24psnz72fv555irsvyj"; + src = fetchFromGitHub { + owner = "Cofyc"; + repo = "dnscrypt-wrapper"; + rev = "v${version}"; + sha256 = "06m6p79y0p6f1knk40fbi7dnc5hnq066kafvrq74fxrl51nywjbg"; }; - buildInputs = [ pkgconfig autoreconfHook libsodium libevent ]; + nativeBuildInputs = [ pkgconfig autoreconfHook ]; + buildInputs = [ libsodium libevent ]; - meta = { + meta = with stdenv.lib; { description = "A tool for adding dnscrypt support to any name resolver"; - homepage = http://dnscrypt.org/; - license = stdenv.lib.licenses.gpl2; - maintainers = with stdenv.lib.maintainers; [ tstrobel ]; - platforms = stdenv.lib.platforms.linux; + homepage = https://dnscrypt.org/; + license = licenses.gpl2; + maintainers = with maintainers; [ tstrobel joachifm ]; + platforms = platforms.linux; }; } From 77ae55308c0e4521fdf46391e71d5d16c5dee2bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Fri, 11 Mar 2016 15:53:35 +0000 Subject: [PATCH 0279/1059] fix installer tests #13559 --- nixos/modules/security/grsecurity.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nixos/modules/security/grsecurity.nix b/nixos/modules/security/grsecurity.nix index 3aabbc8fe1b..236206026c3 100644 --- a/nixos/modules/security/grsecurity.nix +++ b/nixos/modules/security/grsecurity.nix @@ -28,8 +28,7 @@ in kernelPatch = mkOption { type = types.attrs; - default = pkgs.kernelPatches.grsecurity_latest; - example = pkgs.kernelPatches.grsecurity_4_1; + example = lib.literalExample "pkgs.kernelPatches.grsecurity_4_1"; description = '' Grsecurity patch to use. ''; @@ -231,6 +230,8 @@ in } ]; + security.grsecurity.kernelPatch = lib.mkDefault pkgs.kernelPatches.grsecurity_latest; + systemd.services.grsec-lock = mkIf cfg.config.sysctl { description = "grsecurity sysctl-lock Service"; requires = [ "systemd-sysctl.service" ]; From 4c1525c1f8985ffeb3b0310edeaa2e61b4977f9c Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 21 Feb 2016 20:13:44 +0100 Subject: [PATCH 0280/1059] Documentation: rewrite Python - Rewrite current documentation - Add introduction/tutorial - Convert to markdown --- doc/default.nix | 4 + doc/languages-frameworks/python.md | 714 ++++++++++++++++++++++++++++ doc/languages-frameworks/python.xml | 447 ----------------- 3 files changed, 718 insertions(+), 447 deletions(-) create mode 100644 doc/languages-frameworks/python.md delete mode 100644 doc/languages-frameworks/python.xml diff --git a/doc/default.nix b/doc/default.nix index 196b9e44539..7583813c94f 100644 --- a/doc/default.nix +++ b/doc/default.nix @@ -45,6 +45,10 @@ stdenv.mkDerivation { + toDocbook { inputFile = ./introduction.md; outputFile = "introduction.xml"; + } + + toDocbook { + inputFile = ./languages-frameworks/python.md; + outputFile = "./languages-frameworks/python.xml"; useChapters = true; } + toDocbook { diff --git a/doc/languages-frameworks/python.md b/doc/languages-frameworks/python.md new file mode 100644 index 00000000000..fc0a0ba987a --- /dev/null +++ b/doc/languages-frameworks/python.md @@ -0,0 +1,714 @@ +# Python + +## User Guide + +Several versions of Python are available on Nix as well as a high amount of +packages. The default interpreter is CPython 2.7. + +### Using Python + +#### Installing Python and packages + +It is important to make a distinction between Python packages that are +used as libraries, and applications that are written in Python. + +Applications on Nix are installed typically into your user +profile imperatively using `nix-env -i`, and on NixOS declaratively by adding the +package name to `environment.systemPackages` in `/etc/nixos/configuration.nix`. +Dependencies such as libraries are automatically installed and should not be +installed explicitly. + +The same goes for Python applications and libraries. Python applications can be +installed in your profile, but Python libraries you would like to use to develop +cannot. If you do install libraries in your profile, then you will end up with +import errors. + +#### Python environments using `nix-shell` + +The recommended method for creating Python environments for development is with +`nix-shell`. Executing + +```sh +$ nix-shell -p python35Packages.numpy python35Packages.toolz +``` + +opens a Nix shell which has available the requested packages and dependencies. +Now you can launch the Python interpreter (which is itself a dependency) + +```sh +[nix-shell:~] python3 +``` + +If the packages were not available yet in the Nix store, Nix would download or +build them automatically. A convenient option with `nix-shell` is the `--run` +option, with which you can execute a command in the `nix-shell`. Let's say we +want the above environment and directly run the Python interpreter + +```sh +$ nix-shell -p python35Packages.numpy python35Packages.toolz --run "python3" +``` + +This way you can use the `--run` option also to directly run a script + +```sh +$ nix-shell -p python35Packages.numpy python35Packages.toolz --run "python3 myscript.py" +``` + +In fact, for this specific use case there is a more convenient method. You can +add a [shebang](https://en.wikipedia.org/wiki/Shebang_(Unix)) to your script +specifying which dependencies Nix shell needs. With the following shebang, you +can use `nix-shell myscript.py` and it will make available all dependencies and +run the script in the `python3` shell. + +```py +#! /usr/bin/env nix-shell +#! nix-shell -i python3 -p python3Packages.numpy + +import numpy + +print(numpy.__version__) +``` + +Likely you do not want to type your dependencies each and every time. What you +can do is write a simple Nix expression which sets up an environment for you, +requiring you only to type `nix-shell`. Say we want to have Python 3.5, `numpy` +and `toolz`, like before, in an environment. With a `shell.nix` file +containing + +```nix +with import {}; + +(pkgs.python35.buildEnv.override { + extraLibs = with pkgs.python35Packages; [ numpy toolz ]; +}).env +``` +executing `nix-shell` gives you again a Nix shell from which you can run Python. + +What's happening here? + +1. We begin with importing the Nix Packages collections. `import ` import the `` function, `{}` calls it and the `with` statement brings all attributes of `nixpkgs` in the local scope. Therefore we can now use `pkgs`. +2. Then we create a Python 3.5 environment with `pkgs.buildEnv`. Because we want to use it with a custom set of Python packages, we override it. +3. The `extraLibs` argument of the original `buildEnv` function can be used to specify which packages should be included. We want `numpy` and `toolz`. Again, we use the `with` statement to bring a set of attributes into the local scope. +4. And finally, for in interactive use we return the environment. + +### Developing with Python + + +Now that you know how to get a working Python environment on Nix, it is time to go forward and start actually developing with Python. +We will first have a look at how Python packages are packaged on Nix. Then, we will look how you can use development mode with your code. + +#### Python packaging on Nix + +On Nix all packages are built by functions. The main function in Nix for building Python packages is [`buildPythonPackage`](https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/python-modules/generic/default.nix). +Let's see how we would build the `toolz` package. According to [`python-packages.nix`](https://raw.githubusercontent.com/NixOS/nixpkgs/master/pkgs/top-level/python-packages.nix) `toolz` is build using + +```nix +toolz = buildPythonPackage rec{ + name = "toolz-${version}"; + version = "0.7.4"; + + src = pkgs.fetchurl{ + url = "https://pypi.python.org/packages/source/t/toolz/toolz-${version}.tar.gz"; + sha256 = "43c2c9e5e7a16b6c88ba3088a9bfc82f7db8e13378be7c78d6c14a5f8ed05afd"; + }; + + meta = { + homepage = "http://github.com/pytoolz/toolz/"; + description = "List processing tools and functional utilities"; + license = licenses.bsd3; + maintainers = with maintainers; [ fridh ]; + }; +}; +``` + +What happens here? The function `buildPythonPackage` is called and as argument +it accepts a set. In this case the set is a recursive set ([`rec`](http://nixos.org/nix/manual/#sec-constructs)). +One of the arguments is the name of the package, which consists of a basename +(generally following the name on PyPi) and a version. Another argument, `src` +specifies the source, which in this case is fetched from an url. `fetchurl` not +only downloads the target file, but also validates its hash. Furthermore, we +specify some (optional) [meta information](http://nixos.org/nixpkgs/manual/#chap-meta). + +The output of the function is a derivation, which is an attribute with the name +`toolz` of the set `pythonPackages`. Actually, sets are created for all interpreter versions, +so `python27Packages`, `python34Packages`, `python35Packages` and `pypyPackages`. + +The above example works when you're directly working on +`pkgs/top-level/python-packages.nix` in the Nixpkgs repository. Often though, +you will want to test a Nix expression outside of the Nixpkgs tree. If you +create a `shell.nix` file with the following contents + +```nix +with import {}; + +pkgs.python35Packages.buildPythonPackage rec { + name = "toolz-${version}"; + version = "0.7.4"; + + src = pkgs.fetchurl{ + url = "https://pypi.python.org/packages/source/t/toolz/toolz-${version}.tar.gz"; + sha256 = "43c2c9e5e7a16b6c88ba3088a9bfc82f7db8e13378be7c78d6c14a5f8ed05afd"; + }; + + meta = { + homepage = "http://github.com/pytoolz/toolz/"; + description = "List processing tools and functional utilities"; + license = licenses.bsd3; + maintainers = with maintainers; [ fridh ]; + }; +} +``` + +and then execute `nix-shell` will result in an environment in which you can use +Python 3.5 and the `toolz` package. As you can see we had to explicitly mention +for which Python version we want to build a package. + +The above example considered only a single package. Generally you will want to use multiple packages. +If we create a `shell.nix` file with the following contents + +```nix +with import {}; + +( let + toolz = pkgs.python35Packages.buildPythonPackage rec { + name = "toolz-${version}"; + version = "0.7.4"; + + src = pkgs.fetchurl{ + url = "https://pypi.python.org/packages/source/t/toolz/toolz-${version}.tar.gz"; + sha256 = "43c2c9e5e7a16b6c88ba3088a9bfc82f7db8e13378be7c78d6c14a5f8ed05afd"; + }; + + meta = { + homepage = "http://github.com/pytoolz/toolz/"; + description = "List processing tools and functional utilities"; + license = licenses.bsd3; + maintainers = with maintainers; [ fridh ]; + }; + }; + + in pkgs.python35.buildEnv.override rec { + + extraLibs = [ pkgs.python35Packages.numpy toolz ]; +} +).env +``` + +and again execute `nix-shell`, then we get a Python 3.5 environment with our +locally defined package as well as `numpy` which is build according to the +definition in Nixpkgs. What did we do here? Well, we took the Nix expression +that we used earlier to build a Python environment, and said that we wanted to +include our own version of `toolz`. To introduce our own package in the scope of +`buildEnv.override` we used a +[`let`](http://nixos.org/nix/manual/#sec-constructs) expression. + +### Handling dependencies + +Our example, `toolz`, doesn't have any dependencies on other Python +packages or system libraries. According to the manual, `buildPythonPackage` +uses the arguments `buildInputs` and `propagatedBuildInputs` to specify dependencies. If something is +exclusively a build-time dependency, then the dependency should be included as a +`buildInput`, but if it is (also) a runtime dependency, then it should be added +to `propagatedBuildInputs`. Test dependencies are considered build-time dependencies. + +The following example shows which arguments are given to `buildPythonPackage` in +order to build [`datashape`](https://github.com/blaze/datashape). + +```nix +datashape = buildPythonPackage rec { + name = "datashape-${version}"; + version = "0.4.7"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/D/DataShape/${name}.tar.gz"; + sha256 = "14b2ef766d4c9652ab813182e866f493475e65e558bed0822e38bf07bba1a278"; + }; + + buildInputs = with self; [ pytest ]; + propagatedBuildInputs = with self; [ numpy multipledispatch dateutil ]; + + meta = { + homepage = https://github.com/ContinuumIO/datashape; + description = "A data description language"; + license = licenses.bsd2; + maintainers = with maintainers; [ fridh ]; + }; +}; +``` + +We can see several runtime dependencies, `numpy`, `multipledispatch`, and +`dateutil`. Furthermore, we have one `buildInput`, i.e. `pytest`. `pytest` is a +test runner and is only used during the `checkPhase` and is therefore not added +to `propagatedBuildInputs`. + +In the previous case we had only dependencies on other Python packages to consider. +Occasionally you have also system libraries to consider. E.g., `lxml` provides +Python bindings to `libxml2` and `libxslt`. These libraries are only required +when building the bindings and are therefore added as `buildInputs`. + +```nix +lxml = buildPythonPackage rec { + name = "lxml-3.4.4"; + + src = pkgs.fetchurl { + url = "http://pypi.python.org/packages/source/l/lxml/${name}.tar.gz"; + sha256 = "16a0fa97hym9ysdk3rmqz32xdjqmy4w34ld3rm3jf5viqjx65lxk"; + }; + + buildInputs = with self; [ pkgs.libxml2 pkgs.libxslt ]; + + meta = { + description = "Pythonic binding for the libxml2 and libxslt libraries"; + homepage = http://lxml.de; + license = licenses.bsd3; + maintainers = with maintainers; [ sjourdois ]; + }; +}; +``` + +In this example `lxml` and Nix are able to work out exactly where the relevant +files of the dependencies are. This is not always the case. + +The example below shows bindings to The Fastest Fourier Transform in the West, commonly known as +FFTW. On Nix we have separate packages of FFTW for the different types of floats +(`"single"`, `"double"`, `"long-double"`). The bindings need all three types, +and therefore we add all three as `buildInputs`. The bindings don't expect to +find each of them in a different folder, and therefore we have to set `LDFLAGS` +and `CFLAGS`. + +```nix +pyfftw = buildPythonPackage rec { + name = "pyfftw-${version}"; + version = "0.9.2"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pyFFTW/pyFFTW-${version}.tar.gz"; + sha256 = "f6bbb6afa93085409ab24885a1a3cdb8909f095a142f4d49e346f2bd1b789074"; + }; + + buildInputs = [ pkgs.fftw pkgs.fftwFloat pkgs.fftwLongDouble]; + + propagatedBuildInputs = with self; [ numpy scipy ]; + + # Tests cannot import pyfftw. pyfftw works fine though. + doCheck = false; + + LDFLAGS="-L${pkgs.fftw}/lib -L${pkgs.fftwFloat}/lib -L${pkgs.fftwLongDouble}/lib" + CFLAGS="-I${pkgs.fftw}/include -I${pkgs.fftwFloat}/include -I${pkgs.fftwLongDouble}/include" + ''; + + meta = { + description = "A pythonic wrapper around FFTW, the FFT library, presenting a unified interface for all the supported transforms"; + homepage = http://hgomersall.github.com/pyFFTW/; + license = with licenses; [ bsd2 bsd3 ]; + maintainer = with maintainers; [ fridh ]; + }; +}; +``` +Note also the line `doCheck = false;`, we explicitly disabled running the test-suite. + + +#### Develop local package + +As a Python developer you're likely aware of [development mode](http://pythonhosted.org/setuptools/setuptools.html#development-mode) (`python setup.py develop`); +instead of installing the package this command creates a special link to the project code. +That way, you can run updated code without having to reinstall after each and every change you make. +Development mode is also available on Nix as [explained](http://nixos.org/nixpkgs/manual/#ssec-python-development) in the Nixpkgs manual. +Let's see how you can use it. + +In the previous Nix expression the source was fetched from an url. We can also refer to a local source instead using + +```nix +src = ./path/to/source/tree; +``` + +If we create a `shell.nix` file which calls `buildPythonPackage`, and if `src` +is a local source, and if the local source has a `setup.py`, then development +mode is activated. + +In the following example we create a simple environment that +has a Python 3.5 version of our package in it, as well as its dependencies and +other packages we like to have in the environment, all specified with `propagatedBuildInputs`. +Indeed, we can just add any package we like to have in our environment to `propagatedBuildInputs`. + +```nix +with import ; +with pkgs.python35Packages; + +buildPythonPackage rec { + name = "mypackage"; + src = ./path/to/package/source; + propagatedBuildInputs = [ pytest numpy pkgs.libsndfile ]; +}; +``` + +It is important to note that due to how development mode is implemented on Nix it is not possible to have multiple packages simultaneously in development mode. + + +### Organising your packages + +So far we discussed how you can use Python on Nix, and how you can develop with +it. We've looked at how you write expressions to package Python packages, and we +looked at how you can create environments in which specified packages are +available. + +At some point you'll likely have multiple packages which you would +like to be able to use in different projects. In order to minimise unnecessary +duplication we now look at how you can maintain yourself a repository with your +own packages. The important functions here are `import` and `callPackage`. + +### Including a derivation using `callPackage` + +Earlier we created a Python environment using `buildEnv`, and included the +`toolz` package via a `let` expression. +Let's split the package definition from the environment definition. + +We first create a function that builds `toolz` in `~/path/to/toolz/release.nix` + +```nix +{ pkgs, buildPythonPackage }: + +buildPythonPackage rec { + name = "toolz-${version}"; + version = "0.7.4"; + + src = pkgs.fetchurl{ + url = "https://pypi.python.org/packages/source/t/toolz/toolz-${version}.tar.gz"; + sha256 = "43c2c9e5e7a16b6c88ba3088a9bfc82f7db8e13378be7c78d6c14a5f8ed05afd"; + }; + + meta = { + homepage = "http://github.com/pytoolz/toolz/"; + description = "List processing tools and functional utilities"; + license = licenses.bsd3; + maintainers = with maintainers; [ fridh ]; + }; +}; +``` + +It takes two arguments, `pkgs` and `buildPythonPackage`. +We now call this function using `callPackage` in the definition of our environment + +```nix +with import {}; + +( let + toolz = pkgs.callPackage ~/path/to/toolz/release.nix { pkgs=pkgs; buildPythonPackage=pkgs.python35Packages.buildPythonPackage; }; + in pkgs.python35.buildEnv.override rec { + extraLibs = [ pkgs.python35Packages.numpy toolz ]; +} +).env +``` + +Important to remember is that the Python version for which the package is made +depends on the `python` derivation that is passed to `buildPythonPackage`. Nix +tries to automatically pass arguments when possible, which is why generally you +don't explicitly define which `python` derivation should be used. In the above +example we use `buildPythonPackage` that is part of the set `python35Packages`, +and in this case the `python35` interpreter is automatically used. + + + +## Reference + +### Interpreters + +Versions 2.6, 2.7, 3.3, 3.4 and 3.5 of the CPython interpreter are available on +Nix and are available as `python26`, `python27`, `python33`, `python34` and +`python35`. The PyPy interpreter is also available as `pypy`. Currently, the +aliases `python` and `python3` correspond to respectively `python27` and +`python35`. The Nix expressions for the interpreters can be found in +`pkgs/development/interpreters/python`. + + +#### Missing modules standard library + +The interpreters `python26` and `python27` do not include modules that +require external dependencies. This is done in order to reduce the closure size. +The following modules need to be added as `buildInput` explicitly: + +* `python.modules.bsddb` +* `python.modules.curses` +* `python.modules.curses_panel` +* `python.modules.crypt` +* `python.modules.gdbm` +* `python.modules.sqlite3` +* `python.modules.tkinter` +* `python.modules.readline` + +For convenience `python27Full` and `python26Full` are provided with all +modules included. + +All packages depending on any Python interpreter get appended +`out/{python.sitePackages}` to `$PYTHONPATH` if such directory +exists. + +#### Attributes on interpreters packages + +Each interpreter has the following attributes: + +- `libPrefix`. Name of the folder in `${python}/lib/` for corresponding interpreter. +- `interpreter`. Alias for `${python}/bin/${executable}`. +- `buildEnv`. Function to build python interpreter environments with extra packages bundled together. See section *python.buildEnv function* for usage and documentation. +- `sitePackages`. Alias for `lib/${libPrefix}/site-packages`. +- `executable`. Name of the interpreter executable, ie `python3.4`. + +### Building packages and applications + +Python packages (libraries) and applications that use `setuptools` or +`distutils` are typically built with respectively the `buildPythonPackage` and +`buildPythonApplication` functions. + +All Python packages reside in `pkgs/top-level/python-packages.nix` and all +applications elsewhere. Some packages are also defined in +`pkgs/development/python-modules`. It is important that these packages are +called in `pkgs/top-level/python-packages.nix` and not elsewhere, to guarantee +the right version of the package is built. + +Based on the packages defined in `pkgs/top-level/python-packages.nix` an +attribute set is created for each available Python interpreter. The available +sets are + +* `pkgs.python26Packages` +* `pkgs.python27Packages` +* `pkgs.python33Packages` +* `pkgs.python34Packages` +* `pkgs.python35Packages` +* `pkgs.pypyPackages` + +and the aliases + +* `pkgs.pythonPackages` pointing to `pkgs.python27Packages` +* `pkgs.python3Packages` pointing to `pkgs.python35Packages` + +#### `buildPythonPackage` function + +The `buildPythonPackage` function is implemented in +`pkgs/development/python-modules/generic/default.nix` + +and can be used as: + + twisted = buildPythonPackage { + name = "twisted-8.1.0"; + + src = pkgs.fetchurl { + url = http://tmrc.mit.edu/mirror/twisted/Twisted/8.1/Twisted-8.1.0.tar.bz2; + sha256 = "0q25zbr4xzknaghha72mq57kh53qw1bf8csgp63pm9sfi72qhirl"; + }; + + propagatedBuildInputs = [ self.ZopeInterface ]; + + meta = { + homepage = http://twistedmatrix.com/; + description = "Twisted, an event-driven networking engine written in Python"; + license = stdenv.lib.licenses.mit; }; + }; + +The `buildPythonPackage` mainly does four things: + +* In the `buildPhase`, it calls `${python.interpreter} setup.py bdist_wheel` to build a wheel binary zipfile. +* In the `installPhase`, it installs the wheel file using `pip install *.whl`. +* In the `postFixup` phase, the `wrapPythonPrograms` bash function is called to wrap all programs in the `$out/bin/*` directory to include `$PYTHONPATH` and `$PATH` environment variables. +* In the `installCheck` phase, `${python.interpreter} setup.py test` is ran. + +As in Perl, dependencies on other Python packages can be specified in the +`buildInputs` and `propagatedBuildInputs` attributes. If something is +exclusively a build-time dependency, use `buildInputs`; if it’s (also) a runtime +dependency, use `propagatedBuildInputs`. + +By default tests are run because `doCheck = true`. Test dependencies, like +e.g. the test runner, should be added to `buildInputs`. + +By default `meta.platforms` is set to the same value +as the interpreter unless overriden otherwise. + +##### `buildPythonPackage` parameters + +All parameters from `mkDerivation` function are still supported. + +* `namePrefix`: Prepended text to `${name}` parameter. Defaults to `"python3.3-"` for Python 3.3, etc. Set it to `""` if you're packaging an application or a command line tool. +* `disabled`: If `true`, package is not build for particular python interpreter version. Grep around `pkgs/top-level/python-packages.nix` for examples. +* `setupPyBuildFlags`: List of flags passed to `setup.py build_ext` command. +* `pythonPath`: List of packages to be added into `$PYTHONPATH`. Packages in `pythonPath` are not propagated (contrary to `propagatedBuildInputs`). +* `preShellHook`: Hook to execute commands before `shellHook`. +* `postShellHook`: Hook to execute commands after `shellHook`. +* `makeWrapperArgs`: A list of strings. Arguments to be passed to `makeWrapper`, which wraps generated binaries. By default, the arguments to `makeWrapper` set `PATH` and `PYTHONPATH` environment variables before calling the binary. Additional arguments here can allow a developer to set environment variables which will be available when the binary is run. For example, `makeWrapperArgs = ["--set FOO BAR" "--set BAZ QUX"]`. +* `installFlags`: A list of strings. Arguments to be passed to `pip install`. To pass options to `python setup.py install`, use `--install-option`. E.g., `installFlags=["--install-option='--cpp_implementation'"]. + +#### `buildPythonApplication` function + +The `buildPythonApplication` function is practically the same as `buildPythonPackage`. +The difference is that `buildPythonPackage` by default prefixes the names of the packages with the version of the interpreter. +Because with an application we're not interested in multiple version the prefix is dropped. + +#### python.buildEnv function + +Python environments can be created using the low-level `pkgs.buildEnv` function. +This example shows how to create an environment that has the Pyramid Web Framework. +Saving the following as `default.nix` + + with import {}; + + python.buildEnv.override { + extraLibs = [ pkgs.pythonPackages.pyramid ]; + ignoreCollisions = true; + } + +and running `nix-build` will create + + /nix/store/cf1xhjwzmdki7fasgr4kz6di72ykicl5-python-2.7.8-env + +with wrapped binaries in `bin/`. + +You can also use the `env` attribute to create local environments with needed +packages installed. This is somewhat comparable to `virtualenv`. For example, +running `nix-shell` with the following `shell.nix` + + with import {}; + + (python3.buildEnv.override { + extraLibs = with python3Packages; [ numpy requests ]; + }).env + +will drop you into a shell where Python will have the +specified packages in its path. + + +##### `python.buildEnv` arguments + +* `extraLibs`: List of packages installed inside the environment. +* `postBuild`: Shell command executed after the build of environment. +* `ignoreCollisions`: Ignore file collisions inside the environment (default is `false`). + +### Development mode + +Development or editable mode is supported. To develop Python packages +`buildPythonPackage` has additional logic inside `shellPhase` to run `pip +install -e . --prefix $TMPDIR/`for the package. + +Warning: `shellPhase` is executed only if `setup.py` exists. + +Given a `default.nix`: + + with import {}; + + buildPythonPackage { name = "myproject"; + + buildInputs = with pkgs.pythonPackages; [ pyramid ]; + + src = ./.; } + +Running `nix-shell` with no arguments should give you +the environment in which the package would be build with +`nix-build`. + +Shortcut to setup environments with C headers/libraries and python packages: + + $ nix-shell -p pythonPackages.pyramid zlib libjpeg git + +Note: There is a boolean value `lib.inNixShell` set to `true` if nix-shell is invoked. + +### Tools + +Packages inside nixpkgs are written by hand. However many tools exist in +community to help save time. No tool is preferred at the moment. + +- [python2nix](https://github.com/proger/python2nix) by Vladimir Kirillov +- [pypi2nix](https://github.com/garbas/pypi2nix) by Rok Garbas +- [pypi2nix](https://github.com/offlinehacker/pypi2nix) by Jaka Hudoklin + +## FAQ + +### How to solve circular dependencies? + +Consider the packages `A` and `B` that depend on each other. When packaging `B`, +a solution is to override package `A` not to depend on `B` as an input. The same +should also be done when packaging `A`. + +### How to override a Python package? + +Recursively updating a package can be done with `pkgs.overridePackages` as explained in the Nixpkgs manual. +Python attribute sets are created for each interpreter version. We will therefore override the attribute set for the interpreter version we're interested. +In the following example we change the name of the package `pandas` to `foo`. +``` +newpkgs = pkgs.overridePackages(self: super: rec { + python35Packages = super.python35Packages.override { + self = python35Packages // { pandas = python35Packages.pandas.override{name="foo";};}; + }; +}); +``` +This can be tested with +``` +with import {}; + +(let + +newpkgs = pkgs.overridePackages(self: super: rec { + python35Packages = super.python35Packages.override { + self = python35Packages // { pandas = python35Packages.pandas.override{name="foo";};}; + }; +}); +in newpkgs.python35.buildEnv.override{ + extraLibs = [newpkgs.python35Packages.blaze ]; +}).env +``` +A typical use case is to switch to another version of a certain package. For example, in the Nixpkgs repository we have multiple versions of `django` and `scipy`. +In the following example we use a different version of `scipy`. All packages in `newpkgs` will now use the updated `scipy` version. +``` +with import {}; + +(let + +newpkgs = pkgs.overridePackages(self: super: rec { + python35Packages = super.python35Packages.override { + self = python35Packages // { scipy = python35Packages.scipy_0_16;}; + }; +}); +in pkgs.python35.buildEnv.override{ + extraLibs = [newpkgs.python35Packages.blaze ]; +}).env +``` +The requested package `blaze` depends upon `pandas` which itself depends on `scipy`. + + +### `install_data` / `data_files` problems + +If you get the following error: + + could not create '/nix/store/6l1bvljpy8gazlsw2aw9skwwp4pmvyxw-python-2.7.8/etc': + Permission denied + +This is a [known bug](https://bitbucket.org/pypa/setuptools/issue/130/install_data-doesnt-respect-prefix) in setuptools. +Setuptools `install_data` does not respect `--prefix`. An example of such package using the feature is `pkgs/tools/X11/xpra/default.nix`. +As workaround install it as an extra `preInstall` step: + + ${python.interpreter} setup.py install_data --install-dir=$out --root=$out + sed -i '/ = data\_files/d' setup.py + + +### Rationale of non-existent global site-packages + +On most operating systems a global `site-packages` is maintained. This however +becomes problematic if you want to run multiple Python versions or have multiple +versions of certain libraries for your projects. Generally, you would solve such +issues by creating virtual environments using `virtualenv`. + +On Nix each package has an isolated dependency tree which, in the case of +Python, guarantees the right versions of the interpreter and libraries or +packages are available. There is therefore no need to maintain a global `site-packages`. + +If you want to create a Python environment for development, then the recommended +method is to use `nix-shell`, either with or without the `python.buildEnv` +function. + + +## Contributing + +### Contributing guidelines + +Following rules are desired to be respected: + +* Make sure package builds for all python interpreters. Use `disabled` argument to `buildPythonPackage` to set unsupported interpreters. +* If tests need to be disabled for a package, make sure you leave a comment about reasoning. +* Packages in `pkgs/top-level/python-packages.nix` are sorted quasi-alphabetically to avoid merge conflicts. +* Python libraries are supposed to be in `python-packages.nix` and packaged with `buildPythonPackage`. Python applications live outside of `python-packages.nix` and are packaged with `buildPythonApplication`. diff --git a/doc/languages-frameworks/python.xml b/doc/languages-frameworks/python.xml deleted file mode 100644 index 57aceeb4868..00000000000 --- a/doc/languages-frameworks/python.xml +++ /dev/null @@ -1,447 +0,0 @@ -
- -Python - - - Currently supported interpreters are python26, python27, - python33, python34, python35 - and pypy. - - - - python is an alias to python27 and python3 is an alias to python34. - - - - python26 and python27 do not include modules that require - external dependencies (to reduce dependency bloat). Following modules need to be added as - buildInput explicitly: - - - - python.modules.bsddb - python.modules.curses - python.modules.curses_panel - python.modules.crypt - python.modules.gdbm - python.modules.sqlite3 - python.modules.tkinter - python.modules.readline - - -For convenience python27Full and python26Full -are provided with all modules included. - - - Python packages that - use setuptools or distutils, - can be built using the buildPythonPackage function as documented below. - - - - All packages depending on any Python interpreter get appended $out/${python.sitePackages} - to $PYTHONPATH if such directory exists. - - - - - Useful attributes on interpreters packages: - - - - libPrefix - - Name of the folder in ${python}/lib/ for corresponding interpreter. - - - - - interpreter - - Alias for ${python}/bin/${executable}. - - - - - buildEnv - - Function to build python interpreter environments with extra packages bundled together. - See for usage and documentation. - - - - - sitePackages - - Alias for lib/${libPrefix}/site-packages. - - - - - executable - - Name of the interpreter executable, ie python3.4. - - - - -
<varname>buildPythonPackage</varname> function - - - The function is implemented in - pkgs/development/python-modules/generic/default.nix. - Example usage: - - -twisted = buildPythonPackage { - name = "twisted-8.1.0"; - - src = pkgs.fetchurl { - url = http://tmrc.mit.edu/mirror/twisted/Twisted/8.1/Twisted-8.1.0.tar.bz2; - sha256 = "0q25zbr4xzknaghha72mq57kh53qw1bf8csgp63pm9sfi72qhirl"; - }; - - propagatedBuildInputs = [ self.ZopeInterface ]; - - meta = { - homepage = http://twistedmatrix.com/; - description = "Twisted, an event-driven networking engine written in Python"; - license = stdenv.lib.licenses.mit; - }; -}; - - - Most of Python packages that use buildPythonPackage are defined - in pkgs/top-level/python-packages.nix - and generated for each python interpreter separately into attribute sets python26Packages, - python27Packages, python35Packages, python33Packages, - python34Packages and pypyPackages. - - - - buildPythonPackage mainly does four things: - - - - In the buildPhase, it calls - ${python.interpreter} setup.py bdist_wheel to build a wheel binary zipfile. - - - - In the installPhase, it installs the wheel file using - pip install *.whl. - - - - In the postFixup phase, wrapPythonPrograms - bash function is called to wrap all programs in $out/bin/* - directory to include $PYTHONPATH and $PATH - environment variables. - - - - In the installCheck phase, ${python.interpreter} setup.py test - is ran. - - - - - By default doCheck = true is set - - - As in Perl, dependencies on other Python packages can be specified in the - buildInputs and - propagatedBuildInputs attributes. If something is - exclusively a build-time dependency, use - buildInputs; if it’s (also) a runtime dependency, - use propagatedBuildInputs. - - - - By default meta.platforms is set to the same value - as the interpreter unless overriden otherwise. - - - - - <varname>buildPythonPackage</varname> parameters - (all parameters from <varname>mkDerivation</varname> function are still supported) - - - - namePrefix - - Prepended text to ${name} parameter. - Defaults to "python3.3-" for Python 3.3, etc. Set it to - "" - if you're packaging an application or a command line tool. - - - - - disabled - - If true, package is not build for - particular python interpreter version. Grep around - pkgs/top-level/python-packages.nix - for examples. - - - - - setupPyBuildFlags - - List of flags passed to setup.py build_ext command. - - - - - pythonPath - - List of packages to be added into $PYTHONPATH. - Packages in pythonPath are not propagated - (contrary to propagatedBuildInputs). - - - - - preShellHook - - Hook to execute commands before shellHook. - - - - - postShellHook - - Hook to execute commands after shellHook. - - - - - makeWrapperArgs - - A list of strings. Arguments to be passed to - makeWrapper, which wraps generated binaries. By - default, the arguments to makeWrapper set - PATH and PYTHONPATH environment - variables before calling the binary. Additional arguments here can - allow a developer to set environment variables which will be - available when the binary is run. For example, - makeWrapperArgs = ["--set FOO BAR" "--set BAZ QUX"]. - - - - - -
- -
<function>python.buildEnv</function> function - - Create Python environments using low-level pkgs.buildEnv function. Example default.nix: - - - {}; - -python.buildEnv.override { - extraLibs = [ pkgs.pythonPackages.pyramid ]; - ignoreCollisions = true; -}]]> - - - Running nix-build will create - /nix/store/cf1xhjwzmdki7fasgr4kz6di72ykicl5-python-2.7.8-env - with wrapped binaries in bin/. - - - - You can also use env attribute to create local - environments with needed packages installed (somewhat comparable to - virtualenv). For example, with the following - shell.nix: - - - {}; - -(python3.buildEnv.override { - extraLibs = with python3Packages; - [ numpy - requests - ]; -}).env]]> - - - Running nix-shell will drop you into a shell where - python will have specified packages in its path. - - - - - <function>python.buildEnv</function> arguments - - - - extraLibs - - List of packages installed inside the environment. - - - - - postBuild - - Shell command executed after the build of environment. - - - - - ignoreCollisions - - Ignore file collisions inside the environment (default is false). - - - -
- -
Tools - -Packages inside nixpkgs are written by hand. However many tools -exist in community to help save time. No tool is preferred at the moment. - - - - - - python2nix - by Vladimir Kirillov - - - - pypi2nix - by Rok Garbas - - - - pypi2nix - by Jaka Hudoklin - - - - -
- -
Development - - - To develop Python packages buildPythonPackage has - additional logic inside shellPhase to run - pip install -e . --prefix $TMPDIR/ for the package. - - - shellPhase is executed only if setup.py - exists. - - - Given a default.nix: - - - {}; - -buildPythonPackage { - name = "myproject"; - - buildInputs = with pkgs.pythonPackages; [ pyramid ]; - - src = ./.; -}]]> - - - Running nix-shell with no arguments should give you - the environment in which the package would be build with - nix-build. - - - - Shortcut to setup environments with C headers/libraries and python packages: - - $ nix-shell -p pythonPackages.pyramid zlib libjpeg git - - - - There is a boolean value lib.inNixShell set to - true if nix-shell is invoked. - - -
- -
FAQ - - - - - How to solve circular dependencies? - - If you have packages A and B that - depend on each other, when packaging B override package - A not to depend on B as input - (and also the other way around). - - - - - install_data / data_files problems resulting into error: could not create '/nix/store/6l1bvljpy8gazlsw2aw9skwwp4pmvyxw-python-2.7.8/etc': Permission denied - - - Known bug in setuptools install_data does not respect --prefix. Example of - such package using the feature is pkgs/tools/X11/xpra/default.nix. As workaround - install it as an extra preInstall step: - - ${python.interpreter} setup.py install_data --install-dir=$out --root=$out -sed -i '/ = data_files/d' setup.py - - - - - Rationale of non-existent global site-packages - - There is no need to have global site-packages in Nix. Each package has isolated - dependency tree and installing any python package will only populate $PATH - inside user environment. See to create self-contained - interpreter with a set of packages. - - - - - -
- - -
Contributing guidelines - - Following rules are desired to be respected: - - - - - - Make sure package builds for all python interpreters. Use disabled argument to - buildPythonPackage to set unsupported interpreters. - - - - If tests need to be disabled for a package, make sure you leave a comment about reasoning. - - - - Packages in pkgs/top-level/python-packages.nix - are sorted quasi-alphabetically to avoid merge conflicts. - - - - -
- -
- From 0ed331cf0978db7346817d8a230b865f19556f11 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 12 Mar 2016 15:33:40 -0500 Subject: [PATCH 0281/1059] Documentation: fix usage of useChapters --- doc/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/default.nix b/doc/default.nix index 7583813c94f..5c97bc32a88 100644 --- a/doc/default.nix +++ b/doc/default.nix @@ -45,11 +45,11 @@ stdenv.mkDerivation { + toDocbook { inputFile = ./introduction.md; outputFile = "introduction.xml"; + useChapters = true; } + toDocbook { inputFile = ./languages-frameworks/python.md; outputFile = "./languages-frameworks/python.xml"; - useChapters = true; } + toDocbook { inputFile = ./haskell-users-guide.md; From 6bc1aed8739d77c7746b863140400c3a273c50d5 Mon Sep 17 00:00:00 2001 From: Anthony Cowley Date: Sat, 12 Mar 2016 16:24:06 -0500 Subject: [PATCH 0282/1059] x265: 1.7 -> 1.9 Unblocks #13822 --- pkgs/development/libraries/x265/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/x265/default.nix b/pkgs/development/libraries/x265/default.nix index 1473910e004..736c350bc06 100644 --- a/pkgs/development/libraries/x265/default.nix +++ b/pkgs/development/libraries/x265/default.nix @@ -16,14 +16,14 @@ in stdenv.mkDerivation rec { name = "x265-${version}"; - version = "1.7"; + version = "1.9"; src = fetchurl { urls = [ "http://get.videolan.org/x265/x265_${version}.tar.gz" "https://github.com/videolan/x265/archive/${version}.tar.gz" ]; - sha256 = "18w3whmbjlalvysny51kdq9b228iwg3rdav4kmifazksvrm4yacq"; + sha256 = "1j0mbcf10aj6zi1nxql45f9817jd2ndcpd7x123sjmyr7q9m8iiy"; }; patchPhase = '' From 2f24bef7828736466b5cb5a553be447ad75cb4d5 Mon Sep 17 00:00:00 2001 From: Michiel Leenaars Date: Sat, 12 Mar 2016 22:31:29 +0100 Subject: [PATCH 0283/1059] 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 0284/1059] 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 98b4d19a0b47c083f992c20bba01196ac8b07791 Mon Sep 17 00:00:00 2001 From: Eric Merritt Date: Sat, 12 Mar 2016 11:51:33 -0800 Subject: [PATCH 0285/1059] cuter: init at 0.1 --- .../tools/erlang/cuter/default.nix | 43 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 44 insertions(+) create mode 100644 pkgs/development/tools/erlang/cuter/default.nix diff --git a/pkgs/development/tools/erlang/cuter/default.nix b/pkgs/development/tools/erlang/cuter/default.nix new file mode 100644 index 00000000000..a8806127d35 --- /dev/null +++ b/pkgs/development/tools/erlang/cuter/default.nix @@ -0,0 +1,43 @@ +{stdenv, autoconf, which, writeText, makeWrapper, fetchFromGitHub, erlang, + erlangPackages, z3, python27 }: + +stdenv.mkDerivation rec { + name = "cuter"; + version = "0.1"; + + src = fetchFromGitHub { + owner = "aggelgian"; + repo = "cuter"; + rev = "v${version}"; + sha256 = "1ax1pj6ji4w2mg3p0nh2lzmg3n9mgfxk4cf07pll51yrcfpfrnfv"; + }; + + setupHook = writeText "setupHook.sh" '' + addToSearchPath ERL_LIBS "$1/lib/erlang/lib/" + ''; + buildInputs = with erlangPackages; [ autoconf erlang z3 python27 makeWrapper which ]; + + buildFlags = "PWD=$(out)/lib/erlang/lib/cuter-${version} cuter_target"; + configurePhase = '' + autoconf + ./configure --prefix $out + ''; + + installPhase = '' + mkdir -p "$out/lib/erlang/lib/cuter-${version}" + mkdir -p "$out/bin" + cp -r * "$out/lib/erlang/lib/cuter-${version}" + cp cuter "$out/bin/cuter" + wrapProgram $out/bin/cuter \ + --prefix PATH : "${python27}/bin" \ + --suffix PYTHONPATH : "${z3}/lib/python2.7/site-packages" \ + --suffix ERL_LIBS : "$out/lib/erlang/lib" + ''; + + meta = { + description = "A concolic testing tool for the Erlang functional programming language"; + license = stdenv.lib.licenses.gpl3; + homepage = "https://github.com/aggelgian/cuter"; + maintainers = with stdenv.lib.maintainers; [ ericbmerritt ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2e86b3b5894..76128a9c2cc 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5355,6 +5355,7 @@ let fetchHex = callPackage ../development/tools/build-managers/rebar3/fetch-hex.nix { }; erlangPackages = callPackage ../development/erlang-modules { }; + cuter = erlangPackages.callPackage ../development/tools/erlang/cuter { }; hex2nix = erlangPackages.callPackage ../development/tools/erlang/hex2nix { }; elixir = callPackage ../development/interpreters/elixir { }; From 7533784f2823b059cce70fa18d34dceecc875188 Mon Sep 17 00:00:00 2001 From: Mathias Schreck Date: Sat, 12 Mar 2016 23:06:09 +0100 Subject: [PATCH 0286/1059] nodejs: 5.7.1 -> 5.8.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 185ad61680b..6e9b0bbf49e 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.7.1"; + version = "5.8.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 = "16016cjycg0filh15nqfh3k1fdw3kaykl87xf8dnzf666mirbm7c"; + sha256 = "165q4bbq1fjrr82ciiczbgyz37fl8sg3nqspccz0aqhwxh65ikg8"; }; configureFlags = concatMap sharedConfigureFlags (builtins.attrNames deps) ++ [ "--without-dtrace" ]; From 615ea1e90c4b9e4d4c0d2369a56d16f966363aa2 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Sun, 13 Mar 2016 00:43:29 +0100 Subject: [PATCH 0287/1059] mkvtoolnix: fix failing build --- pkgs/applications/video/mkvtoolnix/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/video/mkvtoolnix/default.nix b/pkgs/applications/video/mkvtoolnix/default.nix index 54bd2b5f979..05bd5ad980b 100644 --- a/pkgs/applications/video/mkvtoolnix/default.nix +++ b/pkgs/applications/video/mkvtoolnix/default.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { (optional withGUI qt5.qtbase) ]; - preConfigure = "./autogen.sh"; + preConfigure = "./autogen.sh; patchShebangs ."; buildPhase = "./drake -j $NIX_BUILD_CORES"; installPhase = "./drake install -j $NIX_BUILD_CORES"; From ebc5b6e1ad2c17bfc0f941e396ac2df6927e6e82 Mon Sep 17 00:00:00 2001 From: Sheena Artrip Date: Sat, 12 Mar 2016 19:42:59 -0500 Subject: [PATCH 0288/1059] spotify: 1.0.23.93 -> 1.0.25.127 --- pkgs/applications/audio/spotify/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix index bf06761bc53..498a4be7ff4 100644 --- a/pkgs/applications/audio/spotify/default.nix +++ b/pkgs/applications/audio/spotify/default.nix @@ -5,7 +5,7 @@ assert stdenv.system == "x86_64-linux"; let - version = "1.0.23.93.gd6cfae15-30"; + version = "1.0.25.127.g58007b4c-22"; deps = [ alsaLib @@ -50,7 +50,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://repository-origin.spotify.com/pool/non-free/s/spotify-client/spotify-client_${version}_amd64.deb"; - sha256 = "0n6vz51jv6s20dp4zlqkk52bpmpyfm1qn5bfm4lfq09x1g6ir5lr"; + sha256 = "1fxps0ls0g4idw10la3qrpmp2jn85lkm3xj4nam4ycx0jj8g1v2p"; }; buildInputs = [ dpkg makeWrapper ]; From 0899727f6947da43e937f40f95d0a301ce137fd7 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Thu, 10 Mar 2016 11:37:18 +0000 Subject: [PATCH 0289/1059] django_hijack: init at 2.0.7 --- pkgs/top-level/python-packages.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ef27d454402..4c5609e8700 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8084,6 +8084,24 @@ in modules // { }; }; + django_hijack = buildPythonPackage rec { + name = "django-hijack-${version}"; + version = "2.0.7"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/d/django-hijack/${name}.tar.gz"; + sha256 = "0rpi1bkfx74xfbb2nk874kfdra1jcqp2vzky1r3z7zidlc9kah04"; + }; + + propagatedBuildInputs = with self; [ django django_compat ]; + + meta = { + description = "Allows superusers to hijack (=login as) and work on behalf of another user"; + homepage = https://github.com/arteria/django-hijack; + license = licenses.mit; + }; + }; + django_nose = buildPythonPackage rec { name = "django-nose-${version}"; version = "1.4.3"; From 9d1053dc6dfa6809a82818ba37ab8a03bb16b808 Mon Sep 17 00:00:00 2001 From: Anthony Cowley Date: Sat, 12 Mar 2016 18:44:31 -0500 Subject: [PATCH 0290/1059] suitesparse: darwin compatibility There is no librt on darwin, so it must be disabled. --- .../libraries/science/math/suitesparse/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/science/math/suitesparse/default.nix b/pkgs/development/libraries/science/math/suitesparse/default.nix index e32b8b34426..679e6f51ddc 100644 --- a/pkgs/development/libraries/science/math/suitesparse/default.nix +++ b/pkgs/development/libraries/science/math/suitesparse/default.nix @@ -23,6 +23,10 @@ stdenv.mkDerivation { -e 's/METIS_PATH .*$/METIS_PATH =/' \ -e '/CHOLMOD_CONFIG/ s/$/-DNPARTITION -DLONGBLAS=${int_t}/' \ -e '/UMFPACK_CONFIG/ s/$/-DLONGBLAS=${int_t}/' + '' + + stdenv.lib.optionalString stdenv.isDarwin '' + sed -i "SuiteSparse_config/SuiteSparse_config.mk" \ + -e 's/^[[:space:]]*\(LIB = -lm\) -lrt/\1/' ''; makeFlags = [ @@ -33,7 +37,7 @@ stdenv.mkDerivation { "LAPACK=" ]; - NIX_CFLAGS = "-fPIC"; + NIX_CFLAGS = "-fPIC" + stdenv.lib.optionalString stdenv.isDarwin " -DNTIMER"; postInstall = '' # Build and install shared library From 4393e6f619e505493eafebb53fe8b689d1919d61 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 13 Mar 2016 07:08:01 +0100 Subject: [PATCH 0291/1059] transmission: build transmission-cli As of version 2.92, transmission-cli is no longer built by default (it is deprecated). This breaks the bittorrent vmtest. For now, explicitly enable the cli. --- pkgs/applications/networking/p2p/transmission/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/networking/p2p/transmission/default.nix b/pkgs/applications/networking/p2p/transmission/default.nix index eb8c5350a6f..24b7a50b032 100644 --- a/pkgs/applications/networking/p2p/transmission/default.nix +++ b/pkgs/applications/networking/p2p/transmission/default.nix @@ -26,6 +26,7 @@ stdenv.mkDerivation rec { ''; configureFlags = [ "--with-systemd-daemon" ] + ++ [ "--enable-cli" ] ++ optional enableGTK3 "--with-gtk"; preFixup = optionalString enableGTK3 /* gsettings schemas for file dialogues */ '' From 64633c2fffd0a2c7eb26d0a6162279adf73f09a0 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Sun, 13 Mar 2016 08:19:04 +0100 Subject: [PATCH 0292/1059] hypothesis: rename before introducing v3 --- pkgs/top-level/python-packages.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ade98083aa3..53b81623232 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2061,7 +2061,7 @@ in modules // { sha256 = "1j4f51dxic39mdwf6alj7gd769wy6mhk916v031wjali51xkh3xb"; }; - buildInputs = with self; [ hypothesis sqlite3 ]; + buildInputs = with self; [ hypothesis1 sqlite3 ]; propagatedBuildInputs = with self; [ chardet ]; @@ -3577,7 +3577,7 @@ in modules // { }; buildInputs = [ pkgs.openssl self.pretend self.cryptography_vectors - self.iso8601 self.pyasn1 self.pytest self.py self.hypothesis ] + self.iso8601 self.pyasn1 self.pytest self.py self.hypothesis1 ] ++ optional stdenv.isDarwin pkgs.darwin.apple_sdk.frameworks.Security; propagatedBuildInputs = with self; [ six idna ipaddress pyasn1 cffi pyasn1-modules modules.sqlite3 ] ++ optional (pythonOlder "3.4") self.enum34; @@ -6456,7 +6456,7 @@ in modules // { buildInputs = with self; [ - hypothesis + hypothesis1 pytestcov pytestflakes pytestpep8 @@ -10025,7 +10025,7 @@ in modules // { }; }; - hypothesis = buildPythonPackage rec { + hypothesis1 = buildPythonPackage rec { name = "hypothesis-1.14.0"; buildInputs = with self; [fake_factory django numpy pytz flake8 pytest ]; @@ -17034,7 +17034,7 @@ in modules // { sha256 = "0jgyhkkq36wn36rymn4jiyqh2vdslmradq4a2mjkxfbk2cz6wpi5"; }; - buildInputs = with self; [ six pytest hypothesis ] ++ optional (!isPy3k) modules.sqlite3; + buildInputs = with self; [ six pytest hypothesis1 ] ++ optional (!isPy3k) modules.sqlite3; checkPhase = '' py.test From 8c660e0301aec244a03c61eced2a5723f30e1ad7 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Sun, 13 Mar 2016 08:41:32 +0100 Subject: [PATCH 0293/1059] offlineimap: 6.6.1 -> 6.7.0 --- pkgs/tools/networking/offlineimap/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/offlineimap/default.nix b/pkgs/tools/networking/offlineimap/default.nix index 00061b3aeff..9c305791bda 100644 --- a/pkgs/tools/networking/offlineimap/default.nix +++ b/pkgs/tools/networking/offlineimap/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, buildPythonApplication, sqlite3 }: buildPythonApplication rec { - version = "6.6.1"; + version = "6.7.0"; name = "offlineimap-${version}"; namePrefix = ""; @@ -9,7 +9,7 @@ buildPythonApplication rec { owner = "OfflineIMAP"; repo = "offlineimap"; rev = "v${version}"; - sha256 = "0nn1qkxqy84h0a2acd1yx861wslh2fjfznkcq15856npbd34yqy5"; + sha256 = "127d7zy8h2h67bvrc4x98wcfskmkxislsv9qnvpgxlc56vnsrg54"; }; doCheck = false; From f3a6f3e2f33081a2b6523435abe93433ec1af5fb Mon Sep 17 00:00:00 2001 From: Anthony Cowley Date: Sun, 13 Mar 2016 04:13:26 -0400 Subject: [PATCH 0294/1059] suitesparse: build dylibs on darwin Makes the shared libraries usable on darwin so that, e.g., the Julia compiler may be built. --- .../libraries/science/math/suitesparse/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/science/math/suitesparse/default.nix b/pkgs/development/libraries/science/math/suitesparse/default.nix index 679e6f51ddc..7dc6c32a8db 100644 --- a/pkgs/development/libraries/science/math/suitesparse/default.nix +++ b/pkgs/development/libraries/science/math/suitesparse/default.nix @@ -5,6 +5,7 @@ let name = "suitesparse-${version}"; int_t = if openblas.blas64 then "int64_t" else "int32_t"; + SHLIB_EXT = if stdenv.isDarwin then "dylib" else "so"; in stdenv.mkDerivation { inherit name; @@ -46,10 +47,10 @@ stdenv.mkDerivation { for i in "$out"/lib/lib*.a; do ar -x $i done - gcc *.o --shared -o "$out/lib/libsuitesparse.so" -lopenblas + ''${CC} *.o ${if stdenv.isDarwin then "-dynamiclib" else "--shared"} -o "$out/lib/libsuitesparse.${SHLIB_EXT}" -lopenblas ) for i in umfpack cholmod amd camd colamd spqr; do - ln -s libsuitesparse.so "$out"/lib/lib$i.so; + ln -s libsuitesparse.${SHLIB_EXT} "$out"/lib/lib$i.${SHLIB_EXT} done # Install documentation From 889d6d11a3d93b920ea9ed63844d45f44f9f43e5 Mon Sep 17 00:00:00 2001 From: Anthony Cowley Date: Sun, 13 Mar 2016 04:18:16 -0400 Subject: [PATCH 0295/1059] julia: darwin compatibility Along with PR #13879, these patches let julia build and run on darwin. Using an llvm with shared library support is an idea adopted from a @pikajude comment here https://github.com/NixOS/nixpkgs/issues/10864 The libgit2 change is mechanical to pull in iconv on darwin. The frameworks are referenced by julia's build system. --- pkgs/development/compilers/julia/default.nix | 12 ++++++++++-- pkgs/development/libraries/git2/default.nix | 9 ++++++--- pkgs/top-level/all-packages.nix | 7 ++++++- 3 files changed, 22 insertions(+), 6 deletions(-) diff --git a/pkgs/development/compilers/julia/default.nix b/pkgs/development/compilers/julia/default.nix index 0eddde15a58..0c0520533bc 100644 --- a/pkgs/development/compilers/julia/default.nix +++ b/pkgs/development/compilers/julia/default.nix @@ -7,6 +7,8 @@ , curl, fftwSinglePrec, fftw, gmp, libgit2, mpfr, openlibm, openspecfun, pcre2 # linear algebra , openblas, arpack, suitesparse +# Darwin frameworks +, CoreServices, ApplicationServices }: with stdenv.lib; @@ -19,6 +21,9 @@ in let arpack = arpack_.override { inherit openblas; }; suitesparse = suitesparse_.override { inherit openblas; }; + llvmShared = if stdenv.isDarwin + then llvm.override { enableSharedLibraries = true; } + else llvm; in let @@ -68,10 +73,11 @@ stdenv.mkDerivation rec { ''; buildInputs = [ - arpack fftw fftwSinglePrec gmp libgit2 libunwind llvm mpfr + arpack fftw fftwSinglePrec gmp libgit2 libunwind llvmShared mpfr pcre2 openblas openlibm openspecfun readline suitesparse utf8proc zlib - ]; + ] ++ + stdenv.lib.optionals stdenv.isDarwin [CoreServices ApplicationServices] ; nativeBuildInputs = [ curl gfortran m4 makeWrapper patchelf perl python2 which ]; @@ -127,6 +133,8 @@ stdenv.mkDerivation rec { openspecfun pcre2 suitesparse ]; + NIX_LDFLAGS = optionalString stdenv.isDarwin "-rpath ${llvmShared}/lib"; + dontStrip = true; dontPatchELF = true; diff --git a/pkgs/development/libraries/git2/default.nix b/pkgs/development/libraries/git2/default.nix index 3c433511fc1..fb380d60cf9 100644 --- a/pkgs/development/libraries/git2/default.nix +++ b/pkgs/development/libraries/git2/default.nix @@ -1,6 +1,6 @@ -{stdenv, fetchurl, pkgconfig, cmake, zlib, python, libssh2, openssl, http-parser}: +{stdenv, fetchurl, pkgconfig, cmake, zlib, python, libssh2, openssl, http-parser, libiconv}: -stdenv.mkDerivation rec { +stdenv.mkDerivation (rec { version = "0.23.2"; name = "libgit2-${version}"; @@ -21,4 +21,7 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2; platforms = with stdenv.lib.platforms; all; }; -} +} // stdenv.lib.optionalAttrs (!stdenv.isLinux) { + NIX_LDFLAGS = "-liconv"; + propagatedBuildInputs = [ libiconv ]; +}) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2e86b3b5894..7efa8d25850 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4546,6 +4546,7 @@ let julia = callPackage ../development/compilers/julia { gmp = gmp6; openblas = openblasCompat; + inherit (darwin.apple_sdk.frameworks) CoreServices ApplicationServices; }; julia-git = lowPrio (callPackage ../development/compilers/julia/git.nix { @@ -6850,7 +6851,11 @@ let gio-sharp = callPackage ../development/libraries/gio-sharp { }; - libgit2 = callPackage ../development/libraries/git2 { }; + libgit2 = callPackage ../development/libraries/git2 ( + stdenv.lib.optionalAttrs stdenv.isDarwin { + inherit (darwin) libiconv; + } + ); libgit2_0_21 = callPackage ../development/libraries/git2/0.21.nix { }; From f82a46cf58dce02c1b74c2d4d0a1245c196a896f Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 13 Mar 2016 09:32:28 +0100 Subject: [PATCH 0296/1059] fstar: 2016-01-12 -> 0.9.2.0 FStar has been broken for a while, due to its regression test failing. Bump to the latest release, which is newer than the previous rev. --- pkgs/development/compilers/fstar/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/compilers/fstar/default.nix b/pkgs/development/compilers/fstar/default.nix index e6fe97c6fe8..0b4ea9a1823 100644 --- a/pkgs/development/compilers/fstar/default.nix +++ b/pkgs/development/compilers/fstar/default.nix @@ -2,17 +2,19 @@ stdenv.mkDerivation rec { name = "fstar-${version}"; - version = "2016-01-12"; + version = "0.9.2.0"; src = fetchFromGitHub { owner = "FStarLang"; repo = "FStar"; - rev = "af9a231566ca52c9bc3409398c801ae9e8191cfa"; - sha256 = "1zri4gqr6j6hygnh0ckfhq93mqwk9i19vng8chnmvlr27zq734a2"; + rev = "v${version}"; + sha256 = "0vrxmxfaslngvbvkzpm1gfl1s34hdsprv8msasxf9sjqc3hlir3l"; }; + nativeBuildInputs = [ makeWrapper ]; + buildInputs = with ocamlPackages; [ - mono fsharp z3 dotnetPackages.FsLexYacc ocaml findlib ocaml_batteries openssl makeWrapper + mono fsharp z3 dotnetPackages.FsLexYacc ocaml findlib ocaml_batteries openssl ]; preBuild = '' From d4ae8b68cbc59915451b5b00f39ecac844494c68 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 13 Mar 2016 06:28:40 +0100 Subject: [PATCH 0297/1059] 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 f7e2171937cd61df613d57c9046c6bd74014173c Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 11 Mar 2016 17:12:16 +0100 Subject: [PATCH 0298/1059] chromium/common: Shut up about precompiling .pyc's The errors are completely non-fatal and only cause a particular file to be not precompiled. Unfortunately this can lead to confusion to whether these errors are real errors or not, so let's shut it up completely because they're *not* real errors. 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 237dfd17ac7..c63f57f934d 100644 --- a/pkgs/applications/networking/browsers/chromium/common.nix +++ b/pkgs/applications/networking/browsers/chromium/common.nix @@ -183,7 +183,7 @@ let configurePhase = '' # Precompile .pyc files to prevent race conditions during build - python -m compileall -q -f . || : # ignore errors + python -m compileall -q -f . > /dev/null 2>&1 || : # ignore errors # This is to ensure expansion of $out. libExecPath="${libExecPath}" From a62f100ec37506ee9a310f4aee59db73d7dcc507 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sun, 13 Mar 2016 12:17:30 +0100 Subject: [PATCH 0299/1059] chromium/update.sh: Allow to be called out-of-tree Changing the working directory to pkgs/applications/networking/browsers/chromium is a bit annoying, so let's make sure the script can be called from anywhere. Signed-off-by: aszlig --- pkgs/applications/networking/browsers/chromium/update.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/networking/browsers/chromium/update.sh b/pkgs/applications/networking/browsers/chromium/update.sh index 05cc671d31c..14f3dc6bd9d 100755 --- a/pkgs/applications/networking/browsers/chromium/update.sh +++ b/pkgs/applications/networking/browsers/chromium/update.sh @@ -1,3 +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 From 73487f461941e89f1d4d76823e5d2fe2a2699f64 Mon Sep 17 00:00:00 2001 From: Cole Mickens Date: Thu, 10 Mar 2016 23:15:52 -0800 Subject: [PATCH 0300/1059] virtualization/azure: fixes azure-agent: add option for verbose logging azure-agent: disable ssh host key regeneration azure-common: set verbose logging on azure-image: increase size to 30GB --- nixos/modules/virtualisation/azure-agent.nix | 16 +++++++++++----- nixos/modules/virtualisation/azure-common.nix | 1 + nixos/modules/virtualisation/azure-image.nix | 2 +- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/nixos/modules/virtualisation/azure-agent.nix b/nixos/modules/virtualisation/azure-agent.nix index 640519758c7..6b60419c290 100644 --- a/nixos/modules/virtualisation/azure-agent.nix +++ b/nixos/modules/virtualisation/azure-agent.nix @@ -54,9 +54,15 @@ in ###### interface - options.virtualisation.azure.agent.enable = mkOption { - default = false; - description = "Whether to enable the Windows Azure Linux Agent."; + options.virtualisation.azure.agent = { + enable = mkOption { + default = false; + description = "Whether to enable the Windows Azure Linux Agent."; + }; + verboseLogging = mkOption { + default = false; + description = "Whether to enable verbose logging."; + }; }; ###### implementation @@ -88,7 +94,7 @@ in Provisioning.DeleteRootPassword=n # Generate fresh host key pair. - Provisioning.RegenerateSshHostKeyPair=y + Provisioning.RegenerateSshHostKeyPair=n # Supported values are "rsa", "dsa" and "ecdsa". Provisioning.SshHostKeyPairType=ed25519 @@ -121,7 +127,7 @@ in Logs.Console=y # Enable verbose logging (y|n) - Logs.Verbose=n + Logs.Verbose=${if cfg.verboseLogging then "y" else "n"} # Root device timeout in seconds. OS.RootDeviceScsiTimeout=300 diff --git a/nixos/modules/virtualisation/azure-common.nix b/nixos/modules/virtualisation/azure-common.nix index eedf115ee15..9ee4d9cf8d5 100644 --- a/nixos/modules/virtualisation/azure-common.nix +++ b/nixos/modules/virtualisation/azure-common.nix @@ -6,6 +6,7 @@ with lib; require = [ ./azure-agent.nix ]; virtualisation.azure.agent.enable = true; + virtualisation.azure.agent.verboseLogging = true; boot.kernelParams = [ "console=ttyS0" "earlyprintk=ttyS0" "rootdelay=300" "panic=1" "boot.panic_on_fail" ]; boot.initrd.kernelModules = [ "hv_vmbus" "hv_netvsc" "hv_utils" "hv_storvsc" ]; diff --git a/nixos/modules/virtualisation/azure-image.nix b/nixos/modules/virtualisation/azure-image.nix index 79d1f7d7cc4..f7949b50137 100644 --- a/nixos/modules/virtualisation/azure-image.nix +++ b/nixos/modules/virtualisation/azure-image.nix @@ -2,7 +2,7 @@ with lib; let - diskSize = "4096"; + diskSize = "30720"; in { system.build.azureImage = From 7a4684bee1c7e3eb6e8f0ee27a85244e22ce9dff Mon Sep 17 00:00:00 2001 From: Evgeny Egorochkin Date: Sat, 12 Mar 2016 10:09:02 +0200 Subject: [PATCH 0301/1059] virtualization/azure: take entropy handling code out of WALA and execute it before SSHD generates the host keys --- .../virtualisation/azure-agent-entropy.patch | 17 +++++++++++++++ nixos/modules/virtualisation/azure-agent.nix | 21 +++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 nixos/modules/virtualisation/azure-agent-entropy.patch diff --git a/nixos/modules/virtualisation/azure-agent-entropy.patch b/nixos/modules/virtualisation/azure-agent-entropy.patch new file mode 100644 index 00000000000..2a7ad08a4af --- /dev/null +++ b/nixos/modules/virtualisation/azure-agent-entropy.patch @@ -0,0 +1,17 @@ +--- a/waagent 2016-03-12 09:58:15.728088851 +0200 ++++ a/waagent 2016-03-12 09:58:43.572680025 +0200 +@@ -6173,10 +6173,10 @@ + Log("MAC address: " + ":".join(["%02X" % Ord(a) for a in mac])) + + # Consume Entropy in ACPI table provided by Hyper-V +- try: +- SetFileContents("/dev/random", GetFileContents("/sys/firmware/acpi/tables/OEM0")) +- except: +- pass ++ #try: ++ # SetFileContents("/dev/random", GetFileContents("/sys/firmware/acpi/tables/OEM0")) ++ #except: ++ # pass + + Log("Probing for Azure environment.") + self.Endpoint = self.DoDhcpWork() diff --git a/nixos/modules/virtualisation/azure-agent.nix b/nixos/modules/virtualisation/azure-agent.nix index 6b60419c290..34ca8df9d91 100644 --- a/nixos/modules/virtualisation/azure-agent.nix +++ b/nixos/modules/virtualisation/azure-agent.nix @@ -14,6 +14,9 @@ let rev = "1b3a8407a95344d9d12a2a377f64140975f1e8e4"; sha256 = "10byzvmpgrmr4d5mdn2kq04aapqb3sgr1admk13wjmy5cd6bwd2x"; }; + + patches = [ ./azure-agent-entropy.patch ]; + buildInputs = [ makeWrapper python pythonPackages.wrapPython ]; runtimeDeps = [ findutils gnugrep gawk coreutils openssl openssh nettools # for hostname @@ -156,6 +159,24 @@ in before = [ "sshd.service" ]; }; + systemd.services.consume-hypervisor-entropy = + { description = "Consume entropy in ACPI table provided by Hyper-V"; + + wantedBy = [ "sshd.service" "waagent.service" ]; + before = [ "sshd.service" "waagent.service" ]; + after = [ "local-fs.target" ]; + + path = [ pkgs.coreutils ]; + script = + '' + echo "Fetching entropy..." + cat /sys/firmware/acpi/tables/OEM0 > /dev/random + ''; + serviceConfig.Type = "oneshot"; + serviceConfig.RemainAfterExit = true; + serviceConfig.StandardError = "journal+console"; + serviceConfig.StandardOutput = "journal+console"; + }; systemd.services.waagent = { wantedBy = [ "sshd.service" ]; From 0d4e5649dc3047e05b8eabed5b5a6b945b078c19 Mon Sep 17 00:00:00 2001 From: Evgeny Egorochkin Date: Sun, 13 Mar 2016 00:48:53 +0200 Subject: [PATCH 0302/1059] virtualization/azure: make the image dynamic again since azure-cli upload bug is fixed --- nixos/modules/virtualisation/azure-image.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/virtualisation/azure-image.nix b/nixos/modules/virtualisation/azure-image.nix index f7949b50137..9dc0ce11992 100644 --- a/nixos/modules/virtualisation/azure-image.nix +++ b/nixos/modules/virtualisation/azure-image.nix @@ -23,7 +23,7 @@ in postVM = '' mkdir -p $out - ${pkgs.vmTools.qemu-220}/bin/qemu-img convert -f raw -O vpc -o subformat=fixed $diskImage $out/disk.vhd + ${pkgs.vmTools.qemu-220}/bin/qemu-img convert -f raw -O vpc $diskImage $out/disk.vhd rm $diskImage ''; diskImageBase = "nixos-image-${config.system.nixosLabel}-${pkgs.stdenv.system}.raw"; From 6f47b2c16d732c9fa9c7428a6cca268fa63b8dc5 Mon Sep 17 00:00:00 2001 From: Evgeny Egorochkin Date: Sun, 13 Mar 2016 01:18:14 +0200 Subject: [PATCH 0303/1059] virtualization/azure: turn off verbose logging --- nixos/modules/virtualisation/azure-common.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/modules/virtualisation/azure-common.nix b/nixos/modules/virtualisation/azure-common.nix index 9ee4d9cf8d5..eedf115ee15 100644 --- a/nixos/modules/virtualisation/azure-common.nix +++ b/nixos/modules/virtualisation/azure-common.nix @@ -6,7 +6,6 @@ with lib; require = [ ./azure-agent.nix ]; virtualisation.azure.agent.enable = true; - virtualisation.azure.agent.verboseLogging = true; boot.kernelParams = [ "console=ttyS0" "earlyprintk=ttyS0" "rootdelay=300" "panic=1" "boot.panic_on_fail" ]; boot.initrd.kernelModules = [ "hv_vmbus" "hv_netvsc" "hv_utils" "hv_storvsc" ]; From cc947ef934abf0842bfe6861c475f038926aea60 Mon Sep 17 00:00:00 2001 From: Evgeny Egorochkin Date: Sun, 13 Mar 2016 05:25:27 +0200 Subject: [PATCH 0304/1059] virtualization/azure: reorder WALA and SSHD --- nixos/modules/virtualisation/azure-agent.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/nixos/modules/virtualisation/azure-agent.nix b/nixos/modules/virtualisation/azure-agent.nix index 34ca8df9d91..da97565fd6d 100644 --- a/nixos/modules/virtualisation/azure-agent.nix +++ b/nixos/modules/virtualisation/azure-agent.nix @@ -155,8 +155,6 @@ in systemd.targets.provisioned = { description = "Services Requiring Azure VM provisioning to have finished"; - wantedBy = [ "sshd.service" ]; - before = [ "sshd.service" ]; }; systemd.services.consume-hypervisor-entropy = @@ -179,10 +177,8 @@ in }; systemd.services.waagent = { - wantedBy = [ "sshd.service" ]; - before = [ "sshd.service" ]; - after = [ "ip-up.target" ]; - wants = [ "ip-up.target" ]; + wantedBy = [ "multi-user.target" ]; + after = [ "ip-up.target" "sshd.service" ]; path = [ pkgs.e2fsprogs ]; description = "Windows Azure Agent Service"; From 88ba7d8ecd31bfd4f26ae02d9a68116b83053072 Mon Sep 17 00:00:00 2001 From: Evgeny Egorochkin Date: Sun, 13 Mar 2016 06:47:58 +0200 Subject: [PATCH 0305/1059] azure: package sdk and vhd tools for go --- pkgs/top-level/go-packages.nix | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 315b799efbc..e49fe451681 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -290,6 +290,23 @@ let ''; }; + azure-sdk-for-go = buildFromGitHub { + rev = "v2.0.0-beta"; + owner = "Azure"; + repo = "azure-sdk-for-go"; + sha256 = "04bixwh4bzgysa79azis1p755rb6zxjjzhpskpvpmvkv49baharc"; + propagatedBuildInputs = [ go-autorest cli-go ]; + }; + + azure-vhd-tools-for-go = buildFromGitHub { + rev = "7db4795475aeab95590f8643969e06b633ead4ec"; + owner = "Microsoft"; + repo = "azure-vhd-utils-for-go"; + sha256 = "0xg6a1qw8jjxqhgvy9zlvq5b8xnnvfkjnkjz9f8g4y1kcw09lird"; + + propagatedBuildInputs = [ azure-sdk-for-go ]; + }; + hashicorp.aws-sdk-go = buildFromGitHub { rev = "e6ea0192eee4640f32ec73c0cbb71f63e4f2b65a"; owner = "hashicorp"; @@ -1240,6 +1257,14 @@ let propagatedBuildInputs = [ pretty ]; }; + go-autorest = buildFromGitHub { + rev = "v6.0.0"; + owner = "Azure"; + repo = "go-autorest"; + sha256 = "07zrbw8p3jc5xfjwn0qj1hrn1r7nbnryc5zmvk42qgximyxsls26"; + propagatedBuildInputs = [ jwt-go crypto ]; + }; + go-backblaze = buildFromGitHub { buildInputs = [ go-flags go-humanize uilive uiprogress ]; goPackagePath = "gopkg.in/kothar/go-backblaze.v0"; @@ -2000,6 +2025,13 @@ let sha256 = "0m8867afsvka5gp2idrmlarpjg7kxx7qacpwrz1wl8y3zxyn3945"; }; + jwt-go = buildFromGitHub { + rev = "v2.4.0"; + owner = "dgrijalva"; + repo = "jwt-go"; + sha256 = "00rvv1d2f62svd6311dkr8j56ysx8wgk9yfkb9vqf2mp5ix37dc0"; + }; + kagome = buildFromGitHub { rev = "1bbdbdd590e13a8c2f4508c67a079113cd7b9f51"; date = "2016-01-19"; From 158d723812e7364d8cadd7802d0b8d239fb227d8 Mon Sep 17 00:00:00 2001 From: Evgeny Egorochkin Date: Sun, 13 Mar 2016 12:36:40 +0200 Subject: [PATCH 0306/1059] virtualization/azure: update the scripts for image maintenance --- .../maintainers/scripts/azure/create-azure.sh | 5 +---- .../maintainers/scripts/azure/upload-azure.sh | 22 +++++++++++++++++++ 2 files changed, 23 insertions(+), 4 deletions(-) create mode 100755 nixos/maintainers/scripts/azure/upload-azure.sh diff --git a/nixos/maintainers/scripts/azure/create-azure.sh b/nixos/maintainers/scripts/azure/create-azure.sh index f87a88404f6..a834566be8f 100755 --- a/nixos/maintainers/scripts/azure/create-azure.sh +++ b/nixos/maintainers/scripts/azure/create-azure.sh @@ -1,11 +1,8 @@ #! /bin/sh -e -BUCKET_NAME=${BUCKET_NAME:-nixos} export NIX_PATH=nixpkgs=../../../.. export NIXOS_CONFIG=$(dirname $(readlink -f $0))/../../../modules/virtualisation/azure-image.nix export TIMESTAMP=$(date +%Y%m%d%H%M) nix-build '' \ - -A config.system.build.azureImage --argstr system x86_64-linux -o azure --option extra-binary-caches http://hydra.nixos.org -j 10 - -azure vm image create nixos-test --location "West Europe" --md5-skip -v --os Linux azure/disk.vhd + -A config.system.build.azureImage --argstr system x86_64-linux -o azure --option extra-binary-caches https://hydra.nixos.org -j 10 diff --git a/nixos/maintainers/scripts/azure/upload-azure.sh b/nixos/maintainers/scripts/azure/upload-azure.sh new file mode 100755 index 00000000000..2ea35d1d4c3 --- /dev/null +++ b/nixos/maintainers/scripts/azure/upload-azure.sh @@ -0,0 +1,22 @@ +#! /bin/sh -e + +export STORAGE=${STORAGE:-nixos} +export THREADS=${THREADS:-8} + +azure-vhd-utils-for-go upload --localvhdpath azure/disk.vhd --stgaccountname "$STORAGE" --stgaccountkey "$KEY" \ + --containername images --blobname nixos-unstable-nixops-updated.vhd --parallelism "$THREADS" --overwrite + + + + + + + + + + + + + + + From 15f46547d9feaef9c65cdcea5e3859deec95048f Mon Sep 17 00:00:00 2001 From: Sheena Artrip Date: Sun, 13 Mar 2016 08:20:16 -0400 Subject: [PATCH 0307/1059] Added sheenobu as maintainer --- lib/maintainers.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 4c552946667..ab0b5271b4f 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -301,6 +301,7 @@ schristo = "Scott Christopher "; scolobb = "Sergiu Ivanov "; sepi = "Raffael Mancini "; + sheenobu = "Sheena Artrip "; sheganinans = "Aistis Raulinaitis "; shell = "Shell Turner "; shlevy = "Shea Levy "; From 6335907d2f776f7866863d8a19c67608e10a2ff9 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sun, 13 Mar 2016 12:54:51 +0000 Subject: [PATCH 0308/1059] django: 1.8.10 -> 1.8.11, 1.9.3 -> 1.9.4 security updates --- 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 392b4af4c56..dbe53aabcf0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -7870,12 +7870,12 @@ in modules // { django_1_9 = buildPythonPackage rec { name = "Django-${version}"; - version = "1.9.3"; + version = "1.9.4"; disabled = pythonOlder "2.7"; src = pkgs.fetchurl { url = "http://www.djangoproject.com/m/releases/1.9/${name}.tar.gz"; - sha256 = "0miv4jb2p4xpcdif0zqimmqw1jypzyq6q5v4m79jc9yyhwj1l685"; + sha256 = "1sdxixj4p3wx245dm608bqw5bdabl701qab0ar5wjivyd6mfga5d"; }; # patch only $out/bin to avoid problems with starter templates (see #3134) @@ -7894,12 +7894,12 @@ in modules // { django_1_8 = buildPythonPackage rec { name = "Django-${version}"; - version = "1.8.10"; + version = "1.8.11"; disabled = pythonOlder "2.7"; src = pkgs.fetchurl { url = "http://www.djangoproject.com/m/releases/1.8/${name}.tar.gz"; - sha256 = "08qsgnqq97rg4v80kmbkccr9hm90nw4zh6c46xblk64lnqgb3rfj"; + sha256 = "1yrmlj3h2hp5kc5m11ybya21x2wfr5bqqbkcsw6hknj86pkqn57c"; }; # too complicated to setup From 075b3b449da10a7a2055e80b91a6e123587b492c Mon Sep 17 00:00:00 2001 From: Michael Fellinger Date: Sun, 13 Mar 2016 13:59:38 +0100 Subject: [PATCH 0309/1059] bundix: 2.0.5 -> 2.0.6 Fixes issue caused by changed nix-prefetch-git output. --- 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 1ce2528291e..21b42ae020a 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.5"; + version = "2.0.6"; - sha256 = "0bsynhr44jz6nih0xn7v32h1qvywnb5335ka208gn7jp6bjwabhy"; + sha256 = "0yd960awd427mg29r2yzhccd0vjimn1ljr8d8hncj6m6wg84nvh5"; buildInputs = [bundler]; From 8be123e92f26655bc523c752eed0a8dd18b9c91c Mon Sep 17 00:00:00 2001 From: Luis Pedro Coelho Date: Sun, 13 Mar 2016 16:41:13 +0100 Subject: [PATCH 0310/1059] pythonPackages.imread: add webp support pkg-config needs to be present at build time for webp support to be auto-detected by the build script. --- pkgs/top-level/python-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index dbe53aabcf0..e0e7ca6d975 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6000,6 +6000,7 @@ in modules // { pkgs.libpng pkgs.libtiff pkgs.libwebp + pkgs.pkgconfig ]; propagatedBuildInputs = with self; [ numpy ]; From 1b3d974c981963bfb3a6eff48c57d76bd67e1d18 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 12 Mar 2016 22:16:06 +0100 Subject: [PATCH 0311/1059] electrum: 2.6.1 -> 2.6.2 --- 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 82f90380113..733833e3171 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.1"; + version = "2.6.2"; src = fetchurl { url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz"; - sha256 = "14q6y1hwzki56nfhd3nfbxid07d5fv0pgmklvcf7yxjmpdxrg0iq"; + sha256 = "1wvzlx9aj88z01vljhyg3v67zsk2iz18r58727pdq7h94vwwjc86"; }; propagatedBuildInputs = with pythonPackages; [ From afe481e733f2138cbf33abe246fae6a2632c447e Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 13 Mar 2016 17:45:29 +0100 Subject: [PATCH 0312/1059] pythonPackages.sleekxmpp: 1.2.5 -> 1.3.1 Also re-enable for !python3; readme states 2.x is supported; builds for me. --- pkgs/top-level/python-packages.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e0e7ca6d975..17f195cc03d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12450,15 +12450,13 @@ in modules // { sleekxmpp = buildPythonPackage rec { name = "sleekxmpp-${version}"; - version = "1.2.5"; - - disabled = (!isPy3k); + version = "1.3.1"; propagatedBuildInputs = with self ; [ dns pyasn1 ]; src = pkgs.fetchurl { - url = "https://github.com/fritzy/SleekXMPP/archive/sleek-${version}.tar.gz"; - sha256 = "07zz0bm098zss0xww11gj45aw417nrkp9k1szzs1zm88wyfr1z31"; + url = "https://pypi.python.org/packages/source/s/sleekxmpp/${name}.tar.gz"; + sha256 = "1krkhkvj8xw5a6c2xlf7h1rg9xdcm9d8x2niivwjahahpvbl6krr"; }; meta = { From 0a227e59eef078fd021e204781734fdaa1727038 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 13 Mar 2016 17:46:32 +0100 Subject: [PATCH 0313/1059] pythonPackages.emoji: init at 0.3.9 Required by ntfy --- 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 17f195cc03d..991e3d4e976 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12899,6 +12899,25 @@ in modules // { }; }; + emoji = buildPythonPackage rec { + name = "emoji-${version}"; + version = "0.3.9"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/e/emoji/${name}.tar.gz"; + sha256 = "19p5c2nlq0w9972rf9fghyswnijwgig5f8cyzs32kppnmzvzbkxw"; + }; + + buildInputs = with self; [ nose ]; + + meta = { + description = "Emoji for Python"; + homepage = https://pypi.python.org/pypi/emoji/; + license = licenses.bsd3; + maintainers = with maintainers; [ joachifm ]; + }; + }; + ntfy = buildPythonPackage rec { version = "1.2.0"; name = "ntfy-${version}"; From 56f8dd00b45f79d7850ce5bd810360fbfb1dc189 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 13 Mar 2016 17:47:04 +0100 Subject: [PATCH 0314/1059] pythonPackages.ntfy: add missing inputs Additionally needs emoji, sleekxmpp, and mock to build. Also change to request2 for py3k support. Fixes https://hydra.nixos.org/build/33157748 --- 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 991e3d4e976..fda682b6da2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12928,7 +12928,7 @@ in modules // { sha256 = "0yjxwisxpxy3vpnqk9nw5k3db3xx6wyf6sk1px9m94s30glcq2cc"; }; - propagatedBuildInputs = with self; [ appdirs pyyaml requests dbus ]; + propagatedBuildInputs = with self; [ appdirs pyyaml requests2 dbus emoji sleekxmpp mock ]; meta = { description = "A utility for sending notifications, on demand and when commands finish"; From 93feb5d115bc93ed7996aa4b3cc739b8f8d0f905 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= Date: Sun, 13 Mar 2016 16:08:15 +0800 Subject: [PATCH 0315/1059] drop my maintainership (close #13881) --- lib/maintainers.nix | 1 - pkgs/applications/audio/ekho/default.nix | 1 - pkgs/applications/audio/vmpk/default.nix | 1 - pkgs/applications/audio/xmp/default.nix | 1 - pkgs/applications/editors/aseprite/default.nix | 1 - pkgs/applications/editors/tiled/default.nix | 1 - pkgs/applications/misc/ranger/default.nix | 1 - pkgs/applications/networking/browsers/midori/default.nix | 2 +- pkgs/applications/video/pitivi/default.nix | 1 - pkgs/development/guile-modules/guile-opengl/default.nix | 1 - pkgs/development/guile-modules/guile-sdl/default.nix | 1 - pkgs/development/guile-modules/guile-xcb/default.nix | 1 - pkgs/development/interpreters/renpy/default.nix | 1 - pkgs/development/libraries/appstream/default.nix | 1 - pkgs/development/libraries/gstreamer/bad/default.nix | 1 - pkgs/development/libraries/gstreamer/base/default.nix | 1 - pkgs/development/libraries/gstreamer/core/default.nix | 1 - pkgs/development/libraries/gstreamer/ges/default.nix | 1 - pkgs/development/libraries/gstreamer/gnonlin/default.nix | 1 - pkgs/development/libraries/gstreamer/good/default.nix | 1 - pkgs/development/libraries/gstreamer/libav/default.nix | 1 - pkgs/development/libraries/gstreamer/ugly/default.nix | 1 - pkgs/development/libraries/gstreamer/validate/default.nix | 1 - pkgs/development/libraries/libgsystem/default.nix | 1 - pkgs/development/libraries/libxmp/default.nix | 1 - pkgs/development/libraries/webkitgtk/2.4.nix | 2 +- pkgs/development/libraries/webkitgtk/default.nix | 2 +- pkgs/development/python-modules/pyqt/5.x.nix | 2 +- pkgs/games/openra/default.nix | 1 - pkgs/games/performous/default.nix | 1 - pkgs/misc/themes/mate-icon-theme/default.nix | 1 - pkgs/misc/themes/mate-themes/default.nix | 1 - pkgs/tools/inputmethods/anthy/default.nix | 1 - pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix | 2 +- pkgs/tools/inputmethods/fcitx/default.nix | 2 +- pkgs/tools/misc/dvtm/default.nix | 1 - pkgs/tools/misc/ostree/default.nix | 1 - pkgs/tools/misc/parcellite/default.nix | 1 - pkgs/tools/text/kakasi/default.nix | 1 - pkgs/top-level/python-packages.nix | 1 - 40 files changed, 6 insertions(+), 40 deletions(-) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 2287ede8577..413f6ad9024 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -152,7 +152,6 @@ iElectric = "Domen Kozar "; igsha = "Igor Sharonov "; ikervagyok = "Balázs Lengyel "; - iyzsong = "Song Wenwu "; j-keck = "Jürgen Keck "; jagajaga = "Arseniy Seroka "; javaguirre = "Javier Aguirre "; diff --git a/pkgs/applications/audio/ekho/default.nix b/pkgs/applications/audio/ekho/default.nix index 78383eec953..209ffa05bf2 100644 --- a/pkgs/applications/audio/ekho/default.nix +++ b/pkgs/applications/audio/ekho/default.nix @@ -20,7 +20,6 @@ in stdenv.mkDerivation rec { license = licenses.gpl2Plus; platforms = platforms.linux; hydraPlatforms = []; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/applications/audio/vmpk/default.nix b/pkgs/applications/audio/vmpk/default.nix index 5db7fe5afbc..dde96764fe6 100644 --- a/pkgs/applications/audio/vmpk/default.nix +++ b/pkgs/applications/audio/vmpk/default.nix @@ -12,7 +12,6 @@ in stdenv.mkDerivation rec { homepage = "http://vmpk.sourceforge.net/"; license = licenses.gpl3Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/applications/audio/xmp/default.nix b/pkgs/applications/audio/xmp/default.nix index 6bec03bd71b..10b5bc0c117 100644 --- a/pkgs/applications/audio/xmp/default.nix +++ b/pkgs/applications/audio/xmp/default.nix @@ -8,7 +8,6 @@ stdenv.mkDerivation rec { homepage = "http://xmp.sourceforge.net/"; license = licenses.gpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/applications/editors/aseprite/default.nix b/pkgs/applications/editors/aseprite/default.nix index 43180bd04e3..15230a7a000 100644 --- a/pkgs/applications/editors/aseprite/default.nix +++ b/pkgs/applications/editors/aseprite/default.nix @@ -43,6 +43,5 @@ stdenv.mkDerivation rec { homepage = "http://www.aseprite.org/"; license = stdenv.lib.licenses.gpl2Plus; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [iyzsong]; }; } diff --git a/pkgs/applications/editors/tiled/default.nix b/pkgs/applications/editors/tiled/default.nix index 4590baf6b8e..059b85cee5f 100644 --- a/pkgs/applications/editors/tiled/default.nix +++ b/pkgs/applications/editors/tiled/default.nix @@ -24,6 +24,5 @@ stdenv.mkDerivation rec { # The rest is GPL2 or later. license = stdenv.lib.licenses.gpl2Plus; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; } diff --git a/pkgs/applications/misc/ranger/default.nix b/pkgs/applications/misc/ranger/default.nix index 14ae58a2932..7969695f1ad 100644 --- a/pkgs/applications/misc/ranger/default.nix +++ b/pkgs/applications/misc/ranger/default.nix @@ -8,7 +8,6 @@ buildPythonApplication rec { homepage = "http://ranger.nongnu.org/"; license = stdenv.lib.licenses.gpl3; platforms = stdenv.lib.platforms.unix; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/applications/networking/browsers/midori/default.nix b/pkgs/applications/networking/browsers/midori/default.nix index 336d6ae609d..a2a8c5ded7e 100644 --- a/pkgs/applications/networking/browsers/midori/default.nix +++ b/pkgs/applications/networking/browsers/midori/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { homepage = "http://midori-browser.org"; license = stdenv.lib.licenses.lgpl21Plus; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ raskin iyzsong ]; + maintainers = with stdenv.lib.maintainers; [ raskin ]; }; src = fetchurl { diff --git a/pkgs/applications/video/pitivi/default.nix b/pkgs/applications/video/pitivi/default.nix index f135630a9a1..d488a3718b7 100644 --- a/pkgs/applications/video/pitivi/default.nix +++ b/pkgs/applications/video/pitivi/default.nix @@ -23,7 +23,6 @@ in stdenv.mkDerivation rec { ''; license = licenses.lgpl21Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; nativeBuildInputs = [ pkgconfig intltool itstool makeWrapper ]; diff --git a/pkgs/development/guile-modules/guile-opengl/default.nix b/pkgs/development/guile-modules/guile-opengl/default.nix index 4d608f4caa9..c7704d87fad 100644 --- a/pkgs/development/guile-modules/guile-opengl/default.nix +++ b/pkgs/development/guile-modules/guile-opengl/default.nix @@ -8,7 +8,6 @@ stdenv.mkDerivation rec { homepage = "http://gnu.org/s/guile-opengl"; license = licenses.gpl3Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/guile-modules/guile-sdl/default.nix b/pkgs/development/guile-modules/guile-sdl/default.nix index 8c1706be583..4a0f23457ba 100644 --- a/pkgs/development/guile-modules/guile-sdl/default.nix +++ b/pkgs/development/guile-modules/guile-sdl/default.nix @@ -10,7 +10,6 @@ stdenv.mkDerivation rec { homepage = "http://gnu.org/s/guile-sdl"; license = licenses.gpl3Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/guile-modules/guile-xcb/default.nix b/pkgs/development/guile-modules/guile-xcb/default.nix index fc02ab305a3..a60a10c5c04 100644 --- a/pkgs/development/guile-modules/guile-xcb/default.nix +++ b/pkgs/development/guile-modules/guile-xcb/default.nix @@ -8,7 +8,6 @@ stdenv.mkDerivation { homepage = "http://www.markwitmer.com/guile-xcb/guile-xcb.html"; license = licenses.gpl3Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/interpreters/renpy/default.nix b/pkgs/development/interpreters/renpy/default.nix index 4b5f3bd8b3b..355723ba337 100644 --- a/pkgs/development/interpreters/renpy/default.nix +++ b/pkgs/development/interpreters/renpy/default.nix @@ -10,7 +10,6 @@ stdenv.mkDerivation { homepage = "http://renpy.org/"; license = stdenv.lib.licenses.mit; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/appstream/default.nix b/pkgs/development/libraries/appstream/default.nix index 5cdfa4bc601..5df6ac2cace 100644 --- a/pkgs/development/libraries/appstream/default.nix +++ b/pkgs/development/libraries/appstream/default.nix @@ -18,7 +18,6 @@ stdenv.mkDerivation { ''; license = licenses.lgpl21Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/gstreamer/bad/default.nix b/pkgs/development/libraries/gstreamer/bad/default.nix index dd9ddc7ec9b..4603b3e29db 100644 --- a/pkgs/development/libraries/gstreamer/bad/default.nix +++ b/pkgs/development/libraries/gstreamer/bad/default.nix @@ -27,7 +27,6 @@ stdenv.mkDerivation rec { ''; license = licenses.lgpl2Plus; platforms = platforms.unix; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/gstreamer/base/default.nix b/pkgs/development/libraries/gstreamer/base/default.nix index 9192feb1c0c..4f592dbe31e 100644 --- a/pkgs/development/libraries/gstreamer/base/default.nix +++ b/pkgs/development/libraries/gstreamer/base/default.nix @@ -11,7 +11,6 @@ stdenv.mkDerivation rec { homepage = "http://gstreamer.freedesktop.org"; license = stdenv.lib.licenses.lgpl2Plus; platforms = stdenv.lib.platforms.unix; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/gstreamer/core/default.nix b/pkgs/development/libraries/gstreamer/core/default.nix index 98cfa98bfe1..754b2bb64b8 100644 --- a/pkgs/development/libraries/gstreamer/core/default.nix +++ b/pkgs/development/libraries/gstreamer/core/default.nix @@ -10,7 +10,6 @@ stdenv.mkDerivation rec { homepage = "http://gstreamer.freedesktop.org"; license = stdenv.lib.licenses.lgpl2Plus; platforms = stdenv.lib.platforms.unix; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/gstreamer/ges/default.nix b/pkgs/development/libraries/gstreamer/ges/default.nix index 96dc42c3cb1..1e0ee39667e 100644 --- a/pkgs/development/libraries/gstreamer/ges/default.nix +++ b/pkgs/development/libraries/gstreamer/ges/default.nix @@ -10,7 +10,6 @@ stdenv.mkDerivation rec { homepage = "http://gstreamer.freedesktop.org"; license = licenses.lgpl2Plus; platforms = platforms.unix; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/gstreamer/gnonlin/default.nix b/pkgs/development/libraries/gstreamer/gnonlin/default.nix index 4b6e7957f5c..9d43f3ac23c 100644 --- a/pkgs/development/libraries/gstreamer/gnonlin/default.nix +++ b/pkgs/development/libraries/gstreamer/gnonlin/default.nix @@ -15,7 +15,6 @@ stdenv.mkDerivation rec { ''; license = licenses.lgpl2Plus; platforms = platforms.unix; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/gstreamer/good/default.nix b/pkgs/development/libraries/gstreamer/good/default.nix index 8afbfd4ff54..75f0760747b 100644 --- a/pkgs/development/libraries/gstreamer/good/default.nix +++ b/pkgs/development/libraries/gstreamer/good/default.nix @@ -22,7 +22,6 @@ stdenv.mkDerivation rec { ''; license = licenses.lgpl2Plus; platforms = platforms.unix; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/gstreamer/libav/default.nix b/pkgs/development/libraries/gstreamer/libav/default.nix index aeefd667b34..6d0c28d0e28 100644 --- a/pkgs/development/libraries/gstreamer/libav/default.nix +++ b/pkgs/development/libraries/gstreamer/libav/default.nix @@ -15,7 +15,6 @@ stdenv.mkDerivation rec { homepage = "http://gstreamer.freedesktop.org"; license = stdenv.lib.licenses.lgpl2Plus; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/gstreamer/ugly/default.nix b/pkgs/development/libraries/gstreamer/ugly/default.nix index b014446c7c4..540b3ba0be8 100644 --- a/pkgs/development/libraries/gstreamer/ugly/default.nix +++ b/pkgs/development/libraries/gstreamer/ugly/default.nix @@ -18,7 +18,6 @@ stdenv.mkDerivation rec { ''; license = licenses.lgpl2Plus; platforms = platforms.unix; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/gstreamer/validate/default.nix b/pkgs/development/libraries/gstreamer/validate/default.nix index c88cf489732..0b0ba11a793 100644 --- a/pkgs/development/libraries/gstreamer/validate/default.nix +++ b/pkgs/development/libraries/gstreamer/validate/default.nix @@ -10,7 +10,6 @@ stdenv.mkDerivation rec { homepage = "http://gstreamer.freedesktop.org"; license = stdenv.lib.licenses.lgpl2Plus; platforms = stdenv.lib.platforms.unix; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/libgsystem/default.nix b/pkgs/development/libraries/libgsystem/default.nix index b37503df5d9..eaf2eb17095 100644 --- a/pkgs/development/libraries/libgsystem/default.nix +++ b/pkgs/development/libraries/libgsystem/default.nix @@ -10,7 +10,6 @@ stdenv.mkDerivation { homepage = "https://wiki.gnome.org/Projects/LibGSystem"; license = licenses.lgpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchFromGitHub { diff --git a/pkgs/development/libraries/libxmp/default.nix b/pkgs/development/libraries/libxmp/default.nix index 8aa8bf600a8..106fcee257f 100644 --- a/pkgs/development/libraries/libxmp/default.nix +++ b/pkgs/development/libraries/libxmp/default.nix @@ -13,7 +13,6 @@ stdenv.mkDerivation rec { ''; license = licenses.lgpl21Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/development/libraries/webkitgtk/2.4.nix b/pkgs/development/libraries/webkitgtk/2.4.nix index 8ad3fcd0428..b1f47b80d78 100644 --- a/pkgs/development/libraries/webkitgtk/2.4.nix +++ b/pkgs/development/libraries/webkitgtk/2.4.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { homepage = "http://webkitgtk.org/"; license = licenses.bsd2; platforms = platforms.linux; - maintainers = [ maintainers.iyzsong ]; + maintainers = []; }; src = fetchurl { diff --git a/pkgs/development/libraries/webkitgtk/default.nix b/pkgs/development/libraries/webkitgtk/default.nix index 29e3206da0f..5fd10816168 100644 --- a/pkgs/development/libraries/webkitgtk/default.nix +++ b/pkgs/development/libraries/webkitgtk/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { license = licenses.bsd2; platforms = platforms.linux; hydraPlatforms = []; - maintainers = with maintainers; [ iyzsong koral ]; + maintainers = with maintainers; [ koral ]; }; preConfigure = "patchShebangs Tools"; diff --git a/pkgs/development/python-modules/pyqt/5.x.nix b/pkgs/development/python-modules/pyqt/5.x.nix index 2cc1a82ca09..795019d0b41 100644 --- a/pkgs/development/python-modules/pyqt/5.x.nix +++ b/pkgs/development/python-modules/pyqt/5.x.nix @@ -11,7 +11,7 @@ in stdenv.mkDerivation { homepage = http://www.riverbankcomputing.co.uk; license = licenses.gpl3; platforms = platforms.mesaPlatforms; - maintainers = with maintainers; [ sander iyzsong ]; + maintainers = with maintainers; [ sander ]; }; src = fetchurl { diff --git a/pkgs/games/openra/default.nix b/pkgs/games/openra/default.nix index b666ac2ecca..c79c0680410 100644 --- a/pkgs/games/openra/default.nix +++ b/pkgs/games/openra/default.nix @@ -12,7 +12,6 @@ in stdenv.mkDerivation rec { homepage = "http://www.open-ra.org/"; license = licenses.gpl3; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/games/performous/default.nix b/pkgs/games/performous/default.nix index ff4f370f04a..faeb11c3781 100644 --- a/pkgs/games/performous/default.nix +++ b/pkgs/games/performous/default.nix @@ -11,7 +11,6 @@ stdenv.mkDerivation { homepage = "http://performous.org/"; license = licenses.gpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchFromGitHub { diff --git a/pkgs/misc/themes/mate-icon-theme/default.nix b/pkgs/misc/themes/mate-icon-theme/default.nix index ba732c6521f..6749b5e4c39 100644 --- a/pkgs/misc/themes/mate-icon-theme/default.nix +++ b/pkgs/misc/themes/mate-icon-theme/default.nix @@ -15,6 +15,5 @@ stdenv.mkDerivation { homepage = "http://mate-desktop.org"; license = stdenv.lib.licenses.gpl2; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; } diff --git a/pkgs/misc/themes/mate-themes/default.nix b/pkgs/misc/themes/mate-themes/default.nix index f7559ee2126..5c69bd78ed7 100644 --- a/pkgs/misc/themes/mate-themes/default.nix +++ b/pkgs/misc/themes/mate-themes/default.nix @@ -15,6 +15,5 @@ stdenv.mkDerivation { homepage = "http://mate-desktop.org"; license = stdenv.lib.licenses.lgpl21; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; } diff --git a/pkgs/tools/inputmethods/anthy/default.nix b/pkgs/tools/inputmethods/anthy/default.nix index 34ffa1568b9..a421ca16e8c 100644 --- a/pkgs/tools/inputmethods/anthy/default.nix +++ b/pkgs/tools/inputmethods/anthy/default.nix @@ -8,7 +8,6 @@ stdenv.mkDerivation { homepace = http://sourceforge.jp/projects/anthy/; license = licenses.gpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix b/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix index 88ba436207c..9d8427e533c 100644 --- a/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix +++ b/pkgs/tools/inputmethods/fcitx-engines/fcitx-anthy/default.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { description = "Fcitx Wrapper for anthy"; license = licenses.gpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ericsagnes ]; + maintainers = with maintainers; [ ericsagnes ]; }; } diff --git a/pkgs/tools/inputmethods/fcitx/default.nix b/pkgs/tools/inputmethods/fcitx/default.nix index 8cdcabf3693..d2e46f704c8 100644 --- a/pkgs/tools/inputmethods/fcitx/default.nix +++ b/pkgs/tools/inputmethods/fcitx/default.nix @@ -39,6 +39,6 @@ stdenv.mkDerivation rec { description = "A Flexible Input Method Framework"; license = stdenv.lib.licenses.gpl2; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [iyzsong ericsagnes]; + maintainers = with stdenv.lib.maintainers; [ ericsagnes ]; }; } diff --git a/pkgs/tools/misc/dvtm/default.nix b/pkgs/tools/misc/dvtm/default.nix index 5969c956236..f973f3d2264 100644 --- a/pkgs/tools/misc/dvtm/default.nix +++ b/pkgs/tools/misc/dvtm/default.nix @@ -8,7 +8,6 @@ stdenv.mkDerivation rec { homepage = http://www.brain-dump.org/projects/dvtm; license = stdenv.lib.licenses.mit; platfroms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/tools/misc/ostree/default.nix b/pkgs/tools/misc/ostree/default.nix index f7d8d1d4e69..ff64b65a89b 100644 --- a/pkgs/tools/misc/ostree/default.nix +++ b/pkgs/tools/misc/ostree/default.nix @@ -10,7 +10,6 @@ stdenv.mkDerivation { homepage = "http://live.gnome.org/OSTree/"; license = licenses.lgpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchFromGitHub { diff --git a/pkgs/tools/misc/parcellite/default.nix b/pkgs/tools/misc/parcellite/default.nix index 0f85a47b9e1..9cd8c28c7f0 100644 --- a/pkgs/tools/misc/parcellite/default.nix +++ b/pkgs/tools/misc/parcellite/default.nix @@ -15,6 +15,5 @@ stdenv.mkDerivation rec { homepage = "http://parcellite.sourceforge.net"; license = stdenv.lib.licenses.gpl3Plus; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ iyzsong ]; }; } diff --git a/pkgs/tools/text/kakasi/default.nix b/pkgs/tools/text/kakasi/default.nix index b73654da405..b6b647b4398 100644 --- a/pkgs/tools/text/kakasi/default.nix +++ b/pkgs/tools/text/kakasi/default.nix @@ -13,7 +13,6 @@ stdenv.mkDerivation rec { homepage = "http://kakasi.namazu.org/"; license = licenses.gpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = fetchurl { diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e0e7ca6d975..31275eb7128 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -99,7 +99,6 @@ in modules // { homepage = "https://python-discid.readthedocs.org/"; license = licenses.lgpl3Plus; platforms = platforms.linux; - maintainers = with maintainers; [ iyzsong ]; }; src = pkgs.fetchurl { From 9d34f2054dd6ad38a08aaa59e20fe89c5cef21af Mon Sep 17 00:00:00 2001 From: Frank Lanitz Date: Sun, 13 Mar 2016 15:04:32 +0100 Subject: [PATCH 0316/1059] geany: 1.26 -> 1.27 Also adding myself as list of maintainers --- lib/maintainers.nix | 1 + pkgs/applications/editors/geany/default.nix | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 2287ede8577..632a547ff78 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -123,6 +123,7 @@ fpletz = "Franz Pletz "; fps = "Florian Paul Schmidt "; fridh = "Frederik Rietdijk "; + frlan = "Frank Lanitz "; fro_ozen = "fro_ozen "; ftrvxmtrx = "Siarhei Zirukin "; funfunctor = "Edward O'Callaghan "; diff --git a/pkgs/applications/editors/geany/default.nix b/pkgs/applications/editors/geany/default.nix index 1b99d44bcc5..b4f6baa9c64 100644 --- a/pkgs/applications/editors/geany/default.nix +++ b/pkgs/applications/editors/geany/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, gtk2, which, pkgconfig, intltool, file }: let - version = "1.26"; + version = "1.27"; in stdenv.mkDerivation rec { @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://download.geany.org/${name}.tar.bz2"; - sha256 = "e38530e87c577e1e9806be3b40e08fb9ee321eb1abc6361ddacdad89c825f90d"; + sha256 = "846ff699a5944c5c3c068ae0199d4c13946a668bfc6d03f8c79765667c20cadf"; }; buildInputs = [ gtk2 which pkgconfig intltool file ]; From 6313a5698a881b99e5aed238b38d05776126623e Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 13 Mar 2016 18:24:55 +0000 Subject: [PATCH 0317/1059] Replace references to all-packages.nix, by references to the top-level of nixpkgs repository. --- lib/strings-with-deps.nix | 2 +- pkgs/build-support/vm/windows/cygwin-iso/default.nix | 2 +- pkgs/stdenv/darwin/default.nix | 4 ++-- pkgs/stdenv/darwin/make-bootstrap-tools.nix | 4 ++-- pkgs/stdenv/freebsd/default.nix | 4 ++-- pkgs/stdenv/linux/default.nix | 2 +- pkgs/stdenv/linux/make-bootstrap-tools-cross.nix | 2 +- pkgs/stdenv/linux/make-bootstrap-tools.nix | 2 +- pkgs/test/mkOption/keep.nix | 2 +- pkgs/test/mkOption/merge.nix | 2 +- pkgs/top-level/all-packages.nix | 8 ++++---- pkgs/top-level/guile-2-test.nix | 2 +- pkgs/top-level/make-tarball.nix | 4 ++-- pkgs/top-level/release-lib.nix | 2 +- pkgs/top-level/release-python.nix | 2 +- pkgs/top-level/release-small.nix | 2 +- pkgs/top-level/release.nix | 2 +- 17 files changed, 24 insertions(+), 24 deletions(-) diff --git a/lib/strings-with-deps.nix b/lib/strings-with-deps.nix index bdcc25cbd20..a901940ac12 100644 --- a/lib/strings-with-deps.nix +++ b/lib/strings-with-deps.nix @@ -15,7 +15,7 @@ Usage: Attention: let - pkgs = (import /etc/nixos/nixpkgs/pkgs/top-level/all-packages.nix) {}; + pkgs = (import ) {}; in let inherit (pkgs.stringsWithDeps) fullDepEntry packEntry noDepEntry textClosureMap; inherit (pkgs.lib) id; diff --git a/pkgs/build-support/vm/windows/cygwin-iso/default.nix b/pkgs/build-support/vm/windows/cygwin-iso/default.nix index b560a850a30..625071c9c33 100644 --- a/pkgs/build-support/vm/windows/cygwin-iso/default.nix +++ b/pkgs/build-support/vm/windows/cygwin-iso/default.nix @@ -16,7 +16,7 @@ let sha256 = "1slyj4qha7x649ggwdski9spmyrbs04z2d46vgk8krllg0kppnjv"; }; - cygwinCross = (import ../../../../top-level/all-packages.nix { + cygwinCross = (import ../../../../.. { inherit (stdenv) system; crossSystem = { libc = "msvcrt"; diff --git a/pkgs/stdenv/darwin/default.nix b/pkgs/stdenv/darwin/default.nix index 0af7071e218..85c406d3703 100644 --- a/pkgs/stdenv/darwin/default.nix +++ b/pkgs/stdenv/darwin/default.nix @@ -1,5 +1,5 @@ { system ? builtins.currentSystem -, allPackages ? import ../../top-level/all-packages.nix +, allPackages ? import ../../.. , platform ? null , config ? {} @@ -22,7 +22,7 @@ let (import "${./standard-sandbox.sb}") ''; in rec { - allPackages = import ../../top-level/all-packages.nix; + allPackages = import ../../..; commonPreHook = '' export NIX_ENFORCE_PURITY=1 diff --git a/pkgs/stdenv/darwin/make-bootstrap-tools.nix b/pkgs/stdenv/darwin/make-bootstrap-tools.nix index d9d501ca0f5..b0025351b04 100644 --- a/pkgs/stdenv/darwin/make-bootstrap-tools.nix +++ b/pkgs/stdenv/darwin/make-bootstrap-tools.nix @@ -1,6 +1,6 @@ { system ? builtins.currentSystem }: -with import ../../top-level/all-packages.nix { inherit system; }; +with import ../../.. { inherit system; }; rec { # We want coreutils without ACL support. @@ -291,7 +291,7 @@ rec { # The ultimate test: bootstrap a whole stdenv from the tools specified above and get a package set out of it test-pkgs = let stdenv = import ./. { inherit system bootstrapFiles; }; - in import ../../top-level/all-packages.nix { + in import ../../.. { inherit system; bootStdenv = stdenv.stdenvDarwin; }; diff --git a/pkgs/stdenv/freebsd/default.nix b/pkgs/stdenv/freebsd/default.nix index 3c4e2bb9766..4c7ebc16239 100644 --- a/pkgs/stdenv/freebsd/default.nix +++ b/pkgs/stdenv/freebsd/default.nix @@ -1,11 +1,11 @@ { system ? builtins.currentSystem -, allPackages ? import ../../top-level/all-packages.nix +, allPackages ? import ../../.. , platform ? null , config ? {} }: rec { - allPackages = import ../../top-level/all-packages.nix; + allPackages = import ../../..; bootstrapTools = derivation { inherit system; diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix index 965188a0cdd..1135ad78acd 100644 --- a/pkgs/stdenv/linux/default.nix +++ b/pkgs/stdenv/linux/default.nix @@ -6,7 +6,7 @@ # The function defaults are for easy testing. { system ? builtins.currentSystem -, allPackages ? import ../../top-level/all-packages.nix +, allPackages ? import ../../.. , platform ? null, config ? {}, lib ? (import ../../../lib) , customBootstrapFiles ? null }: diff --git a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix index bf060329be6..3adb00693f7 100644 --- a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix +++ b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix @@ -3,7 +3,7 @@ let buildFor = toolsArch: ( let - pkgsFun = import ../../top-level/all-packages.nix; + pkgsFun = import ../../..; pkgsNoParams = pkgsFun {}; sheevaplugCrossSystem = { diff --git a/pkgs/stdenv/linux/make-bootstrap-tools.nix b/pkgs/stdenv/linux/make-bootstrap-tools.nix index 3c894869972..75dc009f5e6 100644 --- a/pkgs/stdenv/linux/make-bootstrap-tools.nix +++ b/pkgs/stdenv/linux/make-bootstrap-tools.nix @@ -1,6 +1,6 @@ { system ? builtins.currentSystem }: -with import ../../top-level/all-packages.nix {inherit system;}; +with import ../../.. {inherit system;}; rec { diff --git a/pkgs/test/mkOption/keep.nix b/pkgs/test/mkOption/keep.nix index c26064d89f7..26fb8c28dd5 100644 --- a/pkgs/test/mkOption/keep.nix +++ b/pkgs/test/mkOption/keep.nix @@ -1,5 +1,5 @@ let - pkgs = import ../../top-level/all-packages.nix {}; + pkgs = import ../../.. {}; config = import ./declare.nix; in with (pkgs.lib); diff --git a/pkgs/test/mkOption/merge.nix b/pkgs/test/mkOption/merge.nix index 0d4b3c1acd1..bbf68218aa0 100644 --- a/pkgs/test/mkOption/merge.nix +++ b/pkgs/test/mkOption/merge.nix @@ -1,5 +1,5 @@ let - pkgs = import ../../top-level/all-packages.nix {}; + pkgs = import ../../.. {}; config = import ./declare.nix; # Define the handler of unbound options. diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2e86b3b5894..163d5cf26bd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -164,7 +164,7 @@ let in newpkgs; # Override system. This is useful to build i686 packages on x86_64-linux. - forceSystem = system: kernel: (import ./all-packages.nix) { + forceSystem = system: kernel: (import ./../..) { inherit system; platform = platform // { kernelArch = kernel; }; inherit bootStdenv noSysDirs gccWithCC gccWithProfiling config @@ -211,7 +211,7 @@ let allStdenvs = import ../stdenv { inherit system platform config lib; - allPackages = args: import ./all-packages.nix ({ inherit config system; } // args); + allPackages = args: import ./../.. ({ inherit config system; } // args); }; defaultStdenv = allStdenvs.stdenv // { inherit platform; }; @@ -228,7 +228,7 @@ let in if changer != null then changer { # We import again all-packages to avoid recursivities. - pkgs = import ./all-packages.nix { + pkgs = import ./../.. { # We remove packageOverrides to avoid recursivities config = removeAttrs config [ "replaceStdenv" ]; }; @@ -3843,7 +3843,7 @@ let # load into the Ben Nanonote gccCross = let - pkgsCross = (import ./all-packages.nix) { + pkgsCross = (import ./../..) { inherit system; inherit bootStdenv noSysDirs gccWithCC gccWithProfiling config; # Ben Nanonote system diff --git a/pkgs/top-level/guile-2-test.nix b/pkgs/top-level/guile-2-test.nix index 802277d474a..70f2de75ae9 100644 --- a/pkgs/top-level/guile-2-test.nix +++ b/pkgs/top-level/guile-2-test.nix @@ -4,7 +4,7 @@ -- ludo@gnu.org */ let - allPackages = import ./all-packages.nix; + allPackages = import ./../..; pkgsFun = { system ? builtins.currentSystem }: allPackages { diff --git a/pkgs/top-level/make-tarball.nix b/pkgs/top-level/make-tarball.nix index ebf19af943f..ea7e7e89d37 100644 --- a/pkgs/top-level/make-tarball.nix +++ b/pkgs/top-level/make-tarball.nix @@ -48,8 +48,8 @@ releaseTools.sourceTarball rec { # Make sure that derivation paths do not depend on the Nixpkgs path. mkdir $TMPDIR/foo ln -s $(readlink -f .) $TMPDIR/foo/bar - p1=$(nix-instantiate pkgs/top-level/all-packages.nix --dry-run -A firefox --show-trace) - p2=$(nix-instantiate $TMPDIR/foo/bar/pkgs/top-level/all-packages.nix --dry-run -A firefox) + p1=$(nix-instantiate ./. --dry-run -A firefox --show-trace) + p2=$(nix-instantiate $TMPDIR/foo/bar --dry-run -A firefox) if [ "$p1" != "$p2" ]; then echo "Nixpkgs evaluation depends on Nixpkgs path ($p1 vs $p2)!" exit 1 diff --git a/pkgs/top-level/release-lib.nix b/pkgs/top-level/release-lib.nix index 2f0296223a0..343a3f47a4b 100644 --- a/pkgs/top-level/release-lib.nix +++ b/pkgs/top-level/release-lib.nix @@ -1,5 +1,5 @@ { supportedSystems -, packageSet ? (import ./all-packages.nix) +, packageSet ? (import ./../..) , allowTexliveBuilds ? false , scrubJobs ? true }: diff --git a/pkgs/top-level/release-python.nix b/pkgs/top-level/release-python.nix index 79bbd9d21a0..cb21a660eb5 100644 --- a/pkgs/top-level/release-python.nix +++ b/pkgs/top-level/release-python.nix @@ -3,7 +3,7 @@ $ hydra-eval-jobs pkgs/top-level/release-python.nix */ -{ nixpkgs ? { outPath = (import ./all-packages.nix {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; } +{ nixpkgs ? { outPath = (import ./../.. {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; } , officialRelease ? false , # The platforms for which we build Nixpkgs. supportedSystems ? [ "x86_64-linux" ] diff --git a/pkgs/top-level/release-small.nix b/pkgs/top-level/release-small.nix index fbfa4903b45..9a10fad4e9f 100644 --- a/pkgs/top-level/release-small.nix +++ b/pkgs/top-level/release-small.nix @@ -1,7 +1,7 @@ /* A small release file, with few packages to be built. The aim is to reduce the load on Hydra when testing the `stdenv-updates' branch. */ -{ nixpkgs ? { outPath = (import ./all-packages.nix {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; } +{ nixpkgs ? { outPath = (import ./../.. {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; } , supportedSystems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" ] }: diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index 6c510ea029f..b1da5bf3035 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -9,7 +9,7 @@ $ nix-build pkgs/top-level/release.nix -A coreutils.x86_64-linux */ -{ nixpkgs ? { outPath = (import ./all-packages.nix {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; } +{ nixpkgs ? { outPath = (import ./../.. {}).lib.cleanSource ../..; revCount = 1234; shortRev = "abcdef"; } , officialRelease ? false , # The platforms for which we build Nixpkgs. supportedSystems ? [ "x86_64-linux" "i686-linux" "x86_64-darwin" ] From 72c6f8a1408cb4491f847252954518e162eaf826 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Thu, 24 Dec 2015 17:49:07 +0000 Subject: [PATCH 0318/1059] Ensure that we can evaluate the platform attribute of ocaml packages. --- pkgs/applications/science/logic/acgtk/default.nix | 2 +- pkgs/build-support/ocaml/default.nix | 2 +- pkgs/development/compilers/mezzo/default.nix | 2 +- pkgs/development/interpreters/eff/default.nix | 2 +- pkgs/development/ocaml-modules/ansiterminal/default.nix | 2 +- pkgs/development/ocaml-modules/asn1-combinators/default.nix | 2 +- pkgs/development/ocaml-modules/base64/default.nix | 2 +- pkgs/development/ocaml-modules/batteries/default.nix | 2 +- pkgs/development/ocaml-modules/biniou/default.nix | 2 +- pkgs/development/ocaml-modules/bolt/default.nix | 2 +- pkgs/development/ocaml-modules/calendar/default.nix | 2 +- pkgs/development/ocaml-modules/camlzip/default.nix | 2 +- pkgs/development/ocaml-modules/camomile/0.8.2.nix | 2 +- pkgs/development/ocaml-modules/camomile/default.nix | 2 +- pkgs/development/ocaml-modules/cil/default.nix | 2 +- pkgs/development/ocaml-modules/cmdliner/default.nix | 2 +- pkgs/development/ocaml-modules/config-file/default.nix | 2 +- pkgs/development/ocaml-modules/containers/default.nix | 2 +- pkgs/development/ocaml-modules/cpdf/default.nix | 2 +- pkgs/development/ocaml-modules/cryptgps/default.nix | 2 +- pkgs/development/ocaml-modules/cryptokit/default.nix | 2 +- pkgs/development/ocaml-modules/cstruct/default.nix | 2 +- pkgs/development/ocaml-modules/csv/default.nix | 2 +- pkgs/development/ocaml-modules/dolog/default.nix | 2 +- pkgs/development/ocaml-modules/dypgen/default.nix | 2 +- pkgs/development/ocaml-modules/eliom/default.nix | 2 +- pkgs/development/ocaml-modules/enumerate/default.nix | 2 +- pkgs/development/ocaml-modules/erm_xml/default.nix | 2 +- pkgs/development/ocaml-modules/erm_xmpp/default.nix | 2 +- pkgs/development/ocaml-modules/extlib/default.nix | 2 +- pkgs/development/ocaml-modules/ezjsonm/default.nix | 2 +- pkgs/development/ocaml-modules/fieldslib/default.nix | 2 +- pkgs/development/ocaml-modules/fileutils/default.nix | 2 +- pkgs/development/ocaml-modules/fix/default.nix | 2 +- pkgs/development/ocaml-modules/fontconfig/default.nix | 2 +- pkgs/development/ocaml-modules/functory/default.nix | 2 +- pkgs/development/ocaml-modules/gapi-ocaml/default.nix | 2 +- pkgs/development/ocaml-modules/gen/default.nix | 2 +- pkgs/development/ocaml-modules/gg/default.nix | 2 +- pkgs/development/ocaml-modules/gtktop/default.nix | 2 +- pkgs/development/ocaml-modules/hex/default.nix | 2 +- pkgs/development/ocaml-modules/http/default.nix | 2 +- pkgs/development/ocaml-modules/io-page/default.nix | 2 +- pkgs/development/ocaml-modules/iso8601/default.nix | 2 +- pkgs/development/ocaml-modules/javalib/default.nix | 2 +- pkgs/development/ocaml-modules/jsonm/default.nix | 2 +- pkgs/development/ocaml-modules/lablgtk-extras/1.4.nix | 2 +- pkgs/development/ocaml-modules/lablgtk-extras/default.nix | 2 +- pkgs/development/ocaml-modules/lablgtk/2.14.0.nix | 2 +- pkgs/development/ocaml-modules/lablgtk/default.nix | 2 +- pkgs/development/ocaml-modules/lambda-term/1.6.nix | 2 +- pkgs/development/ocaml-modules/lambda-term/default.nix | 2 +- pkgs/development/ocaml-modules/llvm/default.nix | 2 +- pkgs/development/ocaml-modules/lwt/default.nix | 2 +- pkgs/development/ocaml-modules/macaque/default.nix | 2 +- pkgs/development/ocaml-modules/magic-mime/default.nix | 2 +- pkgs/development/ocaml-modules/menhir/generic.nix | 2 +- pkgs/development/ocaml-modules/nocrypto/default.nix | 2 +- pkgs/development/ocaml-modules/ocaml-cairo/default.nix | 2 +- pkgs/development/ocaml-modules/ocaml-cairo2/default.nix | 2 +- pkgs/development/ocaml-modules/ocaml-result/default.nix | 2 +- pkgs/development/ocaml-modules/ocaml-text/default.nix | 2 +- pkgs/development/ocaml-modules/ocamlgraph/default.nix | 2 +- pkgs/development/ocaml-modules/ocamlnat/default.nix | 2 +- pkgs/development/ocaml-modules/ocamlnet/default.nix | 2 +- pkgs/development/ocaml-modules/ocplib-endian/default.nix | 2 +- pkgs/development/ocaml-modules/ocsigen-deriving/default.nix | 2 +- pkgs/development/ocaml-modules/ocsigen-server/default.nix | 2 +- pkgs/development/ocaml-modules/ocurl/default.nix | 2 +- pkgs/development/ocaml-modules/odn/default.nix | 2 +- pkgs/development/ocaml-modules/ojquery/default.nix | 2 +- pkgs/development/ocaml-modules/optcomp/default.nix | 2 +- pkgs/development/ocaml-modules/otfm/default.nix | 2 +- pkgs/development/ocaml-modules/ounit/default.nix | 2 +- pkgs/development/ocaml-modules/pcre/default.nix | 2 +- pkgs/development/ocaml-modules/pgocaml/default.nix | 2 +- pkgs/development/ocaml-modules/pprint/default.nix | 2 +- pkgs/development/ocaml-modules/ppx_tools/default.nix | 2 +- pkgs/development/ocaml-modules/pycaml/default.nix | 2 +- pkgs/development/ocaml-modules/qcheck/default.nix | 2 +- pkgs/development/ocaml-modules/qtest/default.nix | 2 +- pkgs/development/ocaml-modules/re/default.nix | 2 +- pkgs/development/ocaml-modules/react/default.nix | 2 +- pkgs/development/ocaml-modules/reactivedata/default.nix | 2 +- pkgs/development/ocaml-modules/safepass/default.nix | 2 +- pkgs/development/ocaml-modules/sawja/default.nix | 2 +- pkgs/development/ocaml-modules/sequence/default.nix | 2 +- pkgs/development/ocaml-modules/sexplib/108.08.00.nix | 2 +- pkgs/development/ocaml-modules/sexplib/111.25.00.nix | 2 +- pkgs/development/ocaml-modules/sqlite3/default.nix | 2 +- pkgs/development/ocaml-modules/sqlite3EZ/default.nix | 2 +- pkgs/development/ocaml-modules/ssl/default.nix | 2 +- pkgs/development/ocaml-modules/stringext/default.nix | 2 +- pkgs/development/ocaml-modules/tsdl/default.nix | 2 +- pkgs/development/ocaml-modules/twt/default.nix | 2 +- pkgs/development/ocaml-modules/type_conv/108.08.00.nix | 2 +- pkgs/development/ocaml-modules/type_conv/109.60.01.nix | 2 +- pkgs/development/ocaml-modules/tyxml/default.nix | 2 +- pkgs/development/ocaml-modules/ulex/default.nix | 2 +- pkgs/development/ocaml-modules/uri/default.nix | 2 +- pkgs/development/ocaml-modules/uucd/default.nix | 2 +- pkgs/development/ocaml-modules/uucp/default.nix | 2 +- pkgs/development/ocaml-modules/uuidm/default.nix | 2 +- pkgs/development/ocaml-modules/uunf/default.nix | 2 +- pkgs/development/ocaml-modules/uuseg/default.nix | 2 +- pkgs/development/ocaml-modules/uutf/default.nix | 2 +- pkgs/development/ocaml-modules/vg/default.nix | 2 +- pkgs/development/ocaml-modules/x509/default.nix | 2 +- pkgs/development/ocaml-modules/xml-light/default.nix | 2 +- pkgs/development/ocaml-modules/xmlm/default.nix | 2 +- pkgs/development/ocaml-modules/yojson/default.nix | 2 +- pkgs/development/ocaml-modules/zarith/default.nix | 2 +- pkgs/development/ocaml-modules/zed/default.nix | 2 +- pkgs/development/tools/misc/trv/default.nix | 2 +- pkgs/development/tools/ocaml/camlp4/default.nix | 2 +- pkgs/development/tools/ocaml/camlp5/5.15.nix | 2 +- pkgs/development/tools/ocaml/camlp5/default.nix | 2 +- pkgs/development/tools/ocaml/findlib/default.nix | 2 +- pkgs/development/tools/ocaml/js_of_ocaml/default.nix | 2 +- pkgs/development/tools/ocaml/oasis/default.nix | 2 +- pkgs/development/tools/ocaml/ocaml-top/default.nix | 2 +- pkgs/development/tools/ocaml/ocamlify/default.nix | 2 +- pkgs/development/tools/ocaml/ocamlmod/default.nix | 2 +- pkgs/development/tools/ocaml/ocamlscript/default.nix | 2 +- pkgs/development/tools/ocaml/ocp-build/default.nix | 2 +- pkgs/development/tools/ocaml/ocp-indent/default.nix | 2 +- pkgs/development/tools/ocaml/ocp-index/default.nix | 2 +- pkgs/development/tools/ocaml/omake/0.9.8.6-rc1.nix | 2 +- pkgs/development/tools/ocaml/utop/default.nix | 2 +- pkgs/tools/audio/liquidsoap/full.nix | 2 +- 130 files changed, 130 insertions(+), 130 deletions(-) diff --git a/pkgs/applications/science/logic/acgtk/default.nix b/pkgs/applications/science/logic/acgtk/default.nix index 0fd90ac13b6..fa890c03b6f 100644 --- a/pkgs/applications/science/logic/acgtk/default.nix +++ b/pkgs/applications/science/logic/acgtk/default.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation { homepage = "http://www.loria.fr/equipes/calligramme/acg"; description = "A toolkit for developing ACG signatures and lexicon"; license = licenses.cecill20; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.jirkamarsik ]; }; } diff --git a/pkgs/build-support/ocaml/default.nix b/pkgs/build-support/ocaml/default.nix index 87bfa6cea12..50f7627568d 100644 --- a/pkgs/build-support/ocaml/default.nix +++ b/pkgs/build-support/ocaml/default.nix @@ -11,7 +11,7 @@ let ocaml_version = (builtins.parseDrvName ocaml.name).version; defaultMeta = { - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; in assert minimumSupportedOcamlVersion != null -> diff --git a/pkgs/development/compilers/mezzo/default.nix b/pkgs/development/compilers/mezzo/default.nix index a0fe441b153..67e7c932e55 100644 --- a/pkgs/development/compilers/mezzo/default.nix +++ b/pkgs/development/compilers/mezzo/default.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation { homepage = http://protz.github.io/mezzo/; description = "A programming language in the ML tradition, which places strong emphasis on the control of aliasing and access to mutable memory"; license = licenses.gpl2; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/interpreters/eff/default.nix b/pkgs/development/interpreters/eff/default.nix index 4f2e100c684..88490e9cd9c 100644 --- a/pkgs/development/interpreters/eff/default.nix +++ b/pkgs/development/interpreters/eff/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation { backtracking, multi-threading, and much more... ''; license = licenses.bsd2; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.jirkamarsik ]; }; } diff --git a/pkgs/development/ocaml-modules/ansiterminal/default.nix b/pkgs/development/ocaml-modules/ansiterminal/default.nix index 64b4f8263ff..615e1d1b673 100644 --- a/pkgs/development/ocaml-modules/ansiterminal/default.nix +++ b/pkgs/development/ocaml-modules/ansiterminal/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { this part is currently work in progress). ''; license = licenses.lgpl3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.jirkamarsik ]; }; } diff --git a/pkgs/development/ocaml-modules/asn1-combinators/default.nix b/pkgs/development/ocaml-modules/asn1-combinators/default.nix index b3555d7fddb..544db9e0d78 100644 --- a/pkgs/development/ocaml-modules/asn1-combinators/default.nix +++ b/pkgs/development/ocaml-modules/asn1-combinators/default.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/mirleft/ocaml-asn1-combinators; description = "Combinators for expressing ASN.1 grammars in OCaml"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = stdenv.lib.licenses.bsd2; maintainers = with stdenv.lib.maintainers; [ vbgl ]; broken = stdenv.isi686; # https://github.com/mirleft/ocaml-asn1-combinators/issues/13 diff --git a/pkgs/development/ocaml-modules/base64/default.nix b/pkgs/development/ocaml-modules/base64/default.nix index f7e4513d826..aabb9f8a76a 100644 --- a/pkgs/development/ocaml-modules/base64/default.nix +++ b/pkgs/development/ocaml-modules/base64/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/mirage/ocaml-base64; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; description = "Base64 encoding and decoding in OCaml"; license = stdenv.lib.licenses.isc; maintainers = with stdenv.lib.maintainers; [ vbgl ]; diff --git a/pkgs/development/ocaml-modules/batteries/default.nix b/pkgs/development/ocaml-modules/batteries/default.nix index 06618fff819..ae4dcc93076 100644 --- a/pkgs/development/ocaml-modules/batteries/default.nix +++ b/pkgs/development/ocaml-modules/batteries/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { language. ''; license = stdenv.lib.licenses.lgpl21Plus; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/ocaml-modules/biniou/default.nix b/pkgs/development/ocaml-modules/biniou/default.nix index 565176276f9..d2d3159cde1 100644 --- a/pkgs/development/ocaml-modules/biniou/default.nix +++ b/pkgs/development/ocaml-modules/biniou/default.nix @@ -31,6 +31,6 @@ stdenv.mkDerivation rec { homepage = "${webpage}"; license = licenses.bsd3; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/bolt/default.nix b/pkgs/development/ocaml-modules/bolt/default.nix index 61c3d6f23b4..cf8b21edb50 100644 --- a/pkgs/development/ocaml-modules/bolt/default.nix +++ b/pkgs/development/ocaml-modules/bolt/default.nix @@ -48,7 +48,7 @@ EOF modeled after the famous log4j logging framework for Java. ''; license = licenses.lgpl3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.jirkamarsik ]; }; } diff --git a/pkgs/development/ocaml-modules/calendar/default.nix b/pkgs/development/ocaml-modules/calendar/default.nix index 48aaf972503..c33deec9c78 100644 --- a/pkgs/development/ocaml-modules/calendar/default.nix +++ b/pkgs/development/ocaml-modules/calendar/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation { homepage = https://forge.ocamlcore.org/projects/calendar/; description = "An Objective Caml library managing dates and times"; license = "LGPL"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.gal_bolle ]; diff --git a/pkgs/development/ocaml-modules/camlzip/default.nix b/pkgs/development/ocaml-modules/camlzip/default.nix index 2024f5a5ab8..de800a295bc 100644 --- a/pkgs/development/ocaml-modules/camlzip/default.nix +++ b/pkgs/development/ocaml-modules/camlzip/default.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation { for reading from and writing to compressed files in these formats. ''; license = "LGPL+linking exceptions"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/ocaml-modules/camomile/0.8.2.nix b/pkgs/development/ocaml-modules/camomile/0.8.2.nix index f6d22f62ec0..9f7201708af 100644 --- a/pkgs/development/ocaml-modules/camomile/0.8.2.nix +++ b/pkgs/development/ocaml-modules/camomile/0.8.2.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation { description = "A comprehensive Unicode library for OCaml"; license = stdenv.lib.licenses.lgpl21; branch = "0.8.2"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/ocaml-modules/camomile/default.nix b/pkgs/development/ocaml-modules/camomile/default.nix index ecdc5bef295..11a7828f1e4 100644 --- a/pkgs/development/ocaml-modules/camomile/default.nix +++ b/pkgs/development/ocaml-modules/camomile/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation { homepage = https://github.com/yoriyuki/Camomile/tree/master/Camomile; description = "A comprehensive Unicode library for OCaml"; license = stdenv.lib.licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/ocaml-modules/cil/default.nix b/pkgs/development/ocaml-modules/cil/default.nix index 43522e180b6..1753084910b 100644 --- a/pkgs/development/ocaml-modules/cil/default.nix +++ b/pkgs/development/ocaml-modules/cil/default.nix @@ -20,6 +20,6 @@ stdenv.mkDerivation { description = "A front-end for the C programming language that facilitates program analysis and transformation"; license = licenses.bsd3; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/cmdliner/default.nix b/pkgs/development/ocaml-modules/cmdliner/default.nix index ba955061740..80992bdfe7c 100644 --- a/pkgs/development/ocaml-modules/cmdliner/default.nix +++ b/pkgs/development/ocaml-modules/cmdliner/default.nix @@ -35,6 +35,6 @@ stdenv.mkDerivation { description = "An OCaml module for the declarative definition of command line interfaces"; license = licenses.bsd3; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/config-file/default.nix b/pkgs/development/ocaml-modules/config-file/default.nix index 15eb0666777..4ca9d4a30e0 100644 --- a/pkgs/development/ocaml-modules/config-file/default.nix +++ b/pkgs/development/ocaml-modules/config-file/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation { meta = { homepage = http://config-file.forge.ocamlcore.org/; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; description = "An OCaml library used to manage the configuration file(s) of an application"; license = stdenv.lib.licenses.lgpl2Plus; maintainers = with stdenv.lib.maintainers; [ vbgl ]; diff --git a/pkgs/development/ocaml-modules/containers/default.nix b/pkgs/development/ocaml-modules/containers/default.nix index 5c2447614ad..8a03098d84b 100644 --- a/pkgs/development/ocaml-modules/containers/default.nix +++ b/pkgs/development/ocaml-modules/containers/default.nix @@ -42,6 +42,6 @@ stdenv.mkDerivation { helpers for unix and threads. ''; license = stdenv.lib.licenses.bsd2; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/cpdf/default.nix b/pkgs/development/ocaml-modules/cpdf/default.nix index 20f03667c3b..d29136dd434 100644 --- a/pkgs/development/ocaml-modules/cpdf/default.nix +++ b/pkgs/development/ocaml-modules/cpdf/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { meta = { homepage = http://www.coherentpdf.com/; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; description = "PDF Command Line Tools"; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/cryptgps/default.nix b/pkgs/development/ocaml-modules/cryptgps/default.nix index 8f18658b0f6..114aa7e5ffd 100644 --- a/pkgs/development/ocaml-modules/cryptgps/default.nix +++ b/pkgs/development/ocaml-modules/cryptgps/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation { itself. ''; license = stdenv.lib.licenses.mit; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/ocaml-modules/cryptokit/default.nix b/pkgs/development/ocaml-modules/cryptokit/default.nix index cfb353bfe3e..f56ec3cbed6 100644 --- a/pkgs/development/ocaml-modules/cryptokit/default.nix +++ b/pkgs/development/ocaml-modules/cryptokit/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation { meta = { homepage = "http://pauillac.inria.fr/~xleroy/software.html"; description = "A library of cryptographic primitives for OCaml"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/ocaml-modules/cstruct/default.nix b/pkgs/development/ocaml-modules/cstruct/default.nix index 5b2eebed9e0..57a057e0eaa 100644 --- a/pkgs/development/ocaml-modules/cstruct/default.nix +++ b/pkgs/development/ocaml-modules/cstruct/default.nix @@ -24,6 +24,6 @@ stdenv.mkDerivation { description = "Map OCaml arrays onto C-like structs"; license = stdenv.lib.licenses.isc; maintainers = [ maintainers.vbgl maintainers.ericbmerritt ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/csv/default.nix b/pkgs/development/ocaml-modules/csv/default.nix index e04523cd14c..760b981dd2c 100644 --- a/pkgs/development/ocaml-modules/csv/default.nix +++ b/pkgs/development/ocaml-modules/csv/default.nix @@ -27,6 +27,6 @@ stdenv.mkDerivation { homepage = https://github.com/Chris00/ocaml-csv; license = licenses.lgpl21; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/dolog/default.nix b/pkgs/development/ocaml-modules/dolog/default.nix index 898c2b67fd6..5987c53898f 100644 --- a/pkgs/development/ocaml-modules/dolog/default.nix +++ b/pkgs/development/ocaml-modules/dolog/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/UnixJunkie/dolog; description = "Minimalistic lazy logger in OCaml"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = stdenv.lib.licenses.bsd3; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/dypgen/default.nix b/pkgs/development/ocaml-modules/dypgen/default.nix index 63a48219b15..b579c073f29 100644 --- a/pkgs/development/ocaml-modules/dypgen/default.nix +++ b/pkgs/development/ocaml-modules/dypgen/default.nix @@ -28,6 +28,6 @@ stdenv.mkDerivation { homepage = http://dypgen.free.fr; description = "Dypgen GLR self extensible parser generator"; license = stdenv.lib.licenses.cecill-b; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/eliom/default.nix b/pkgs/development/ocaml-modules/eliom/default.nix index ef0a88fb228..80b5b9eae0e 100644 --- a/pkgs/development/ocaml-modules/eliom/default.nix +++ b/pkgs/development/ocaml-modules/eliom/default.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation rec license = stdenv.lib.licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.gal_bolle ]; }; diff --git a/pkgs/development/ocaml-modules/enumerate/default.nix b/pkgs/development/ocaml-modules/enumerate/default.nix index ce20cdd47bb..a9475649ff6 100644 --- a/pkgs/development/ocaml-modules/enumerate/default.nix +++ b/pkgs/development/ocaml-modules/enumerate/default.nix @@ -19,6 +19,6 @@ stdenv.mkDerivation { homepage = https://ocaml.janestreet.com/; description = "Quotation expanders for enumerating finite types"; license = stdenv.lib.licenses.asl20; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/erm_xml/default.nix b/pkgs/development/ocaml-modules/erm_xml/default.nix index 0ff2a725ea2..ecfdb846ff1 100644 --- a/pkgs/development/ocaml-modules/erm_xml/default.nix +++ b/pkgs/development/ocaml-modules/erm_xml/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/ermine/xml; description = "XML Parser for discrete data"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = stdenv.lib.licenses.bsd3; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/erm_xmpp/default.nix b/pkgs/development/ocaml-modules/erm_xmpp/default.nix index 7508a14738d..efa239f6c33 100644 --- a/pkgs/development/ocaml-modules/erm_xmpp/default.nix +++ b/pkgs/development/ocaml-modules/erm_xmpp/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/ermine/xmpp; description = "OCaml based XMPP implementation"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = stdenv.lib.licenses.bsd3; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/extlib/default.nix b/pkgs/development/ocaml-modules/extlib/default.nix index 9f5f8119fb6..492b10bb09b 100644 --- a/pkgs/development/ocaml-modules/extlib/default.nix +++ b/pkgs/development/ocaml-modules/extlib/default.nix @@ -23,6 +23,6 @@ stdenv.mkDerivation { homepage = http://code.google.com/p/ocaml-extlib/; description = "Enhancements to the OCaml Standard Library modules"; license = stdenv.lib.licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/ezjsonm/default.nix b/pkgs/development/ocaml-modules/ezjsonm/default.nix index 25a9e4128bf..fd8ce1c3389 100644 --- a/pkgs/development/ocaml-modules/ezjsonm/default.nix +++ b/pkgs/development/ocaml-modules/ezjsonm/default.nix @@ -21,6 +21,6 @@ stdenv.mkDerivation { homepage = https://github.com/mirage/ezjsonm; license = stdenv.lib.licenses.isc; maintainers = with stdenv.lib.maintainers; [ vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/fieldslib/default.nix b/pkgs/development/ocaml-modules/fieldslib/default.nix index 38548790329..bbefcc0f3cc 100644 --- a/pkgs/development/ocaml-modules/fieldslib/default.nix +++ b/pkgs/development/ocaml-modules/fieldslib/default.nix @@ -20,6 +20,6 @@ stdenv.mkDerivation { description = "OCaml syntax extension to define first class values representing record fields, to get and set record fields, iterate and fold over all fields of a record and create new record values"; license = licenses.asl20; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/fileutils/default.nix b/pkgs/development/ocaml-modules/fileutils/default.nix index 7a8a80a446c..3ffcfada3d5 100644 --- a/pkgs/development/ocaml-modules/fileutils/default.nix +++ b/pkgs/development/ocaml-modules/fileutils/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation { meta = { homepage = https://forge.ocamlcore.org/projects/ocaml-fileutils/; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; description = "Library to provide pure OCaml functions to manipulate real file (POSIX like) and filename"; license = stdenv.lib.licenses.lgpl21Plus; maintainers = with stdenv.lib.maintainers; [ vbgl ]; diff --git a/pkgs/development/ocaml-modules/fix/default.nix b/pkgs/development/ocaml-modules/fix/default.nix index b0429e0e910..77e2461bda0 100644 --- a/pkgs/development/ocaml-modules/fix/default.nix +++ b/pkgs/development/ocaml-modules/fix/default.nix @@ -20,6 +20,6 @@ stdenv.mkDerivation { description = "A simple OCaml module for computing the least solution of a system of monotone equations"; license = licenses.cecill-c; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/fontconfig/default.nix b/pkgs/development/ocaml-modules/fontconfig/default.nix index 65311683d0c..635572ea9c8 100644 --- a/pkgs/development/ocaml-modules/fontconfig/default.nix +++ b/pkgs/development/ocaml-modules/fontconfig/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation { meta = { description = "Fontconfig bindings for OCaml"; license = stdenv.lib.licenses.gpl2Plus; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/functory/default.nix b/pkgs/development/ocaml-modules/functory/default.nix index 35dd542af9e..6d4deac38c4 100644 --- a/pkgs/development/ocaml-modules/functory/default.nix +++ b/pkgs/development/ocaml-modules/functory/default.nix @@ -22,6 +22,6 @@ stdenv.mkDerivation { description = "A distributed computing library for Objective Caml which facilitates distributed execution of parallelizable computations in a seamless fashion"; license = licenses.lgpl21; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/gapi-ocaml/default.nix b/pkgs/development/ocaml-modules/gapi-ocaml/default.nix index 51afb39ca65..ac85a03cc98 100644 --- a/pkgs/development/ocaml-modules/gapi-ocaml/default.nix +++ b/pkgs/development/ocaml-modules/gapi-ocaml/default.nix @@ -19,6 +19,6 @@ stdenv.mkDerivation rec { homepage = http://gapi-ocaml.forge.ocamlcore.org; license = stdenv.lib.licenses.mit; maintainers = with stdenv.lib.maintainers; [ bennofs ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/gen/default.nix b/pkgs/development/ocaml-modules/gen/default.nix index 0b8f4253e76..90f74b2c602 100644 --- a/pkgs/development/ocaml-modules/gen/default.nix +++ b/pkgs/development/ocaml-modules/gen/default.nix @@ -20,6 +20,6 @@ stdenv.mkDerivation { homepage = https://github.com/c-cube/gen; description = "Simple, efficient iterators for OCaml"; license = stdenv.lib.licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/gg/default.nix b/pkgs/development/ocaml-modules/gg/default.nix index 653b627fc0b..9351bfa7520 100644 --- a/pkgs/development/ocaml-modules/gg/default.nix +++ b/pkgs/development/ocaml-modules/gg/default.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { raster data. ''; homepage = "${webpage}"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = licenses.bsd3; maintainers = [ maintainers.jirkamarsik ]; }; diff --git a/pkgs/development/ocaml-modules/gtktop/default.nix b/pkgs/development/ocaml-modules/gtktop/default.nix index ca068788287..de0334c2a18 100644 --- a/pkgs/development/ocaml-modules/gtktop/default.nix +++ b/pkgs/development/ocaml-modules/gtktop/default.nix @@ -20,6 +20,6 @@ stdenv.mkDerivation { description = "A small OCaml library to ease the creation of graphical toplevels"; license = stdenv.lib.licenses.lgpl3; maintainers = with stdenv.lib.maintainers; [ vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/hex/default.nix b/pkgs/development/ocaml-modules/hex/default.nix index a9d30f1a9e7..07b7773ff2c 100644 --- a/pkgs/development/ocaml-modules/hex/default.nix +++ b/pkgs/development/ocaml-modules/hex/default.nix @@ -22,6 +22,6 @@ stdenv.mkDerivation { homepage = https://github.com/mirage/ocaml-hex; license = stdenv.lib.licenses.isc; maintainers = with stdenv.lib.maintainers; [ vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/http/default.nix b/pkgs/development/ocaml-modules/http/default.nix index 932a5811bec..d2fa675bbd8 100644 --- a/pkgs/development/ocaml-modules/http/default.nix +++ b/pkgs/development/ocaml-modules/http/default.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation { meta = with stdenv.lib; { homepage = http://ocaml-http.forge.ocamlcore.org/; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; description = "do it yourself (OCaml) HTTP daemon"; license = licenses.lgpl2; maintainers = with maintainers; [ roconnor vbgl ]; diff --git a/pkgs/development/ocaml-modules/io-page/default.nix b/pkgs/development/ocaml-modules/io-page/default.nix index c883175f6e0..8580bb64713 100644 --- a/pkgs/development/ocaml-modules/io-page/default.nix +++ b/pkgs/development/ocaml-modules/io-page/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/mirage/io-page; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; description = "IO memory page library for Mirage backends"; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/iso8601/default.nix b/pkgs/development/ocaml-modules/iso8601/default.nix index 4b194332d08..0aad6f7b13b 100644 --- a/pkgs/development/ocaml-modules/iso8601/default.nix +++ b/pkgs/development/ocaml-modules/iso8601/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation { homepage = http://sagotch.github.io/ISO8601.ml/; description = "ISO 8601 and RFC 3999 date parsing for OCaml"; license = stdenv.lib.licenses.mit; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/javalib/default.nix b/pkgs/development/ocaml-modules/javalib/default.nix index 7272e668aa2..894c93eba4d 100644 --- a/pkgs/development/ocaml-modules/javalib/default.nix +++ b/pkgs/development/ocaml-modules/javalib/default.nix @@ -38,6 +38,6 @@ stdenv.mkDerivation rec { homepage = "${webpage}"; license = licenses.lgpl3; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/jsonm/default.nix b/pkgs/development/ocaml-modules/jsonm/default.nix index e81c94d8b24..cc5de781bee 100644 --- a/pkgs/development/ocaml-modules/jsonm/default.nix +++ b/pkgs/development/ocaml-modules/jsonm/default.nix @@ -25,6 +25,6 @@ stdenv.mkDerivation { homepage = http://erratique.ch/software/jsonm; license = stdenv.lib.licenses.bsd3; maintainers = with stdenv.lib.maintainers; [ vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/lablgtk-extras/1.4.nix b/pkgs/development/ocaml-modules/lablgtk-extras/1.4.nix index fbe9898fd81..dae81f1df16 100644 --- a/pkgs/development/ocaml-modules/lablgtk-extras/1.4.nix +++ b/pkgs/development/ocaml-modules/lablgtk-extras/1.4.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation { createFindlibDestdir = true; meta = { - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ vbgl ]; homepage = http://gtk-extras.forge.ocamlcore.org/; description = "A collection of libraries and modules useful when developing OCaml/LablGtk2 applications"; diff --git a/pkgs/development/ocaml-modules/lablgtk-extras/default.nix b/pkgs/development/ocaml-modules/lablgtk-extras/default.nix index 80e5a72abf5..68019113f38 100644 --- a/pkgs/development/ocaml-modules/lablgtk-extras/default.nix +++ b/pkgs/development/ocaml-modules/lablgtk-extras/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation { createFindlibDestdir = true; meta = { - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ vbgl ]; homepage = http://gtk-extras.forge.ocamlcore.org/; description = "A collection of libraries and modules useful when developing OCaml/LablGtk2 applications"; diff --git a/pkgs/development/ocaml-modules/lablgtk/2.14.0.nix b/pkgs/development/ocaml-modules/lablgtk/2.14.0.nix index 1815bfc64dd..bc4b490e853 100644 --- a/pkgs/development/ocaml-modules/lablgtk/2.14.0.nix +++ b/pkgs/development/ocaml-modules/lablgtk/2.14.0.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation (rec { meta = { branch = "2.14"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z stdenv.lib.maintainers.roconnor diff --git a/pkgs/development/ocaml-modules/lablgtk/default.nix b/pkgs/development/ocaml-modules/lablgtk/default.nix index 4c1665540ec..a4d4314cd02 100644 --- a/pkgs/development/ocaml-modules/lablgtk/default.nix +++ b/pkgs/development/ocaml-modules/lablgtk/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { ''; meta = with stdenv.lib; { - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ z77z roconnor vbgl ]; diff --git a/pkgs/development/ocaml-modules/lambda-term/1.6.nix b/pkgs/development/ocaml-modules/lambda-term/1.6.nix index 9f4b17f9b61..026f67d8ef4 100644 --- a/pkgs/development/ocaml-modules/lambda-term/1.6.nix +++ b/pkgs/development/ocaml-modules/lambda-term/1.6.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { homepage = https://github.com/diml/lambda-term; license = stdenv.lib.licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; branch = "1.6"; maintainers = [ stdenv.lib.maintainers.gal_bolle diff --git a/pkgs/development/ocaml-modules/lambda-term/default.nix b/pkgs/development/ocaml-modules/lambda-term/default.nix index 0186ab055f5..ec9232645e7 100644 --- a/pkgs/development/ocaml-modules/lambda-term/default.nix +++ b/pkgs/development/ocaml-modules/lambda-term/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { homepage = https://github.com/diml/lambda-term; license = stdenv.lib.licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.gal_bolle ]; diff --git a/pkgs/development/ocaml-modules/llvm/default.nix b/pkgs/development/ocaml-modules/llvm/default.nix index 57cf9fe4678..2f58c41ba35 100644 --- a/pkgs/development/ocaml-modules/llvm/default.nix +++ b/pkgs/development/ocaml-modules/llvm/default.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation { meta = { inherit (llvm.meta) license homepage; - inherit (ocaml.meta) platforms; + platforms = ocaml.meta.platforms or []; description = "OCaml bindings distributed with LLVM"; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/lwt/default.nix b/pkgs/development/ocaml-modules/lwt/default.nix index a018194a2ac..e8cdc180b72 100644 --- a/pkgs/development/ocaml-modules/lwt/default.nix +++ b/pkgs/development/ocaml-modules/lwt/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation { homepage = http://ocsigen.org/lwt; description = "Lightweight thread library for Objective Caml"; license = licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ z77z vbgl gal_bolle ]; diff --git a/pkgs/development/ocaml-modules/macaque/default.nix b/pkgs/development/ocaml-modules/macaque/default.nix index 99c2a292fe8..a24859892fa 100644 --- a/pkgs/development/ocaml-modules/macaque/default.nix +++ b/pkgs/development/ocaml-modules/macaque/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation { description = "Macros for Caml Queries"; homepage = https://github.com/ocsigen/macaque; license = licenses.lgpl2; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/magic-mime/default.nix b/pkgs/development/ocaml-modules/magic-mime/default.nix index d77c3f68115..9c42aed37df 100644 --- a/pkgs/development/ocaml-modules/magic-mime/default.nix +++ b/pkgs/development/ocaml-modules/magic-mime/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/mirage/ocaml-magic-mime; description = "Convert file extensions to MIME types"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = stdenv.lib.licenses.isc; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/menhir/generic.nix b/pkgs/development/ocaml-modules/menhir/generic.nix index 8758ff3cffb..088c2db061b 100644 --- a/pkgs/development/ocaml-modules/menhir/generic.nix +++ b/pkgs/development/ocaml-modules/menhir/generic.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation { qpl /* generator */ lgpl2 /* library */ ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ z77z ]; }; } diff --git a/pkgs/development/ocaml-modules/nocrypto/default.nix b/pkgs/development/ocaml-modules/nocrypto/default.nix index a5d73839cb2..ed13a56955b 100644 --- a/pkgs/development/ocaml-modules/nocrypto/default.nix +++ b/pkgs/development/ocaml-modules/nocrypto/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/mirleft/ocaml-nocrypto; description = "Simplest possible crypto to support TLS"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = stdenv.lib.licenses.bsd2; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/ocaml-cairo/default.nix b/pkgs/development/ocaml-modules/ocaml-cairo/default.nix index f77bd3acc62..f4076fbd95f 100644 --- a/pkgs/development/ocaml-modules/ocaml-cairo/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-cairo/default.nix @@ -40,6 +40,6 @@ stdenv.mkDerivation { homepage = http://cairographics.org/cairo-ocaml; description = "ocaml bindings for cairo library"; license = stdenv.lib.licenses.gpl2; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/ocaml-cairo2/default.nix b/pkgs/development/ocaml-modules/ocaml-cairo2/default.nix index 97178ac701f..6b9f6f09ea3 100644 --- a/pkgs/development/ocaml-modules/ocaml-cairo2/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-cairo2/default.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation { and SVG file output. ''; license = licenses.lgpl3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.jirkamarsik ]; }; } diff --git a/pkgs/development/ocaml-modules/ocaml-result/default.nix b/pkgs/development/ocaml-modules/ocaml-result/default.nix index 8b6e0966f7e..f531de5118e 100644 --- a/pkgs/development/ocaml-modules/ocaml-result/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-result/default.nix @@ -25,6 +25,6 @@ stdenv.mkDerivation { Result module defined in this library. ''; license = stdenv.lib.licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/ocaml-text/default.nix b/pkgs/development/ocaml-modules/ocaml-text/default.nix index 8bbf08e3c74..9c84045de60 100644 --- a/pkgs/development/ocaml-modules/ocaml-text/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-text/default.nix @@ -19,6 +19,6 @@ stdenv.mkDerivation { homepage = "http://ocaml-text.forge.ocamlcore.org/"; description = "A library for convenient text manipulation"; license = stdenv.lib.licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/ocamlgraph/default.nix b/pkgs/development/ocaml-modules/ocamlgraph/default.nix index c7427558314..bbef4e01015 100644 --- a/pkgs/development/ocaml-modules/ocamlgraph/default.nix +++ b/pkgs/development/ocaml-modules/ocamlgraph/default.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation { homepage = http://ocamlgraph.lri.fr/; description = "Graph library for Objective Caml"; license = stdenv.lib.licenses.gpl2Oss; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.kkallio ]; diff --git a/pkgs/development/ocaml-modules/ocamlnat/default.nix b/pkgs/development/ocaml-modules/ocamlnat/default.nix index dc5d191f75a..1aeb43b8cf4 100644 --- a/pkgs/development/ocaml-modules/ocamlnat/default.nix +++ b/pkgs/development/ocaml-modules/ocamlnat/default.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation { x86 or x86-64 processors. Support for additional architectures and operating systems is planned, but not yet available. ''; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/ocaml-modules/ocamlnet/default.nix b/pkgs/development/ocaml-modules/ocamlnet/default.nix index 0948b7132a4..8ef940e75b0 100644 --- a/pkgs/development/ocaml-modules/ocamlnet/default.nix +++ b/pkgs/development/ocaml-modules/ocamlnet/default.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation { homepage = http://projects.camlcity.org/projects/ocamlnet.html; description = "A library implementing Internet protocols (http, cgi, email, etc.) for OCaml"; license = "Most Ocamlnet modules are released under the zlib/png license. The HTTP server module Nethttpd is, however, under the GPL."; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/ocaml-modules/ocplib-endian/default.nix b/pkgs/development/ocaml-modules/ocplib-endian/default.nix index aede92fc0f0..351f667a8c9 100644 --- a/pkgs/development/ocaml-modules/ocplib-endian/default.nix +++ b/pkgs/development/ocaml-modules/ocplib-endian/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation { description = "Optimised functions to read and write int16/32/64"; homepage = https://github.com/OCamlPro/ocplib-endian; license = stdenv.lib.licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/ocsigen-deriving/default.nix b/pkgs/development/ocaml-modules/ocsigen-deriving/default.nix index 89efb58ecbb..d2d66994604 100644 --- a/pkgs/development/ocaml-modules/ocsigen-deriving/default.nix +++ b/pkgs/development/ocaml-modules/ocsigen-deriving/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation { homepage = https://github.com/ocsigen/deriving; description = "Extension to OCaml for deriving functions from type declarations"; license = stdenv.lib.licenses.mit; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ gal_bolle vbgl ]; diff --git a/pkgs/development/ocaml-modules/ocsigen-server/default.nix b/pkgs/development/ocaml-modules/ocsigen-server/default.nix index a1bd7d16234..d2613830a7c 100644 --- a/pkgs/development/ocaml-modules/ocsigen-server/default.nix +++ b/pkgs/development/ocaml-modules/ocsigen-server/default.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation { A full featured Web server. It implements most features of the HTTP protocol, and has a very powerful extension mechanism that make very easy to plug your own OCaml modules for generating pages. ''; license = stdenv.lib.licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.gal_bolle ]; }; diff --git a/pkgs/development/ocaml-modules/ocurl/default.nix b/pkgs/development/ocaml-modules/ocurl/default.nix index 2cfb6af68a8..d711bae0f34 100644 --- a/pkgs/development/ocaml-modules/ocurl/default.nix +++ b/pkgs/development/ocaml-modules/ocurl/default.nix @@ -14,6 +14,6 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.bsd3; homepage = http://ocurl.forge.ocamlcore.org/; maintainers = with stdenv.lib.maintainers; [ bennofs ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/odn/default.nix b/pkgs/development/ocaml-modules/odn/default.nix index eaeb7e7b22f..b3c7ddb8433 100644 --- a/pkgs/development/ocaml-modules/odn/default.nix +++ b/pkgs/development/ocaml-modules/odn/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation { description = "Store data using OCaml notation"; homepage = https://forge.ocamlcore.org/projects/odn/; license = licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ vbgl z77z ]; diff --git a/pkgs/development/ocaml-modules/ojquery/default.nix b/pkgs/development/ocaml-modules/ojquery/default.nix index c048f62e89c..054303ac850 100644 --- a/pkgs/development/ocaml-modules/ojquery/default.nix +++ b/pkgs/development/ocaml-modules/ojquery/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { description = "jQuery Binding for Eliom"; homepage = http://ocsigen.org/ojquery/; license = stdenv.lib.licenses.lgpl3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/optcomp/default.nix b/pkgs/development/ocaml-modules/optcomp/default.nix index b134a842c5c..12075145415 100644 --- a/pkgs/development/ocaml-modules/optcomp/default.nix +++ b/pkgs/development/ocaml-modules/optcomp/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation { homepage = https://github.com/diml/optcomp; description = "Optional compilation for OCaml with cpp-like directives"; license = stdenv.lib.licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.gal_bolle ]; diff --git a/pkgs/development/ocaml-modules/otfm/default.nix b/pkgs/development/ocaml-modules/otfm/default.nix index 5a118c0bcd8..a2047a0fe78 100644 --- a/pkgs/development/ocaml-modules/otfm/default.nix +++ b/pkgs/development/ocaml-modules/otfm/default.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { of them. ''; homepage = "${webpage}"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = licenses.bsd3; maintainers = [ maintainers.jirkamarsik ]; }; diff --git a/pkgs/development/ocaml-modules/ounit/default.nix b/pkgs/development/ocaml-modules/ounit/default.nix index ba0ce29bdf9..d449296ab70 100644 --- a/pkgs/development/ocaml-modules/ounit/default.nix +++ b/pkgs/development/ocaml-modules/ounit/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { homepage = http://ounit.forge.ocamlcore.org/; description = "Unit test framework for OCaml"; license = stdenv.lib.licenses.mit; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/ocaml-modules/pcre/default.nix b/pkgs/development/ocaml-modules/pcre/default.nix index 7f7caf8e5a8..dd152262ca7 100644 --- a/pkgs/development/ocaml-modules/pcre/default.nix +++ b/pkgs/development/ocaml-modules/pcre/default.nix @@ -22,7 +22,7 @@ buildOcaml { homepage = "https://bitbucket.org/mmottl/pcre-ocaml"; description = "An efficient C-library for pattern matching with Perl-style regular expressions in OCaml"; license = licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ z77z vbmithr ]; }; } diff --git a/pkgs/development/ocaml-modules/pgocaml/default.nix b/pkgs/development/ocaml-modules/pgocaml/default.nix index 00c0d472f9a..f1bc4849a7f 100644 --- a/pkgs/development/ocaml-modules/pgocaml/default.nix +++ b/pkgs/development/ocaml-modules/pgocaml/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation { description = "An interface to PostgreSQL databases for OCaml applications"; homepage = http://pgocaml.forge.ocamlcore.org/; license = licenses.lgpl2; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/pprint/default.nix b/pkgs/development/ocaml-modules/pprint/default.nix index 18cc4817b13..e28f85b475c 100644 --- a/pkgs/development/ocaml-modules/pprint/default.nix +++ b/pkgs/development/ocaml-modules/pprint/default.nix @@ -23,6 +23,6 @@ stdenv.mkDerivation { description = "An OCaml adaptation of Wadler’s and Leijen’s prettier printer"; license = licenses.cecill-c; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/ppx_tools/default.nix b/pkgs/development/ocaml-modules/ppx_tools/default.nix index 4e99dcd1af4..1fea9bbd191 100644 --- a/pkgs/development/ocaml-modules/ppx_tools/default.nix +++ b/pkgs/development/ocaml-modules/ppx_tools/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation { description = "Tools for authors of ppx rewriters"; homepage = http://www.lexifi.com/ppx_tools; license = licenses.mit; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/pycaml/default.nix b/pkgs/development/ocaml-modules/pycaml/default.nix index 070bd270b11..403c39a465d 100644 --- a/pkgs/development/ocaml-modules/pycaml/default.nix +++ b/pkgs/development/ocaml-modules/pycaml/default.nix @@ -46,6 +46,6 @@ in stdenv.mkDerivation { homepage = "http://github.com/chemoelectric/pycaml"; description = "Bindings for python and ocaml"; license = "LGPL"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/qcheck/default.nix b/pkgs/development/ocaml-modules/qcheck/default.nix index 260a1fc9811..7d904e57633 100644 --- a/pkgs/development/ocaml-modules/qcheck/default.nix +++ b/pkgs/development/ocaml-modules/qcheck/default.nix @@ -24,6 +24,6 @@ stdenv.mkDerivation { homepage = https://github.com/c-cube/qcheck/; license = stdenv.lib.licenses.bsd2; maintainers = with stdenv.lib.maintainers; [ vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/qtest/default.nix b/pkgs/development/ocaml-modules/qtest/default.nix index e68a8729c01..f7e585b43b0 100644 --- a/pkgs/development/ocaml-modules/qtest/default.nix +++ b/pkgs/development/ocaml-modules/qtest/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation { meta = { description = "Inline (Unit) Tests for OCaml (formerly “qtest”)"; homepage = https://github.com/vincent-hugot/iTeML; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/re/default.nix b/pkgs/development/ocaml-modules/re/default.nix index 5e7ae1cba09..6b7ba1a13b2 100644 --- a/pkgs/development/ocaml-modules/re/default.nix +++ b/pkgs/development/ocaml-modules/re/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { meta = { homepage = https://github.com/ocaml/ocaml-re; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; description = "Pure OCaml regular expressions, with support for Perl and POSIX-style strings"; license = stdenv.lib.licenses.lgpl2; maintainers = with stdenv.lib.maintainers; [ vbgl ]; diff --git a/pkgs/development/ocaml-modules/react/default.nix b/pkgs/development/ocaml-modules/react/default.nix index dfc8dcd1439..943e5e1e8dc 100644 --- a/pkgs/development/ocaml-modules/react/default.nix +++ b/pkgs/development/ocaml-modules/react/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation { homepage = http://erratique.ch/software/react; description = "Applicative events and signals for OCaml"; license = licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ z77z vbmithr gal_bolle]; }; } diff --git a/pkgs/development/ocaml-modules/reactivedata/default.nix b/pkgs/development/ocaml-modules/reactivedata/default.nix index eecae885302..ef0197f60f5 100644 --- a/pkgs/development/ocaml-modules/reactivedata/default.nix +++ b/pkgs/development/ocaml-modules/reactivedata/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { description = "An OCaml module for functional reactive programming (FRP) based on React"; homepage = https://github.com/hhugo/reactiveData; license = licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/safepass/default.nix b/pkgs/development/ocaml-modules/safepass/default.nix index 7fc5dadda74..2f941b923e3 100644 --- a/pkgs/development/ocaml-modules/safepass/default.nix +++ b/pkgs/development/ocaml-modules/safepass/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation { homepage = http://ocaml-safepass.forge.ocamlcore.org/; description = "An OCaml library offering facilities for the safe storage of user passwords"; license = stdenv.lib.licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/sawja/default.nix b/pkgs/development/ocaml-modules/sawja/default.nix index 534a7684cec..cfc74ad1668 100644 --- a/pkgs/development/ocaml-modules/sawja/default.nix +++ b/pkgs/development/ocaml-modules/sawja/default.nix @@ -34,6 +34,6 @@ stdenv.mkDerivation rec { homepage = "${webpage}"; license = licenses.gpl3Plus; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/sequence/default.nix b/pkgs/development/ocaml-modules/sequence/default.nix index d9c49ece60d..c689aec1904 100644 --- a/pkgs/development/ocaml-modules/sequence/default.nix +++ b/pkgs/development/ocaml-modules/sequence/default.nix @@ -33,6 +33,6 @@ stdenv.mkDerivation { sequence is iterated/folded on. ''; license = stdenv.lib.licenses.bsd2; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/sexplib/108.08.00.nix b/pkgs/development/ocaml-modules/sexplib/108.08.00.nix index dd9e89bcef7..40b95e09e8b 100644 --- a/pkgs/development/ocaml-modules/sexplib/108.08.00.nix +++ b/pkgs/development/ocaml-modules/sexplib/108.08.00.nix @@ -25,6 +25,6 @@ stdenv.mkDerivation { description = "Library for serializing OCaml values to and from S-expressions"; license = licenses.asl20; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/sexplib/111.25.00.nix b/pkgs/development/ocaml-modules/sexplib/111.25.00.nix index 61d46e205fa..55b09c3fdc3 100644 --- a/pkgs/development/ocaml-modules/sexplib/111.25.00.nix +++ b/pkgs/development/ocaml-modules/sexplib/111.25.00.nix @@ -24,6 +24,6 @@ stdenv.mkDerivation { description = "Library for serializing OCaml values to and from S-expressions"; license = licenses.asl20; maintainers = [ maintainers.vbgl maintainers.ericbmerritt ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/sqlite3/default.nix b/pkgs/development/ocaml-modules/sqlite3/default.nix index 53549791b25..804e33fc738 100644 --- a/pkgs/development/ocaml-modules/sqlite3/default.nix +++ b/pkgs/development/ocaml-modules/sqlite3/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { homepage = http://mmottl.github.io/sqlite3-ocaml/; description = "OCaml bindings to the SQLite 3 database access library"; license = licenses.mit; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ z77z vbgl ]; diff --git a/pkgs/development/ocaml-modules/sqlite3EZ/default.nix b/pkgs/development/ocaml-modules/sqlite3EZ/default.nix index 94377a646c1..a6ff9f44116 100644 --- a/pkgs/development/ocaml-modules/sqlite3EZ/default.nix +++ b/pkgs/development/ocaml-modules/sqlite3EZ/default.nix @@ -21,6 +21,6 @@ stdenv.mkDerivation { description = "A thin wrapper for sqlite3-ocaml with a simplified interface"; license = licenses.mit; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/ssl/default.nix b/pkgs/development/ocaml-modules/ssl/default.nix index 6e3ded0b0f2..6eb43d07b68 100644 --- a/pkgs/development/ocaml-modules/ssl/default.nix +++ b/pkgs/development/ocaml-modules/ssl/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { homepage = http://savonet.rastageeks.org/; description = "OCaml bindings for libssl "; license = "LGPL+link exception"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/ocaml-modules/stringext/default.nix b/pkgs/development/ocaml-modules/stringext/default.nix index 961ee4b1fcd..05aa2c2da68 100644 --- a/pkgs/development/ocaml-modules/stringext/default.nix +++ b/pkgs/development/ocaml-modules/stringext/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/rgrinberg/stringext; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; description = "Extra string functions for OCaml"; license = stdenv.lib.licenses.mit; maintainers = with stdenv.lib.maintainers; [ vbgl ]; diff --git a/pkgs/development/ocaml-modules/tsdl/default.nix b/pkgs/development/ocaml-modules/tsdl/default.nix index 85ea80aeafe..79a696632e1 100644 --- a/pkgs/development/ocaml-modules/tsdl/default.nix +++ b/pkgs/development/ocaml-modules/tsdl/default.nix @@ -44,6 +44,6 @@ stdenv.mkDerivation { homepage = "${webpage}"; description = "Thin bindings to the cross-platform SDL library"; license = licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/twt/default.nix b/pkgs/development/ocaml-modules/twt/default.nix index 4ddbc6705a5..e5831be93bd 100644 --- a/pkgs/development/ocaml-modules/twt/default.nix +++ b/pkgs/development/ocaml-modules/twt/default.nix @@ -25,6 +25,6 @@ stdenv.mkDerivation { description = "“The Whitespace Thing” for OCaml"; license = licenses.mit; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/type_conv/108.08.00.nix b/pkgs/development/ocaml-modules/type_conv/108.08.00.nix index d3e32105f7d..e014da8b66a 100644 --- a/pkgs/development/ocaml-modules/type_conv/108.08.00.nix +++ b/pkgs/development/ocaml-modules/type_conv/108.08.00.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation { description = "Support library for OCaml preprocessor type conversions"; license = licenses.asl20; branch = "108"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ z77z ]; }; } diff --git a/pkgs/development/ocaml-modules/type_conv/109.60.01.nix b/pkgs/development/ocaml-modules/type_conv/109.60.01.nix index fe42dd5ddcb..b6747a48d95 100644 --- a/pkgs/development/ocaml-modules/type_conv/109.60.01.nix +++ b/pkgs/development/ocaml-modules/type_conv/109.60.01.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation { homepage = "http://forge.ocamlcore.org/projects/type-conv/"; description = "Support library for OCaml preprocessor type conversions"; license = stdenv.lib.licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ z77z ]; }; } diff --git a/pkgs/development/ocaml-modules/tyxml/default.nix b/pkgs/development/ocaml-modules/tyxml/default.nix index d3a0b3557c5..64c1de13fb3 100644 --- a/pkgs/development/ocaml-modules/tyxml/default.nix +++ b/pkgs/development/ocaml-modules/tyxml/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation { homepage = http://ocsigen.org/tyxml/; description = "A library that makes it almost impossible for your OCaml programs to generate wrong XML output, using static typing"; license = licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ gal_bolle vbgl ]; diff --git a/pkgs/development/ocaml-modules/ulex/default.nix b/pkgs/development/ocaml-modules/ulex/default.nix index 61c52278621..1e0632387e3 100644 --- a/pkgs/development/ocaml-modules/ulex/default.nix +++ b/pkgs/development/ocaml-modules/ulex/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { homepage = http://www.cduce.org/download.html; description = "A lexer generator for Unicode and OCaml"; license = stdenv.lib.licenses.mit; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.roconnor ]; }; } diff --git a/pkgs/development/ocaml-modules/uri/default.nix b/pkgs/development/ocaml-modules/uri/default.nix index 03620d05f54..dca989c88ef 100644 --- a/pkgs/development/ocaml-modules/uri/default.nix +++ b/pkgs/development/ocaml-modules/uri/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/mirage/ocaml-uri; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; description = "RFC3986 URI parsing library for OCaml"; license = stdenv.lib.licenses.isc; maintainers = with stdenv.lib.maintainers; [ vbgl ]; diff --git a/pkgs/development/ocaml-modules/uucd/default.nix b/pkgs/development/ocaml-modules/uucd/default.nix index 476f0e9bbe8..8e497560c68 100644 --- a/pkgs/development/ocaml-modules/uucd/default.nix +++ b/pkgs/development/ocaml-modules/uucd/default.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "An OCaml module to decode the data of the Unicode character database from its XML representation"; homepage = "${webpage}"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.vbgl ]; license = licenses.bsd3; }; diff --git a/pkgs/development/ocaml-modules/uucp/default.nix b/pkgs/development/ocaml-modules/uucp/default.nix index 67df949ac8b..4e4dd67e210 100644 --- a/pkgs/development/ocaml-modules/uucp/default.nix +++ b/pkgs/development/ocaml-modules/uucp/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation { meta = with stdenv.lib; { description = "An OCaml library providing efficient access to a selection of character properties of the Unicode character database"; homepage = "${webpage}"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = licenses.bsd3; maintainers = [ maintainers.vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/uuidm/default.nix b/pkgs/development/ocaml-modules/uuidm/default.nix index 78869f2f130..07ba10a74a9 100644 --- a/pkgs/development/ocaml-modules/uuidm/default.nix +++ b/pkgs/development/ocaml-modules/uuidm/default.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { description = "An OCaml module implementing 128 bits universally unique identifiers version 3, 5 (name based with MD5, SHA-1 hashing) and 4 (random based) according to RFC 4122"; homepage = http://erratique.ch/software/uuidm; license = licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.maurer ]; }; } diff --git a/pkgs/development/ocaml-modules/uunf/default.nix b/pkgs/development/ocaml-modules/uunf/default.nix index ece5fb5e3e3..4e5d73e4cb3 100644 --- a/pkgs/development/ocaml-modules/uunf/default.nix +++ b/pkgs/development/ocaml-modules/uunf/default.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "An OCaml module for normalizing Unicode text"; homepage = "${webpage}"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = licenses.bsd3; maintainers = [ maintainers.vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/uuseg/default.nix b/pkgs/development/ocaml-modules/uuseg/default.nix index 0101c43e504..5946fd2a70d 100644 --- a/pkgs/development/ocaml-modules/uuseg/default.nix +++ b/pkgs/development/ocaml-modules/uuseg/default.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation { meta = with stdenv.lib; { description = "An OCaml library for segmenting Unicode text"; homepage = "${webpage}"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = licenses.bsd3; maintainers = [ maintainers.vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/uutf/default.nix b/pkgs/development/ocaml-modules/uutf/default.nix index 26dc9742aeb..7c4cff57128 100644 --- a/pkgs/development/ocaml-modules/uutf/default.nix +++ b/pkgs/development/ocaml-modules/uutf/default.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Non-blocking streaming Unicode codec for OCaml"; homepage = "${webpage}"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = licenses.bsd3; maintainers = [ maintainers.vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/vg/default.nix b/pkgs/development/ocaml-modules/vg/default.nix index bfff4c68cef..17bb8eeb464 100644 --- a/pkgs/development/ocaml-modules/vg/default.nix +++ b/pkgs/development/ocaml-modules/vg/default.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { module. An API allows to implement new renderers. ''; homepage = "${webpage}"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = licenses.bsd3; maintainers = [ maintainers.jirkamarsik ]; }; diff --git a/pkgs/development/ocaml-modules/x509/default.nix b/pkgs/development/ocaml-modules/x509/default.nix index 0d9b657969d..c44ccb18982 100644 --- a/pkgs/development/ocaml-modules/x509/default.nix +++ b/pkgs/development/ocaml-modules/x509/default.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation { meta = { homepage = https://github.com/mirleft/ocaml-x509; description = "X509 (RFC5280) handling in OCaml"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = stdenv.lib.licenses.bsd2; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; diff --git a/pkgs/development/ocaml-modules/xml-light/default.nix b/pkgs/development/ocaml-modules/xml-light/default.nix index 5eb4fbfd6b1..82f635afb68 100644 --- a/pkgs/development/ocaml-modules/xml-light/default.nix +++ b/pkgs/development/ocaml-modules/xml-light/default.nix @@ -38,6 +38,6 @@ stdenv.mkDerivation { homepage = "http://tech.motion-twin.com/xmllight.html"; license = stdenv.lib.licenses.lgpl21; maintainers = [ stdenv.lib.maintainers.romildo ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/xmlm/default.nix b/pkgs/development/ocaml-modules/xmlm/default.nix index dacaeea49f4..5dedfb396d5 100644 --- a/pkgs/development/ocaml-modules/xmlm/default.nix +++ b/pkgs/development/ocaml-modules/xmlm/default.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "An OCaml streaming codec to decode and encode the XML data format"; homepage = "${webpage}"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.vbgl ]; license = licenses.bsd3; }; diff --git a/pkgs/development/ocaml-modules/yojson/default.nix b/pkgs/development/ocaml-modules/yojson/default.nix index 34bcc08275b..ab949f4f1f2 100644 --- a/pkgs/development/ocaml-modules/yojson/default.nix +++ b/pkgs/development/ocaml-modules/yojson/default.nix @@ -29,6 +29,6 @@ stdenv.mkDerivation { homepage = "http://mjambon.com/${pname}.html"; license = licenses.bsd3; maintainers = [ maintainers.vbgl ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/ocaml-modules/zarith/default.nix b/pkgs/development/ocaml-modules/zarith/default.nix index ccd278a2faa..16a1ac3b30f 100644 --- a/pkgs/development/ocaml-modules/zarith/default.nix +++ b/pkgs/development/ocaml-modules/zarith/default.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { description = "fast, arbitrary precision OCaml integers"; homepage = "http://forge.ocamlcore.org/projects/zarith"; license = licenses.lgpl2; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ thoughtpolice vbgl ]; }; } diff --git a/pkgs/development/ocaml-modules/zed/default.nix b/pkgs/development/ocaml-modules/zed/default.nix index 935d3a56648..f9bf65cf814 100644 --- a/pkgs/development/ocaml-modules/zed/default.nix +++ b/pkgs/development/ocaml-modules/zed/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { ''; homepage = https://github.com/diml/zed; license = stdenv.lib.licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.gal_bolle ]; diff --git a/pkgs/development/tools/misc/trv/default.nix b/pkgs/development/tools/misc/trv/default.nix index 0f99cabbb96..606cc514647 100644 --- a/pkgs/development/tools/misc/trv/default.nix +++ b/pkgs/development/tools/misc/trv/default.nix @@ -34,6 +34,6 @@ stdenv.mkDerivation { description = "Shim for vrt to enable bootstrapping"; license = licenses.asl20; maintainers = [ maintainers.ericbmerritt ]; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/tools/ocaml/camlp4/default.nix b/pkgs/development/tools/ocaml/camlp4/default.nix index 20373c923e7..ae253180aee 100644 --- a/pkgs/development/tools/ocaml/camlp4/default.nix +++ b/pkgs/development/tools/ocaml/camlp4/default.nix @@ -39,6 +39,6 @@ stdenv.mkDerivation { meta = with stdenv.lib; { description = "A software system for writing extensible parsers for programming languages"; homepage = https://github.com/ocaml/camlp4; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/tools/ocaml/camlp5/5.15.nix b/pkgs/development/tools/ocaml/camlp5/5.15.nix index adfdb4bd204..e8cda36f101 100644 --- a/pkgs/development/tools/ocaml/camlp5/5.15.nix +++ b/pkgs/development/tools/ocaml/camlp5/5.15.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation { homepage = "${webpage}"; license = stdenv.lib.licenses.bsd3; branch = "5"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z ]; diff --git a/pkgs/development/tools/ocaml/camlp5/default.nix b/pkgs/development/tools/ocaml/camlp5/default.nix index d9f36423430..83dd74d321e 100644 --- a/pkgs/development/tools/ocaml/camlp5/default.nix +++ b/pkgs/development/tools/ocaml/camlp5/default.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation { ''; homepage = http://pauillac.inria.fr/~ddr/camlp5/; license = licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ z77z vbgl ]; diff --git a/pkgs/development/tools/ocaml/findlib/default.nix b/pkgs/development/tools/ocaml/findlib/default.nix index 746be6dd081..5d9757f2666 100644 --- a/pkgs/development/tools/ocaml/findlib/default.nix +++ b/pkgs/development/tools/ocaml/findlib/default.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { homepage = http://projects.camlcity.org/projects/findlib.html; description = "O'Caml library manager"; license = stdenv.lib.licenses.mit; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.z77z stdenv.lib.maintainers.vbmithr diff --git a/pkgs/development/tools/ocaml/js_of_ocaml/default.nix b/pkgs/development/tools/ocaml/js_of_ocaml/default.nix index ca5230d1e08..3258aaf08c2 100644 --- a/pkgs/development/tools/ocaml/js_of_ocaml/default.nix +++ b/pkgs/development/tools/ocaml/js_of_ocaml/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { homepage = http://ocsigen.org/js_of_ocaml/; description = "Compiler of OCaml bytecode to Javascript. It makes it possible to run Ocaml programs in a Web browser"; license = licenses.lgpl2; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.gal_bolle ]; diff --git a/pkgs/development/tools/ocaml/oasis/default.nix b/pkgs/development/tools/ocaml/oasis/default.nix index e823466f417..70d90752ace 100644 --- a/pkgs/development/tools/ocaml/oasis/default.nix +++ b/pkgs/development/tools/ocaml/oasis/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation { homepage = http://oasis.forge.ocamlcore.org/; description = "Configure, build and install system for OCaml projects"; license = licenses.lgpl21; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ vbgl z77z ]; diff --git a/pkgs/development/tools/ocaml/ocaml-top/default.nix b/pkgs/development/tools/ocaml/ocaml-top/default.nix index 79c81c5c447..9bea3e9dc17 100644 --- a/pkgs/development/tools/ocaml/ocaml-top/default.nix +++ b/pkgs/development/tools/ocaml/ocaml-top/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation { homepage = http://www.typerex.org/ocaml-top.html; license = stdenv.lib.licenses.gpl3; description = "A simple cross-platform OCaml code editor built for top-level evaluation"; - platforms = ocamlPackages.ocaml.meta.platforms; + platforms = ocamlPackages.ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/tools/ocaml/ocamlify/default.nix b/pkgs/development/tools/ocaml/ocamlify/default.nix index 0a402d4ba46..f3caa42b8fd 100644 --- a/pkgs/development/tools/ocaml/ocamlify/default.nix +++ b/pkgs/development/tools/ocaml/ocamlify/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation { meta = { homepage = http://forge.ocamlcore.org/projects/ocamlmod/ocamlmod; description = "Generate OCaml modules from source files"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; license = stdenv.lib.licenses.lgpl21; maintainers = with stdenv.lib.maintainers; [ z77z diff --git a/pkgs/development/tools/ocaml/ocamlmod/default.nix b/pkgs/development/tools/ocaml/ocamlmod/default.nix index 65359049a96..7ff73ff28dc 100644 --- a/pkgs/development/tools/ocaml/ocamlmod/default.nix +++ b/pkgs/development/tools/ocaml/ocamlmod/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation { meta = { homepage = http://forge.ocamlcore.org/projects/ocamlmod/ocamlmod; description = "Generate OCaml modules from source files"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ z77z ]; diff --git a/pkgs/development/tools/ocaml/ocamlscript/default.nix b/pkgs/development/tools/ocaml/ocamlscript/default.nix index 1b37c21fdfa..28efaf4cf3d 100644 --- a/pkgs/development/tools/ocaml/ocamlscript/default.nix +++ b/pkgs/development/tools/ocaml/ocamlscript/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation { meta = with stdenv.lib; { homepage = http://martin.jambon.free.fr/ocamlscript.html; license = licenses.boost; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; description = "Natively-compiled OCaml scripts"; maintainers = [ maintainers.vbgl ]; }; diff --git a/pkgs/development/tools/ocaml/ocp-build/default.nix b/pkgs/development/tools/ocaml/ocp-build/default.nix index 31b99ada2a3..48657a8e19d 100644 --- a/pkgs/development/tools/ocaml/ocp-build/default.nix +++ b/pkgs/development/tools/ocaml/ocp-build/default.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation { between source files. ''; license = licenses.gpl3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.jirkamarsik ]; }; } diff --git a/pkgs/development/tools/ocaml/ocp-indent/default.nix b/pkgs/development/tools/ocaml/ocp-indent/default.nix index 224ce57808f..d146dd5e973 100644 --- a/pkgs/development/tools/ocaml/ocp-indent/default.nix +++ b/pkgs/development/tools/ocaml/ocp-indent/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation { homepage = "http://typerex.ocamlpro.com/ocp-indent.html"; description = "A customizable tool to indent OCaml code"; license = licenses.gpl3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ maintainers.jirkamarsik ]; }; } diff --git a/pkgs/development/tools/ocaml/ocp-index/default.nix b/pkgs/development/tools/ocaml/ocp-index/default.nix index 76be5f8bd47..37f90c41100 100644 --- a/pkgs/development/tools/ocaml/ocp-index/default.nix +++ b/pkgs/development/tools/ocaml/ocp-index/default.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation { homepage = http://typerex.ocamlpro.com/ocp-index.html; description = "A simple and light-weight documentation extractor for OCaml"; license = stdenv.lib.licenses.lgpl3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = with stdenv.lib.maintainers; [ vbgl ]; }; } diff --git a/pkgs/development/tools/ocaml/omake/0.9.8.6-rc1.nix b/pkgs/development/tools/ocaml/omake/0.9.8.6-rc1.nix index 40188734a99..9f318afc67d 100644 --- a/pkgs/development/tools/ocaml/omake/0.9.8.6-rc1.nix +++ b/pkgs/development/tools/ocaml/omake/0.9.8.6-rc1.nix @@ -33,6 +33,6 @@ stdenv.mkDerivation { description = "Omake build system"; homepage = "${webpage}"; license = "GPL"; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } diff --git a/pkgs/development/tools/ocaml/utop/default.nix b/pkgs/development/tools/ocaml/utop/default.nix index c9addf55312..b5de65b7c10 100644 --- a/pkgs/development/tools/ocaml/utop/default.nix +++ b/pkgs/development/tools/ocaml/utop/default.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { ''; homepage = https://github.com/diml/utop; license = stdenv.lib.licenses.bsd3; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; maintainers = [ stdenv.lib.maintainers.gal_bolle ]; diff --git a/pkgs/tools/audio/liquidsoap/full.nix b/pkgs/tools/audio/liquidsoap/full.nix index eeebea5d747..318bb2859e5 100644 --- a/pkgs/tools/audio/liquidsoap/full.nix +++ b/pkgs/tools/audio/liquidsoap/full.nix @@ -40,6 +40,6 @@ stdenv.mkDerivation { homepage = http://liquidsoap.fm/; maintainers = with maintainers; [ ehmry ]; license = licenses.gpl2; - platforms = ocaml.meta.platforms; + platforms = ocaml.meta.platforms or []; }; } From d05a3cd763cedce9690ec21b2180425e8d70dabf Mon Sep 17 00:00:00 2001 From: Tim Cuthbertson Date: Mon, 29 Feb 2016 22:10:26 +1100 Subject: [PATCH 0319/1059] 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 e433a3015a31aad753ee2165ade88fa568c11172 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Sun, 13 Mar 2016 21:31:34 +0100 Subject: [PATCH 0320/1059] i2pd: 2.4.0 -> 2.5.1 --- pkgs/tools/networking/i2pd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/i2pd/default.nix b/pkgs/tools/networking/i2pd/default.nix index 2d490b917a4..454d3b41818 100644 --- a/pkgs/tools/networking/i2pd/default.nix +++ b/pkgs/tools/networking/i2pd/default.nix @@ -4,13 +4,13 @@ stdenv.mkDerivation rec { name = pname + "-" + version; pname = "i2pd"; - version = "2.4.0"; + version = "2.5.1"; src = fetchFromGitHub { owner = "PurpleI2P"; repo = pname; rev = version; - sha256 = "1nkf3dplvyg2lgygd3jd4bqh5s4nm6ppyks3a05a1dcbwm8ws42y"; + sha256 = "17qf2pbxf05iw2gzyc5bc2zg3a4ns6zf1pm8q9j7nqhchh1rv4cm"; }; buildInputs = [ boost zlib openssl ]; From c65026bfa519000519bbb18936b8e902f3bdd9ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Sun, 13 Mar 2016 21:34:21 +0100 Subject: [PATCH 0321/1059] nixos: i2pd, change to yes/no config entries and explicitly enable client endpoints --- nixos/modules/services/networking/i2pd.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/nixos/modules/services/networking/i2pd.nix b/nixos/modules/services/networking/i2pd.nix index e73316a9b1e..15ec9be8012 100644 --- a/nixos/modules/services/networking/i2pd.nix +++ b/nixos/modules/services/networking/i2pd.nix @@ -10,9 +10,10 @@ let extip = "EXTIP=\$(${pkgs.curl}/bin/curl -sf \"http://jsonip.com\" | ${pkgs.gawk}/bin/awk -F'\"' '{print $4}')"; - toOneZero = b: if b then "1" else "0"; + toYesNo = b: if b then "yes" else "no"; mkEndpointOpt = name: addr: port: { + enable = mkEnableOption name; name = mkOption { type = types.str; default = name; @@ -63,9 +64,9 @@ let } // mkEndpointOpt name "127.0.0.1" 0; i2pdConf = pkgs.writeText "i2pd.conf" '' - ipv6 = ${toOneZero cfg.enableIPv6} - notransit = ${toOneZero cfg.notransit} - floodfill = ${toOneZero cfg.floodfill} + ipv6 = ${toYesNo cfg.enableIPv6} + notransit = ${toYesNo cfg.notransit} + floodfill = ${toYesNo cfg.floodfill} ${if isNull cfg.port then "" else "port = ${toString cfg.port}"} ${flip concatMapStrings (collect (proto: proto ? port && proto ? address && proto ? name) cfg.proto) @@ -73,6 +74,7 @@ let [${proto.name}] address = ${proto.address} port = ${toString proto.port} + enabled = ${toYesNo proto.enable} '') } ''; From 7da494b8ae68c398fc2a18f0f5040679f8d2188f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Sun, 13 Mar 2016 21:34:51 +0100 Subject: [PATCH 0322/1059] qtox: 1.2.4 -> 1.3.0 --- .../networking/instant-messengers/qtox/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/qtox/default.nix b/pkgs/applications/networking/instant-messengers/qtox/default.nix index 541fb5727ce..e08a112664a 100644 --- a/pkgs/applications/networking/instant-messengers/qtox/default.nix +++ b/pkgs/applications/networking/instant-messengers/qtox/default.nix @@ -4,7 +4,7 @@ qtbase, qtsvg, qttools, qttranslations, sqlcipher }: let - version = "1.2.4"; + version = "1.3.0"; revision = "v${version}"; in @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { owner = "tux3"; repo = "qTox"; rev = revision; - sha256 = "0iqnl00kmbpf3pn6z38n3cjzzsqpw2793j60c24kkrydapihknz9"; + sha256 = "0z2rxsa23vpl4q0h63mybw7kv8n1sm6nwb93l0cc046a3n9axid8"; }; buildInputs = From 10198b586e4c7a177b7922c511c0176051f730c4 Mon Sep 17 00:00:00 2001 From: Philipp Volguine Date: Sun, 13 Mar 2016 21:04:11 +0000 Subject: [PATCH 0323/1059] gitlab service startup fix -gitlab-sidekiq was being started with a misspelled argument name which caused the mailer queue to never run and never send mail --- nixos/modules/services/misc/gitlab.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/misc/gitlab.nix b/nixos/modules/services/misc/gitlab.nix index cc50bfbea53..85b3ab6f924 100644 --- a/nixos/modules/services/misc/gitlab.nix +++ b/nixos/modules/services/misc/gitlab.nix @@ -328,7 +328,7 @@ in { Group = cfg.group; TimeoutSec = "300"; WorkingDirectory = "${cfg.packages.gitlab}/share/gitlab"; - ExecStart="${bundler}/bin/bundle exec \"sidekiq -q post_receive -q mailer -q system_hook -q project_web_hook -q gitlab_shell -q common -q default -e production -P ${cfg.statePath}/tmp/sidekiq.pid\""; + ExecStart="${bundler}/bin/bundle exec \"sidekiq -q post_receive -q mailers -q system_hook -q project_web_hook -q gitlab_shell -q common -q default -e production -P ${cfg.statePath}/tmp/sidekiq.pid\""; }; }; From a2424fffd33db475f97febca62e3832b75ef76cb Mon Sep 17 00:00:00 2001 From: Philipp Volguine Date: Sun, 13 Mar 2016 21:05:11 +0000 Subject: [PATCH 0324/1059] Gitlab package version 8.5.1 -> 8.5.5 -had to bump the versions on a few gem dependencies --- .../version-management/gitlab/default.nix | 4 +- .../version-management/gitlab/gemset.nix | 38 +++++++++---------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/pkgs/applications/version-management/gitlab/default.nix b/pkgs/applications/version-management/gitlab/default.nix index 5f998367430..76ebfc93a53 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.1"; + version = "8.5.5"; buildInputs = [ ruby bundler tzdata git nodejs procps ]; @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { owner = "gitlabhq"; repo = "gitlabhq"; rev = "v${version}"; - sha256 = "1pn5r4axzjkgdjr59y3wgxsd2n83zfd5bry1g2w4c2qw0wcw7zqb"; + sha256 = "05cjqjcmwxlc67xr34ki83q8pn6bsvxvywmiys20bksq3maxdyih"; }; patches = [ diff --git a/pkgs/applications/version-management/gitlab/gemset.nix b/pkgs/applications/version-management/gitlab/gemset.nix index f63a356a1f6..b0665278183 100644 --- a/pkgs/applications/version-management/gitlab/gemset.nix +++ b/pkgs/applications/version-management/gitlab/gemset.nix @@ -975,10 +975,10 @@ dependencies = ["actionpack" "activesupport" "rake" "thor"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "07vmyrppa1x80whdjxhjij93qh9wvnmnxpsgn6fr9x2lqmzdyq5l"; + sha256 = "cfff64cbc0e409341003c35fa2e576e6a8cd8259a9894d09f15c6123be73f146"; type = "gem"; }; - version = "4.2.5.1"; + version = "4.2.5.2"; }; rails-html-sanitizer = { dependencies = ["loofah"]; @@ -1011,10 +1011,10 @@ dependencies = ["actionmailer" "actionpack" "actionview" "activejob" "activemodel" "activerecord" "activesupport" "railties" "sprockets-rails"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "03j6hfsqdl0bay59m4qjj2081s4vnhqagpl14qpm4wfrqrgpkcqb"; + sha256 = "aa93c1b9eb8b535eee58280504e30237f88217699fe9bb016e458e5122eefa2e"; type = "gem"; }; - version = "4.2.5.1"; + version = "4.2.5.2"; }; rack-test = { dependencies = ["rack"]; @@ -2906,10 +2906,10 @@ dependencies = ["i18n" "json" "minitest" "thread_safe" "tzinfo"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "16zgsvzwwf4hx3ywi2lz0dcm6d1ljsy6zr5k2q41amd7g62d886d"; + sha256 = "80ad345adf7e2b72c5d90753c0df91eacc34f4de02b34cfbf60bcf6c83483031"; type = "gem"; }; - version = "4.2.5.1"; + version = "4.2.5.2"; }; activerecord-session_store = { dependencies = ["actionpack" "activerecord" "railties"]; @@ -2940,55 +2940,55 @@ dependencies = ["activemodel" "activesupport" "arel"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1qj5ii36yn9kb0ljnl05xgpgvs7j9l20yg2phsssy0j31g1ymmc5"; + sha256 = "c2b1b6a4c6b8542c2464b457dce4cac4915efcbd3d5acfba57102e58474c33f2"; type = "gem"; }; - version = "4.2.5.1"; + version = "4.2.5.2"; }; activemodel = { dependencies = ["activesupport" "builder"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1zr83avw82infmzdzpilk6xpv5r9fr8pxgf5ql16b3vysp6va57p"; + sha256 = "09ce967be3086b34ae9fcbd919e714b2bdf72b8ab6e89b64aa74627267d93962"; type = "gem"; }; - version = "4.2.5.1"; + version = "4.2.5.2"; }; activejob = { dependencies = ["activesupport" "globalid"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1xfj7lwp1v3k9zscavzq87wbbn6y825angz4zpx4xsvlwf3dn7jc"; + sha256 = "cecb9bbc55292dee064ca479990c6e50fa3e2273aac6722ce058d18c22383026"; type = "gem"; }; - version = "4.2.5.1"; + version = "4.2.5.2"; }; actionview = { dependencies = ["activesupport" "builder" "erubis" "rails-dom-testing" "rails-html-sanitizer"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1dp1gqh0yxpyydza1ada0jjbpww97qhnkj9c9pm9rg5jbmpzg12m"; + sha256 = "e8ce01cf6cc822ec023a15a856a0fae0e078ebb232b95b722c23af4117d2d635"; type = "gem"; }; - version = "4.2.5.1"; + version = "4.2.5.2"; }; actionpack = { dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "13shdiwjfyqvfb11k0wqhcd7p7ix168fxd5l8m2pnn0bzskpswxv"; + sha256 = "a22e1818f06b707433c9a76867932929751b5d57edbeacc258635a7b23da12cf"; type = "gem"; }; - version = "4.2.5.1"; + version = "4.2.5.2"; }; actionmailer = { dependencies = ["actionpack" "actionview" "activejob" "mail" "rails-dom-testing"]; source = { remotes = ["https://rubygems.org"]; - sha256 = "1fxn8f53nnpgan5xl9i5lszl1m8yk4q6ayc33d9xfzsnvhavpl4n"; + sha256 = "8cee5f2f1e58c8ada17cca696377443c0cbc9675df2b7eef97a04318876484b5"; type = "gem"; }; - version = "4.2.5.1"; + version = "4.2.5.2"; }; ace-rails-ap = { source = { @@ -3014,4 +3014,4 @@ }; version = "2.3.2"; }; -} \ No newline at end of file +} From 7e57e2c0fb3ddb24e7c1b67986addebcd608b795 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 14 Mar 2016 00:58:23 +0300 Subject: [PATCH 0325/1059] autofs service: clear lockfile before start autofs uses a lock file in /tmp to check if it's running -- unclean shutdown breaks the service until one manually removes it. --- nixos/modules/services/misc/autofs.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nixos/modules/services/misc/autofs.nix b/nixos/modules/services/misc/autofs.nix index 3a95e922820..8913030e0ea 100644 --- a/nixos/modules/services/misc/autofs.nix +++ b/nixos/modules/services/misc/autofs.nix @@ -79,6 +79,11 @@ in wantedBy = [ "multi-user.target" ]; after = [ "network.target" ]; + preStart = '' + # There should be only one autofs service managed by systemd, so this should be safe. + rm -f /tmp/autofs-running + ''; + serviceConfig = { ExecStart = "${pkgs.autofs5}/sbin/automount ${if cfg.debug then "-d" else ""} -f -t ${builtins.toString cfg.timeout} ${autoMaster} ${if cfg.debug then "-l7" else ""}"; ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID"; From 9be54a523eaec7f317862ab3c0fc86680aec5e13 Mon Sep 17 00:00:00 2001 From: Raymond Gauthier Date: Sun, 13 Mar 2016 19:56:12 -0400 Subject: [PATCH 0326/1059] retroarch: improvements - Added missing freedesktop items (`*.desktop` and icon). Note that for the moment, only added an `*.svg` icon as was the only available. It does not give us the best results (at least in xfce). We may decide later on to extract the content of the `*.ico` instead which is a bit more involved. --- pkgs/misc/emulators/retroarch/default.nix | 24 ++++++++++++++++++++++- pkgs/misc/emulators/retroarch/wrapper.nix | 3 +++ 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/pkgs/misc/emulators/retroarch/default.nix b/pkgs/misc/emulators/retroarch/default.nix index bdac2980a39..87fb854c844 100644 --- a/pkgs/misc/emulators/retroarch/default.nix +++ b/pkgs/misc/emulators/retroarch/default.nix @@ -1,7 +1,21 @@ -{ stdenv, fetchgit, pkgconfig, ffmpeg, mesa, nvidia_cg_toolkit +{ stdenv, fetchgit, makeDesktopItem, pkgconfig, ffmpeg, mesa, nvidia_cg_toolkit , freetype, libxml2, libv4l, coreutils, python34, which, udev, alsaLib , libX11, libXext, libXxf86vm, libXdmcp, SDL, libpulseaudio ? null }: +let + desktopItem = makeDesktopItem { + name = "retroarch"; + exec = "retroarch"; + icon = "retroarch"; + comment = "Multi-Engine Platform"; + desktopName = "RetroArch"; + genericName = "Libretro Frontend"; + categories = "Game;Emulator;"; + #keywords = "multi;engine;emulator;xmb;"; + }; + +in + stdenv.mkDerivation rec { name = "retroarch-bare-${version}"; version = "2015-11-20"; @@ -20,6 +34,14 @@ stdenv.mkDerivation rec { sed -e 's#/bin/true#${coreutils}/bin/true#' -i qb/qb.libs.sh ''; + postInstall = '' + mkdir -p $out/share/icons/hicolor/scalable/apps + cp -p -T ./media/retroarch.svg $out/share/icons/hicolor/scalable/apps/retroarch.svg + + mkdir -p "$out/share/applications" + cp ${desktopItem}/share/applications/* $out/share/applications + ''; + enableParallelBuilding = true; meta = with stdenv.lib; { diff --git a/pkgs/misc/emulators/retroarch/wrapper.nix b/pkgs/misc/emulators/retroarch/wrapper.nix index f7e903ef529..e6eb930695a 100644 --- a/pkgs/misc/emulators/retroarch/wrapper.nix +++ b/pkgs/misc/emulators/retroarch/wrapper.nix @@ -18,6 +18,9 @@ stdenv.mkDerivation { do $(ln -s $coreDir/*.so $out/lib/.) done) + + ln -s -t $out ${retroarch}/share + makeWrapper ${retroarch}/bin/retroarch $out/bin/retroarch \ --suffix-each LD_LIBRARY_PATH ':' "$cores" \ --add-flags "-L $out/lib/ --menu" \ From 11c486cd1965815acfff78e10527b3b2b83a3778 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 14 Mar 2016 03:41:57 +0100 Subject: [PATCH 0327/1059] simple-scan: 3.19.91 -> 3.19.92 --- pkgs/applications/graphics/simple-scan/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/simple-scan/default.nix b/pkgs/applications/graphics/simple-scan/default.nix index 7ee298f7281..8eee5299a69 100644 --- a/pkgs/applications/graphics/simple-scan/default.nix +++ b/pkgs/applications/graphics/simple-scan/default.nix @@ -3,10 +3,10 @@ stdenv.mkDerivation rec { name = "simple-scan-${version}"; - version = "3.19.91"; + version = "3.19.92"; src = fetchurl { - sha256 = "1c5glf5vxgld41w4jxfqcv17q76qnh43fawpv33hncgh8d283xkf"; + sha256 = "1zz6y4cih1v0npxjfxvnqz3bz7i5aripdsfy0hg9mhr1f4r0ig19"; url = "https://launchpad.net/simple-scan/3.19/${version}/+download/${name}.tar.xz"; }; From 87607af7a1bf35682f8ad206307ed46e8ead260a Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 14 Mar 2016 06:52:12 +0300 Subject: [PATCH 0328/1059] 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 0bae05dacd6a884ae8af5fe4b4bb4f92a8f0caf3 Mon Sep 17 00:00:00 2001 From: Sheena Artrip Date: Sun, 13 Mar 2016 03:22:27 -0400 Subject: [PATCH 0329/1059] freeradius: init at 3.0.11 --- pkgs/servers/freeradius/default.nix | 39 +++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 41 insertions(+) create mode 100644 pkgs/servers/freeradius/default.nix diff --git a/pkgs/servers/freeradius/default.nix b/pkgs/servers/freeradius/default.nix new file mode 100644 index 00000000000..818cc30b054 --- /dev/null +++ b/pkgs/servers/freeradius/default.nix @@ -0,0 +1,39 @@ +{ stdenv, fetchurl, autoreconfHook, talloc, openssl ? null }: + +## TODO: include ldap optionally +## TODO: include sqlite optionally +## TODO: include mysql optionally + +stdenv.mkDerivation rec { + name = "freeradius-${version}"; + version = "3.0.11"; + + buildInputs = [ + autoreconfHook + talloc + openssl + ]; + + configureFlags = [ + "--sysconfdir=/etc" + "--localstatedir=/var" + ]; + + installFlags = [ + "sysconfdir=\${out}/etc" + "localstatedir=\${TMPDIR}" + ]; + + src = fetchurl { + url = "ftp://ftp.freeradius.org/pub/freeradius/freeradius-server-${version}.tar.gz"; + sha256 = "0naxw9b060rbp4409904j6nr2zwl6wbjrbq1839xrwhmaf8p4yxr"; + }; + + meta = with stdenv.lib; { + homepage = http://freeradius.org/; + description = "A modular, high performance free RADIUS suite"; + license = stdenv.lib.licenses.gpl2; + }; + +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 512471b4057..e33640686d8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9574,6 +9574,8 @@ let freepops = callPackage ../servers/mail/freepops { }; + freeradius = callPackage ../servers/freeradius { }; + freeswitch = callPackage ../servers/sip/freeswitch { }; gatling = callPackage ../servers/http/gatling { }; From 94f1fe35f880a04ced6e9c5ecdae911647593118 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Mon, 14 Mar 2016 07:29:41 +0100 Subject: [PATCH 0330/1059] flaky: init at 3.1.0 --- pkgs/top-level/python-packages.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 53b81623232..5b74146330a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8719,6 +8719,28 @@ in modules // { }; }; + flaky = buildPythonPackage rec { + name = "flaky-${version}"; + version = "3.1.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/f/flaky/${name}.tar.gz"; + sha256 = "1x9ixika7wqjj52x8wnsh1vk7jadkdqpx01plj7mlh8slwyq4s41"; + }; + + propagatedBuildInputs = with self; [ pytest ]; + buildInputs = with self; [ mock ]; + + # waiting for feedback https://github.com/box/flaky/issues/97 + doCheck = false; + + meta = { + homepage = https://github.com/box/flaky; + description = "Plugin for nose or py.test that automatically reruns flaky tests"; + license = licenses.asl20; + }; + }; + flask = buildPythonPackage { name = "flask-0.10.1"; From 4909c56b69295e12f4973f4fe96467d768b4a851 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Mon, 14 Mar 2016 07:29:54 +0100 Subject: [PATCH 0331/1059] hypothesis: init at 3.1.0 --- pkgs/top-level/python-packages.nix | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5b74146330a..5d9b88fb9e3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10066,6 +10066,35 @@ in modules // { }; }; + hypothesis = buildPythonPackage rec { + # http://hypothesis.readthedocs.org/en/latest/packaging.html + + name = "hypothesis-${version}"; + version = "3.1.0"; + + # Upstream prefers github tarballs + src = pkgs.fetchFromGitHub { + owner = "DRMacIver"; + repo = "hypothesis"; + rev = "${version}"; + sha256 = "1fhdb2vwc4blas5fvcly6pmha8psqm4bhi67jz32ypjryzk09iyf"; + }; + + buildInputs = with self; [ flake8 pytest flaky ]; + propagatedBuildInputs = with self; ([ pytz fake_factory django numpy ] ++ optionals isPy27 [ enum34 modules.sqlite3 ]); + + # https://github.com/DRMacIver/hypothesis/issues/300 + checkPhase = '' + ${python.interpreter} -m pytest tests/cover + ''; + + meta = { + description = "A Python library for property based testing"; + homepage = https://github.com/DRMacIver/hypothesis; + license = licenses.mpl20; + }; + }; + httpretty = buildPythonPackage rec { name = "httpretty-${version}"; version = "0.8.6"; From c3dac8f467b4826411cab5ececa2999af4ed2ae1 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Mon, 14 Mar 2016 09:55:06 +0100 Subject: [PATCH 0332/1059] pytest-localserver: init at 0.3.5 --- pkgs/top-level/python-packages.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5608f75b15c..9b5891c1157 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4239,6 +4239,28 @@ in modules // { }; }; + pytest-localserver = buildPythonPackage rec { + name = "pytest-localserver-${version}"; + version = "0.3.5"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pytest-localserver/${name}.tar.gz"; + sha256 = "0dvqspjr6va55zwmnnc2mmpqc7mm65kxig9ya44x1z8aadzxpa4p"; + }; + + propagatedBuildInputs = with self; [ werkzeug ]; + buildInputs = with self; [ pytest six requests2 ]; + + checkPhase = '' + py.test + ''; + + meta = { + description = "Plugin for the pytest testing framework to test server connections locally"; + homepage = https://pypi.python.org/pypi/pytest-localserver; + license = licenses.mit; + }; + }; tinycss = buildPythonPackage rec { name = "tinycss-${version}"; From d373ef3508650fdb5eb2acbfc81637e4f6632806 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Mon, 14 Mar 2016 09:55:27 +0100 Subject: [PATCH 0333/1059] pytest-subtesthack: init at 0.1.1 --- pkgs/top-level/python-packages.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9b5891c1157..33351c8e84c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4262,6 +4262,27 @@ in modules // { }; }; + pytest-subtesthack = buildPythonPackage rec { + name = "pytest-subtesthack-${version}"; + version = "0.1.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pytest-subtesthack/${name}.tar.gz"; + sha256 = "15kzcr5pchf3id4ikdvlv752rc0j4d912n589l4rifp8qsj19l1x"; + }; + + propagatedBuildInputs = with self; [ pytest ]; + + # no upstream test + doCheck = false; + + meta = { + description = "Terrible plugin to set up and tear down fixtures within the test function itself"; + homepage = https://github.com/untitaker/pytest-subtesthack; + license = licenses.publicDomain; + }; + }; + tinycss = buildPythonPackage rec { name = "tinycss-${version}"; version = "0.3"; From 32dcc5a31bf3a7fb44206aec38c40e5484919b4b Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Sun, 13 Mar 2016 08:37:57 +0100 Subject: [PATCH 0334/1059] vdirsyncer: 0.9.0 -> 0.9.2 Also activate the automated testing --- pkgs/tools/misc/vdirsyncer/default.nix | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/pkgs/tools/misc/vdirsyncer/default.nix b/pkgs/tools/misc/vdirsyncer/default.nix index d6789bf52bc..a411f8a2fc2 100644 --- a/pkgs/tools/misc/vdirsyncer/default.nix +++ b/pkgs/tools/misc/vdirsyncer/default.nix @@ -1,29 +1,32 @@ -{ stdenv, fetchurl, pythonPackages }: +{ stdenv, fetchurl, pythonPackages, glibcLocales }: +# Packaging documentation at: +# https://github.com/untitaker/vdirsyncer/blob/master/docs/packaging.rst pythonPackages.buildPythonApplication rec { - version = "0.9.0"; + version = "0.9.2"; name = "vdirsyncer-${version}"; namePrefix = ""; src = fetchurl { url = "https://pypi.python.org/packages/source/v/vdirsyncer/${name}.tar.gz"; - sha256 = "0s9awjr9v60rr80xcpwmdhkf4v1yqnydahjmxwvxmh64565is465"; + sha256 = "1g1107cz4sk41d2z6k6pn9n2fzd26m72j8aj33zn483vfvmyrc4q"; }; propagatedBuildInputs = with pythonPackages; [ click click-log click-threading lxml - setuptools - setuptools_scm requests_toolbelt requests2 atomicwrites ]; - # Unfortunately, checking this package seems a bit too complex - # https://github.com/NixOS/nixpkgs/pull/13098#issuecomment-185914025 - # https://github.com/untitaker/vdirsyncer/issues/334#issuecomment-185872854 - doCheck = false; + buildInputs = with pythonPackages; [hypothesis pytest pytest-localserver pytest-subtesthack setuptools_scm ] ++ [ glibcLocales ]; + + LC_ALL = "en_US.utf8"; + + checkPhase = '' + make DETERMINISTIC_TESTS=true test + ''; meta = with stdenv.lib; { homepage = https://github.com/untitaker/vdirsyncer; From 1df2a6431fa1b51b9779070ce2a0171208985bf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 14 Mar 2016 10:57:08 +0100 Subject: [PATCH 0335/1059] xdg-utils: replace commands more precisely Fix #13904, close #13908. Previously many messages got clobbered. Now it should be better. The solution is still relatively hacky, but I don't see how to improve it without doing lots of work. --- pkgs/tools/X11/xdg-utils/default.nix | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/pkgs/tools/X11/xdg-utils/default.nix b/pkgs/tools/X11/xdg-utils/default.nix index 23b406c2d43..6f133559362 100644 --- a/pkgs/tools/X11/xdg-utils/default.nix +++ b/pkgs/tools/X11/xdg-utils/default.nix @@ -28,18 +28,17 @@ stdenv.mkDerivation rec { postInstall = stdenv.lib.optionalString mimiSupport '' cp ${mimisrc}/xdg-open $out/bin/xdg-open - substituteInPlace $out/bin/xdg-open --replace "awk " "${gawk}/bin/awk " - substituteInPlace $out/bin/xdg-open --replace "sort " "${coreutils}/bin/sort " - substituteInPlace $out/bin/xdg-open --replace "(file " "(${file}/bin/file " - '' + '' - for item in $out/bin/*; do - substituteInPlace $item --replace "cut " "${coreutils}/bin/cut " - substituteInPlace $item --replace "sed " "${gnused}/bin/sed " - substituteInPlace $item --replace "egrep " "${gnugrep}/bin/egrep " - sed -i $item -re "s#([^e])grep #\1${gnugrep}/bin/grep #g" # Don't replace 'egrep' - substituteInPlace $item --replace "which " "type -P " - substituteInPlace $item --replace "/usr/bin/file" "${file}/bin/file" + '' + + '' + for tool in "${coreutils}/bin/cut" "${gnused}/bin/sed" \ + "${gnugrep}"/bin/{e,}grep "${file}/bin/file" \ + ${stdenv.lib.optionalString mimiSupport + '' "${gawk}/bin/awk" "${coreutils}/bin/sort" ''} ; + do + sed "s# $(basename "$tool") # $tool #g" -i "$out"/bin/* done + + sed 's# which # type -P #g' -i "$out"/bin/* ''; meta = with stdenv.lib; { From 456d16ff4b01aee5fa9ac52eb215c3ee54a46a02 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sat, 12 Mar 2016 15:41:12 +0100 Subject: [PATCH 0336/1059] verasco: init at 1.3 --- .../tools/analysis/verasco/default.nix | 48 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 8 ++++ 2 files changed, 56 insertions(+) create mode 100644 pkgs/development/tools/analysis/verasco/default.nix diff --git a/pkgs/development/tools/analysis/verasco/default.nix b/pkgs/development/tools/analysis/verasco/default.nix new file mode 100644 index 00000000000..9b3ff8e570d --- /dev/null +++ b/pkgs/development/tools/analysis/verasco/default.nix @@ -0,0 +1,48 @@ +{ stdenv, fetchurl, coq, ocamlPackages +, tools ? stdenv.cc +}: + +stdenv.mkDerivation rec { + name = "verasco-1.3"; + src = fetchurl { + url = "http://compcert.inria.fr/verasco/release/${name}.tgz"; + sha256 = "0zvljrpwnv443k939zlw1f7ijwx18nhnpr8jl3f01jc5v66hr2k8"; + }; + + buildInputs = [ coq ] ++ (with ocamlPackages; [ ocaml findlib menhir zarith ]); + + preConfigure = '' + substituteInPlace ./configure --replace '{toolprefix}gcc' '{toolprefix}cc' + ''; + + configureFlags = [ + "-toolprefix ${tools}/bin/" + (if stdenv.isDarwin then "ia32-macosx" else "ia32-linux") + ]; + + prefixKey = "-prefix "; + + enableParallelBuilding = true; + buildFlags = "proof extraction ccheck"; + + installPhase = '' + mkdir -p $out/bin + cp ccheck $out/bin/ + ln -s $out/bin/ccheck $out/bin/verasco + if [ -e verasco.ini ] + then + mkdir -p $out/share + cp verasco.ini $out/share/ + fi + mkdir -p $out/lib/compcert + cp -riv runtime/include $out/lib/compcert + ''; + + meta = { + homepage = http://compcert.inria.fr/verasco/; + description = "A static analyzer for the CompCert subset of ISO C 1999"; + maintainers = with stdenv.lib.maintainers; [ vbgl ]; + license = stdenv.lib.licenses.unfree; + platforms = with stdenv.lib.platforms; darwin ++ linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0733d656bac..6f8ad9688e3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6363,6 +6363,14 @@ let valkyrie = callPackage ../development/tools/analysis/valkyrie { }; + verasco = callPackage ../development/tools/analysis/verasco (( + if system == "x86_64-linux" + then { tools = pkgsi686Linux.stdenv.cc; } + else {} + ) // { + ocamlPackages = ocamlPackages_4_02; + }); + xc3sprog = callPackage ../development/tools/misc/xc3sprog { }; xmlindent = callPackage ../development/web/xmlindent {}; From 13c6b9ba8549c3db91c6f321e0413a538bce9388 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sun, 13 Mar 2016 21:43:42 +0100 Subject: [PATCH 0337/1059] zim: 0.63 -> 0.65 --- pkgs/applications/office/zim/default.nix | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/office/zim/default.nix b/pkgs/applications/office/zim/default.nix index 4d2396e8a11..9014e388468 100644 --- a/pkgs/applications/office/zim/default.nix +++ b/pkgs/applications/office/zim/default.nix @@ -9,19 +9,18 @@ buildPythonApplication rec { name = "zim-${version}"; - version = "0.63"; + version = "0.65"; namePrefix = ""; src = fetchurl { url = "http://zim-wiki.org/downloads/${name}.tar.gz"; - sha256 = "077vf4h0hjmbk8bxj9l0z9rxcb3dw642n32lvfn6vjdna1qm910m"; + sha256 = "15pdq4fxag85qjsrdmmssiq85qsk5vnbp8mrqnpvx8lm8crz6hjl"; }; propagatedBuildInputs = [ pythonPackages.sqlite3 pygtk pythonPackages.pyxdg pygobject ]; preBuild = '' - mkdir -p /tmp/home - export HOME="/tmp/home" + export HOME=$TMP sed -i '/zim_install_class,/d' setup.py ''; @@ -30,8 +29,14 @@ buildPythonApplication rec { preFixup = '' export makeWrapperArgs="--prefix XDG_DATA_DIRS : $out/share --argv0 $out/bin/.zim-wrapped" ''; - # Testing fails. - doCheck = false; + + postFixup = '' + wrapPythonPrograms + substituteInPlace $out/bin/.zim-wrapped \ + --replace "sys.argv[0] = 'zim'" "sys.argv[0] = '$out/bin/zim'" + ''; + + doCheck = true; meta = { description = "A desktop wiki"; From 868082f616b652792cbab430d1bc44ec8fb78821 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 14 Mar 2016 12:11:38 +0100 Subject: [PATCH 0338/1059] sway: fix build Building the manual requires docbook_xsl; in sandboxed environments, the build would fail due to being unable to download missing docbook resources. Also include some minor improvements to the build recipe: - use fetchFromGitHub - move build-time dependencies to nativeBuildInputs xref: https://github.com/NixOS/nixpkgs/pull/13900 --- .../window-managers/sway/default.nix | 30 ++++++++++--------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/pkgs/applications/window-managers/sway/default.nix b/pkgs/applications/window-managers/sway/default.nix index fa81971885a..7f494f3e0f2 100644 --- a/pkgs/applications/window-managers/sway/default.nix +++ b/pkgs/applications/window-managers/sway/default.nix @@ -1,21 +1,23 @@ -{ lib, stdenv, fetchurl, makeWrapper, cmake, pkgconfig -, wayland, wlc, libxkbcommon, pixman, fontconfig, pcre, json_c, asciidoc, libxslt, dbus_libs +{ stdenv, fetchFromGitHub +, makeWrapper, cmake, pkgconfig, asciidoc, libxslt, docbook_xsl +, wayland, wlc, libxkbcommon, pixman, fontconfig, pcre, json_c, dbus_libs }: stdenv.mkDerivation rec { name = "sway-${version}"; version = "git-2016-02-08"; - repo = "https://github.com/SirCmpwn/sway"; - rev = "16e904634c65128610537bed7fcb16ac3bb45165"; - src = fetchurl { - url = "${repo}/archive/${rev}.tar.gz"; - sha256 = "52d6c4b49fea69e2a2c1b44b858908b7736301bdb9ed483c294bc54bb40e872e"; + src = fetchFromGitHub { + owner = "Sircmpwn"; + repo = "sway"; + + rev = "16e904634c65128610537bed7fcb16ac3bb45165"; + sha256 = "04qvdjaarglq3qsjbb9crjkad3y1v7s51bk82sl8w26c71jbhklg"; }; - nativeBuildInputs = [ cmake pkgconfig ]; + nativeBuildInputs = [ makeWrapper cmake pkgconfig asciidoc libxslt docbook_xsl ]; - buildInputs = [ makeWrapper wayland wlc libxkbcommon pixman fontconfig pcre json_c asciidoc libxslt dbus_libs ]; + buildInputs = [ wayland wlc libxkbcommon pixman fontconfig pcre json_c dbus_libs ]; patchPhase = '' sed -i s@/etc/sway@$out/etc/sway@g CMakeLists.txt; @@ -24,17 +26,17 @@ stdenv.mkDerivation rec { makeFlags = "PREFIX=$(out)"; installPhase = "PREFIX=$out make install"; - LD_LIBRARY_PATH = lib.makeLibraryPath [ wlc dbus_libs ]; + LD_LIBRARY_PATH = stdenv.lib.makeLibraryPath [ wlc dbus_libs ]; preFixup = '' wrapProgram $out/bin/sway \ --prefix LD_LIBRARY_PATH : "${LD_LIBRARY_PATH}"; ''; - meta = { + meta = with stdenv.lib; { description = "i3-compatible window manager for Wayland"; homepage = "http://swaywm.org"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + license = licenses.mit; + platforms = platforms.linux; + maintainers = with maintainers; [ ]; }; } From 4a531165b57b03a466199118ada0a1f79ce0daef Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 14 Mar 2016 13:30:50 +0100 Subject: [PATCH 0339/1059] pythonPackages.emoji: specify checkPhase --- 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 fda682b6da2..562103c8dbc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12910,6 +12910,8 @@ in modules // { buildInputs = with self; [ nose ]; + checkPhase = ''nosetests''; + meta = { description = "Emoji for Python"; homepage = https://pypi.python.org/pypi/emoji/; From 4fd22b6a7082e5dd29e4d3ccdfede54b87eee274 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Mon, 14 Mar 2016 14:37:09 +0100 Subject: [PATCH 0340/1059] khal: add setuptools_scm to dependencies This is required because vdirsyncer does not depend on it at runtime anymore. --- pkgs/applications/misc/khal/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/misc/khal/default.nix b/pkgs/applications/misc/khal/default.nix index ab55e3618ec..9f083592c40 100644 --- a/pkgs/applications/misc/khal/default.nix +++ b/pkgs/applications/misc/khal/default.nix @@ -24,6 +24,7 @@ python3Packages.buildPythonApplication rec { urwid pkginfo ]; + buildInputs = with python3Packages; [ setuptools_scm ]; meta = with stdenv.lib; { homepage = http://lostpackets.de/khal/; From aef5836e3cbc98137eab9149c3b986b2553a652a Mon Sep 17 00:00:00 2001 From: Raymond Gauthier Date: Fri, 11 Mar 2016 16:15:40 -0500 Subject: [PATCH 0341/1059] 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 62f47641b1da7f686d1bf8cbf00d9b03d61d55bd Mon Sep 17 00:00:00 2001 From: Raymond Gauthier Date: Fri, 11 Mar 2016 15:23:03 -0500 Subject: [PATCH 0342/1059] smartgithg: 7.1.0 -> 7.1.2 Also fixes broken download link. --- .../applications/version-management/smartgithg/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/version-management/smartgithg/default.nix b/pkgs/applications/version-management/smartgithg/default.nix index 420031a8101..292d6fc934b 100644 --- a/pkgs/applications/version-management/smartgithg/default.nix +++ b/pkgs/applications/version-management/smartgithg/default.nix @@ -8,11 +8,11 @@ stdenv.mkDerivation rec { name = "smartgithg-${version}"; - version = "7_1_0"; + version = "7_1_2"; src = fetchurl { - url = "http://www.syntevo.com/downloads/smartgit/smartgit-linux-${version}.tar.gz"; - sha256 = "0nlv2ipmv3z1j4642gfsrpsgc2y4mxngiz6mz3nidrbrkz0ylsvy"; + url = "http://www.syntevo.com/static/smart/download/smartgit/smartgit-linux-${version}.tar.gz"; + sha256 = "18jw4g2akhj6h9w8378kacv7ws35ndcnc3kkhci9iypwy432ak8d"; }; buildInputs = [ @@ -58,5 +58,6 @@ stdenv.mkDerivation rec { homepage = http://www.syntevo.com/smartgit/; license = licenses.unfree; platforms = platforms.linux; + maintainers = with stdenv.lib.maintainers; [ jraygauthier ]; }; } From fb0fcdddd503b6601ed51fb5a78563ed170371fb Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Mon, 14 Mar 2016 09:31:08 -0500 Subject: [PATCH 0343/1059] samba: 4.3.1 -> 4.3.6 for CVE-2015-7560 CVE-2016-0771 --- pkgs/servers/samba/4.x.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/samba/4.x.nix b/pkgs/servers/samba/4.x.nix index 4ef47122c28..0f3b9bb7a65 100644 --- a/pkgs/servers/samba/4.x.nix +++ b/pkgs/servers/samba/4.x.nix @@ -18,11 +18,11 @@ with lib; stdenv.mkDerivation rec { - name = "samba-4.3.1"; + name = "samba-4.3.6"; src = fetchurl { url = "mirror://samba/pub/samba/stable/${name}.tar.gz"; - sha256 = "10ic9pxsk3ml5ycmi0bql8wraxhbr2l4fhzd0qwmiqmrjl6sh24r"; + sha256 = "0929fpk2pq4v389naai519xvsm9bzpar4jlgjxwlx1cnn6jyql9j"; }; patches = From b76f557887e4c9b7b926687c4a1eea079e5c9735 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Mon, 14 Mar 2016 09:46:55 -0500 Subject: [PATCH 0344/1059] g-wrap: Upstream sha256 changed --- pkgs/development/tools/guile/g-wrap/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/guile/g-wrap/default.nix b/pkgs/development/tools/guile/g-wrap/default.nix index 14777b95b85..6cce86a8062 100644 --- a/pkgs/development/tools/guile/g-wrap/default.nix +++ b/pkgs/development/tools/guile/g-wrap/default.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation rec { name = "g-wrap-1.9.15"; src = fetchurl { url = "mirror://savannah/g-wrap/${name}.tar.gz"; - sha256 = "140fcvp24pqmfmiibhjxl3s75hj26ln7pkl2wxas84lnchbj9m4d"; + sha256 = "0ak0bha37dfpj9kmyw1r8fj8nva639aw5xr66wr5gd3l1rqf5xhg"; }; # Note: Glib support is optional, but it's quite useful (e.g., it's From ddbb28844dcf5189db3ee51ad914c0ecd9256e78 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Mon, 14 Mar 2016 09:58:18 -0500 Subject: [PATCH 0345/1059] stardict: 3.0.3 is broken by upstream deleting 3.0.3 --- pkgs/applications/misc/stardict/stardict.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/misc/stardict/stardict.nix b/pkgs/applications/misc/stardict/stardict.nix index 600642f488a..16ca7957c12 100644 --- a/pkgs/applications/misc/stardict/stardict.nix +++ b/pkgs/applications/misc/stardict/stardict.nix @@ -40,5 +40,6 @@ stdenv.mkDerivation rec { description = "An international dictionary supporting fuzzy and glob style matching"; license = stdenv.lib.licenses.lgpl3; maintainers = with stdenv.lib.maintainers; [qknight]; + broken = true; }; } From 6ff5821be681d6569638f8a7a71022a08a9b3fb5 Mon Sep 17 00:00:00 2001 From: Rickard Nilsson Date: Mon, 14 Mar 2016 17:24:36 +0100 Subject: [PATCH 0346/1059] nixos/filesystems: Fix fs options type error --- nixos/modules/tasks/filesystems.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/tasks/filesystems.nix b/nixos/modules/tasks/filesystems.nix index 4d1466db22d..dd351306cb6 100644 --- a/nixos/modules/tasks/filesystems.nix +++ b/nixos/modules/tasks/filesystems.nix @@ -93,7 +93,7 @@ let config = { mountPoint = mkDefault name; device = mkIf (config.fsType == "tmpfs") (mkDefault config.fsType); - options = mkIf config.autoResize "x-nixos.autoresize"; + options = mkIf config.autoResize [ "x-nixos.autoresize" ]; # -F needed to allow bare block device without partitions formatOptions = mkIf ((builtins.substring 0 3 config.fsType) == "ext") (mkDefault "-F"); From 561f93d59c2541398f4fa494bb9e8ccc33b53617 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 14 Mar 2016 15:50:36 +0100 Subject: [PATCH 0347/1059] htop: fetchFromGitHub -> fetchurl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Just call `fetchurl` on the ‘official’ download link. `fetchFromGitHub` was introduced in 54916ba, and stayed around when we moved back to a regular release. Which worked fine, but required keeping `autoreconfHook` and some `postPatch` hackery which can now both be dropped. Thanks to @kragniz for drawing my attention to this. --- pkgs/os-specific/linux/htop/default.nix | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/pkgs/os-specific/linux/htop/default.nix b/pkgs/os-specific/linux/htop/default.nix index de18378a32b..ce82ca9a5e4 100644 --- a/pkgs/os-specific/linux/htop/default.nix +++ b/pkgs/os-specific/linux/htop/default.nix @@ -1,22 +1,15 @@ -{ fetchFromGitHub, stdenv, autoreconfHook, ncurses }: +{ fetchurl, stdenv, ncurses }: stdenv.mkDerivation rec { name = "htop-${version}"; version = "2.0.1"; - src = fetchFromGitHub { - sha256 = "0llj8ixgyjjq9vymsiysv7qnlc7f04jzm6lc9wm7nhcnymn7jg8z"; - rev = version; - repo = "htop"; - owner = "hishamhm"; + src = fetchurl { + sha256 = "0rjn9ybqx5sav7z4gn18f1q6k23nmqyb6yydfgghzdznz9nn447l"; + url = "http://hisham.hm/htop/releases/${version}/${name}.tar.gz"; }; buildInputs = [ ncurses ]; - nativeBuildInputs = [ autoreconfHook ]; - - postPatch = '' - touch *.h */*.h # unnecessary regeneration requires Python - ''; meta = { description = "An interactive process viewer for Linux"; From a506ebf2ec271ddec60e0108cece037e8d5718af Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 14 Mar 2016 15:57:03 +0100 Subject: [PATCH 0348/1059] htop: add licence; myself as a de-facto maintainer --- pkgs/os-specific/linux/htop/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/os-specific/linux/htop/default.nix b/pkgs/os-specific/linux/htop/default.nix index ce82ca9a5e4..946b44346ab 100644 --- a/pkgs/os-specific/linux/htop/default.nix +++ b/pkgs/os-specific/linux/htop/default.nix @@ -11,10 +11,11 @@ stdenv.mkDerivation rec { buildInputs = [ ncurses ]; - meta = { + meta = with stdenv.lib; { description = "An interactive process viewer for Linux"; - homepage = "http://htop.sourceforge.net"; - platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ rob simons relrod ]; + homepage = http://htop.sourceforge.net; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ rob simons relrod nckx ]; }; } From 2404cd4286ae3e8efe76073b45c3324e647fbb3e Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sun, 13 Mar 2016 16:22:06 +0100 Subject: [PATCH 0349/1059] libpsl: list 2016-02-25 -> 2016-03-10 --- pkgs/development/libraries/libpsl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libpsl/default.nix b/pkgs/development/libraries/libpsl/default.nix index 231216cbc69..74fc4270b80 100644 --- a/pkgs/development/libraries/libpsl/default.nix +++ b/pkgs/development/libraries/libpsl/default.nix @@ -3,10 +3,10 @@ let - listVersion = "2016-02-25"; + listVersion = "2016-03-10"; listSources = fetchFromGitHub { - sha256 = "0i9aa0bl3x50z0ba4n06pajpfncw8n780hhql13b1vppgfc6s4i7"; - rev = "84fd7e2a090f53ba4378f2a0e08cdaaa882ce3e5"; + sha256 = "10kc0b41y5cn0cnqvalz9i14j1dj6b9wgr21zz3ngqf943q6z5r9"; + rev = "1e52b7efc42b1505f9580ec15a1d692523db4a3b"; repo = "list"; owner = "publicsuffix"; }; From 530214321d0d2057f2d89e10426834e17059a207 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 14 Mar 2016 18:34:29 +0100 Subject: [PATCH 0350/1059] tevent, ldb: security updates needed for samba I managed to find no news or changelog on these, so it's rather a black box to me, but it's clear that (some) bumps were required for samba. --- pkgs/development/libraries/ldb/default.nix | 4 ++-- pkgs/development/libraries/tevent/default.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/ldb/default.nix b/pkgs/development/libraries/ldb/default.nix index a26d8094e39..d266a97535e 100644 --- a/pkgs/development/libraries/ldb/default.nix +++ b/pkgs/development/libraries/ldb/default.nix @@ -3,11 +3,11 @@ }: stdenv.mkDerivation rec { - name = "ldb-1.1.23"; + name = "ldb-1.1.26"; src = fetchurl { url = "mirror://samba/ldb/${name}.tar.gz"; - sha256 = "0ncmwgga6q9v7maiywgw21w6rb3149m1w2ca11yq8k5j0izjz2wg"; + sha256 = "1rmjv12pf57vga8s5z9p9d90rlfckc1lqjbcp89r83cq5fkwfhw8"; }; buildInputs = [ diff --git a/pkgs/development/libraries/tevent/default.nix b/pkgs/development/libraries/tevent/default.nix index 4b77ced250b..95eb0255bdc 100644 --- a/pkgs/development/libraries/tevent/default.nix +++ b/pkgs/development/libraries/tevent/default.nix @@ -3,11 +3,11 @@ }: stdenv.mkDerivation rec { - name = "tevent-0.9.26"; + name = "tevent-0.9.28"; src = fetchurl { url = "mirror://samba/tevent/${name}.tar.gz"; - sha256 = "1gbh6d2m49j1v2hkaiyrh8bj02i5wxd4hqayzk2g44yyivbi8b16"; + sha256 = "0a9ml52jjnzz7qg9z750mavlvs1yibjwrzy4yl55dc95j0vm7n84"; }; buildInputs = [ From 68d30cdfcb51529c5f8f581e4db668ac5a0ef187 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Mon, 14 Mar 2016 19:09:54 +0000 Subject: [PATCH 0351/1059] NixOS 16.09 is called Flounder chosen by @zimbatm as our documentation hero in 16.03 --- nixos/modules/misc/version.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/misc/version.nix b/nixos/modules/misc/version.nix index 18f270cd531..f12ecc1b88e 100644 --- a/nixos/modules/misc/version.nix +++ b/nixos/modules/misc/version.nix @@ -104,7 +104,7 @@ in nixosVersion = mkDefault (maybeEnv "NIXOS_VERSION" (cfg.nixosRelease + cfg.nixosVersionSuffix)); # Note: code names must only increase in alphabetical order. - nixosCodeName = "Emu"; + nixosCodeName = "Flounder"; }; # Generate /etc/os-release. See From 2c8cb42c7148f861a7d8d60ca766f47ed7c1d90d Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Mon, 14 Mar 2016 11:16:46 -0500 Subject: [PATCH 0352/1059] d4x: Update download URL to fedora, d4k.krasu.ru no longer exists --- pkgs/applications/misc/d4x/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/d4x/default.nix b/pkgs/applications/misc/d4x/default.nix index 3c146249dd0..cdcada196b9 100644 --- a/pkgs/applications/misc/d4x/default.nix +++ b/pkgs/applications/misc/d4x/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { inherit boost; src = fetchurl { - url = http://d4x.krasu.ru/files/d4x-2.5.7.1.tar.bz2; + url = http://pkgs.fedoraproject.org/repo/pkgs/d4x/d4x-2.5.7.1.tar.bz2/68d6336c3749a7caabb0f5a5f84f4102/d4x-2.5.7.1.tar.bz2; sha256 = "1i1jj02bxynisqapv31481sz9jpfp3f023ky47spz1v1wlwbs13m"; }; From f16533449269bf798cd49eac41ba876b71eeddc0 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Mon, 14 Mar 2016 14:38:42 -0500 Subject: [PATCH 0353/1059] eduke32: 20150420-5160 moved to the old releases directory Close #13922. --- pkgs/games/eduke32/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/games/eduke32/default.nix b/pkgs/games/eduke32/default.nix index beb2bb57908..a4f296da039 100644 --- a/pkgs/games/eduke32/default.nix +++ b/pkgs/games/eduke32/default.nix @@ -2,6 +2,7 @@ , pkgconfig, SDL2, SDL2_mixer }: let + year = "2015"; date = "20150420"; rev = "5160"; in stdenv.mkDerivation rec { @@ -9,7 +10,7 @@ in stdenv.mkDerivation rec { version = "${date}-${rev}"; src = fetchurl { - url = "http://dukeworld.duke4.net/eduke32/synthesis/${version}/eduke32_src_${version}.tar.xz"; + url = "http://dukeworld.duke4.net/eduke32/synthesis/old/${year}/${version}/eduke32_src_${version}.tar.xz"; sha256 = "1nlq5jbglg00c1z1vsyl627fh0mqfxvk5qyxav5vzla2b4svik2v"; }; From c310cb9e469a156c8de2ca3a89c470f519f5c332 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Mon, 14 Mar 2016 09:18:57 -0500 Subject: [PATCH 0354/1059] graphite2: security update 1.2.4 -> 1.3.6 (close #13918) CVE-2016-1977 CVE-2016-2790 CVE-2016-2791 CVE-2016-2792 CVE-2016-2793 CVE-2016-2794 CVE-2016-2795 CVE-2016-2796 CVE-2016-2797 CVE-2016-2798 CVE-2016-2799 CVE-2016-2800 CVE-2016-2801 CVE-2016-2802 vcunat fixed the tarball name and redirected to github. --- pkgs/development/libraries/silgraphite/graphite2.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/silgraphite/graphite2.nix b/pkgs/development/libraries/silgraphite/graphite2.nix index 83f64d1eb00..4e23a36939d 100644 --- a/pkgs/development/libraries/silgraphite/graphite2.nix +++ b/pkgs/development/libraries/silgraphite/graphite2.nix @@ -1,12 +1,13 @@ { stdenv, fetchurl, pkgconfig, freetype, cmake }: stdenv.mkDerivation rec { - version = "1.2.4"; + version = "1.3.6"; name = "graphite2-${version}"; src = fetchurl { - url = "mirror://sourceforge/silgraphite/graphite2/${name}.tgz"; - sha256 = "00xhv1mp640fr3wmdzwn4yz0g56jd4r9fb7b02mc1g19h0bdbhsb"; + url = "https://github.com/silnrsi/graphite/releases/download/" + + "${version}/graphite-${version}.tgz"; + sha256 = "0xdg6bc02bl8yz39l5i2skczfg17q4lif0qqan0dhvk0mibpcpj7"; }; buildInputs = [ pkgconfig freetype cmake ]; From 2aae2af8452a4ba45721cfb32016313046826625 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Mon, 14 Mar 2016 15:20:18 -0500 Subject: [PATCH 0355/1059] ilbc: extract-cfile.awk has fallen off the internet Close #13923. --- pkgs/development/libraries/ilbc/default.nix | 6 +---- .../libraries/ilbc/extract-cfile.awk | 24 +++++++++++++++++++ 2 files changed, 25 insertions(+), 5 deletions(-) create mode 100644 pkgs/development/libraries/ilbc/extract-cfile.awk diff --git a/pkgs/development/libraries/ilbc/default.nix b/pkgs/development/libraries/ilbc/default.nix index d77b5d46a79..0ea2949659c 100644 --- a/pkgs/development/libraries/ilbc/default.nix +++ b/pkgs/development/libraries/ilbc/default.nix @@ -3,11 +3,7 @@ stdenv.mkDerivation rec { name = "ilbc-rfc3951"; - script = fetchurl { - url = http://ilbcfreeware.org/documentation/extract-cfile.txt; - name = "extract-cfile.awk"; - sha256 = "0md76qlszaras9grrxaq7xfxn1yikmz4qqgnjj6y50jg31yr5wyd"; - }; + script = ./extract-cfile.awk; rfc3951 = fetchurl { url = http://www.ietf.org/rfc/rfc3951.txt; diff --git a/pkgs/development/libraries/ilbc/extract-cfile.awk b/pkgs/development/libraries/ilbc/extract-cfile.awk new file mode 100644 index 00000000000..e4b07bc0896 --- /dev/null +++ b/pkgs/development/libraries/ilbc/extract-cfile.awk @@ -0,0 +1,24 @@ +BEGIN { srcname = "nothing"; } +{ if (/^A\.[0-9][0-9]*\.* *[a-zA-Z][a-zA-Z_0-9]*\.[ch]/) { + if (srcname != "nothing") + close(srcname); + srcname = $2; + printf("creating source file %s\n", srcname); + }else if (srcname != "nothing") { + if (/Andersen,* *et* *al\./) + printf("skipping %s\n", $0); + else if (/ /) + printf("skipping2 %s\n", $0); + else if (/Internet Low Bit Rate Codec *December 2004/) + printf("skipping3 %s\n", $0); + else if (/Authors' *Addresses/){ + close(srcname); + exit;} + else + print $0 >> srcname; + } +} +END { + printf("ending file %s\n", srcname); + close(srcname); +} From a5d8256df4a5dcb757ccd1ed227f13434b33f72c Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Mon, 14 Mar 2016 21:29:42 +0000 Subject: [PATCH 0356/1059] grsecurity: 4.4.4 -> 4.4.5 --- pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix | 4 ++-- pkgs/os-specific/linux/kernel/patches.nix | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix index 6819dfedb13..36181308a8b 100644 --- a/pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix +++ b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.4.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.4.4"; + version = "4.4.5"; extraMeta.branch = "4.4"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0b4190mwmxf329n16yl32my7dfi02pi7qf39a8v61sl9b2gxffad"; + sha256 = "1daavrj2msl85aijh1izfm1cwf14c7mi75hldzidr1h2v629l89h"; }; kernelPatches = args.kernelPatches; diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index cf3b6c73ca1..67f6ad9c94a 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -102,9 +102,9 @@ rec { grsecurity_4_4 = grsecPatch { kernel = pkgs.grsecurity_base_linux_4_4; patches = [ grsecurity_fix_path_4_4 ]; - kversion = "4.4.4"; - revision = "201603032158"; - sha256 = "18b8dmwn4qwrd7i838d9dlfk9fn7m4bjab5583p3980yayxqpa3k"; + kversion = "4.4.5"; + revision = "201603131305"; + sha256 = "04k4nhshl6r5n41ha5620s7cd70dmmmvyf9mnn5359jr1720kxpf"; }; grsecurity_latest = grsecurity_4_4; From 86f1579266db4e65571f83acb1400f9943d1d1fb Mon Sep 17 00:00:00 2001 From: zimbatm Date: Wed, 2 Mar 2016 10:05:01 +0000 Subject: [PATCH 0357/1059] 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 0358/1059] 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 0359/1059] 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 0360/1059] 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 ab1008014df76ae4f40491b3cfc889fc40a66067 Mon Sep 17 00:00:00 2001 From: Tanner Doshier Date: Fri, 11 Mar 2016 12:57:15 -0600 Subject: [PATCH 0361/1059] tarsnap: 1.0.36.1 -> 1.0.37 --- nixos/modules/services/backup/tarsnap.nix | 2 +- pkgs/tools/backup/tarsnap/default.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/backup/tarsnap.nix b/nixos/modules/services/backup/tarsnap.nix index 78776786468..24892a2a59a 100644 --- a/nixos/modules/services/backup/tarsnap.nix +++ b/nixos/modules/services/backup/tarsnap.nix @@ -293,7 +293,7 @@ in # make sure that the tarsnap server is reachable after systemd starts up # the service - therefore we sleep in a loop until we can ping the # endpoint. - preStart = "while ! ping -q -c 1 betatest-server.tarsnap.com &> /dev/null; do sleep 3; done"; + preStart = "while ! ping -q -c 1 v1-0-0-server.tarsnap.com &> /dev/null; do sleep 3; done"; scriptArgs = "%i"; script = '' mkdir -p -m 0755 ${dirOf cfg.cachedir} diff --git a/pkgs/tools/backup/tarsnap/default.nix b/pkgs/tools/backup/tarsnap/default.nix index f2ae4e83ad1..95823bedad6 100644 --- a/pkgs/tools/backup/tarsnap/default.nix +++ b/pkgs/tools/backup/tarsnap/default.nix @@ -8,11 +8,11 @@ let in stdenv.mkDerivation rec { name = "tarsnap-${version}"; - version = "1.0.36.1"; + version = "1.0.37"; src = fetchurl { url = "https://www.tarsnap.com/download/tarsnap-autoconf-${version}.tgz"; - sha256 = "1446l8g39bi5xxk4x1ijc1qjrj824729887gcffig0zrw80rx452"; + sha256 = "1ynv323qi6775lzjb6hvifl8ajkv2bizy43sajadjfqvcl9r96gs"; }; preConfigure = '' From d9cf99225b7205ce521daab968d4b16e5e91a5c2 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Mon, 14 Mar 2016 23:28:55 +0000 Subject: [PATCH 0362/1059] 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 dbf41ebee7e68289b4ca4d8468f1d8345cbe08f7 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Mon, 14 Mar 2016 20:12:04 -0500 Subject: [PATCH 0363/1059] mysql_jdbc: 5.1.32 -> 5.1.38 --- pkgs/servers/sql/mysql/jdbc/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/sql/mysql/jdbc/default.nix b/pkgs/servers/sql/mysql/jdbc/default.nix index 59643fa3e00..e6c66707c4e 100644 --- a/pkgs/servers/sql/mysql/jdbc/default.nix +++ b/pkgs/servers/sql/mysql/jdbc/default.nix @@ -1,12 +1,12 @@ {stdenv, fetchurl, ant, unzip}: stdenv.mkDerivation { - name = "mysql-connector-java-5.1.32"; + name = "mysql-connector-java-5.1.38"; builder = ./builder.sh; src = fetchurl { - url = http://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.32.zip; - sha256 = "11vjwws1pa8fdwn86rrmqdwsq3ld3sh2r0pp4lpr2gxw0w18ykc7"; + url = http://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.38.zip; + sha256 = "0b1j2dylnpk6b17gn3168qdrrwq8kdil57nxrd08n1lnkirdsx33"; }; buildInputs = [ unzip ant ]; From 665e79324e8a9f80e7e10adce8ccd36c9aa829de Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Tue, 15 Mar 2016 02:34:53 +0100 Subject: [PATCH 0364/1059] 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 0365/1059] 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 0366/1059] 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 0367/1059] 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 0368/1059] 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 0369/1059] 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 0370/1059] 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 0371/1059] 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 0372/1059] 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 0373/1059] 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 0374/1059] 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 0375/1059] 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 0376/1059] 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 0377/1059] 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 0378/1059] 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 0379/1059] 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 0380/1059] 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 0381/1059] 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 0382/1059] 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 0383/1059] 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 0384/1059] 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 0385/1059] 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 0386/1059] 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 0387/1059] 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 0388/1059] 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 0389/1059] 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 0390/1059] 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 0391/1059] 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 0392/1059] 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 0393/1059] 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 0394/1059] 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 0395/1059] 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 0396/1059] .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 0397/1059] 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 0398/1059] 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 0399/1059] 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 0400/1059] 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 0401/1059] 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 0402/1059] 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 0403/1059] 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 0404/1059] 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 0405/1059] 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 0406/1059] 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 0407/1059] 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 0408/1059] 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 0409/1059] 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 0410/1059] 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 0411/1059] 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 0412/1059] 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 0413/1059] 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 0414/1059] 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 0415/1059] 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 0416/1059] 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 0417/1059] 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 0418/1059] 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 0419/1059] 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 0420/1059] 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 0421/1059] 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 0422/1059] 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 0423/1059] 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 0424/1059] 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 0425/1059] 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 0426/1059] 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 0427/1059] 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 0428/1059] 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 0429/1059] 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 0430/1059] 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 0431/1059] 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 0432/1059] 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 0433/1059] 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 0434/1059] 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 0435/1059] 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 0436/1059] 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 0437/1059] 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 0438/1059] 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 0439/1059] 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 0440/1059] 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 0441/1059] 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 0442/1059] 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 0443/1059] 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 0444/1059] 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 0445/1059] 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 0446/1059] 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 0447/1059] 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 0448/1059] 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 0449/1059] 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 0450/1059] 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 0451/1059] 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 0452/1059] 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 0453/1059] 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 0454/1059] 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 0455/1059] 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 0456/1059] 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 0457/1059] 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 0458/1059] 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 0459/1059] 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 0460/1059] 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 0461/1059] 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 0462/1059] 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 0463/1059] 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 0464/1059] 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 0465/1059] 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 0466/1059] 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 0467/1059] 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 0468/1059] 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 0469/1059] 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 0470/1059] 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 0471/1059] 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 0472/1059] 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 0473/1059] 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 0474/1059] 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 0475/1059] 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 0476/1059] 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 0477/1059] 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 0478/1059] 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 0479/1059] 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 0480/1059] 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 0481/1059] 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 0482/1059] 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 0483/1059] =?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 0484/1059] 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 0485/1059] 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 0486/1059] 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 0487/1059] 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 0488/1059] 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 0489/1059] 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 0490/1059] 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 0491/1059] 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 0492/1059] 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 0493/1059] 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 0494/1059] 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 0495/1059] 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 0496/1059] 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 0497/1059] 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 0498/1059] 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 0499/1059] 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 0500/1059] 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 0501/1059] 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 0502/1059] 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 0503/1059] 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 0504/1059] 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 0505/1059] 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 0506/1059] 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 0507/1059] 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 0508/1059] 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 0509/1059] 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 0510/1059] 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 0511/1059] 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 0512/1059] 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 0513/1059] 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 0514/1059] 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 0515/1059] 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 0516/1059] 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 0517/1059] 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 0518/1059] 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 0519/1059] 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 0520/1059] 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 0521/1059] 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 0522/1059] 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 0523/1059] 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 0524/1059] 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 0525/1059] 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 0526/1059] 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 0527/1059] 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 0528/1059] 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 0529/1059] 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 0530/1059] 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 0531/1059] 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 0532/1059] 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 0533/1059] 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 0534/1059] 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 0535/1059] 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 0536/1059] 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 0537/1059] 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 0538/1059] 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 0539/1059] 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 0540/1059] 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 0541/1059] 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 0542/1059] 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 0543/1059] 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 0544/1059] 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 0545/1059] 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 0546/1059] 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 0547/1059] 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 0548/1059] 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 0549/1059] 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 0550/1059] 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 0551/1059] 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 0552/1059] 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 0553/1059] 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 0554/1059] 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 0555/1059] 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 0556/1059] 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 0557/1059] 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 0558/1059] 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 0559/1059] 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 0560/1059] 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 0561/1059] 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 0562/1059] 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 0563/1059] 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 0564/1059] 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 0565/1059] 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 0566/1059] 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 0567/1059] 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 0568/1059] 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 0569/1059] 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 0570/1059] 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 0571/1059] 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 0572/1059] 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 0573/1059] 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 0574/1059] 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 0575/1059] 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 0576/1059] 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 0577/1059] 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 0578/1059] 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 0579/1059] 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 0580/1059] 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 0581/1059] 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 0582/1059] 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 0583/1059] 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 0584/1059] 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 0585/1059] 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 0586/1059] 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 0587/1059] 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 0588/1059] 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 0589/1059] 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 0590/1059] 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 0591/1059] 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 0592/1059] 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 0593/1059] 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 0594/1059] 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 0595/1059] 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 0596/1059] 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 0597/1059] 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 0598/1059] 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 0599/1059] 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 0600/1059] 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 0601/1059] 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 0602/1059] 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 0603/1059] 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 0604/1059] 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 0605/1059] 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 0606/1059] 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 0607/1059] 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 0608/1059] 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 0609/1059] 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 0610/1059] 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 0611/1059] 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 0612/1059] 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 0613/1059] 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 0614/1059] 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 0615/1059] 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 0616/1059] 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 0617/1059] 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 0618/1059] 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 0619/1059] 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 0620/1059] 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 0621/1059] 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 0622/1059] 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 0623/1059] 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 0624/1059] 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 0625/1059] 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 0626/1059] 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 0627/1059] 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 0628/1059] 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 0629/1059] 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 0630/1059] 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 0631/1059] 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 0632/1059] 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 0633/1059] 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 0634/1059] 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 0635/1059] 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 0636/1059] 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 0637/1059] 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 0638/1059] 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 0639/1059] 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 0640/1059] 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 0641/1059] 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 0642/1059] 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 0643/1059] 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 0644/1059] 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 0645/1059] 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 0646/1059] 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 0647/1059] 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 0648/1059] 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 0649/1059] 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 0650/1059] 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 0651/1059] 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 0652/1059] 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 0653/1059] 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 0654/1059] 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 0655/1059] 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 0656/1059] 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 0657/1059] 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 0658/1059] 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 0659/1059] 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 0660/1059] 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 0661/1059] 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 0662/1059] 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 0663/1059] 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 0664/1059] 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 0665/1059] 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 0666/1059] 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 0667/1059] 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 0668/1059] 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 0669/1059] 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 0670/1059] 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 0671/1059] 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 0672/1059] 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 0673/1059] 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 0674/1059] 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 0675/1059] 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 0676/1059] 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 0677/1059] 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 0678/1059] 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 0679/1059] 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 0680/1059] 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 0681/1059] 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 0682/1059] 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 0683/1059] 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 0684/1059] 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 0685/1059] 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 0686/1059] 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 0687/1059] 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 0688/1059] 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 0689/1059] 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 0690/1059] 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 0691/1059] 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 0692/1059] 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 0693/1059] 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 0694/1059] 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 0695/1059] 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 0696/1059] 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 0697/1059] 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 0698/1059] 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 0699/1059] 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 0700/1059] 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 0701/1059] 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 0702/1059] 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 0703/1059] 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 0704/1059] 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 0705/1059] 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 0706/1059] 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 0707/1059] 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 0708/1059] 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 0709/1059] 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 0710/1059] 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 0711/1059] 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 0712/1059] 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 0713/1059] 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 0714/1059] 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 0715/1059] 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 0716/1059] 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 0717/1059] 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 0718/1059] 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 0719/1059] 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 0720/1059] 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 0721/1059] 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 0722/1059] 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 0723/1059] 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 0724/1059] 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 0725/1059] 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 0726/1059] 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 0727/1059] 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 0728/1059] 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 0729/1059] 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 0730/1059] 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 0731/1059] 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 0732/1059] 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 0733/1059] 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 0734/1059] 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 0735/1059] 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 0736/1059] 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 0737/1059] 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 0738/1059] 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 0739/1059] 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 0740/1059] 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 0741/1059] 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 0742/1059] 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 0743/1059] 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 0744/1059] 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 0745/1059] 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 0746/1059] 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 0747/1059] 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 0748/1059] 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 0749/1059] 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 0750/1059] 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 0751/1059] 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 0752/1059] 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 0753/1059] 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 0754/1059] 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 0755/1059] 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 0756/1059] 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 0757/1059] 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 0758/1059] 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 0759/1059] 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 0760/1059] 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 0761/1059] 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 0762/1059] 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 0763/1059] 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 0764/1059] 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 0765/1059] 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 0766/1059] 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 0767/1059] 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 0768/1059] 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 0769/1059] 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 0770/1059] 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 0771/1059] 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 0772/1059] 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 0773/1059] 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 0774/1059] 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 0775/1059] 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 0776/1059] 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 0777/1059] 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 0778/1059] 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 0779/1059] 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 0780/1059] 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 0781/1059] 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 0782/1059] 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 0783/1059] 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 0784/1059] 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 0785/1059] 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 0786/1059] 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 0787/1059] 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 0788/1059] 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 0789/1059] 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 0790/1059] 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 0791/1059] 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 0792/1059] 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 0793/1059] 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 0794/1059] 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 0795/1059] 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 0796/1059] 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 0797/1059] 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 0798/1059] 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 0799/1059] 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 0800/1059] 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 0801/1059] 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 0802/1059] 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 0803/1059] 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 0804/1059] 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 0805/1059] 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 0806/1059] 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 0807/1059] 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 0808/1059] 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 0809/1059] 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 0810/1059] 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 0811/1059] 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 0812/1059] 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 0813/1059] 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 0814/1059] 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 0815/1059] 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 0816/1059] 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 0817/1059] 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 0818/1059] 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 0819/1059] 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 0820/1059] 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 0821/1059] 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 0822/1059] 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 0823/1059] 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 0824/1059] 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 0825/1059] 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 0826/1059] 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 0827/1059] 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 0828/1059] 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 0829/1059] 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 0830/1059] =?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 0831/1059] 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 0832/1059] 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 0833/1059] 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 a4d741ef9deb66d84ad22ec4c33c15eaea9e9c39 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Thu, 24 Mar 2016 19:25:42 +0000 Subject: [PATCH 0834/1059] ppp: Include convenience scripts --- pkgs/tools/networking/ppp/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/tools/networking/ppp/default.nix b/pkgs/tools/networking/ppp/default.nix index 43349178211..dd07e53ee6f 100644 --- a/pkgs/tools/networking/ppp/default.nix +++ b/pkgs/tools/networking/ppp/default.nix @@ -22,6 +22,16 @@ stdenv.mkDerivation rec { buildInputs = [ libpcap ]; + installPhase = '' + mkdir -p $out/bin + make install + install -D -m 755 scripts/{pon,poff,plog} $out/bin + ''; + + postFixup = '' + substituteInPlace $out/bin/{pon,poff,plog} --replace "/usr/sbin" "$out/bin" + ''; + meta = { homepage = https://ppp.samba.org/; description = "Point-to-point implementation for Linux and Solaris"; From 87ad35e336bcaefc0254c01d76c5e2356c315e43 Mon Sep 17 00:00:00 2001 From: "Nicolas B. Pierron" Date: Sun, 20 Mar 2016 20:03:18 +0000 Subject: [PATCH 0835/1059] 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 0836/1059] 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 0837/1059] 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 0838/1059] 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 0839/1059] 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 0840/1059] 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 0841/1059] 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 0842/1059] 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 0843/1059] 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 0844/1059] 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 0845/1059] 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 0846/1059] 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 0847/1059] 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 0848/1059] 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 0849/1059] 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 0850/1059] 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 0851/1059] 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 0852/1059] 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 0853/1059] 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 0854/1059] 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 0855/1059] 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 0856/1059] 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 0857/1059] 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 0858/1059] 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 0859/1059] 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 0860/1059] 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 0861/1059] 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 0862/1059] 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 0863/1059] 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 0864/1059] 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 0865/1059] 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 0866/1059] 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 0867/1059] 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 0868/1059] 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 0869/1059] 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 0870/1059] 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 0871/1059] 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 0872/1059] 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 0873/1059] 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 0874/1059] 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 0875/1059] 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 0876/1059] 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 772ab40c525e15e46f35b192d036ef06872d0d59 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sat, 26 Mar 2016 11:54:21 +0000 Subject: [PATCH 0877/1059] django packaging: remove remaining uses of makeOverridable for django-depending packages --- pkgs/top-level/python-packages.nix | 42 +++++++++++++++--------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 88c238ef8b4..39e47be572b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8278,7 +8278,7 @@ in modules // { }; }; - django_redis = makeOverridable ({ django ? self.django }: buildPythonPackage rec { + django_redis = buildPythonPackage rec { name = "django-redis-${version}"; version = "4.2.0"; @@ -8289,18 +8289,18 @@ in modules // { buildInputs = [ self.mock ]; - propagatedBuildInputs = [ django ] ++ - (with self; [ - redis - msgpack - ]); + propagatedBuildInputs = with self; [ + django + redis + msgpack + ]; meta = { description = "Full featured redis cache backend for Django"; homepage = https://github.com/niwibe/django-redis; license = licenses.bsd3; }; - }) {}; + }; django_reversion = buildPythonPackage rec { name = "django-reversion-${version}"; @@ -8322,7 +8322,7 @@ in modules // { }; }; - django_silk = makeOverridable ({ django ? self.django }: buildPythonPackage rec { + django_silk = buildPythonPackage rec { name = "django-silk-${version}"; version = "0.5.6"; @@ -8333,25 +8333,25 @@ in modules // { buildInputs = [ self.mock ]; - propagatedBuildInputs = [ django ] ++ - (with self; [ - pygments - simplejson - dateutil - requests2 - sqlparse - jinja2 - autopep8 - pytz - pillow - ]); + propagatedBuildInputs = with self; [ + django + pygments + simplejson + dateutil + requests2 + sqlparse + jinja2 + autopep8 + pytz + pillow + ]; meta = { description = "Silky smooth profiling for the Django Framework"; homepage = https://github.com/mtford90/silk; license = licenses.mit; }; - }) {}; + }; django_taggit = buildPythonPackage rec { name = "django-taggit-${version}"; From 1f78d14028a653829d6acca207a8ad3a8ae9520e Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 26 Mar 2016 13:18:48 +0100 Subject: [PATCH 0878/1059] 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 0879/1059] 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 0880/1059] 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 0881/1059] 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 0882/1059] 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 0883/1059] 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 8b0076b887beeb6623121a6313d1a22eccf9a29b Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 26 Mar 2016 11:44:26 +0300 Subject: [PATCH 0884/1059] avidemux: 2.5.6 -> 2.6.12 --- pkgs/applications/video/avidemux/default.nix | 127 ++++++++++++++---- .../video/avidemux/dynamic_install_dir.patch | 12 ++ pkgs/applications/video/avidemux/wrapper.nix | 29 ++++ pkgs/top-level/all-packages.nix | 6 +- 4 files changed, 144 insertions(+), 30 deletions(-) create mode 100644 pkgs/applications/video/avidemux/dynamic_install_dir.patch create mode 100644 pkgs/applications/video/avidemux/wrapper.nix diff --git a/pkgs/applications/video/avidemux/default.nix b/pkgs/applications/video/avidemux/default.nix index 485d8c54eb3..3ffc18e3b18 100644 --- a/pkgs/applications/video/avidemux/default.nix +++ b/pkgs/applications/video/avidemux/default.nix @@ -1,46 +1,115 @@ -{stdenv, fetchurl, cmake, pkgconfig, libxml2, qt4, gtk, gettext, SDL, -libXv, pixman, libpthreadstubs, libXau, libXdmcp, libxslt, x264, -alsaLib, lame, faad2, libvorbis, yasm, libvpx, xvidcore, libva, -faac ? null, faacSupport ? false }: +{ stdenv, lib, fetchurl, cmake, pkgconfig, lndir +, zlib, gettext, libvdpau, libva, libXv, sqlite, x265 +, yasm, fribidi, gtk3, qt4 +, withX264 ? true, x264 +, withLAME ? true, lame +, withFAAC ? true, faac +, withVorbis ? true, libvorbis +, withPulse ? true, libpulseaudio +, withFAAD ? true, faad2 +, withOpus ? true, libopus +, withVPX ? true, libvpx +}: -assert stdenv ? glibc; -assert faacSupport -> faac != null; - -stdenv.mkDerivation { - name = "avidemux-2.5.6"; +stdenv.mkDerivation rec { + name = "avidemux-${version}"; + version = "2.6.12"; src = fetchurl { - url = mirror://sourceforge/avidemux/avidemux_2.5.6.tar.gz; - sha256 = "12wvxz0n2g85f079d8mdkkp2zm279d34m9v7qgcqndh48cn7znnn"; + url = "mirror://sourceforge/avidemux/avidemux/${version}/avidemux_${version}.tar.gz"; + sha256 = "0nz52yih8sff53inndkh2dba759xjzsh4b8xjww419lcpk0qp6kn"; }; - buildInputs = [ cmake pkgconfig libxml2 qt4 gtk gettext SDL libXv - pixman libpthreadstubs libXau libXdmcp libxslt x264 alsaLib - lame faad2 libvorbis yasm libvpx xvidcore libva - ] ++ stdenv.lib.optional faacSupport faac; + nativeBuildInputs = [ cmake pkgconfig yasm lndir ]; + buildInputs = [ zlib gettext libvdpau libva libXv sqlite x265 fribidi gtk3 qt4 ] + ++ lib.optional withX264 x264 + ++ lib.optional withLAME lame + ++ lib.optional withFAAC faac + ++ lib.optional withVorbis libvorbis + ++ lib.optional withPulse libpulseaudio + ++ lib.optional withFAAD faad2 + ++ lib.optional withOpus libopus + ++ lib.optional withVPX libvpx + ; - cmakeFlags = "-DPTHREAD_INCLUDE_DIR=${stdenv.glibc}/include" + - " -DGETTEXT_INCLUDE_DIR=${gettext}/include" + - " -DSDL_INCLUDE_DIR=${SDL}/include/SDL"; + enableParallelBuilding = false; - NIX_LDFLAGS="-lpthread"; + outputs = [ "out" "cli" "gtk" "qt4" ]; - postInstall = '' - cd $NIX_BUILD_TOP/$sourceRoot - mkdir build_plugins - cd build_plugins - cmake $cmakeFlags -DAVIDEMUX_INSTALL_PREFIX=$out \ - -DAVIDEMUX_SOURCE_DIR=$NIX_BUILD_TOP/$sourceRoot \ - -DAVIDEMUX_CORECONFIG_DIR=$NIX_BUILD_TOP/$sourceRoot/build/config ../plugins + patches = [ ./dynamic_install_dir.patch ]; - make - make install + buildCommand = '' + unpackPhase + cd "$sourceRoot" + patchPhase + + export cmakeFlags="$cmakeFlags -DAVIDEMUX_SOURCE_DIR=$(pwd)" + + function buildOutput() { + ( plugin_ui="$1" + output_dir="$2" + shift 2 + export cmakeFlags="$cmakeFlags -DPLUGIN_UI=$plugin_ui -DCMAKE_INSTALL_PREFIX=$output_dir" + for i in "$@" avidemux_plugins; do + ( cd "$i" + cmakeConfigurePhase + buildPhase + installPhase + ) + done + rm -rf avidemux_plugins/build + ) + } + + function buildUi() { + plugin_ui="$1" + output_dir="$2" + shift 2 + + # Hack to split builds properly + mkdir -p $output_dir + lndir $out $output_dir + buildOutput $plugin_ui $output_dir "$@" + } + + function fixupUi() { + output_dir="$1" + shift + + find $output_dir -lname $out\* -delete + find $output_dir -type f | while read -r f; do + rpath="$(patchelf --print-rpath $f 2>/dev/null)" || continue + new_rpath="" + IFS=':' read -ra old_rpath <<< "$rpath" + for p in "''${old_rpath[@]}"; do + new_rpath="$new_rpath:$p" + if [[ $p = $output_dir* ]]; then + new_rpath="$new_rpath:$out/''${p#$output_dir}" + fi + done + patchelf --set-rpath "$new_rpath" $f + patchelf --shrink-rpath $f + done + } + + buildOutput COMMON $out avidemux_core + buildOutput SETTINGS $out + buildUi CLI $cli avidemux/cli + buildUi GTK $gtk avidemux/gtk + buildUi QT4 $qt4 avidemux/qt4 + + fixupPhase + + fixupUi $cli + fixupUi $gtk + fixupUi $qt4 ''; meta = { homepage = http://fixounet.free.fr/avidemux/; description = "Free video editor designed for simple video editing tasks"; - maintainers = with stdenv.lib.maintainers; [viric]; + maintainers = with stdenv.lib.maintainers; [ viric abbradar ]; platforms = with stdenv.lib.platforms; linux; + license = stdenv.lib.licenses.gpl2; }; } diff --git a/pkgs/applications/video/avidemux/dynamic_install_dir.patch b/pkgs/applications/video/avidemux/dynamic_install_dir.patch new file mode 100644 index 00000000000..f2f963e5169 --- /dev/null +++ b/pkgs/applications/video/avidemux/dynamic_install_dir.patch @@ -0,0 +1,12 @@ +diff -ru3 avidemux_2.6.12.old/avidemux_core/ADM_core/src/ADM_fileio.cpp avidemux_2.6.12/avidemux_core/ADM_core/src/ADM_fileio.cpp +--- avidemux_2.6.12.old/avidemux_core/ADM_core/src/ADM_fileio.cpp 2016-03-25 15:26:00.368213627 +0300 ++++ avidemux_2.6.12/avidemux_core/ADM_core/src/ADM_fileio.cpp 2016-03-26 02:32:56.163550537 +0300 +@@ -393,7 +393,7 @@ + + return ADM_getRelativePath(buffer, base1, base2, base3); + #else +- return ADM_getRelativePath(ADM_INSTALL_DIR, base1, base2, base3); ++ return ADM_getRelativePath(getenv("ADM_ROOT_DIR"), base1, base2, base3); + #endif + } + diff --git a/pkgs/applications/video/avidemux/wrapper.nix b/pkgs/applications/video/avidemux/wrapper.nix new file mode 100644 index 00000000000..ad41f56d39d --- /dev/null +++ b/pkgs/applications/video/avidemux/wrapper.nix @@ -0,0 +1,29 @@ +{ buildEnv, avidemux, makeWrapper +# GTK version is broken upstream, see https://bugzilla.redhat.com/show_bug.cgi?id=1244340 +, withUi ? "qt4" +}: + +let + ui = builtins.getAttr withUi avidemux; + +in buildEnv { + name = "avidemux-${withUi}-" + avidemux.version; + + paths = [ avidemux ui ]; + + buildInputs = [ makeWrapper ]; + + postBuild = '' + # TODO: This could be avoided if buildEnv could be forced to create all directories + if [ -L $out/bin ]; then + rm $out/bin + mkdir $out/bin + for i in ${ui}/bin/*; do + ln -s $i $out/bin + done + fi + for i in $out/bin/*; do + wrapProgram $i --set ADM_ROOT_DIR $out + done + ''; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7f0ab25e92e..3e5ef30d5ef 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11479,7 +11479,11 @@ in autopanosiftc = callPackage ../applications/graphics/autopanosiftc { }; - avidemux = callPackage ../applications/video/avidemux { }; + avidemux_unwrapped = callPackage ../applications/video/avidemux { }; + + avidemux = callPackage ../applications/video/avidemux/wrapper.nix { + avidemux = avidemux_unwrapped; + }; avogadro = callPackage ../applications/science/chemistry/avogadro { eigen = eigen2; From 6448c94e5789a108dc9e9c5f6e5d67669dcf27c3 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 26 Mar 2016 14:56:06 +0100 Subject: [PATCH 0885/1059] 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 0886/1059] 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 0887/1059] 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 0888/1059] 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 0889/1059] 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 0890/1059] 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 0891/1059] 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 0892/1059] 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 0893/1059] 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 0894/1059] 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 0895/1059] 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 0896/1059] 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 0897/1059] 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 0898/1059] 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 0899/1059] 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 0900/1059] 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 0901/1059] 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 0902/1059] 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 0903/1059] 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 0904/1059] 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 0905/1059] 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 0906/1059] 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 0907/1059] 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 0908/1059] 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 0909/1059] 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 0910/1059] 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 0911/1059] 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 0912/1059] 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 0913/1059] 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 0914/1059] 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 0915/1059] 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 0916/1059] 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 a314814c19fa9744ee3f3c333a1c00b27574b90e Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Wed, 23 Mar 2016 15:33:28 +0800 Subject: [PATCH 0917/1059] tmux nixos module: add nixos program module for tmux This basic module allows you to specify the tmux configuration. As great as tmux is, some of the defaults are pretty awful, so having a way to specify the config really helps. --- nixos/modules/module-list.nix | 1 + nixos/modules/programs/tmux.nix | 35 +++++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 nixos/modules/programs/tmux.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 3dd60ad99dc..934fb56bc10 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -77,6 +77,7 @@ ./programs/shell.nix ./programs/ssh.nix ./programs/ssmtp.nix + ./programs/tmux.nix ./programs/venus.nix ./programs/wvdial.nix ./programs/xfs_quota.nix diff --git a/nixos/modules/programs/tmux.nix b/nixos/modules/programs/tmux.nix new file mode 100644 index 00000000000..4220a2e17b3 --- /dev/null +++ b/nixos/modules/programs/tmux.nix @@ -0,0 +1,35 @@ +{ config, pkgs, lib, ... }: + +let + inherit (lib) mkOption mkEnableOption mkIf mkMerge types; + + cfg = config.programs.tmux; + +in +{ + ###### interface + + options = { + programs.tmux = { + + enable = mkEnableOption "tmux - a screen replacement."; + + tmuxconf = mkOption { + default = ""; + description = '' + The contents of /etc/tmux.conf + ''; + type = types.lines; + }; + }; + }; + + ###### implementation + + config = mkIf cfg.enable { + environment = { + systemPackages = [ pkgs.tmux ]; + etc."tmux.conf".text = cfg.tmuxconf; + }; + }; +} From 6911785c03d5e5fccc9cc95781a96c08108c94a2 Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Sun, 27 Mar 2016 15:08:23 +0800 Subject: [PATCH 0918/1059] 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 0919/1059] 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 0920/1059] 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 0921/1059] 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 0922/1059] 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 0923/1059] 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 0924/1059] 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 0925/1059] 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 0926/1059] 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 0927/1059] 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 0928/1059] 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 0929/1059] 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 0930/1059] 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 0931/1059] 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 0932/1059] 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 0933/1059] 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 0934/1059] 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 0935/1059] 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 0936/1059] 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 0937/1059] 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 0938/1059] 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 0939/1059] 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 e5aaefd7b9fc1aeb770038d901c54acc7eabd3b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Sun, 27 Mar 2016 12:07:45 -0300 Subject: [PATCH 0940/1059] xmlto: 0.0.26 -> 0.0.28 --- pkgs/tools/typesetting/xmlto/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/typesetting/xmlto/default.nix b/pkgs/tools/typesetting/xmlto/default.nix index 49fe7dc681f..9d050558f6d 100644 --- a/pkgs/tools/typesetting/xmlto/default.nix +++ b/pkgs/tools/typesetting/xmlto/default.nix @@ -1,12 +1,12 @@ { fetchurl, stdenv, flex, libxml2, libxslt -, docbook_xml_dtd_42, docbook_xsl, w3m +, docbook_xml_dtd_45, docbook_xsl, w3m , bash, getopt, makeWrapper }: stdenv.mkDerivation rec { - name = "xmlto-0.0.26"; + name = "xmlto-0.0.28"; src = fetchurl { url = "http://fedorahosted.org/releases/x/m/xmlto/${name}.tar.bz2"; - sha256 = "1v5mahfg5k9lh3anykl482xnrgxn36zlmqsgwahw29xwncprpd7g"; + sha256 = "0xhj8b2pwp4vhl9y16v3dpxpsakkflfamr191mprzsspg4xdyc0i"; }; patchPhase = '' @@ -20,7 +20,8 @@ stdenv.mkDerivation rec { # `libxml2' provides `xmllint', needed at build-time and run-time. # `libxslt' provides `xsltproc', used by `xmlto' at run-time. - buildInputs = [ libxml2 libxslt docbook_xml_dtd_42 docbook_xsl getopt makeWrapper ]; + nativeBuildInputs = [ makeWrapper ]; + buildInputs = [ libxml2 libxslt docbook_xml_dtd_45 docbook_xsl getopt ]; postInstall = '' wrapProgram "$out/bin/xmlto" \ From dd16dcbba4a69b85b64ac043cebee5a8538c4fb4 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 27 Mar 2016 20:05:21 +0200 Subject: [PATCH 0941/1059] 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 0942/1059] 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 0943/1059] 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 0944/1059] 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 b9137334683315095cddcc63c9660917cc00023f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Sun, 27 Mar 2016 08:29:09 -0300 Subject: [PATCH 0945/1059] docbook-xsl: 1.78.1 -> 1.79.1 --- pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix b/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix index 863f6044402..5d395e38365 100644 --- a/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix +++ b/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix @@ -3,7 +3,7 @@ let common = { pname, sha256 }: stdenv.mkDerivation rec { - name = "${pname}-1.78.1"; + name = "${pname}-1.79.1"; src = fetchurl { url = "mirror://sourceforge/docbook/${name}.tar.bz2"; @@ -36,12 +36,12 @@ in { docbook_xsl = common { pname = "docbook-xsl"; - sha256 = "0rxl013ncmz1n6ymk2idvx3hix9pdabk8xn01cpcv32wmfb753y9"; + sha256 = "0s59lihif2fr7rznckxr2kfyrvkirv76r1zvidp9b5mj28p4apvj"; }; docbook_xsl_ns = common { pname = "docbook-xsl-ns"; - sha256 = "1x3sc0axk9z3i6n0jhlsmzlmb723a4sjgslm9g12by6phirdx3ng"; + sha256 = "170ggf5dgjar65kkn5n33kvjr3pdinpj66nnxfx8b2avw0k91jin"; }; } From 0b96e0daf3d3cd0a01056612c8bf33739d2082e5 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sun, 27 Mar 2016 20:28:45 +0000 Subject: [PATCH 0946/1059] osrm-backend: 4.5.0 -> 4.9.1 --- pkgs/servers/osrm-backend/4.5.0-openmp.patch | 18 ------------------ pkgs/servers/osrm-backend/default.nix | 8 ++++---- 2 files changed, 4 insertions(+), 22 deletions(-) delete mode 100644 pkgs/servers/osrm-backend/4.5.0-openmp.patch diff --git a/pkgs/servers/osrm-backend/4.5.0-openmp.patch b/pkgs/servers/osrm-backend/4.5.0-openmp.patch deleted file mode 100644 index f4010131f60..00000000000 --- a/pkgs/servers/osrm-backend/4.5.0-openmp.patch +++ /dev/null @@ -1,18 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index b6a40f9..87ca301 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -261,9 +261,10 @@ target_link_libraries(OSRM ${STXXL_LIBRARY}) - target_link_libraries(osrm-extract ${STXXL_LIBRARY}) - target_link_libraries(osrm-prepare ${STXXL_LIBRARY}) - --if(MINGW) -- # STXXL needs OpenMP library -- target_link_libraries(osrm-extract gomp) -+find_package(OpenMP) -+if (OPENMP_FOUND) -+ set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}") -+ set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}") - endif() - - find_package( OSMPBF REQUIRED ) diff --git a/pkgs/servers/osrm-backend/default.nix b/pkgs/servers/osrm-backend/default.nix index 9c1dd23b39f..23c3b237c57 100644 --- a/pkgs/servers/osrm-backend/default.nix +++ b/pkgs/servers/osrm-backend/default.nix @@ -1,17 +1,17 @@ {stdenv, fetchFromGitHub, cmake, luabind, libosmpbf, stxxl, tbb, boost, expat, protobuf, bzip2, zlib, substituteAll}: stdenv.mkDerivation rec { - name = "osrm-backend-4.5.0"; + name = "osrm-backend-${version}"; + version = "4.9.1"; src = fetchFromGitHub { - rev = "v4.5.0"; + rev = "v${version}"; owner = "Project-OSRM"; repo = "osrm-backend"; - sha256 = "19a8d1llvsrysyk1q48dpmh75qcbibfjlszndrysk11yh62hdvsz"; + sha256 = "1r4dwniwxgfppnb9asdh98w5qxqwkjhp9gc5fabmck0gk73cwkcc"; }; patches = [ - ./4.5.0-openmp.patch ./4.5.0-gcc-binutils.patch (substituteAll { src = ./4.5.0-default-profile-path.template.patch; 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 0947/1059] 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 0948/1059] 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 0949/1059] 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 0950/1059] 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 0951/1059] 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 0952/1059] 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 0953/1059] 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 0954/1059] 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 0955/1059] 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 cc51d7c30e0ae36d3806b3e733ba9e979fb0d45b Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 28 Mar 2016 00:07:35 +0200 Subject: [PATCH 0956/1059] Revert "xmlto: 0.0.26 -> 0.0.28" This reverts commit e5aaefd7b9fc1aeb770038d901c54acc7eabd3b8. I jumped the gun on this, sorry --- pkgs/tools/typesetting/xmlto/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/typesetting/xmlto/default.nix b/pkgs/tools/typesetting/xmlto/default.nix index 9d050558f6d..49fe7dc681f 100644 --- a/pkgs/tools/typesetting/xmlto/default.nix +++ b/pkgs/tools/typesetting/xmlto/default.nix @@ -1,12 +1,12 @@ { fetchurl, stdenv, flex, libxml2, libxslt -, docbook_xml_dtd_45, docbook_xsl, w3m +, docbook_xml_dtd_42, docbook_xsl, w3m , bash, getopt, makeWrapper }: stdenv.mkDerivation rec { - name = "xmlto-0.0.28"; + name = "xmlto-0.0.26"; src = fetchurl { url = "http://fedorahosted.org/releases/x/m/xmlto/${name}.tar.bz2"; - sha256 = "0xhj8b2pwp4vhl9y16v3dpxpsakkflfamr191mprzsspg4xdyc0i"; + sha256 = "1v5mahfg5k9lh3anykl482xnrgxn36zlmqsgwahw29xwncprpd7g"; }; patchPhase = '' @@ -20,8 +20,7 @@ stdenv.mkDerivation rec { # `libxml2' provides `xmllint', needed at build-time and run-time. # `libxslt' provides `xsltproc', used by `xmlto' at run-time. - nativeBuildInputs = [ makeWrapper ]; - buildInputs = [ libxml2 libxslt docbook_xml_dtd_45 docbook_xsl getopt ]; + buildInputs = [ libxml2 libxslt docbook_xml_dtd_42 docbook_xsl getopt makeWrapper ]; postInstall = '' wrapProgram "$out/bin/xmlto" \ From 0fc7b78de4c92e2b7bacc393e271c4eedf9f2579 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 28 Mar 2016 00:07:53 +0200 Subject: [PATCH 0957/1059] Revert "docbook-xsl: 1.78.1 -> 1.79.1" This reverts commit b9137334683315095cddcc63c9660917cc00023f. I jumped the gun on this, sorry --- pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix b/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix index 5d395e38365..863f6044402 100644 --- a/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix +++ b/pkgs/data/sgml+xml/stylesheets/xslt/docbook-xsl/default.nix @@ -3,7 +3,7 @@ let common = { pname, sha256 }: stdenv.mkDerivation rec { - name = "${pname}-1.79.1"; + name = "${pname}-1.78.1"; src = fetchurl { url = "mirror://sourceforge/docbook/${name}.tar.bz2"; @@ -36,12 +36,12 @@ in { docbook_xsl = common { pname = "docbook-xsl"; - sha256 = "0s59lihif2fr7rznckxr2kfyrvkirv76r1zvidp9b5mj28p4apvj"; + sha256 = "0rxl013ncmz1n6ymk2idvx3hix9pdabk8xn01cpcv32wmfb753y9"; }; docbook_xsl_ns = common { pname = "docbook-xsl-ns"; - sha256 = "170ggf5dgjar65kkn5n33kvjr3pdinpj66nnxfx8b2avw0k91jin"; + sha256 = "1x3sc0axk9z3i6n0jhlsmzlmb723a4sjgslm9g12by6phirdx3ng"; }; } 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 0958/1059] 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 0959/1059] 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 0960/1059] 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 0961/1059] 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 0962/1059] 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 0963/1059] 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 0964/1059] 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 0965/1059] 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 0966/1059] 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 0967/1059] 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 0968/1059] 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 0969/1059] 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 0970/1059] 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 0971/1059] 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 0972/1059] 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 0973/1059] 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 0974/1059] 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 0975/1059] 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 0976/1059] 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 0977/1059] 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 0978/1059] 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 0979/1059] 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 0980/1059] 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 0981/1059] 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 0982/1059] 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 5ca8c23b2ab96164bb8652d95c740ebc0e498d52 Mon Sep 17 00:00:00 2001 From: Rodney Lorrimar Date: Sat, 26 Mar 2016 14:21:23 +0000 Subject: [PATCH 0983/1059] nodePackages.bower: 1.4.1 -> 1.7.7 --- pkgs/top-level/node-packages-generated.nix | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/node-packages-generated.nix b/pkgs/top-level/node-packages-generated.nix index 12d0aff2616..dbe500aea5e 100644 --- a/pkgs/top-level/node-packages-generated.nix +++ b/pkgs/top-level/node-packages-generated.nix @@ -4477,7 +4477,24 @@ os = [ ]; cpu = [ ]; }; - "bower" = self.by-version."bower"."1.4.1"; + by-version."bower"."1.7.7" = self.buildNodePackage { + name = "bower-1.7.7"; + version = "1.7.7"; + bin = true; + src = fetchurl { + url = "http://registry.npmjs.org/bower/-/bower-1.7.7.tgz"; + name = "bower-1.7.7.tgz"; + sha1 = "2fd7ff3ebdcba5a8ffcd84c397c8fdfe9f825f92"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "bower" = self.by-version."bower"."1.7.7"; by-spec."bower".">=1.2.8 <2" = self.by-version."bower"."1.4.1"; by-spec."bower-config"."^0.6.1" = From 156b05ae48fb24ba270609f5908d5f6d09f3f5ba Mon Sep 17 00:00:00 2001 From: Rodney Lorrimar Date: Sat, 26 Mar 2016 14:23:38 +0000 Subject: [PATCH 0984/1059] nodePackages.typescript: 1.5.0-alpha -> 1.8.9 --- pkgs/top-level/node-packages-generated.nix | 25 +++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/node-packages-generated.nix b/pkgs/top-level/node-packages-generated.nix index dbe500aea5e..ae365e3bd79 100644 --- a/pkgs/top-level/node-packages-generated.nix +++ b/pkgs/top-level/node-packages-generated.nix @@ -42014,8 +42014,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."typescript"."*" = - self.by-version."typescript"."1.5.0-alpha"; by-version."typescript"."1.5.0-alpha" = self.buildNodePackage { name = "typescript-1.5.0-alpha"; version = "1.5.0-alpha"; @@ -42033,7 +42031,28 @@ os = [ ]; cpu = [ ]; }; - "typescript" = self.by-version."typescript"."1.5.0-alpha"; + by-version."typescript"."1.8.9" = self.buildNodePackage { + name = "typescript-1.8.9"; + version = "1.8.9"; + bin = true; + src = fetchurl { + url = "http://registry.npmjs.org/typescript/-/typescript-1.8.9.tgz"; + name = "typescript-1.8.9.tgz"; + sha1 = "b3b3a74059fd31cbd3ecad95d62465939e7ed5fa"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."typescript"."*" = + self.by-version."typescript"."1.8.9"; + by-spec."typescript"."~1.8.9" = + self.by-version."typescript"."1.8.9"; + "typescript" = self.by-version."typescript"."1.8.9"; by-spec."typewiselite"."~1.0.0" = self.by-version."typewiselite"."1.0.0"; by-version."typewiselite"."1.0.0" = self.buildNodePackage { From 457eddd18f180af2a2fd6285feeae7250b535281 Mon Sep 17 00:00:00 2001 From: Rodney Lorrimar Date: Sat, 26 Mar 2016 14:27:24 +0000 Subject: [PATCH 0985/1059] bower2nix: 2.1.0 -> 3.0.1 1. Update bower2nix version and add new/updated dependencies into node-packages-generated.nix. This was done manually, with npm2nix generating the initial set of derivations. In future, it would be nice to have an automatic process (see #10358, #9332). 2. Add an override to nodePackages.bower2nix wrapping the commands so that git is on the PATH. 3. Update fetchbower to support new command-line options of bower2nix, and to allow github URL tag versions. --- pkgs/build-support/fetchbower/default.nix | 37 +- pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/node-packages-generated.nix | 3978 +++++++++++++++++++- pkgs/top-level/node-packages.json | 1 - pkgs/top-level/node-packages.nix | 6 + 5 files changed, 3963 insertions(+), 61 deletions(-) diff --git a/pkgs/build-support/fetchbower/default.nix b/pkgs/build-support/fetchbower/default.nix index 057beb999b2..11d88ae10e9 100644 --- a/pkgs/build-support/fetchbower/default.nix +++ b/pkgs/build-support/fetchbower/default.nix @@ -1,11 +1,26 @@ -{ stdenv, fetch-bower, git }: name: version: target: outputHash: stdenv.mkDerivation { - name = "${name}-${version}"; - buildCommand = '' - out=$PWD/out fetch-bower "${name}" "${version}" "${target}" - cp -R out $out - ''; - outputHashMode = "recursive"; - outputHashAlgo = "sha256"; - inherit outputHash; - buildInputs = [git fetch-bower]; -} +{ stdenv, lib, bower2nix }: +let + bowerVersion = version: + let + components = lib.splitString "#" version; + hash = lib.last components; + ver = if builtins.length components == 1 then version else hash; + in ver; + + fetchbower = name: version: target: outputHash: stdenv.mkDerivation { + name = "${name}-${bowerVersion version}"; + buildCommand = '' + fetch-bower --quiet --out=$PWD/out "${name}" "${target}" "${version}" + # In some cases, the result of fetchBower is different depending + # on the output directory (e.g. if the bower package contains + # symlinks). So use a local output directory before copying to + # $out. + cp -R out $out + ''; + outputHashMode = "recursive"; + outputHashAlgo = "sha256"; + inherit outputHash; + buildInputs = [ bower2nix ]; + }; + +in fetchbower diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9c458eb9130..1ec3fa9cd96 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -171,7 +171,7 @@ in }; fetchbower = callPackage ../build-support/fetchbower { - inherit (nodePackages) fetch-bower; + inherit (nodePackages) bower2nix; }; fetchbzr = callPackage ../build-support/fetchbzr { }; diff --git a/pkgs/top-level/node-packages-generated.nix b/pkgs/top-level/node-packages-generated.nix index ae365e3bd79..7cd7245edd8 100644 --- a/pkgs/top-level/node-packages-generated.nix +++ b/pkgs/top-level/node-packages-generated.nix @@ -4650,35 +4650,30 @@ cpu = [ ]; }; by-spec."bower2nix"."*" = - self.by-version."bower2nix"."2.1.0"; - by-version."bower2nix"."2.1.0" = self.buildNodePackage { - name = "bower2nix-2.1.0"; - version = "2.1.0"; - bin = true; + self.by-version."bower2nix"."3.0.1"; + by-version."bower2nix"."3.0.1" = self.buildNodePackage { + name = "bower2nix-3.0.1"; + version = "3.0.1"; src = fetchurl { - url = "http://registry.npmjs.org/bower2nix/-/bower2nix-2.1.0.tgz"; - name = "bower2nix-2.1.0.tgz"; - sha1 = "213f507a729b20a1c3cb48f995a034f9c05f53e6"; + url = "http://registry.npmjs.org/bower2nix/-/bower2nix-3.0.1.tgz"; + name = "bower2nix-3.0.1.tgz"; + sha256 = "0jfrz2mvnx3fp2p76dcnw18c1vajladbqcrzapf93jh8h6715msi"; }; deps = { - "temp-0.6.0" = self.by-version."temp"."0.6.0"; - "fs.extra-1.3.2" = self.by-version."fs.extra"."1.3.2"; - "bower-json-0.4.0" = self.by-version."bower-json"."0.4.0"; + "argparse-1.0.4" = self.by-version."argparse"."1.0.4"; + "bower-1.7.7" = self.by-version."bower"."1.7.7"; "bower-endpoint-parser-0.2.1" = self.by-version."bower-endpoint-parser"."0.2.1"; + "bower-json-0.6.0" = self.by-version."bower-json"."0.6.0"; "bower-logger-0.2.1" = self.by-version."bower-logger"."0.2.1"; - "bower-1.4.1" = self.by-version."bower"."1.4.1"; - "argparse-0.1.15" = self.by-version."argparse"."0.1.15"; - "clone-0.1.11" = self.by-version."clone"."0.1.11"; - "semver-2.3.2" = self.by-version."semver"."2.3.2"; - "fetch-bower-2.0.0" = self.by-version."fetch-bower"."2.0.0"; + "fs-extra-0.26.7" = self.by-version."fs-extra"."0.26.7"; + "lodash-4.2.1" = self.by-version."lodash"."4.2.1"; + "promised-temp-0.1.0" = self.by-version."promised-temp"."0.1.0"; + "semver-5.1.0" = self.by-version."semver"."5.1.0"; + "temp-0.8.3" = self.by-version."temp"."0.8.3"; + "glob-6.0.4" = self.by-version."glob"."6.0.4"; }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; }; - "bower2nix" = self.by-version."bower2nix"."2.1.0"; + "bower2nix" = self.by-version."bower2nix"."3.0.1"; by-spec."bplist-parser"."0.0.6" = self.by-version."bplist-parser"."0.0.6"; by-version."bplist-parser"."0.0.6" = self.buildNodePackage { @@ -14812,32 +14807,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."fetch-bower"."*" = - self.by-version."fetch-bower"."2.0.0"; - by-version."fetch-bower"."2.0.0" = self.buildNodePackage { - name = "fetch-bower-2.0.0"; - version = "2.0.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/fetch-bower/-/fetch-bower-2.0.0.tgz"; - name = "fetch-bower-2.0.0.tgz"; - sha1 = "c027feb75a512001d1287bbfb3ffaafba67eb92f"; - }; - deps = { - "bower-endpoint-parser-0.2.1" = self.by-version."bower-endpoint-parser"."0.2.1"; - "bower-logger-0.2.1" = self.by-version."bower-logger"."0.2.1"; - "bower-1.4.1" = self.by-version."bower"."1.4.1"; - "glob-3.2.11" = self.by-version."glob"."3.2.11"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "fetch-bower" = self.by-version."fetch-bower"."2.0.0"; - by-spec."fetch-bower".">=2 <3" = - self.by-version."fetch-bower"."2.0.0"; by-spec."fields"."~0.1.22" = self.by-version."fields"."0.1.23"; by-version."fields"."0.1.23" = self.buildNodePackage { @@ -45553,4 +45522,3917 @@ os = [ ]; cpu = [ ]; }; + by-spec."ansi-regex"."^2.0.0" = + self.by-version."ansi-regex"."2.0.0"; + by-version."ansi-regex"."2.0.0" = self.buildNodePackage { + name = "ansi-regex-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz"; + name = "ansi-regex-2.0.0.tgz"; + sha1 = "c5061b6e0ef8a81775e50f5d66151bf6bf371107"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ansi-styles"."^2.1.0" = + self.by-version."ansi-styles"."2.2.0"; + by-version."ansi-styles"."2.2.0" = self.buildNodePackage { + name = "ansi-styles-2.2.0"; + version = "2.2.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.0.tgz"; + name = "ansi-styles-2.2.0.tgz"; + sha1 = "c59191936e6ed1c1315a4b6b6b97f3acfbfa68b0"; + }; + deps = { + "color-convert-1.0.0" = self.by-version."color-convert"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."argparse"."1.0.4" = + self.by-version."argparse"."1.0.4"; + by-version."argparse"."1.0.4" = self.buildNodePackage { + name = "argparse-1.0.4"; + version = "1.0.4"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/argparse/-/argparse-1.0.4.tgz"; + name = "argparse-1.0.4.tgz"; + sha1 = "2b12247b933001971addcbfe4e67d20fd395bbf4"; + }; + deps = { + "lodash-4.6.1" = self.by-version."lodash"."4.6.1"; + "sprintf-js-1.0.3" = self.by-version."sprintf-js"."1.0.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "argparse" = self.by-version."argparse"."1.0.4"; + by-spec."argparse"."^1.0.2" = + self.by-version."argparse"."1.0.7"; + by-version."argparse"."1.0.7" = self.buildNodePackage { + name = "argparse-1.0.7"; + version = "1.0.7"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/argparse/-/argparse-1.0.7.tgz"; + name = "argparse-1.0.7.tgz"; + sha1 = "c289506480557810f14a8bc62d7a06f63ed7f951"; + }; + deps = { + "sprintf-js-1.0.3" = self.by-version."sprintf-js"."1.0.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."array-find-index"."^1.0.0" = + self.by-version."array-find-index"."1.0.1"; + by-version."array-find-index"."1.0.1" = self.buildNodePackage { + name = "array-find-index-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/array-find-index/-/array-find-index-1.0.1.tgz"; + name = "array-find-index-1.0.1.tgz"; + sha1 = "0bc25ddac941ec8a496ae258fd4ac188003ef3af"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."asn1".">=0.2.3 <0.3.0" = + self.by-version."asn1"."0.2.3"; + by-version."asn1"."0.2.3" = self.buildNodePackage { + name = "asn1-0.2.3"; + version = "0.2.3"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz"; + name = "asn1-0.2.3.tgz"; + sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."assert-plus".">=0.2.0 <0.3.0" = + self.by-version."assert-plus"."0.2.0"; + by-version."assert-plus"."0.2.0" = self.buildNodePackage { + name = "assert-plus-0.2.0"; + version = "0.2.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz"; + name = "assert-plus-0.2.0.tgz"; + sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."assert-plus"."^0.2.0" = + self.by-version."assert-plus"."0.2.0"; + by-spec."assert-plus"."^1.0.0" = + self.by-version."assert-plus"."1.0.0"; + by-version."assert-plus"."1.0.0" = self.buildNodePackage { + name = "assert-plus-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; + name = "assert-plus-1.0.0.tgz"; + sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."assertion-error"."^1.0.0" = + self.by-version."assertion-error"."1.0.1"; + by-version."assertion-error"."1.0.1" = self.buildNodePackage { + name = "assertion-error-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/assertion-error/-/assertion-error-1.0.1.tgz"; + name = "assertion-error-1.0.1.tgz"; + sha1 = "35aaeec33097f11f42399ecadf33faccd27f5c4c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."async"."^1.5.2" = + self.by-version."async"."1.5.2"; + by-version."async"."1.5.2" = self.buildNodePackage { + name = "async-1.5.2"; + version = "1.5.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/async/-/async-1.5.2.tgz"; + name = "async-1.5.2.tgz"; + sha1 = "ec6a61ae56480c0c3cb241c95618e20892f9672a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."aws-sign2"."~0.6.0" = + self.by-version."aws-sign2"."0.6.0"; + by-version."aws-sign2"."0.6.0" = self.buildNodePackage { + name = "aws-sign2-0.6.0"; + version = "0.6.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz"; + name = "aws-sign2-0.6.0.tgz"; + sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."aws4"."^1.2.1" = + self.by-version."aws4"."1.3.2"; + by-version."aws4"."1.3.2" = self.buildNodePackage { + name = "aws4-1.3.2"; + version = "1.3.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/aws4/-/aws4-1.3.2.tgz"; + name = "aws4-1.3.2.tgz"; + sha1 = "d39e0bee412ced0e8ed94a23e314f313a95b9fd1"; + }; + deps = { + "lru-cache-4.0.1" = self.by-version."lru-cache"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."balanced-match"."^0.3.0" = + self.by-version."balanced-match"."0.3.0"; + by-version."balanced-match"."0.3.0" = self.buildNodePackage { + name = "balanced-match-0.3.0"; + version = "0.3.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz"; + name = "balanced-match-0.3.0.tgz"; + sha1 = "a91cdd1ebef1a86659e70ff4def01625fc2d6756"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."bl"."^0.9.3" = + self.by-version."bl"."0.9.5"; + by-version."bl"."0.9.5" = self.buildNodePackage { + name = "bl-0.9.5"; + version = "0.9.5"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/bl/-/bl-0.9.5.tgz"; + name = "bl-0.9.5.tgz"; + sha1 = "c06b797af085ea00bc527afc8efcf11de2232054"; + }; + deps = { + "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."bl"."~1.0.0" = + self.by-version."bl"."1.0.3"; + by-version."bl"."1.0.3" = self.buildNodePackage { + name = "bl-1.0.3"; + version = "1.0.3"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/bl/-/bl-1.0.3.tgz"; + name = "bl-1.0.3.tgz"; + sha1 = "fc5421a28fd4226036c3b3891a66a25bc64d226e"; + }; + deps = { + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."bluebird"."~1.2.4" = + self.by-version."bluebird"."1.2.4"; + by-version."bluebird"."1.2.4" = self.buildNodePackage { + name = "bluebird-1.2.4"; + version = "1.2.4"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/bluebird/-/bluebird-1.2.4.tgz"; + name = "bluebird-1.2.4.tgz"; + sha1 = "5985ec23cb6ff1a5834cc6447b3c5ef010fd321a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."boom"."2.10.1" = self.buildNodePackage { + name = "boom-2.10.1"; + version = "2.10.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/boom/-/boom-2.10.1.tgz"; + name = "boom-2.10.1.tgz"; + sha1 = "39c8918ceff5799f83f9492a848f625add0c766f"; + }; + deps = { + "hoek-2.16.3" = self.by-version."hoek"."2.16.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "bower-endpoint-parser" = self.by-version."bower-endpoint-parser"."0.2.1"; + by-spec."bower-json"."0.6.0" = + self.by-version."bower-json"."0.6.0"; + by-version."bower-json"."0.6.0" = self.buildNodePackage { + name = "bower-json-0.6.0"; + version = "0.6.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/bower-json/-/bower-json-0.6.0.tgz"; + name = "bower-json-0.6.0.tgz"; + sha1 = "326579b23c33e4ea828e4763c55cd81fd7650329"; + }; + deps = { + "deep-extend-0.4.1" = self.by-version."deep-extend"."0.4.1"; + "ext-name-3.0.0" = self.by-version."ext-name"."3.0.0"; + "graceful-fs-3.0.8" = self.by-version."graceful-fs"."3.0.8"; + "intersect-1.0.1" = self.by-version."intersect"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "bower-json" = self.by-version."bower-json"."0.6.0"; + "bower-logger" = self.by-version."bower-logger"."0.2.1"; + by-version."brace-expansion"."1.1.3" = self.buildNodePackage { + name = "brace-expansion-1.1.3"; + version = "1.1.3"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.3.tgz"; + name = "brace-expansion-1.1.3.tgz"; + sha1 = "46bff50115d47fc9ab89854abb87d98078a10991"; + }; + deps = { + "balanced-match-0.3.0" = self.by-version."balanced-match"."0.3.0"; + "concat-map-0.0.1" = self.by-version."concat-map"."0.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."builtin-modules"."^1.0.0" = + self.by-version."builtin-modules"."1.1.1"; + by-version."builtin-modules"."1.1.1" = self.buildNodePackage { + name = "builtin-modules-1.1.1"; + version = "1.1.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz"; + name = "builtin-modules-1.1.1.tgz"; + sha1 = "270f076c5a72c02f5b65a47df94c5fe3a278892f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."camelcase"."^2.0.0" = + self.by-version."camelcase"."2.1.1"; + by-version."camelcase"."2.1.1" = self.buildNodePackage { + name = "camelcase-2.1.1"; + version = "2.1.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz"; + name = "camelcase-2.1.1.tgz"; + sha1 = "7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."camelcase-keys"."^2.0.0" = + self.by-version."camelcase-keys"."2.1.0"; + by-version."camelcase-keys"."2.1.0" = self.buildNodePackage { + name = "camelcase-keys-2.1.0"; + version = "2.1.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz"; + name = "camelcase-keys-2.1.0.tgz"; + sha1 = "308beeaffdf28119051efa1d932213c91b8f92e7"; + }; + deps = { + "camelcase-2.1.1" = self.by-version."camelcase"."2.1.1"; + "map-obj-1.0.1" = self.by-version."map-obj"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."caseless"."~0.11.0" = + self.by-version."caseless"."0.11.0"; + by-version."caseless"."0.11.0" = self.buildNodePackage { + name = "caseless-0.11.0"; + version = "0.11.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz"; + name = "caseless-0.11.0.tgz"; + sha1 = "715b96ea9841593cc33067923f5ec60ebda4f7d7"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."chalk"."1.1.1" = self.buildNodePackage { + name = "chalk-1.1.1"; + version = "1.1.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/chalk/-/chalk-1.1.1.tgz"; + name = "chalk-1.1.1.tgz"; + sha1 = "509afb67066e7499f7eb3535c77445772ae2d019"; + }; + deps = { + "ansi-styles-2.2.0" = self.by-version."ansi-styles"."2.2.0"; + "escape-string-regexp-1.0.5" = self.by-version."escape-string-regexp"."1.0.5"; + "has-ansi-2.0.0" = self.by-version."has-ansi"."2.0.0"; + "strip-ansi-3.0.1" = self.by-version."strip-ansi"."3.0.1"; + "supports-color-2.0.0" = self.by-version."supports-color"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."chalk"."^1.1.1" = + self.by-version."chalk"."1.1.1"; + by-spec."color-convert"."^1.0.0" = + self.by-version."color-convert"."1.0.0"; + by-version."color-convert"."1.0.0" = self.buildNodePackage { + name = "color-convert-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/color-convert/-/color-convert-1.0.0.tgz"; + name = "color-convert-1.0.0.tgz"; + sha1 = "3c26fcd885d272d45beacf6e41baba75c89a8579"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."colors"."^1.1.0" = + self.by-version."colors"."1.1.2"; + by-version."colors"."1.1.2" = self.buildNodePackage { + name = "colors-1.1.2"; + version = "1.1.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/colors/-/colors-1.1.2.tgz"; + name = "colors-1.1.2.tgz"; + sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."combined-stream"."^1.0.5" = + self.by-version."combined-stream"."1.0.5"; + by-version."combined-stream"."1.0.5" = self.buildNodePackage { + name = "combined-stream-1.0.5"; + version = "1.0.5"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz"; + name = "combined-stream-1.0.5.tgz"; + sha1 = "938370a57b4a51dea2c77c15d5c5fdf895164009"; + }; + deps = { + "delayed-stream-1.0.0" = self.by-version."delayed-stream"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."combined-stream"."~1.0.5" = + self.by-version."combined-stream"."1.0.5"; + by-spec."commander"."^2.9.0" = + self.by-version."commander"."2.9.0"; + by-version."commander"."2.9.0" = self.buildNodePackage { + name = "commander-2.9.0"; + version = "2.9.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/commander/-/commander-2.9.0.tgz"; + name = "commander-2.9.0.tgz"; + sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4"; + }; + deps = { + "graceful-readlink-1.0.1" = self.by-version."graceful-readlink"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."core-util-is"."1.0.2" = self.buildNodePackage { + name = "core-util-is-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"; + name = "core-util-is-1.0.2.tgz"; + sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."cryptiles"."2.0.5" = self.buildNodePackage { + name = "cryptiles-2.0.5"; + version = "2.0.5"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz"; + name = "cryptiles-2.0.5.tgz"; + sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8"; + }; + deps = { + "boom-2.10.1" = self.by-version."boom"."2.10.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."dashdash".">=1.10.1 <2.0.0" = + self.by-version."dashdash"."1.13.0"; + by-version."dashdash"."1.13.0" = self.buildNodePackage { + name = "dashdash-1.13.0"; + version = "1.13.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/dashdash/-/dashdash-1.13.0.tgz"; + name = "dashdash-1.13.0.tgz"; + sha1 = "a5aae6fd9d8e156624eb0dd9259eb12ba245385a"; + }; + deps = { + "assert-plus-1.0.0" = self.by-version."assert-plus"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."debug"."2.2.0" = self.buildNodePackage { + name = "debug-2.2.0"; + version = "2.2.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/debug/-/debug-2.2.0.tgz"; + name = "debug-2.2.0.tgz"; + sha1 = "f87057e995b1a1f6ae6a4960664137bc56f039da"; + }; + deps = { + "ms-0.7.1" = self.by-version."ms"."0.7.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."decamelize"."^1.1.2" = + self.by-version."decamelize"."1.2.0"; + by-version."decamelize"."1.2.0" = self.buildNodePackage { + name = "decamelize-1.2.0"; + version = "1.2.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"; + name = "decamelize-1.2.0.tgz"; + sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."deep-extend"."^0.4.0" = + self.by-version."deep-extend"."0.4.1"; + by-version."deep-extend"."0.4.1" = self.buildNodePackage { + name = "deep-extend-0.4.1"; + version = "0.4.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/deep-extend/-/deep-extend-0.4.1.tgz"; + name = "deep-extend-0.4.1.tgz"; + sha1 = "efe4113d08085f4e6f9687759810f807469e2253"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."deep-extend"."~0.4.0" = + self.by-version."deep-extend"."0.4.1"; + by-spec."deep-freeze"."0.0.1" = + self.by-version."deep-freeze"."0.0.1"; + by-version."deep-freeze"."0.0.1" = self.buildNodePackage { + name = "deep-freeze-0.0.1"; + version = "0.0.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/deep-freeze/-/deep-freeze-0.0.1.tgz"; + name = "deep-freeze-0.0.1.tgz"; + sha1 = "3a0b0005de18672819dfd38cd31f91179c893e84"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."definition-header"."~0.1.0" = + self.by-version."definition-header"."0.1.0"; + by-version."definition-header"."0.1.0" = self.buildNodePackage { + name = "definition-header-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/definition-header/-/definition-header-0.1.0.tgz"; + name = "definition-header-0.1.0.tgz"; + sha1 = "01445ff4ca663114cbf2c5a1131f13bb544eb5dd"; + }; + deps = { + "joi-4.9.0" = self.by-version."joi"."4.9.0"; + "joi-assert-0.0.3" = self.by-version."joi-assert"."0.0.3"; + "parsimmon-0.5.1" = self.by-version."parsimmon"."0.5.1"; + "xregexp-2.0.0" = self.by-version."xregexp"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."delayed-stream"."~1.0.0" = + self.by-version."delayed-stream"."1.0.0"; + by-version."delayed-stream"."1.0.0" = self.buildNodePackage { + name = "delayed-stream-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"; + name = "delayed-stream-1.0.0.tgz"; + sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."detect-indent"."^0.2.0" = + self.by-version."detect-indent"."0.2.0"; + by-version."detect-indent"."0.2.0" = self.buildNodePackage { + name = "detect-indent-0.2.0"; + version = "0.2.0"; + bin = true; + src = fetchurl { + url = "http://registry.npmjs.org/detect-indent/-/detect-indent-0.2.0.tgz"; + name = "detect-indent-0.2.0.tgz"; + sha1 = "042914498979ac2d9f3c73e4ff3e6877d3bc92b6"; + }; + deps = { + "get-stdin-0.1.0" = self.by-version."get-stdin"."0.1.0"; + "minimist-0.1.0" = self.by-version."minimist"."0.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."diff"."^1.4.0" = + self.by-version."diff"."1.4.0"; + by-version."diff"."1.4.0" = self.buildNodePackage { + name = "diff-1.4.0"; + version = "1.4.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/diff/-/diff-1.4.0.tgz"; + name = "diff-1.4.0.tgz"; + sha1 = "7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."duplexify"."3.4.3" = self.buildNodePackage { + name = "duplexify-3.4.3"; + version = "3.4.3"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/duplexify/-/duplexify-3.4.3.tgz"; + name = "duplexify-3.4.3.tgz"; + sha1 = "af6a7b10d928b095f8ad854d072bb90998db850d"; + }; + deps = { + "end-of-stream-1.0.0" = self.by-version."end-of-stream"."1.0.0"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ecc-jsbn".">=0.0.1 <1.0.0" = + self.by-version."ecc-jsbn"."0.1.1"; + by-version."ecc-jsbn"."0.1.1" = self.buildNodePackage { + name = "ecc-jsbn-0.1.1"; + version = "0.1.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz"; + name = "ecc-jsbn-0.1.1.tgz"; + sha1 = "0fc73a9ed5f0d53c38193398523ef7e543777505"; + }; + deps = { + "jsbn-0.1.0" = self.by-version."jsbn"."0.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ends-with"."^0.2.0" = + self.by-version."ends-with"."0.2.0"; + by-version."ends-with"."0.2.0" = self.buildNodePackage { + name = "ends-with-0.2.0"; + version = "0.2.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/ends-with/-/ends-with-0.2.0.tgz"; + name = "ends-with-0.2.0.tgz"; + sha1 = "2f9da98d57a50cfda4571ce4339000500f4e6b8a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."error-ex"."^1.2.0" = + self.by-version."error-ex"."1.3.0"; + by-version."error-ex"."1.3.0" = self.buildNodePackage { + name = "error-ex-1.3.0"; + version = "1.3.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/error-ex/-/error-ex-1.3.0.tgz"; + name = "error-ex-1.3.0.tgz"; + sha1 = "e67b43f3e82c96ea3a584ffee0b9fc3325d802d9"; + }; + deps = { + "is-arrayish-0.2.1" = self.by-version."is-arrayish"."0.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."escape-string-regexp"."1.0.5" = self.buildNodePackage { + name = "escape-string-regexp-1.0.5"; + version = "1.0.5"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; + name = "escape-string-regexp-1.0.5.tgz"; + sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."esprima"."^2.6.0" = + self.by-version."esprima"."2.7.2"; + by-version."esprima"."2.7.2" = self.buildNodePackage { + name = "esprima-2.7.2"; + version = "2.7.2"; + bin = true; + src = fetchurl { + url = "http://registry.npmjs.org/esprima/-/esprima-2.7.2.tgz"; + name = "esprima-2.7.2.tgz"; + sha1 = "f43be543609984eae44c933ac63352a6af35f339"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."event-stream"."~3.1.5" = + self.by-version."event-stream"."3.1.7"; + by-version."event-stream"."3.1.7" = self.buildNodePackage { + name = "event-stream-3.1.7"; + version = "3.1.7"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/event-stream/-/event-stream-3.1.7.tgz"; + name = "event-stream-3.1.7.tgz"; + sha1 = "b4c540012d0fe1498420f3d8946008db6393c37a"; + }; + deps = { + "through-2.3.8" = self.by-version."through"."2.3.8"; + "duplexer-0.1.1" = self.by-version."duplexer"."0.1.1"; + "from-0.1.3" = self.by-version."from"."0.1.3"; + "map-stream-0.1.0" = self.by-version."map-stream"."0.1.0"; + "pause-stream-0.0.11" = self.by-version."pause-stream"."0.0.11"; + "split-0.2.10" = self.by-version."split"."0.2.10"; + "stream-combiner-0.0.4" = self.by-version."stream-combiner"."0.0.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ext-list"."^2.0.0" = + self.by-version."ext-list"."2.2.0"; + by-version."ext-list"."2.2.0" = self.buildNodePackage { + name = "ext-list-2.2.0"; + version = "2.2.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/ext-list/-/ext-list-2.2.0.tgz"; + name = "ext-list-2.2.0.tgz"; + sha1 = "a3e6fdeab978bca7a320c7e786f537083fc30055"; + }; + deps = { + "got-2.9.2" = self.by-version."got"."2.9.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ext-name"."^3.0.0" = + self.by-version."ext-name"."3.0.0"; + by-version."ext-name"."3.0.0" = self.buildNodePackage { + name = "ext-name-3.0.0"; + version = "3.0.0"; + bin = true; + src = fetchurl { + url = "http://registry.npmjs.org/ext-name/-/ext-name-3.0.0.tgz"; + name = "ext-name-3.0.0.tgz"; + sha1 = "07e4418737cb1f513c32c6ea48d8b8c8e0471abb"; + }; + deps = { + "ends-with-0.2.0" = self.by-version."ends-with"."0.2.0"; + "ext-list-2.2.0" = self.by-version."ext-list"."2.2.0"; + "meow-3.7.0" = self.by-version."meow"."3.7.0"; + "sort-keys-length-1.0.1" = self.by-version."sort-keys-length"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."extend"."~3.0.0" = + self.by-version."extend"."3.0.0"; + by-version."extend"."3.0.0" = self.buildNodePackage { + name = "extend-3.0.0"; + version = "3.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/extend/-/extend-3.0.0.tgz"; + name = "extend-3.0.0.tgz"; + sha1 = "5a474353b9f3353ddd8176dfd37b91c83a46f1d4"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."extsprintf"."1.0.3" = + self.by-version."extsprintf"."1.0.3"; + by-version."extsprintf"."1.0.3" = self.buildNodePackage { + name = "extsprintf-1.0.3"; + version = "1.0.3"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/extsprintf/-/extsprintf-1.0.3.tgz"; + name = "extsprintf-1.0.3.tgz"; + sha1 = "3310ca8ced5205e5234766b0b2744ea5b2788d67"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."find-up"."^1.0.0" = + self.by-version."find-up"."1.1.2"; + by-version."find-up"."1.1.2" = self.buildNodePackage { + name = "find-up-1.1.2"; + version = "1.1.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz"; + name = "find-up-1.1.2.tgz"; + sha1 = "6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"; + }; + deps = { + "path-exists-2.1.0" = self.by-version."path-exists"."2.1.0"; + "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."foreach"."^2.0.4" = + self.by-version."foreach"."2.0.5"; + by-version."foreach"."2.0.5" = self.buildNodePackage { + name = "foreach-2.0.5"; + version = "2.0.5"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz"; + name = "foreach-2.0.5.tgz"; + sha1 = "0bee005018aeb260d0a3af3ae658dd0136ec1b99"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."form-data"."~1.0.0-rc3" = + self.by-version."form-data"."1.0.0-rc4"; + by-version."form-data"."1.0.0-rc4" = self.buildNodePackage { + name = "form-data-1.0.0-rc4"; + version = "1.0.0-rc4"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/form-data/-/form-data-1.0.0-rc4.tgz"; + name = "form-data-1.0.0-rc4.tgz"; + sha1 = "05ac6bc22227b43e4461f488161554699d4f8b5e"; + }; + deps = { + "async-1.5.2" = self.by-version."async"."1.5.2"; + "combined-stream-1.0.5" = self.by-version."combined-stream"."1.0.5"; + "mime-types-2.1.10" = self.by-version."mime-types"."2.1.10"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."from"."~0" = + self.by-version."from"."0.1.3"; + by-version."from"."0.1.3" = self.buildNodePackage { + name = "from-0.1.3"; + version = "0.1.3"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/from/-/from-0.1.3.tgz"; + name = "from-0.1.3.tgz"; + sha1 = "ef63ac2062ac32acf7862e0d40b44b896f22f3bc"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."fs-extra"."~0.26.5" = + self.by-version."fs-extra"."0.26.7"; + by-version."fs-extra"."0.26.7" = self.buildNodePackage { + name = "fs-extra-0.26.7"; + version = "0.26.7"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/fs-extra/-/fs-extra-0.26.7.tgz"; + name = "fs-extra-0.26.7.tgz"; + sha1 = "9ae1fdd94897798edab76d0918cf42d0c3184fa9"; + }; + deps = { + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "jsonfile-2.2.3" = self.by-version."jsonfile"."2.2.3"; + "klaw-1.1.3" = self.by-version."klaw"."1.1.3"; + "path-is-absolute-1.0.0" = self.by-version."path-is-absolute"."1.0.0"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "fs-extra" = self.by-version."fs-extra"."0.26.7"; + by-version."generate-object-property"."1.2.0" = self.buildNodePackage { + name = "generate-object-property-1.2.0"; + version = "1.2.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz"; + name = "generate-object-property-1.2.0.tgz"; + sha1 = "9c0e1c40308ce804f4783618b937fa88f99d50d0"; + }; + deps = { + "is-property-1.0.2" = self.by-version."is-property"."1.0.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."get-stdin"."^0.1.0" = + self.by-version."get-stdin"."0.1.0"; + by-version."get-stdin"."0.1.0" = self.buildNodePackage { + name = "get-stdin-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/get-stdin/-/get-stdin-0.1.0.tgz"; + name = "get-stdin-0.1.0.tgz"; + sha1 = "5998af24aafc802d15c82c685657eeb8b10d4a91"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."glob"."6.0.4" = + self.by-version."glob"."6.0.4"; + by-version."glob"."6.0.4" = self.buildNodePackage { + name = "glob-6.0.4"; + version = "6.0.4"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/glob/-/glob-6.0.4.tgz"; + name = "glob-6.0.4.tgz"; + sha1 = "0f08860f6a155127b2fadd4f9ce24b1aab6e4d22"; + }; + deps = { + "inflight-1.0.4" = self.by-version."inflight"."1.0.4"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "minimatch-3.0.0" = self.by-version."minimatch"."3.0.0"; + "once-1.3.3" = self.by-version."once"."1.3.3"; + "path-is-absolute-1.0.0" = self.by-version."path-is-absolute"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "glob" = self.by-version."glob"."6.0.4"; + by-spec."glob"."^4.0.6" = + self.by-version."glob"."4.5.3"; + by-spec."glob"."^7.0.0" = + self.by-version."glob"."7.0.3"; + by-version."glob"."7.0.3" = self.buildNodePackage { + name = "glob-7.0.3"; + version = "7.0.3"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/glob/-/glob-7.0.3.tgz"; + name = "glob-7.0.3.tgz"; + sha1 = "0aa235931a4a96ac13d60ffac2fb877bd6ed4f58"; + }; + deps = { + "inflight-1.0.4" = self.by-version."inflight"."1.0.4"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "minimatch-3.0.0" = self.by-version."minimatch"."3.0.0"; + "once-1.3.3" = self.by-version."once"."1.3.3"; + "path-is-absolute-1.0.0" = self.by-version."path-is-absolute"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."got"."^2.7.2" = + self.by-version."got"."2.9.2"; + by-version."got"."2.9.2" = self.buildNodePackage { + name = "got-2.9.2"; + version = "2.9.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/got/-/got-2.9.2.tgz"; + name = "got-2.9.2.tgz"; + sha1 = "2e1ee58ea1e8d201e25ae580b96e63c15fefd4ee"; + }; + deps = { + "duplexify-3.4.3" = self.by-version."duplexify"."3.4.3"; + "infinity-agent-2.0.3" = self.by-version."infinity-agent"."2.0.3"; + "is-stream-1.0.1" = self.by-version."is-stream"."1.0.1"; + "lowercase-keys-1.0.0" = self.by-version."lowercase-keys"."1.0.0"; + "nested-error-stacks-1.0.2" = self.by-version."nested-error-stacks"."1.0.2"; + "object-assign-2.1.1" = self.by-version."object-assign"."2.1.1"; + "prepend-http-1.0.3" = self.by-version."prepend-http"."1.0.3"; + "read-all-stream-2.2.0" = self.by-version."read-all-stream"."2.2.0"; + "statuses-1.2.1" = self.by-version."statuses"."1.2.1"; + "timed-out-2.0.0" = self.by-version."timed-out"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."got"."^3.2.0" = + self.by-version."got"."3.3.1"; + by-version."got"."3.3.1" = self.buildNodePackage { + name = "got-3.3.1"; + version = "3.3.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/got/-/got-3.3.1.tgz"; + name = "got-3.3.1.tgz"; + sha1 = "e5d0ed4af55fc3eef4d56007769d98192bcb2eca"; + }; + deps = { + "duplexify-3.4.3" = self.by-version."duplexify"."3.4.3"; + "infinity-agent-2.0.3" = self.by-version."infinity-agent"."2.0.3"; + "is-redirect-1.0.0" = self.by-version."is-redirect"."1.0.0"; + "is-stream-1.0.1" = self.by-version."is-stream"."1.0.1"; + "lowercase-keys-1.0.0" = self.by-version."lowercase-keys"."1.0.0"; + "nested-error-stacks-1.0.2" = self.by-version."nested-error-stacks"."1.0.2"; + "object-assign-3.0.0" = self.by-version."object-assign"."3.0.0"; + "prepend-http-1.0.3" = self.by-version."prepend-http"."1.0.3"; + "read-all-stream-3.1.0" = self.by-version."read-all-stream"."3.1.0"; + "timed-out-2.0.0" = self.by-version."timed-out"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."graceful-fs"."3.0.8" = self.buildNodePackage { + name = "graceful-fs-3.0.8"; + version = "3.0.8"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.8.tgz"; + name = "graceful-fs-3.0.8.tgz"; + sha1 = "ce813e725fa82f7e6147d51c9a5ca68270551c22"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."graceful-fs"."^4.1.2" = + self.by-version."graceful-fs"."4.1.3"; + by-version."graceful-fs"."4.1.3" = self.buildNodePackage { + name = "graceful-fs-4.1.3"; + version = "4.1.3"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.3.tgz"; + name = "graceful-fs-4.1.3.tgz"; + sha1 = "92033ce11113c41e2628d61fdfa40bc10dc0155c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."har-validator"."~2.0.6" = + self.by-version."har-validator"."2.0.6"; + by-version."har-validator"."2.0.6" = self.buildNodePackage { + name = "har-validator-2.0.6"; + version = "2.0.6"; + bin = true; + src = fetchurl { + url = "http://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz"; + name = "har-validator-2.0.6.tgz"; + sha1 = "cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d"; + }; + deps = { + "chalk-1.1.1" = self.by-version."chalk"."1.1.1"; + "commander-2.9.0" = self.by-version."commander"."2.9.0"; + "is-my-json-valid-2.13.1" = self.by-version."is-my-json-valid"."2.13.1"; + "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."has-ansi"."^2.0.0" = + self.by-version."has-ansi"."2.0.0"; + by-version."has-ansi"."2.0.0" = self.buildNodePackage { + name = "has-ansi-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz"; + name = "has-ansi-2.0.0.tgz"; + sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; + }; + deps = { + "ansi-regex-2.0.0" = self.by-version."ansi-regex"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."hawk"."~3.1.0" = + self.by-version."hawk"."3.1.3"; + by-version."hawk"."3.1.3" = self.buildNodePackage { + name = "hawk-3.1.3"; + version = "3.1.3"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz"; + name = "hawk-3.1.3.tgz"; + sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4"; + }; + deps = { + "hoek-2.16.3" = self.by-version."hoek"."2.16.3"; + "boom-2.10.1" = self.by-version."boom"."2.10.1"; + "cryptiles-2.0.5" = self.by-version."cryptiles"."2.0.5"; + "sntp-1.0.9" = self.by-version."sntp"."1.0.9"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."hoek"."2.16.3" = self.buildNodePackage { + name = "hoek-2.16.3"; + version = "2.16.3"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"; + name = "hoek-2.16.3.tgz"; + sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."hoek"."^2.2.x" = + self.by-version."hoek"."2.16.3"; + by-spec."hosted-git-info"."^2.1.4" = + self.by-version."hosted-git-info"."2.1.4"; + by-version."hosted-git-info"."2.1.4" = self.buildNodePackage { + name = "hosted-git-info-2.1.4"; + version = "2.1.4"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.1.4.tgz"; + name = "hosted-git-info-2.1.4.tgz"; + sha1 = "d9e953b26988be88096c46e926494d9604c300f8"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."http-signature"."~1.1.0" = + self.by-version."http-signature"."1.1.1"; + by-version."http-signature"."1.1.1" = self.buildNodePackage { + name = "http-signature-1.1.1"; + version = "1.1.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz"; + name = "http-signature-1.1.1.tgz"; + sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf"; + }; + deps = { + "assert-plus-0.2.0" = self.by-version."assert-plus"."0.2.0"; + "jsprim-1.2.2" = self.by-version."jsprim"."1.2.2"; + "sshpk-1.7.4" = self.by-version."sshpk"."1.7.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."indent-string"."^2.1.0" = + self.by-version."indent-string"."2.1.0"; + by-version."indent-string"."2.1.0" = self.buildNodePackage { + name = "indent-string-2.1.0"; + version = "2.1.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz"; + name = "indent-string-2.1.0.tgz"; + sha1 = "8e2d48348742121b4a8218b7a137e9a52049dc80"; + }; + deps = { + "repeating-2.0.0" = self.by-version."repeating"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."infinity-agent"."^2.0.0" = + self.by-version."infinity-agent"."2.0.3"; + by-version."infinity-agent"."2.0.3" = self.buildNodePackage { + name = "infinity-agent-2.0.3"; + version = "2.0.3"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/infinity-agent/-/infinity-agent-2.0.3.tgz"; + name = "infinity-agent-2.0.3.tgz"; + sha1 = "45e0e2ff7a9eb030b27d62b74b3744b7a7ac4216"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."ini"."1.3.4" = self.buildNodePackage { + name = "ini-1.3.4"; + version = "1.3.4"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/ini/-/ini-1.3.4.tgz"; + name = "ini-1.3.4.tgz"; + sha1 = "0537cb79daf59b59a1a517dff706c86ec039162e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."intersect"."^1.0.1" = + self.by-version."intersect"."1.0.1"; + by-version."intersect"."1.0.1" = self.buildNodePackage { + name = "intersect-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/intersect/-/intersect-1.0.1.tgz"; + name = "intersect-1.0.1.tgz"; + sha1 = "332650e10854d8c0ac58c192bdc27a8bf7e7a30c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."is-arrayish"."^0.2.1" = + self.by-version."is-arrayish"."0.2.1"; + by-version."is-arrayish"."0.2.1" = self.buildNodePackage { + name = "is-arrayish-0.2.1"; + version = "0.2.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"; + name = "is-arrayish-0.2.1.tgz"; + sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."is-builtin-module"."^1.0.0" = + self.by-version."is-builtin-module"."1.0.0"; + by-version."is-builtin-module"."1.0.0" = self.buildNodePackage { + name = "is-builtin-module-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz"; + name = "is-builtin-module-1.0.0.tgz"; + sha1 = "540572d34f7ac3119f8f76c30cbc1b1e037affbe"; + }; + deps = { + "builtin-modules-1.1.1" = self.by-version."builtin-modules"."1.1.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."is-finite"."1.0.1" = self.buildNodePackage { + name = "is-finite-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/is-finite/-/is-finite-1.0.1.tgz"; + name = "is-finite-1.0.1.tgz"; + sha1 = "6438603eaebe2793948ff4a4262ec8db3d62597b"; + }; + deps = { + "number-is-nan-1.0.0" = self.by-version."number-is-nan"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."is-my-json-valid"."^2.12.4" = + self.by-version."is-my-json-valid"."2.13.1"; + by-version."is-my-json-valid"."2.13.1" = self.buildNodePackage { + name = "is-my-json-valid-2.13.1"; + version = "2.13.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.13.1.tgz"; + name = "is-my-json-valid-2.13.1.tgz"; + sha1 = "d55778a82feb6b0963ff4be111d5d1684e890707"; + }; + deps = { + "generate-function-2.0.0" = self.by-version."generate-function"."2.0.0"; + "generate-object-property-1.2.0" = self.by-version."generate-object-property"."1.2.0"; + "jsonpointer-2.0.0" = self.by-version."jsonpointer"."2.0.0"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."is-plain-obj"."^1.0.0" = + self.by-version."is-plain-obj"."1.1.0"; + by-version."is-plain-obj"."1.1.0" = self.buildNodePackage { + name = "is-plain-obj-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz"; + name = "is-plain-obj-1.1.0.tgz"; + sha1 = "71a50c8429dfca773c92a390a4a03b39fcd51d3e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."is-redirect"."^1.0.0" = + self.by-version."is-redirect"."1.0.0"; + by-version."is-redirect"."1.0.0" = self.buildNodePackage { + name = "is-redirect-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz"; + name = "is-redirect-1.0.0.tgz"; + sha1 = "1d03dded53bd8db0f30c26e4f95d36fc7c87dc24"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."is-typedarray"."~1.0.0" = + self.by-version."is-typedarray"."1.0.0"; + by-version."is-typedarray"."1.0.0" = self.buildNodePackage { + name = "is-typedarray-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"; + name = "is-typedarray-1.0.0.tgz"; + sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."is-utf8"."0.2.1" = self.buildNodePackage { + name = "is-utf8-0.2.1"; + version = "0.2.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz"; + name = "is-utf8-0.2.1.tgz"; + sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."isarray"."~1.0.0" = + self.by-version."isarray"."1.0.0"; + by-version."isarray"."1.0.0" = self.buildNodePackage { + name = "isarray-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"; + name = "isarray-1.0.0.tgz"; + sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."isemail"."1.x.x" = + self.by-version."isemail"."1.2.0"; + by-version."isemail"."1.2.0" = self.buildNodePackage { + name = "isemail-1.2.0"; + version = "1.2.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/isemail/-/isemail-1.2.0.tgz"; + name = "isemail-1.2.0.tgz"; + sha1 = "be03df8cc3e29de4d2c5df6501263f1fa4595e9a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."isstream"."~0.1.2" = + self.by-version."isstream"."0.1.2"; + by-spec."jodid25519".">=1.0.0 <2.0.0" = + self.by-version."jodid25519"."1.0.2"; + by-version."jodid25519"."1.0.2" = self.buildNodePackage { + name = "jodid25519-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/jodid25519/-/jodid25519-1.0.2.tgz"; + name = "jodid25519-1.0.2.tgz"; + sha1 = "06d4912255093419477d425633606e0e90782967"; + }; + deps = { + "jsbn-0.1.0" = self.by-version."jsbn"."0.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."joi"."^4.0.0" = + self.by-version."joi"."4.9.0"; + by-version."joi"."4.9.0" = self.buildNodePackage { + name = "joi-4.9.0"; + version = "4.9.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/joi/-/joi-4.9.0.tgz"; + name = "joi-4.9.0.tgz"; + sha1 = "2355023363089ca01bc1fd079e72949f977baada"; + }; + deps = { + "hoek-2.16.3" = self.by-version."hoek"."2.16.3"; + "topo-1.1.0" = self.by-version."topo"."1.1.0"; + "isemail-1.2.0" = self.by-version."isemail"."1.2.0"; + "moment-2.12.0" = self.by-version."moment"."2.12.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."joi"."^4.7.0" = + self.by-version."joi"."4.9.0"; + by-spec."joi-assert"."0.0.3" = + self.by-version."joi-assert"."0.0.3"; + by-version."joi-assert"."0.0.3" = self.buildNodePackage { + name = "joi-assert-0.0.3"; + version = "0.0.3"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/joi-assert/-/joi-assert-0.0.3.tgz"; + name = "joi-assert-0.0.3.tgz"; + sha1 = "77291376ac3f0b124f433f98db74b4f20f686fd6"; + }; + deps = { + "assertion-error-1.0.1" = self.by-version."assertion-error"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."js-yaml"."3.5.5" = self.buildNodePackage { + name = "js-yaml-3.5.5"; + version = "3.5.5"; + bin = true; + src = fetchurl { + url = "http://registry.npmjs.org/js-yaml/-/js-yaml-3.5.5.tgz"; + name = "js-yaml-3.5.5.tgz"; + sha1 = "0377c38017cabc7322b0d1fbcd25a491641f2fbe"; + }; + deps = { + "argparse-1.0.7" = self.by-version."argparse"."1.0.7"; + "esprima-2.7.2" = self.by-version."esprima"."2.7.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."jsbn".">=0.1.0 <0.2.0" = + self.by-version."jsbn"."0.1.0"; + by-version."jsbn"."0.1.0" = self.buildNodePackage { + name = "jsbn-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/jsbn/-/jsbn-0.1.0.tgz"; + name = "jsbn-0.1.0.tgz"; + sha1 = "650987da0dd74f4ebf5a11377a2aa2d273e97dfd"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."jsbn"."~0.1.0" = + self.by-version."jsbn"."0.1.0"; + by-spec."jsesc"."^0.5.0" = + self.by-version."jsesc"."0.5.0"; + by-version."jsesc"."0.5.0" = self.buildNodePackage { + name = "jsesc-0.5.0"; + version = "0.5.0"; + bin = true; + src = fetchurl { + url = "http://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz"; + name = "jsesc-0.5.0.tgz"; + sha1 = "e7dee66e35d6fc16f710fe91d5cf69f70f08911d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."json-pointer"."^0.2.2" = + self.by-version."json-pointer"."0.2.2"; + by-version."json-pointer"."0.2.2" = self.buildNodePackage { + name = "json-pointer-0.2.2"; + version = "0.2.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/json-pointer/-/json-pointer-0.2.2.tgz"; + name = "json-pointer-0.2.2.tgz"; + sha1 = "1a78285d4650c50b10475f7f59919a99db8a164b"; + }; + deps = { + "foreach-2.0.5" = self.by-version."foreach"."2.0.5"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."json-stringify-safe"."~5.0.1" = + self.by-version."json-stringify-safe"."5.0.1"; + by-version."json-stringify-safe"."5.0.1" = self.buildNodePackage { + name = "json-stringify-safe-5.0.1"; + version = "5.0.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; + name = "json-stringify-safe-5.0.1.tgz"; + sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."jsonfile"."^2.1.0" = + self.by-version."jsonfile"."2.2.3"; + by-version."jsonfile"."2.2.3" = self.buildNodePackage { + name = "jsonfile-2.2.3"; + version = "2.2.3"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/jsonfile/-/jsonfile-2.2.3.tgz"; + name = "jsonfile-2.2.3.tgz"; + sha1 = "e252b99a6af901d3ec41f332589c90509a7bc605"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."jsonpointer"."2.0.0" = + self.by-version."jsonpointer"."2.0.0"; + by-version."jsonpointer"."2.0.0" = self.buildNodePackage { + name = "jsonpointer-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/jsonpointer/-/jsonpointer-2.0.0.tgz"; + name = "jsonpointer-2.0.0.tgz"; + sha1 = "3af1dd20fe85463910d469a385e33017d2a030d9"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."jsprim"."^1.2.2" = + self.by-version."jsprim"."1.2.2"; + by-version."jsprim"."1.2.2" = self.buildNodePackage { + name = "jsprim-1.2.2"; + version = "1.2.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/jsprim/-/jsprim-1.2.2.tgz"; + name = "jsprim-1.2.2.tgz"; + sha1 = "f20c906ac92abd58e3b79ac8bc70a48832512da1"; + }; + deps = { + "extsprintf-1.0.2" = self.by-version."extsprintf"."1.0.2"; + "json-schema-0.2.2" = self.by-version."json-schema"."0.2.2"; + "verror-1.3.6" = self.by-version."verror"."1.3.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."klaw"."^1.0.0" = + self.by-version."klaw"."1.1.3"; + by-version."klaw"."1.1.3" = self.buildNodePackage { + name = "klaw-1.1.3"; + version = "1.1.3"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/klaw/-/klaw-1.1.3.tgz"; + name = "klaw-1.1.3.tgz"; + sha1 = "7da33c6b42f9b3dc9cec00d17f13af017fcc2721"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."latest-version"."1.0.1" = self.buildNodePackage { + name = "latest-version-1.0.1"; + version = "1.0.1"; + bin = true; + src = fetchurl { + url = "http://registry.npmjs.org/latest-version/-/latest-version-1.0.1.tgz"; + name = "latest-version-1.0.1.tgz"; + sha1 = "72cfc46e3e8d1be651e1ebb54ea9f6ea96f374bb"; + }; + deps = { + "package-json-1.2.0" = self.by-version."package-json"."1.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lazy.js"."~0.3.2" = + self.by-version."lazy.js"."0.3.2"; + by-version."lazy.js"."0.3.2" = self.buildNodePackage { + name = "lazy.js-0.3.2"; + version = "0.3.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/lazy.js/-/lazy.js-0.3.2.tgz"; + name = "lazy.js-0.3.2.tgz"; + sha1 = "7cc1107e5f809ae70498f511dd180e1f80b4efa9"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."load-json-file"."^1.0.0" = + self.by-version."load-json-file"."1.1.0"; + by-version."load-json-file"."1.1.0" = self.buildNodePackage { + name = "load-json-file-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz"; + name = "load-json-file-1.1.0.tgz"; + sha1 = "956905708d58b4bab4c2261b04f59f31c99374c0"; + }; + deps = { + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "parse-json-2.2.0" = self.by-version."parse-json"."2.2.0"; + "pify-2.3.0" = self.by-version."pify"."2.3.0"; + "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; + "strip-bom-2.0.0" = self.by-version."strip-bom"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash".">= 4.0.0 < 5.0.0" = + self.by-version."lodash"."4.6.1"; + by-version."lodash"."4.6.1" = self.buildNodePackage { + name = "lodash-4.6.1"; + version = "4.6.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/lodash/-/lodash-4.6.1.tgz"; + name = "lodash-4.6.1.tgz"; + sha1 = "df00c1164ad236b183cfc3887a5e8d38cc63cbbc"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash"."~4.2.1" = + self.by-version."lodash"."4.2.1"; + by-version."lodash"."4.2.1" = self.buildNodePackage { + name = "lodash-4.2.1"; + version = "4.2.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/lodash/-/lodash-4.2.1.tgz"; + name = "lodash-4.2.1.tgz"; + sha1 = "171fdcfbbc30d689c544cd18c0529f56de6c1aa9"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "lodash" = self.by-version."lodash"."4.2.1"; + by-spec."loud-rejection"."^1.0.0" = + self.by-version."loud-rejection"."1.3.0"; + by-version."loud-rejection"."1.3.0" = self.buildNodePackage { + name = "loud-rejection-1.3.0"; + version = "1.3.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/loud-rejection/-/loud-rejection-1.3.0.tgz"; + name = "loud-rejection-1.3.0.tgz"; + sha1 = "f289a392f17d2baacf194d0a673004394433b115"; + }; + deps = { + "array-find-index-1.0.1" = self.by-version."array-find-index"."1.0.1"; + "signal-exit-2.1.2" = self.by-version."signal-exit"."2.1.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."lru-cache"."2.7.3" = self.buildNodePackage { + name = "lru-cache-2.7.3"; + version = "2.7.3"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz"; + name = "lru-cache-2.7.3.tgz"; + sha1 = "6d4524e8b955f95d4f5b58851ce21dd72fb4e952"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lru-cache"."^4.0.0" = + self.by-version."lru-cache"."4.0.1"; + by-version."lru-cache"."4.0.1" = self.buildNodePackage { + name = "lru-cache-4.0.1"; + version = "4.0.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/lru-cache/-/lru-cache-4.0.1.tgz"; + name = "lru-cache-4.0.1.tgz"; + sha1 = "1343955edaf2e37d9b9e7ee7241e27c4b9fb72be"; + }; + deps = { + "pseudomap-1.0.2" = self.by-version."pseudomap"."1.0.2"; + "yallist-2.0.0" = self.by-version."yallist"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."map-obj"."1.0.1" = self.buildNodePackage { + name = "map-obj-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz"; + name = "map-obj-1.0.1.tgz"; + sha1 = "d933ceb9205d82bdcf4886f6742bdc2b4dea146d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."map-obj"."^1.0.1" = + self.by-version."map-obj"."1.0.1"; + by-spec."map-stream"."~0.1.0" = + self.by-version."map-stream"."0.1.0"; + by-version."map-stream"."0.1.0" = self.buildNodePackage { + name = "map-stream-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz"; + name = "map-stream-0.1.0.tgz"; + sha1 = "e56aa94c4c8055a16404a0674b78f215f7c8e194"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."meow"."3.7.0" = self.buildNodePackage { + name = "meow-3.7.0"; + version = "3.7.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/meow/-/meow-3.7.0.tgz"; + name = "meow-3.7.0.tgz"; + sha1 = "72cb668b425228290abbfa856892587308a801fb"; + }; + deps = { + "camelcase-keys-2.1.0" = self.by-version."camelcase-keys"."2.1.0"; + "decamelize-1.2.0" = self.by-version."decamelize"."1.2.0"; + "loud-rejection-1.3.0" = self.by-version."loud-rejection"."1.3.0"; + "map-obj-1.0.1" = self.by-version."map-obj"."1.0.1"; + "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; + "normalize-package-data-2.3.5" = self.by-version."normalize-package-data"."2.3.5"; + "object-assign-4.0.1" = self.by-version."object-assign"."4.0.1"; + "read-pkg-up-1.0.1" = self.by-version."read-pkg-up"."1.0.1"; + "redent-1.0.0" = self.by-version."redent"."1.0.0"; + "trim-newlines-1.0.0" = self.by-version."trim-newlines"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."mime-db"."~1.22.0" = + self.by-version."mime-db"."1.22.0"; + by-version."mime-db"."1.22.0" = self.buildNodePackage { + name = "mime-db-1.22.0"; + version = "1.22.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/mime-db/-/mime-db-1.22.0.tgz"; + name = "mime-db-1.22.0.tgz"; + sha1 = "ab23a6372dc9d86d3dc9121bd0ebd38105a1904a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."mime-types"."^2.1.10" = + self.by-version."mime-types"."2.1.10"; + by-version."mime-types"."2.1.10" = self.buildNodePackage { + name = "mime-types-2.1.10"; + version = "2.1.10"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/mime-types/-/mime-types-2.1.10.tgz"; + name = "mime-types-2.1.10.tgz"; + sha1 = "b93c7cb4362e16d41072a7e54538fb4d43070837"; + }; + deps = { + "mime-db-1.22.0" = self.by-version."mime-db"."1.22.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."mime-types"."~2.1.7" = + self.by-version."mime-types"."2.1.10"; + by-spec."minichain"."~0.0.1" = + self.by-version."minichain"."0.0.1"; + by-version."minichain"."0.0.1" = self.buildNodePackage { + name = "minichain-0.0.1"; + version = "0.0.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/minichain/-/minichain-0.0.1.tgz"; + name = "minichain-0.0.1.tgz"; + sha1 = "0bae49774170d8931401c271bb6ed6d3992a9f52"; + }; + deps = { + "ministyle-0.1.4" = self.by-version."ministyle"."0.1.4"; + "miniwrite-0.1.4" = self.by-version."miniwrite"."0.1.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."minimatch"."2 || 3" = + self.by-version."minimatch"."3.0.0"; + by-version."minimatch"."3.0.0" = self.buildNodePackage { + name = "minimatch-3.0.0"; + version = "3.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz"; + name = "minimatch-3.0.0.tgz"; + sha1 = "5236157a51e4f004c177fb3c527ff7dd78f0ef83"; + }; + deps = { + "brace-expansion-1.1.3" = self.by-version."brace-expansion"."1.1.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."minimatch"."2.0.10" = self.buildNodePackage { + name = "minimatch-2.0.10"; + version = "2.0.10"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz"; + name = "minimatch-2.0.10.tgz"; + sha1 = "8d087c39c6b38c001b97fca7ce6d0e1e80afbac7"; + }; + deps = { + "brace-expansion-1.1.3" = self.by-version."brace-expansion"."1.1.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."minimist"."^0.1.0" = + self.by-version."minimist"."0.1.0"; + by-version."minimist"."0.1.0" = self.buildNodePackage { + name = "minimist-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/minimist/-/minimist-0.1.0.tgz"; + name = "minimist-0.1.0.tgz"; + sha1 = "99df657a52574c21c9057497df742790b2b4c0de"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."minimist"."1.2.0" = self.buildNodePackage { + name = "minimist-1.2.0"; + version = "1.2.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz"; + name = "minimist-1.2.0.tgz"; + sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."minimist"."^1.1.3" = + self.by-version."minimist"."1.2.0"; + by-spec."minimist"."^1.2.0" = + self.by-version."minimist"."1.2.0"; + by-spec."ministyle".">=0.1.2 >=0.1.3 <0.2.0" = + self.by-version."ministyle"."0.1.4"; + by-spec."ministyle"."~0.1.2" = + self.by-version."ministyle"."0.1.4"; + by-spec."minitable"."0.0.4" = + self.by-version."minitable"."0.0.4"; + by-version."minitable"."0.0.4" = self.buildNodePackage { + name = "minitable-0.0.4"; + version = "0.0.4"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/minitable/-/minitable-0.0.4.tgz"; + name = "minitable-0.0.4.tgz"; + sha1 = "8d61cb78fae6f371d8051ce77e8a7831ce3d5396"; + }; + deps = { + "miniwrite-0.1.4" = self.by-version."miniwrite"."0.1.4"; + "minichain-0.0.1" = self.by-version."minichain"."0.0.1"; + "ministyle-0.1.4" = self.by-version."ministyle"."0.1.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."miniwrite"."~0.1.2" = + self.by-version."miniwrite"."0.1.4"; + by-version."mkdirp"."0.5.1" = self.buildNodePackage { + name = "mkdirp-0.5.1"; + version = "0.5.1"; + bin = true; + src = fetchurl { + url = "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"; + name = "mkdirp-0.5.1.tgz"; + sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; + }; + deps = { + "minimist-0.0.8" = self.by-version."minimist"."0.0.8"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."moment"."2.x.x" = + self.by-version."moment"."2.12.0"; + by-version."moment"."2.12.0" = self.buildNodePackage { + name = "moment-2.12.0"; + version = "2.12.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/moment/-/moment-2.12.0.tgz"; + name = "moment-2.12.0.tgz"; + sha1 = "dc2560d19838d6c0731b1a6afa04675264d360d6"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ms"."0.7.1" = + self.by-version."ms"."0.7.1"; + by-version."ms"."0.7.1" = self.buildNodePackage { + name = "ms-0.7.1"; + version = "0.7.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/ms/-/ms-0.7.1.tgz"; + name = "ms-0.7.1.tgz"; + sha1 = "9cd13c03adbff25b65effde7ce864ee952017098"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."nested-error-stacks"."1.0.2" = self.buildNodePackage { + name = "nested-error-stacks-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-1.0.2.tgz"; + name = "nested-error-stacks-1.0.2.tgz"; + sha1 = "19f619591519f096769a5ba9a86e6eeec823c3cf"; + }; + deps = { + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."node-uuid"."1.x" = + self.by-version."node-uuid"."1.4.7"; + by-version."node-uuid"."1.4.7" = self.buildNodePackage { + name = "node-uuid-1.4.7"; + version = "1.4.7"; + bin = true; + src = fetchurl { + url = "http://registry.npmjs.org/node-uuid/-/node-uuid-1.4.7.tgz"; + name = "node-uuid-1.4.7.tgz"; + sha1 = "6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."node-uuid"."~1.4.7" = + self.by-version."node-uuid"."1.4.7"; + by-spec."normalize-package-data"."^2.3.2" = + self.by-version."normalize-package-data"."2.3.5"; + by-version."normalize-package-data"."2.3.5" = self.buildNodePackage { + name = "normalize-package-data-2.3.5"; + version = "2.3.5"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.5.tgz"; + name = "normalize-package-data-2.3.5.tgz"; + sha1 = "8d924f142960e1777e7ffe170543631cc7cb02df"; + }; + deps = { + "hosted-git-info-2.1.4" = self.by-version."hosted-git-info"."2.1.4"; + "is-builtin-module-1.0.0" = self.by-version."is-builtin-module"."1.0.0"; + "semver-5.1.0" = self.by-version."semver"."5.1.0"; + "validate-npm-package-license-3.0.1" = self.by-version."validate-npm-package-license"."3.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."normalize-package-data"."^2.3.4" = + self.by-version."normalize-package-data"."2.3.5"; + by-spec."number-is-nan"."^1.0.0" = + self.by-version."number-is-nan"."1.0.0"; + by-version."number-is-nan"."1.0.0" = self.buildNodePackage { + name = "number-is-nan-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.0.tgz"; + name = "number-is-nan-1.0.0.tgz"; + sha1 = "c020f529c5282adfdd233d91d4b181c3d686dc4b"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."oauth-sign"."~0.8.0" = + self.by-version."oauth-sign"."0.8.1"; + by-version."oauth-sign"."0.8.1" = self.buildNodePackage { + name = "oauth-sign-0.8.1"; + version = "0.8.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.1.tgz"; + name = "oauth-sign-0.8.1.tgz"; + sha1 = "182439bdb91378bf7460e75c64ea43e6448def06"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."object-assign"."2.1.1" = self.buildNodePackage { + name = "object-assign-2.1.1"; + version = "2.1.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz"; + name = "object-assign-2.1.1.tgz"; + sha1 = "43c36e5d569ff8e4816c4efa8be02d26967c18aa"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."object-assign"."^3.0.0" = + self.by-version."object-assign"."3.0.0"; + by-version."object-assign"."3.0.0" = self.buildNodePackage { + name = "object-assign-3.0.0"; + version = "3.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz"; + name = "object-assign-3.0.0.tgz"; + sha1 = "9bedd5ca0897949bca47e7ff408062d549f587f2"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."object-assign"."^4.0.1" = + self.by-version."object-assign"."4.0.1"; + by-version."object-assign"."4.0.1" = self.buildNodePackage { + name = "object-assign-4.0.1"; + version = "4.0.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/object-assign/-/object-assign-4.0.1.tgz"; + name = "object-assign-4.0.1.tgz"; + sha1 = "99504456c3598b5cad4fc59c26e8a9bb107fe0bd"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."once"."1.3.3" = self.buildNodePackage { + name = "once-1.3.3"; + version = "1.3.3"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/once/-/once-1.3.3.tgz"; + name = "once-1.3.3.tgz"; + sha1 = "b2e261557ce4c314ec8304f3fa82663e4297ca20"; + }; + deps = { + "wrappy-1.0.1" = self.by-version."wrappy"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."os-homedir"."^1.0.0" = + self.by-version."os-homedir"."1.0.1"; + by-version."os-homedir"."1.0.1" = self.buildNodePackage { + name = "os-homedir-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/os-homedir/-/os-homedir-1.0.1.tgz"; + name = "os-homedir-1.0.1.tgz"; + sha1 = "0d62bdf44b916fd3bbdcf2cab191948fb094f007"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."os-tmpdir"."^1.0.0" = + self.by-version."os-tmpdir"."1.0.1"; + by-version."os-tmpdir"."1.0.1" = self.buildNodePackage { + name = "os-tmpdir-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.1.tgz"; + name = "os-tmpdir-1.0.1.tgz"; + sha1 = "e9b423a1edaf479882562e92ed71d7743a071b6e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."osenv"."0.1.3" = self.buildNodePackage { + name = "osenv-0.1.3"; + version = "0.1.3"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/osenv/-/osenv-0.1.3.tgz"; + name = "osenv-0.1.3.tgz"; + sha1 = "83cf05c6d6458fc4d5ac6362ea325d92f2754217"; + }; + deps = { + "os-homedir-1.0.1" = self.by-version."os-homedir"."1.0.1"; + "os-tmpdir-1.0.1" = self.by-version."os-tmpdir"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."package-json"."1.2.0" = self.buildNodePackage { + name = "package-json-1.2.0"; + version = "1.2.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/package-json/-/package-json-1.2.0.tgz"; + name = "package-json-1.2.0.tgz"; + sha1 = "c8ecac094227cdf76a316874ed05e27cc939a0e0"; + }; + deps = { + "got-3.3.1" = self.by-version."got"."3.3.1"; + "registry-url-3.0.3" = self.by-version."registry-url"."3.0.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."parse-json"."^2.2.0" = + self.by-version."parse-json"."2.2.0"; + by-version."parse-json"."2.2.0" = self.buildNodePackage { + name = "parse-json-2.2.0"; + version = "2.2.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz"; + name = "parse-json-2.2.0.tgz"; + sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9"; + }; + deps = { + "error-ex-1.3.0" = self.by-version."error-ex"."1.3.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."parsimmon"."^0.5.0" = + self.by-version."parsimmon"."0.5.1"; + by-version."parsimmon"."0.5.1" = self.buildNodePackage { + name = "parsimmon-0.5.1"; + version = "0.5.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/parsimmon/-/parsimmon-0.5.1.tgz"; + name = "parsimmon-0.5.1.tgz"; + sha1 = "247c970d7d5e99a51115b16a106de96f0eb9303b"; + }; + deps = { + "pjs-5.1.1" = self.by-version."pjs"."5.1.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."path-exists"."^2.0.0" = + self.by-version."path-exists"."2.1.0"; + by-version."path-exists"."2.1.0" = self.buildNodePackage { + name = "path-exists-2.1.0"; + version = "2.1.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz"; + name = "path-exists-2.1.0.tgz"; + sha1 = "0feb6c64f0fc518d9a754dd5efb62c7022761f4b"; + }; + deps = { + "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."path-type"."^1.0.0" = + self.by-version."path-type"."1.1.0"; + by-version."path-type"."1.1.0" = self.buildNodePackage { + name = "path-type-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz"; + name = "path-type-1.1.0.tgz"; + sha1 = "59c44f7ee491da704da415da5a4070ba4f8fe441"; + }; + deps = { + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "pify-2.3.0" = self.by-version."pify"."2.3.0"; + "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."pause-stream"."0.0.11" = + self.by-version."pause-stream"."0.0.11"; + by-version."pause-stream"."0.0.11" = self.buildNodePackage { + name = "pause-stream-0.0.11"; + version = "0.0.11"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz"; + name = "pause-stream-0.0.11.tgz"; + sha1 = "fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445"; + }; + deps = { + "through-2.3.8" = self.by-version."through"."2.3.8"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."pify"."^2.0.0" = + self.by-version."pify"."2.3.0"; + by-version."pify"."2.3.0" = self.buildNodePackage { + name = "pify-2.3.0"; + version = "2.3.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/pify/-/pify-2.3.0.tgz"; + name = "pify-2.3.0.tgz"; + sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."pinkie"."^2.0.0" = + self.by-version."pinkie"."2.0.4"; + by-version."pinkie"."2.0.4" = self.buildNodePackage { + name = "pinkie-2.0.4"; + version = "2.0.4"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz"; + name = "pinkie-2.0.4.tgz"; + sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."pinkie-promise"."^2.0.0" = + self.by-version."pinkie-promise"."2.0.0"; + by-version."pinkie-promise"."2.0.0" = self.buildNodePackage { + name = "pinkie-promise-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.0.tgz"; + name = "pinkie-promise-2.0.0.tgz"; + sha1 = "4c83538de1f6e660c29e0a13446844f7a7e88259"; + }; + deps = { + "pinkie-2.0.4" = self.by-version."pinkie"."2.0.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."pjs"."5.x" = + self.by-version."pjs"."5.1.1"; + by-version."pjs"."5.1.1" = self.buildNodePackage { + name = "pjs-5.1.1"; + version = "5.1.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/pjs/-/pjs-5.1.1.tgz"; + name = "pjs-5.1.1.tgz"; + sha1 = "9dfc4673bb01deffd6915fb1dec75827aba42abf"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."prepend-http"."1.0.3" = self.buildNodePackage { + name = "prepend-http-1.0.3"; + version = "1.0.3"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/prepend-http/-/prepend-http-1.0.3.tgz"; + name = "prepend-http-1.0.3.tgz"; + sha1 = "4d0d2b6f9efcf1190c23931325b4f3a9dba84869"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."process-nextick-args"."~1.0.6" = + self.by-version."process-nextick-args"."1.0.6"; + by-version."process-nextick-args"."1.0.6" = self.buildNodePackage { + name = "process-nextick-args-1.0.6"; + version = "1.0.6"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.6.tgz"; + name = "process-nextick-args-1.0.6.tgz"; + sha1 = "0f96b001cea90b12592ce566edb97ec11e69bd05"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."promised-temp"."^0.1.0" = + self.by-version."promised-temp"."0.1.0"; + by-version."promised-temp"."0.1.0" = self.buildNodePackage { + name = "promised-temp-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/promised-temp/-/promised-temp-0.1.0.tgz"; + name = "promised-temp-0.1.0.tgz"; + sha1 = "5f8a704ccdf5f2ac23996fcafe2b301bc2a8d0eb"; + }; + deps = { + "temp-0.8.3" = self.by-version."temp"."0.8.3"; + "q-1.4.1" = self.by-version."q"."1.4.1"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "promised-temp" = self.by-version."promised-temp"."0.1.0"; + by-spec."pseudomap"."^1.0.1" = + self.by-version."pseudomap"."1.0.2"; + by-version."pseudomap"."1.0.2" = self.buildNodePackage { + name = "pseudomap-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"; + name = "pseudomap-1.0.2.tgz"; + sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."q"."1.4.1" = self.buildNodePackage { + name = "q-1.4.1"; + version = "1.4.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/q/-/q-1.4.1.tgz"; + name = "q-1.4.1.tgz"; + sha1 = "55705bcd93c5f3673530c2c2cbc0c2b3addc286e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."qs"."~6.0.2" = + self.by-version."qs"."6.0.2"; + by-version."qs"."6.0.2" = self.buildNodePackage { + name = "qs-6.0.2"; + version = "6.0.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/qs/-/qs-6.0.2.tgz"; + name = "qs-6.0.2.tgz"; + sha1 = "88c68d590e8ed56c76c79f352c17b982466abfcd"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."rc"."1.1.6" = self.buildNodePackage { + name = "rc-1.1.6"; + version = "1.1.6"; + bin = true; + src = fetchurl { + url = "http://registry.npmjs.org/rc/-/rc-1.1.6.tgz"; + name = "rc-1.1.6.tgz"; + sha1 = "43651b76b6ae53b5c802f1151fa3fc3b059969c9"; + }; + deps = { + "deep-extend-0.4.1" = self.by-version."deep-extend"."0.4.1"; + "ini-1.3.4" = self.by-version."ini"."1.3.4"; + "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; + "strip-json-comments-1.0.4" = self.by-version."strip-json-comments"."1.0.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."read-all-stream"."2.2.0" = self.buildNodePackage { + name = "read-all-stream-2.2.0"; + version = "2.2.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/read-all-stream/-/read-all-stream-2.2.0.tgz"; + name = "read-all-stream-2.2.0.tgz"; + sha1 = "6b83370546c55ab6ade2bf75e83c66e45989bbf0"; + }; + deps = { + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."read-all-stream"."^3.0.0" = + self.by-version."read-all-stream"."3.1.0"; + by-version."read-all-stream"."3.1.0" = self.buildNodePackage { + name = "read-all-stream-3.1.0"; + version = "3.1.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/read-all-stream/-/read-all-stream-3.1.0.tgz"; + name = "read-all-stream-3.1.0.tgz"; + sha1 = "35c3e177f2078ef789ee4bfafa4373074eaef4fa"; + }; + deps = { + "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."read-pkg"."^1.0.0" = + self.by-version."read-pkg"."1.1.0"; + by-version."read-pkg"."1.1.0" = self.buildNodePackage { + name = "read-pkg-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz"; + name = "read-pkg-1.1.0.tgz"; + sha1 = "f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"; + }; + deps = { + "load-json-file-1.1.0" = self.by-version."load-json-file"."1.1.0"; + "normalize-package-data-2.3.5" = self.by-version."normalize-package-data"."2.3.5"; + "path-type-1.1.0" = self.by-version."path-type"."1.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."read-pkg-up"."^1.0.1" = + self.by-version."read-pkg-up"."1.0.1"; + by-version."read-pkg-up"."1.0.1" = self.buildNodePackage { + name = "read-pkg-up-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz"; + name = "read-pkg-up-1.0.1.tgz"; + sha1 = "9d63c13276c065918d57f002a57f40a1b643fb02"; + }; + deps = { + "find-up-1.1.2" = self.by-version."find-up"."1.1.2"; + "read-pkg-1.1.0" = self.by-version."read-pkg"."1.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."readable-stream"."^2.0.0" = + self.by-version."readable-stream"."2.0.6"; + by-version."readable-stream"."2.0.6" = self.buildNodePackage { + name = "readable-stream-2.0.6"; + version = "2.0.6"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz"; + name = "readable-stream-2.0.6.tgz"; + sha1 = "8f90341e68a53ccc928788dacfcd11b36eb9b78e"; + }; + deps = { + "core-util-is-1.0.2" = self.by-version."core-util-is"."1.0.2"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "isarray-1.0.0" = self.by-version."isarray"."1.0.0"; + "process-nextick-args-1.0.6" = self.by-version."process-nextick-args"."1.0.6"; + "string_decoder-0.10.31" = self.by-version."string_decoder"."0.10.31"; + "util-deprecate-1.0.2" = self.by-version."util-deprecate"."1.0.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."readable-stream"."~2.0.5" = + self.by-version."readable-stream"."2.0.6"; + by-spec."redent"."^1.0.0" = + self.by-version."redent"."1.0.0"; + by-version."redent"."1.0.0" = self.buildNodePackage { + name = "redent-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/redent/-/redent-1.0.0.tgz"; + name = "redent-1.0.0.tgz"; + sha1 = "cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"; + }; + deps = { + "indent-string-2.1.0" = self.by-version."indent-string"."2.1.0"; + "strip-indent-1.0.1" = self.by-version."strip-indent"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."repeating"."^2.0.0" = + self.by-version."repeating"."2.0.0"; + by-version."repeating"."2.0.0" = self.buildNodePackage { + name = "repeating-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/repeating/-/repeating-2.0.0.tgz"; + name = "repeating-2.0.0.tgz"; + sha1 = "fd27d6d264d18fbebfaa56553dd7b82535a5034e"; + }; + deps = { + "is-finite-1.0.1" = self.by-version."is-finite"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."request"."2.69.0" = self.buildNodePackage { + name = "request-2.69.0"; + version = "2.69.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/request/-/request-2.69.0.tgz"; + name = "request-2.69.0.tgz"; + sha1 = "cf91d2e000752b1217155c005241911991a2346a"; + }; + deps = { + "aws-sign2-0.6.0" = self.by-version."aws-sign2"."0.6.0"; + "aws4-1.3.2" = self.by-version."aws4"."1.3.2"; + "bl-1.0.3" = self.by-version."bl"."1.0.3"; + "caseless-0.11.0" = self.by-version."caseless"."0.11.0"; + "combined-stream-1.0.5" = self.by-version."combined-stream"."1.0.5"; + "extend-3.0.0" = self.by-version."extend"."3.0.0"; + "forever-agent-0.6.1" = self.by-version."forever-agent"."0.6.1"; + "form-data-1.0.0-rc4" = self.by-version."form-data"."1.0.0-rc4"; + "har-validator-2.0.6" = self.by-version."har-validator"."2.0.6"; + "hawk-3.1.3" = self.by-version."hawk"."3.1.3"; + "http-signature-1.1.1" = self.by-version."http-signature"."1.1.1"; + "is-typedarray-1.0.0" = self.by-version."is-typedarray"."1.0.0"; + "isstream-0.1.2" = self.by-version."isstream"."0.1.2"; + "json-stringify-safe-5.0.1" = self.by-version."json-stringify-safe"."5.0.1"; + "mime-types-2.1.10" = self.by-version."mime-types"."2.1.10"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; + "oauth-sign-0.8.1" = self.by-version."oauth-sign"."0.8.1"; + "qs-6.0.2" = self.by-version."qs"."6.0.2"; + "stringstream-0.0.5" = self.by-version."stringstream"."0.0.5"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; + "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."request"."^2.45.0" = + self.by-version."request"."2.69.0"; + by-version."rimraf"."2.5.2" = self.buildNodePackage { + name = "rimraf-2.5.2"; + version = "2.5.2"; + bin = true; + src = fetchurl { + url = "http://registry.npmjs.org/rimraf/-/rimraf-2.5.2.tgz"; + name = "rimraf-2.5.2.tgz"; + sha1 = "62ba947fa4c0b4363839aefecd4f0fbad6059726"; + }; + deps = { + "glob-7.0.3" = self.by-version."glob"."7.0.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."semver"."2 || 3 || 4 || 5" = + self.by-version."semver"."5.1.0"; + by-version."semver"."5.1.0" = self.buildNodePackage { + name = "semver-5.1.0"; + version = "5.1.0"; + bin = true; + src = fetchurl { + url = "http://registry.npmjs.org/semver/-/semver-5.1.0.tgz"; + name = "semver-5.1.0.tgz"; + sha1 = "85f2cf8550465c4df000cf7d86f6b054106ab9e5"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."semver".">=5.1.0 <6" = + self.by-version."semver"."5.1.0"; + by-version."semver"."4.3.6" = self.buildNodePackage { + name = "semver-4.3.6"; + version = "4.3.6"; + bin = true; + src = fetchurl { + url = "http://registry.npmjs.org/semver/-/semver-4.3.6.tgz"; + name = "semver-4.3.6.tgz"; + sha1 = "300bc6e0e86374f7ba61068b5b1ecd57fc6532da"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."semver"."^5.0.3" = + self.by-version."semver"."5.1.0"; + by-version."semver-diff"."2.1.0" = self.buildNodePackage { + name = "semver-diff-2.1.0"; + version = "2.1.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz"; + name = "semver-diff-2.1.0.tgz"; + sha1 = "4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36"; + }; + deps = { + "semver-5.1.0" = self.by-version."semver"."5.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."sigmund"."1.0.1" = self.buildNodePackage { + name = "sigmund-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz"; + name = "sigmund-1.0.1.tgz"; + sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."signal-exit"."^2.1.2" = + self.by-version."signal-exit"."2.1.2"; + by-version."signal-exit"."2.1.2" = self.buildNodePackage { + name = "signal-exit-2.1.2"; + version = "2.1.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/signal-exit/-/signal-exit-2.1.2.tgz"; + name = "signal-exit-2.1.2.tgz"; + sha1 = "375879b1f92ebc3b334480d038dc546a6d558564"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sort-keys"."^1.0.0" = + self.by-version."sort-keys"."1.1.1"; + by-version."sort-keys"."1.1.1" = self.buildNodePackage { + name = "sort-keys-1.1.1"; + version = "1.1.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/sort-keys/-/sort-keys-1.1.1.tgz"; + name = "sort-keys-1.1.1.tgz"; + sha1 = "a791c26071df66c356bf5dcad9cfb57a7b2f826e"; + }; + deps = { + "is-plain-obj-1.1.0" = self.by-version."is-plain-obj"."1.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sort-keys-length"."^1.0.0" = + self.by-version."sort-keys-length"."1.0.1"; + by-version."sort-keys-length"."1.0.1" = self.buildNodePackage { + name = "sort-keys-length-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz"; + name = "sort-keys-length-1.0.1.tgz"; + sha1 = "9cb6f4f4e9e48155a6aa0671edd336ff1479a188"; + }; + deps = { + "sort-keys-1.1.1" = self.by-version."sort-keys"."1.1.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."spdx-correct"."~1.0.0" = + self.by-version."spdx-correct"."1.0.2"; + by-version."spdx-correct"."1.0.2" = self.buildNodePackage { + name = "spdx-correct-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz"; + name = "spdx-correct-1.0.2.tgz"; + sha1 = "4b3073d933ff51f3912f03ac5519498a4150db40"; + }; + deps = { + "spdx-license-ids-1.2.0" = self.by-version."spdx-license-ids"."1.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."spdx-exceptions"."^1.0.4" = + self.by-version."spdx-exceptions"."1.0.4"; + by-version."spdx-exceptions"."1.0.4" = self.buildNodePackage { + name = "spdx-exceptions-1.0.4"; + version = "1.0.4"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.4.tgz"; + name = "spdx-exceptions-1.0.4.tgz"; + sha1 = "220b84239119ae9045a892db81a83f4ce16f80fd"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."spdx-expression-parse"."~1.0.0" = + self.by-version."spdx-expression-parse"."1.0.2"; + by-version."spdx-expression-parse"."1.0.2" = self.buildNodePackage { + name = "spdx-expression-parse-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.2.tgz"; + name = "spdx-expression-parse-1.0.2.tgz"; + sha1 = "d52b14b5e9670771440af225bcb563122ac452f6"; + }; + deps = { + "spdx-exceptions-1.0.4" = self.by-version."spdx-exceptions"."1.0.4"; + "spdx-license-ids-1.2.0" = self.by-version."spdx-license-ids"."1.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."spdx-license-ids"."^1.0.0" = + self.by-version."spdx-license-ids"."1.2.0"; + by-version."spdx-license-ids"."1.2.0" = self.buildNodePackage { + name = "spdx-license-ids-1.2.0"; + version = "1.2.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.0.tgz"; + name = "spdx-license-ids-1.2.0.tgz"; + sha1 = "b549dd0f63dcb745a17e2ea3a07402e0e332d1e2"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."spdx-license-ids"."^1.0.2" = + self.by-version."spdx-license-ids"."1.2.0"; + by-spec."split"."0.2" = + self.by-version."split"."0.2.10"; + by-version."split"."0.2.10" = self.buildNodePackage { + name = "split-0.2.10"; + version = "0.2.10"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/split/-/split-0.2.10.tgz"; + name = "split-0.2.10.tgz"; + sha1 = "67097c601d697ce1368f418f06cd201cf0521a57"; + }; + deps = { + "through-2.3.8" = self.by-version."through"."2.3.8"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."sprintf-js"."1.0.3" = self.buildNodePackage { + name = "sprintf-js-1.0.3"; + version = "1.0.3"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"; + name = "sprintf-js-1.0.3.tgz"; + sha1 = "04e6926f662895354f3dd015203633b857297e2c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sshpk"."^1.7.0" = + self.by-version."sshpk"."1.7.4"; + by-version."sshpk"."1.7.4" = self.buildNodePackage { + name = "sshpk-1.7.4"; + version = "1.7.4"; + bin = true; + src = fetchurl { + url = "http://registry.npmjs.org/sshpk/-/sshpk-1.7.4.tgz"; + name = "sshpk-1.7.4.tgz"; + sha1 = "ad7b47defca61c8415d964243b62b0ce60fbca38"; + }; + deps = { + "asn1-0.2.3" = self.by-version."asn1"."0.2.3"; + "assert-plus-0.2.0" = self.by-version."assert-plus"."0.2.0"; + "dashdash-1.13.0" = self.by-version."dashdash"."1.13.0"; + }; + optionalDependencies = { + "jsbn-0.1.0" = self.by-version."jsbn"."0.1.0"; + "tweetnacl-0.14.1" = self.by-version."tweetnacl"."0.14.1"; + "jodid25519-1.0.2" = self.by-version."jodid25519"."1.0.2"; + "ecc-jsbn-0.1.1" = self.by-version."ecc-jsbn"."0.1.1"; + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."stringstream"."0.0.5" = self.buildNodePackage { + name = "stringstream-0.0.5"; + version = "0.0.5"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz"; + name = "stringstream-0.0.5.tgz"; + sha1 = "4e484cd4de5a0bbbee18e46307710a8a81621878"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."strip-ansi"."^3.0.0" = + self.by-version."strip-ansi"."3.0.1"; + by-version."strip-ansi"."3.0.1" = self.buildNodePackage { + name = "strip-ansi-3.0.1"; + version = "3.0.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; + name = "strip-ansi-3.0.1.tgz"; + sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; + }; + deps = { + "ansi-regex-2.0.0" = self.by-version."ansi-regex"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."strip-bom"."^2.0.0" = + self.by-version."strip-bom"."2.0.0"; + by-version."strip-bom"."2.0.0" = self.buildNodePackage { + name = "strip-bom-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz"; + name = "strip-bom-2.0.0.tgz"; + sha1 = "6219a85616520491f35788bdbf1447a99c7e6b0e"; + }; + deps = { + "is-utf8-0.2.1" = self.by-version."is-utf8"."0.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."strip-indent"."^1.0.1" = + self.by-version."strip-indent"."1.0.1"; + by-version."strip-indent"."1.0.1" = self.buildNodePackage { + name = "strip-indent-1.0.1"; + version = "1.0.1"; + bin = true; + src = fetchurl { + url = "http://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz"; + name = "strip-indent-1.0.1.tgz"; + sha1 = "0c7962a6adefa7bbd4ac366460a638552ae1a0a2"; + }; + deps = { + "get-stdin-4.0.1" = self.by-version."get-stdin"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."strip-json-comments"."~1.0.4" = + self.by-version."strip-json-comments"."1.0.4"; + by-version."strip-json-comments"."1.0.4" = self.buildNodePackage { + name = "strip-json-comments-1.0.4"; + version = "1.0.4"; + bin = true; + src = fetchurl { + url = "http://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz"; + name = "strip-json-comments-1.0.4.tgz"; + sha1 = "1e15fbcac97d3ee99bf2d73b4c656b082bbafb91"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."supports-color"."^2.0.0" = + self.by-version."supports-color"."2.0.0"; + by-version."supports-color"."2.0.0" = self.buildNodePackage { + name = "supports-color-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"; + name = "supports-color-2.0.0.tgz"; + sha1 = "535d045ce6b6363fa40117084629995e9df324c7"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."temp"."0.8.3" = + self.by-version."temp"."0.8.3"; + by-version."temp"."0.8.3" = self.buildNodePackage { + name = "temp-0.8.3"; + version = "0.8.3"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/temp/-/temp-0.8.3.tgz"; + name = "temp-0.8.3.tgz"; + sha1 = "e0c6bc4d26b903124410e4fed81103014dfc1f59"; + }; + deps = { + "os-tmpdir-1.0.1" = self.by-version."os-tmpdir"."1.0.1"; + "rimraf-2.2.8" = self.by-version."rimraf"."2.2.8"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."temp"."^0.8.1" = + self.by-version."temp"."0.8.3"; + by-spec."through"."2" = + self.by-version."through"."2.3.8"; + by-version."through"."2.3.8" = self.buildNodePackage { + name = "through-2.3.8"; + version = "2.3.8"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/through/-/through-2.3.8.tgz"; + name = "through-2.3.8.tgz"; + sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."through"."~2.3" = + self.by-version."through"."2.3.8"; + by-spec."through"."~2.3.1" = + self.by-version."through"."2.3.8"; + by-spec."topo"."1.x.x" = + self.by-version."topo"."1.1.0"; + by-version."topo"."1.1.0" = self.buildNodePackage { + name = "topo-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/topo/-/topo-1.1.0.tgz"; + name = "topo-1.1.0.tgz"; + sha1 = "e9d751615d1bb87dc865db182fa1ca0a5ef536d5"; + }; + deps = { + "hoek-2.16.3" = self.by-version."hoek"."2.16.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tough-cookie"."~2.2.0" = + self.by-version."tough-cookie"."2.2.2"; + by-version."tough-cookie"."2.2.2" = self.buildNodePackage { + name = "tough-cookie-2.2.2"; + version = "2.2.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.2.tgz"; + name = "tough-cookie-2.2.2.tgz"; + sha1 = "c83a1830f4e5ef0b93ef2a3488e724f8de016ac7"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."trim-newlines"."^1.0.0" = + self.by-version."trim-newlines"."1.0.0"; + by-version."trim-newlines"."1.0.0" = self.buildNodePackage { + name = "trim-newlines-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz"; + name = "trim-newlines-1.0.0.tgz"; + sha1 = "5887966bb582a4503a41eb524f7d35011815a613"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tsd"."~0.6.5" = + self.by-version."tsd"."0.6.5"; + by-version."tsd"."0.6.5" = self.buildNodePackage { + name = "tsd-0.6.5"; + version = "0.6.5"; + bin = true; + src = fetchurl { + url = "http://registry.npmjs.org/tsd/-/tsd-0.6.5.tgz"; + name = "tsd-0.6.5.tgz"; + sha1 = "34a0b64c1db6a70b3860fe4f5571d9d1357421ad"; + }; + deps = { + "assertion-error-1.0.0" = self.by-version."assertion-error"."1.0.0"; + "bl-0.9.5" = self.by-version."bl"."0.9.5"; + "bluebird-1.2.4" = self.by-version."bluebird"."1.2.4"; + "chalk-1.1.1" = self.by-version."chalk"."1.1.1"; + "colors-1.1.2" = self.by-version."colors"."1.1.2"; + "deep-freeze-0.0.1" = self.by-version."deep-freeze"."0.0.1"; + "definition-header-0.1.0" = self.by-version."definition-header"."0.1.0"; + "detect-indent-0.2.0" = self.by-version."detect-indent"."0.2.0"; + "diff-1.4.0" = self.by-version."diff"."1.4.0"; + "event-stream-3.1.7" = self.by-version."event-stream"."3.1.7"; + "exit-0.1.2" = self.by-version."exit"."0.1.2"; + "glob-4.5.3" = self.by-version."glob"."4.5.3"; + "joi-4.9.0" = self.by-version."joi"."4.9.0"; + "joi-assert-0.0.3" = self.by-version."joi-assert"."0.0.3"; + "jsesc-0.5.0" = self.by-version."jsesc"."0.5.0"; + "json-pointer-0.2.2" = self.by-version."json-pointer"."0.2.2"; + "lazy.js-0.3.2" = self.by-version."lazy.js"."0.3.2"; + "lru-cache-2.5.2" = self.by-version."lru-cache"."2.5.2"; + "minimatch-1.0.0" = self.by-version."minimatch"."1.0.0"; + "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; + "ministyle-0.1.4" = self.by-version."ministyle"."0.1.4"; + "minitable-0.0.4" = self.by-version."minitable"."0.0.4"; + "miniwrite-0.1.4" = self.by-version."miniwrite"."0.1.4"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "open-0.0.5" = self.by-version."open"."0.0.5"; + "request-2.69.0" = self.by-version."request"."2.69.0"; + "rimraf-2.2.8" = self.by-version."rimraf"."2.2.8"; + "semver-4.3.6" = self.by-version."semver"."4.3.6"; + "type-detect-0.1.2" = self.by-version."type-detect"."0.1.2"; + "universal-analytics-0.3.11" = self.by-version."universal-analytics"."0.3.11"; + "update-notifier-0.2.2" = self.by-version."update-notifier"."0.2.2"; + "uri-templates-0.1.9" = self.by-version."uri-templates"."0.1.9"; + "uuid-2.0.1" = self.by-version."uuid"."2.0.1"; + "verror-1.4.0" = self.by-version."verror"."1.4.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "tsd" = self.by-version."tsd"."0.6.5"; + by-spec."tunnel-agent"."~0.4.1" = + self.by-version."tunnel-agent"."0.4.2"; + by-version."tunnel-agent"."0.4.2" = self.buildNodePackage { + name = "tunnel-agent-0.4.2"; + version = "0.4.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.2.tgz"; + name = "tunnel-agent-0.4.2.tgz"; + sha1 = "1104e3f36ac87125c287270067d582d18133bfee"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tweetnacl".">=0.13.0 <1.0.0" = + self.by-version."tweetnacl"."0.14.1"; + by-version."tweetnacl"."0.14.1" = self.buildNodePackage { + name = "tweetnacl-0.14.1"; + version = "0.14.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.1.tgz"; + name = "tweetnacl-0.14.1.tgz"; + sha1 = "37c6a1fb5cd4b63b7acee450d8419d9c0024cc03"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."type-detect"."~0.1.2" = + self.by-version."type-detect"."0.1.2"; + by-version."type-detect"."0.1.2" = self.buildNodePackage { + name = "type-detect-0.1.2"; + version = "0.1.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/type-detect/-/type-detect-0.1.2.tgz"; + name = "type-detect-0.1.2.tgz"; + sha1 = "c88e853e54e5abd88f1bf3194b477c853c94f854"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."universal-analytics"."~0.3.4" = + self.by-version."universal-analytics"."0.3.11"; + by-version."universal-analytics"."0.3.11" = self.buildNodePackage { + name = "universal-analytics-0.3.11"; + version = "0.3.11"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/universal-analytics/-/universal-analytics-0.3.11.tgz"; + name = "universal-analytics-0.3.11.tgz"; + sha1 = "512879193a12a66dcbd9185121389bab913cd4b6"; + }; + deps = { + "request-2.69.0" = self.by-version."request"."2.69.0"; + "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; + "async-0.2.10" = self.by-version."async"."0.2.10"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."update-notifier"."^0.2.2" = + self.by-version."update-notifier"."0.2.2"; + by-version."update-notifier"."0.2.2" = self.buildNodePackage { + name = "update-notifier-0.2.2"; + version = "0.2.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/update-notifier/-/update-notifier-0.2.2.tgz"; + name = "update-notifier-0.2.2.tgz"; + sha1 = "e69b3a784b4e686a2acd98f5e66944591996e187"; + }; + deps = { + "chalk-0.5.1" = self.by-version."chalk"."0.5.1"; + "configstore-0.3.2" = self.by-version."configstore"."0.3.2"; + "is-npm-1.0.0" = self.by-version."is-npm"."1.0.0"; + "latest-version-1.0.1" = self.by-version."latest-version"."1.0.1"; + "semver-diff-2.1.0" = self.by-version."semver-diff"."2.1.0"; + "string-length-1.0.1" = self.by-version."string-length"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."uri-templates"."~0.1.5" = + self.by-version."uri-templates"."0.1.9"; + by-version."uri-templates"."0.1.9" = self.buildNodePackage { + name = "uri-templates-0.1.9"; + version = "0.1.9"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/uri-templates/-/uri-templates-0.1.9.tgz"; + name = "uri-templates-0.1.9.tgz"; + sha1 = "c56f7a5731b3a310226695f6e5639180fd1aa249"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."util-deprecate"."~1.0.1" = + self.by-version."util-deprecate"."1.0.2"; + by-version."util-deprecate"."1.0.2" = self.buildNodePackage { + name = "util-deprecate-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"; + name = "util-deprecate-1.0.2.tgz"; + sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."validate-npm-package-license"."^3.0.1" = + self.by-version."validate-npm-package-license"."3.0.1"; + by-version."validate-npm-package-license"."3.0.1" = self.buildNodePackage { + name = "validate-npm-package-license-3.0.1"; + version = "3.0.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz"; + name = "validate-npm-package-license-3.0.1.tgz"; + sha1 = "2804babe712ad3379459acfbe24746ab2c303fbc"; + }; + deps = { + "spdx-correct-1.0.2" = self.by-version."spdx-correct"."1.0.2"; + "spdx-expression-parse-1.0.2" = self.by-version."spdx-expression-parse"."1.0.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."verror"."~1.4.0" = + self.by-version."verror"."1.4.0"; + by-version."verror"."1.4.0" = self.buildNodePackage { + name = "verror-1.4.0"; + version = "1.4.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/verror/-/verror-1.4.0.tgz"; + name = "verror-1.4.0.tgz"; + sha1 = "5d8fdf5875141c3183b7c6bc23a0aa3e3e6ca4e2"; + }; + deps = { + "extsprintf-1.0.3" = self.by-version."extsprintf"."1.0.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-version."xtend"."4.0.1" = self.buildNodePackage { + name = "xtend-4.0.1"; + version = "4.0.1"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz"; + name = "xtend-4.0.1.tgz"; + sha1 = "a5c6d532be656e23db820efb943a1f04998d63af"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."yallist"."^2.0.0" = + self.by-version."yallist"."2.0.0"; + by-version."yallist"."2.0.0" = self.buildNodePackage { + name = "yallist-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "http://registry.npmjs.org/yallist/-/yallist-2.0.0.tgz"; + name = "yallist-2.0.0.tgz"; + sha1 = "306c543835f09ee1a4cb23b7bce9ab341c91cdd4"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; } diff --git a/pkgs/top-level/node-packages.json b/pkgs/top-level/node-packages.json index e67aecca695..600ea00b93e 100644 --- a/pkgs/top-level/node-packages.json +++ b/pkgs/top-level/node-packages.json @@ -122,7 +122,6 @@ , "git-run" , "bower" , "bower2nix" -, "fetch-bower" , "npm-check-updates" , "node-stringprep" , "ltx" diff --git a/pkgs/top-level/node-packages.nix b/pkgs/top-level/node-packages.nix index fca110d2a01..d8eb668107b 100644 --- a/pkgs/top-level/node-packages.nix +++ b/pkgs/top-level/node-packages.nix @@ -63,6 +63,12 @@ in rec { sha1 = "26220f7e43ee3c0d714860db61c4d0ecc9bb3d89"; }} ../webdrvr/chromedriver_linux64.zip ''; + bower2nix.buildInputs = [ pkgs.makeWrapper ]; + bower2nix.postInstall = '' + for prog in bower2nix fetch-bower; do + wrapProgram "$out/bin/$prog" --prefix PATH : "${pkgs.git}/bin" + done + ''; } // args.overrides or {}; # Apply overrides and back compatiblity transformations From b22e94c2008bca19b62d86d9e7264ea478daf91c Mon Sep 17 00:00:00 2001 From: Rodney Lorrimar Date: Sat, 26 Mar 2016 15:33:30 +0000 Subject: [PATCH 0986/1059] Add pkgs.buildBowerComponents function --- .../bower-modules/generic/default.nix | 49 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++ 2 files changed, 53 insertions(+) create mode 100644 pkgs/development/bower-modules/generic/default.nix diff --git a/pkgs/development/bower-modules/generic/default.nix b/pkgs/development/bower-modules/generic/default.nix new file mode 100644 index 00000000000..ba15b588160 --- /dev/null +++ b/pkgs/development/bower-modules/generic/default.nix @@ -0,0 +1,49 @@ +{ pkgs }: + +{ buildInputs ? [], generated, ... } @ attrs: + +let + # Fetches the bower packages. `generated` should be the result of a + # `bower2nix` command. + bowerPackages = import generated { + inherit (pkgs) buildEnv fetchbower; + }; + +in pkgs.stdenv.mkDerivation ( + attrs + // + { + name = "bower_components-" + attrs.name; + + inherit bowerPackages; + + builder = builtins.toFile "builder.sh" '' + source $stdenv/setup + + # The project's bower.json is required + cp $src/bower.json . + + # Dereference symlinks -- bower doesn't like them + cp --recursive --reflink=auto \ + --dereference --no-preserve=mode \ + $bowerPackages bc + + # Bower install in offline mode -- links together the fetched + # bower packages. + HOME=$PWD bower \ + --config.storage.packages=bc/packages \ + --config.storage.registry=bc/registry \ + --offline install + + # Sets up a single bower_components directory within + # the output derivation. + mkdir -p $out + mv bower_components $out + ''; + + buildInputs = buildInputs ++ [ + pkgs.git + pkgs.nodePackages.bower + ]; + } +) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1ec3fa9cd96..bccceb12e04 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9150,6 +9150,10 @@ in yuicompressor = callPackage ../development/tools/yuicompressor { }; + ### DEVELOPMENT / BOWER MODULES (JAVASCRIPT) + + buildBowerComponents = callPackage ../development/bower-modules/generic { }; + ### DEVELOPMENT / GO MODULES go14Packages = callPackage ./go-packages.nix { From 123da5c1c181e3a7b8136d932ec7d27fa7435ece Mon Sep 17 00:00:00 2001 From: Rodney Lorrimar Date: Sat, 26 Mar 2016 16:50:45 +0000 Subject: [PATCH 0987/1059] nixpkgs manual: Add documentation for bower2nix Fixes #9459 Fixes #13214 --- doc/languages-frameworks/bower.xml | 244 +++++++++++++++++++++++++++++ doc/languages-frameworks/index.xml | 18 +++ 2 files changed, 262 insertions(+) create mode 100644 doc/languages-frameworks/bower.xml diff --git a/doc/languages-frameworks/bower.xml b/doc/languages-frameworks/bower.xml new file mode 100644 index 00000000000..742d3c2e9fe --- /dev/null +++ b/doc/languages-frameworks/bower.xml @@ -0,0 +1,244 @@ +
+ +Bower + + + Bower is a package manager + for web site front-end components. Bower packages (comprising of + build artefacts and sometimes sources) are stored in + git repositories, typically on Github. The + package registry is run by the Bower team with package metadata + coming from the bower.json file within each + package. + + + + The end result of running Bower is a + bower_components directory which can be included + in the web app's build process. + + + + Bower can be run interactively, by installing + nodePackages.bower. More interestingly, the Bower + components can be declared in a Nix derivation, with the help of + nodePackages.bower2nix. + + +
+ <command>bower2nix</command> usage + + + Suppose you have a bower.json with the following contents: + + +<filename>bower.json</filename> + + + + + + + + + Running bower2nix will produce something like the + following output: + + + + + + + + + Using the bower2nix command line arguments, the + output can be redirected to a file. A name like + bower-packages.nix would be fine. + + + + The resulting derivation is a union of all the downloaded Bower + packages (and their dependencies). To use it, they still need to be + linked together by Bower, which is where + buildBowerComponents is useful. + +
+ +
<varname>buildBowerComponents</varname> function + + + The function is implemented in + pkgs/development/bower-modules/generic/default.nix. + Example usage: + +buildBowerComponents + +bowerComponents = buildBowerComponents { + name = "my-web-app"; + generated = ./bower-packages.nix; + src = myWebApp; +}; + + + + + +In , the following arguments +are of special significance to the function: + + + + + generated specifies the file which was created by bower2nix. + + + + + + src is your project's sources. It needs to + contain a bower.json file. + + + + + + + buildBowerComponents will run Bower to link + together the output of bower2nix, resulting in a + bower_components directory which can be used. + + + + Here is an example of a web frontend build process using + gulp. You might use grunt, or + anything else. + + +Example build script (<filename>gulpfile.js</filename>) + + + + + + + Full example — <filename>default.nix</filename> + +{ myWebApp ? { outPath = ./.; name = "myWebApp"; } +, pkgs ? import <nixpkgs> {} +}: + +pkgs.stdenv.mkDerivation { + name = "my-web-app-frontend"; + src = myWebApp; + + buildInputs = [ pkgs.nodePackages.gulp ]; + + bowerComponents = pkgs.buildBowerComponents { + name = "my-web-app"; + generated = ./bower-packages.nix; + src = myWebApp; + }; + + buildPhase = '' + cp --reflink=auto --no-preserve=mode -R $bowerComponents/bower_components . + export HOME=$PWD + ${pkgs.nodePackages.gulp}/bin/gulp build + ''; + + installPhase = "mv gulpdist $out"; +} + + + + +A few notes about : + + + + + The result of buildBowerComponents is an + input to the frontend build. + + + + + + Whether to symlink or copy the + bower_components directory depends on the + build tool in use. In this case a copy is used to avoid + gulp silliness with permissions. + + + + + + gulp requires HOME to + refer to a writeable directory. + + + + + + The actual build command. Other tools could be used. + + + + +
+ +
+ Troubleshooting + + + + + + ENOCACHE errors from + buildBowerComponents + + + + This means that Bower was looking for a package version which + doesn't exist in the generated + bower-packages.nix. + + + If bower.json has been updated, then run + bower2nix again. + + + It could also be a bug in bower2nix or + fetchbower. If possible, try reformulating + the version specification in bower.json. + + + + + +
+ +
diff --git a/doc/languages-frameworks/index.xml b/doc/languages-frameworks/index.xml index ab62afa40d6..63c4b7dec60 100644 --- a/doc/languages-frameworks/index.xml +++ b/doc/languages-frameworks/index.xml @@ -24,6 +24,24 @@ such as Perl or Haskell. These are described in this chapter. + + + + +>>>>>>> 05113a5... nixpkgs manual: Add documentation for bower2nix 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 0988/1059] 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 0989/1059] 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 0990/1059] 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 01f96aa572e5c1ff2cbd4bd2a8b49f23bf6f1eef Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Mon, 28 Mar 2016 10:41:47 +0000 Subject: [PATCH 0991/1059] osrm-backend: remove osrm-backend_luajit variant - it has been broken for a while --- 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 9c458eb9130..b9383f1bdab 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9606,8 +9606,6 @@ in osrm-backend = callPackage ../servers/osrm-backend { }; - osrm-backend_luajit = callPackage ../servers/osrm-backend { luabind = luabind_luajit; }; - p910nd = callPackage ../servers/p910nd { }; petidomo = callPackage ../servers/mail/petidomo { }; From 350d196f7a1613170b81352b80933b2fdebbf98e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 23 Mar 2016 08:44:15 -0500 Subject: [PATCH 0992/1059] 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 0993/1059] 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 0994/1059] 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 0995/1059] 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 f4cb39c3d3153a8d01efa0949694766ba25fa444 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:02:36 +0200 Subject: [PATCH 0996/1059] mesa: maintenance update 11.1.1 -> 11.1.2 --- pkgs/development/libraries/mesa/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/mesa/default.nix b/pkgs/development/libraries/mesa/default.nix index 94eed4193c3..1c2257998e8 100644 --- a/pkgs/development/libraries/mesa/default.nix +++ b/pkgs/development/libraries/mesa/default.nix @@ -22,7 +22,7 @@ else */ let - version = "11.1.1"; + version = "11.1.2"; # this is the default search path for DRI drivers driverLink = "/run/opengl-driver" + stdenv.lib.optionalString stdenv.isi686 "-32"; in @@ -38,7 +38,7 @@ stdenv.mkDerivation { + head (splitString "." version) + ''.x/${version}/mesa-${version}.tar.xz'') "https://launchpad.net/mesa/trunk/${version}/+download/mesa-${version}.tar.xz" ]; - sha256 = "087xlxl8dzmhzjilpsdiy19dn106spq120c9ndgnn4qlqm7hgnv4"; + sha256 = "8f72aead896b340ba0f7a4a474bfaf71681f5d675592aec1cb7ba698e319148b"; }; prePatch = "patchShebangs ."; From 2636fcf7cd66307745801ec5f3e4241e5c2712f6 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 28 Mar 2016 14:24:06 +0200 Subject: [PATCH 0997/1059] 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 0998/1059] 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 0999/1059] 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 1000/1059] 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 1001/1059] 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 86435a1b41a35daa09bb0ea15593cba16dcc27d9 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Mon, 28 Mar 2016 13:39:38 +0000 Subject: [PATCH 1002/1059] kombu: 3.0.33 -> 3.0.35, add redis to buildInputs to allow tests to pass --- 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..8b487ec0daf 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11019,16 +11019,16 @@ in modules // { kombu = buildPythonPackage rec { name = "kombu-${version}"; - version = "3.0.33"; + version = "3.0.35"; disabled = pythonOlder "2.6"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/k/kombu/${name}.tar.gz"; - sha256 = "16brjx2lgwbj2a37d0pjbfb84nvld6irghmqrs3qfncajp51hgc5"; + sha256 = "09xpxpjz9nk8d14dj361dqdwyjwda3jlf1a7v6jif9wn2xm37ar2"; }; - buildInputs = with self; optionals (!isPy3k) [ anyjson mock unittest2 nose ]; + buildInputs = with self; optionals (!isPy3k) [ anyjson mock unittest2 nose redis ]; propagatedBuildInputs = with self; [ amqp anyjson ] ++ (optionals (pythonOlder "2.7") [ importlib ordereddict ]); From 9ee7b3f6284649f97c0c97125848ba0f651d3a41 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 28 Mar 2016 15:51:23 +0200 Subject: [PATCH 1003/1059] 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 1004/1059] 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"; From b8cc1117645279fd310a7403411307ddd0d91f25 Mon Sep 17 00:00:00 2001 From: taku0 Date: Mon, 28 Mar 2016 23:14:33 +0900 Subject: [PATCH 1005/1059] oraclejdk: 8u73, 8u74 -> 8u77 --- pkgs/development/compilers/oraclejdk/jdk8-linux.nix | 6 +++--- pkgs/development/compilers/oraclejdk/jdk8psu-linux.nix | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/compilers/oraclejdk/jdk8-linux.nix b/pkgs/development/compilers/oraclejdk/jdk8-linux.nix index 48a586ffb0f..554e3fc9838 100644 --- a/pkgs/development/compilers/oraclejdk/jdk8-linux.nix +++ b/pkgs/development/compilers/oraclejdk/jdk8-linux.nix @@ -1,9 +1,9 @@ import ./jdk-linux-base.nix { productVersion = "8"; - patchVersion = "73"; + patchVersion = "77"; downloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html; - sha256_i686 = "1bi3yj2ds9w13p2lzvmxffk5gax8syi3bw52w8pam1jr3fmzgwgl"; - sha256_x86_64 = "1rp3nbnhkncyr48m0nn3pf5fr4bp3lzm0ki4gca7mn7rzag19a26"; + sha256_i686 = "14hyniai5l9qpg0pbnxa4rhyhk90qgihszfkn8h3vziqhmvrp27j"; + sha256_x86_64 = "0hyzvvj4bf0r4jda8fv3k06d9bf37nji37qbq067mcjp5abc0zd4"; jceName = "jce_policy-8.zip"; jceDownloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html; sha256JCE = "0n8b6b8qmwb14lllk2lk1q1ahd3za9fnjigz5xn65mpg48whl0pk"; diff --git a/pkgs/development/compilers/oraclejdk/jdk8psu-linux.nix b/pkgs/development/compilers/oraclejdk/jdk8psu-linux.nix index 0f6c4ad668a..554e3fc9838 100644 --- a/pkgs/development/compilers/oraclejdk/jdk8psu-linux.nix +++ b/pkgs/development/compilers/oraclejdk/jdk8psu-linux.nix @@ -1,9 +1,9 @@ import ./jdk-linux-base.nix { productVersion = "8"; - patchVersion = "74"; + patchVersion = "77"; downloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html; - sha256_i686 = "1vc3g89fbrmznb10bhh5gs143hcjg4wsy4j4hwnr1djfj83y8188"; - sha256_x86_64 = "1pfx7il1h42w3kigscdvm9vfy616lmsp1d2cqvplim3nyxwmvz8b"; + sha256_i686 = "14hyniai5l9qpg0pbnxa4rhyhk90qgihszfkn8h3vziqhmvrp27j"; + sha256_x86_64 = "0hyzvvj4bf0r4jda8fv3k06d9bf37nji37qbq067mcjp5abc0zd4"; jceName = "jce_policy-8.zip"; jceDownloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html; sha256JCE = "0n8b6b8qmwb14lllk2lk1q1ahd3za9fnjigz5xn65mpg48whl0pk"; From 364b3d2453ae33bb87b410bc3eae4de70a02364c Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Mon, 28 Mar 2016 14:00:39 +0000 Subject: [PATCH 1006/1059] kombu: tidy up, removing py3k fussiness which is handled by the deps and adding to buildInputs to allow more of the test suite to run --- 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 8b487ec0daf..d0bbe1bb370 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11028,14 +11028,14 @@ in modules // { sha256 = "09xpxpjz9nk8d14dj361dqdwyjwda3jlf1a7v6jif9wn2xm37ar2"; }; - buildInputs = with self; optionals (!isPy3k) [ anyjson mock unittest2 nose redis ]; + # most of these are simply to allow the test suite to do its job + buildInputs = with self; [ mock unittest2 nose redis qpid-python pymongo sqlalchemy pyyaml msgpack boto ]; propagatedBuildInputs = with self; [ amqp anyjson ] ++ (optionals (pythonOlder "2.7") [ importlib ordereddict ]); # tests broken on python 2.6? https://github.com/nose-devs/nose/issues/806 - # tests also appear to depend on anyjson, which has Py3k problems - doCheck = (pythonAtLeast "2.7") && !isPy3k ; + doCheck = (pythonAtLeast "2.7"); meta = { description = "Messaging library for Python"; From e6026003df5f252a9c8d701ad4adcc1c4b1e0c94 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Mon, 28 Mar 2016 14:17:53 +0000 Subject: [PATCH 1007/1059] billiard: 3.3.0.21 -> 3.3.0.23 --- 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 d0bbe1bb370..02512ebf713 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2097,13 +2097,13 @@ in modules // { billiard = buildPythonPackage rec { name = "billiard-${version}"; - version = "3.3.0.21"; + version = "3.3.0.23"; disabled = isPyPy; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/b/billiard/${name}.tar.gz"; - sha256 = "1sfsrkm5xv820wp2mz5zn2rnw6s0c9wal69v1fkr26wp1a7zf1cp"; + sha256 = "02wxsc6bhqvzh8j6w758kvgqbnj14l796mvmrcms8fgfamd2lak9"; }; buildInputs = with self; [ nose unittest2 mock ]; From a01b9f7c7436e830968af30a4b0511f02123f0b7 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Mon, 28 Mar 2016 14:23:36 +0000 Subject: [PATCH 1008/1059] celery: 3.1.19 -> 3.1.23 --- 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 02512ebf713..6bf888aae2b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2915,13 +2915,13 @@ in modules // { celery = buildPythonPackage rec { name = "celery-${version}"; - version = "3.1.19"; + version = "3.1.23"; disabled = pythonOlder "2.6"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/celery/${name}.tar.gz"; - sha256 = "0wbbsrg3vfq8v7y2nylal1gqmn3h4a5vqzbsjiwcybl21hlj2smx"; + sha256 = "0614ppp18vmiwdk0rxvz0wn62d7svanwdnx7jgqxpy9pb20rqd8s"; }; buildInputs = with self; [ mock nose unittest2 ]; From 46d26e82f48f930311ac2f25d00444fd12f3603c Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Mon, 28 Mar 2016 14:55:22 +0000 Subject: [PATCH 1009/1059] django_reversion: 1.8.5 -> 1.10.1 --- 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 814a2c56dd1..78fe4bbe56c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8301,14 +8301,14 @@ in modules // { django_reversion = buildPythonPackage rec { name = "django-reversion-${version}"; - version = "1.8.5"; + version = "1.10.1"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/d/django-reversion/${name}.tar.gz"; - sha256 = "0z8fxvxgbxfnalr5br74rsw6g42nry2q656rx7rsgmicd8n42v2r"; + url = "https://pypi.python.org/packages/source/d/django-reversion/${name}.tar.gz"; + sha256 = "01iv8w6lmmq98qjhxmnp8ddjxifmhxcmp612ijd91wc8nv8lk12w"; }; - propagatedBuildInputs = with self; [ django_1_7 ] ++ + propagatedBuildInputs = with self; [ django ] ++ (optionals (pythonOlder "2.7") [ importlib ordereddict ]); meta = { From 72b5bfda97dadf2ac2f01d8dd20bc19c6d9617bd Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 28 Mar 2016 17:07:37 +0200 Subject: [PATCH 1010/1059] v8: fix build(s) Ignore errors due to strict-overflow warnings; strip clang-only flag on non-clang builds. Concerning the latter "fix", it's not entirely clear to me why the -Wno-format-pedantic flag ends up being passed to gcc, the .gyp file appears to already condition the inclusion of this flag on whether cc=clang. --- pkgs/development/libraries/v8/generic.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/libraries/v8/generic.nix b/pkgs/development/libraries/v8/generic.nix index 51637fe6dbd..349b35549b6 100644 --- a/pkgs/development/libraries/v8/generic.nix +++ b/pkgs/development/libraries/v8/generic.nix @@ -41,6 +41,8 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ which ]; buildInputs = [ readline python icu ]; + NIX_CFLAGS_COMPILE = "-Wno-error=strict-overflow"; + buildFlags = [ "LINK=g++" "-C out" @@ -48,6 +50,10 @@ stdenv.mkDerivation rec { "BUILDTYPE=Release" ]; + postPatch = stdenv.lib.optionalString (!stdenv.cc.isClang) '' + sed -i build/standalone.gyp -e 's,-Wno-format-pedantic,,g' + ''; + enableParallelBuilding = true; installPhase = '' From 066042e3fa87b337a0fc1d9e77648c45f201b3a0 Mon Sep 17 00:00:00 2001 From: Brad Ediger Date: Mon, 28 Mar 2016 10:55:00 -0500 Subject: [PATCH 1011/1059] spotify: 1.0.25.127 -> 1.0.26.125 --- pkgs/applications/audio/spotify/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix index 498a4be7ff4..243d1e49c7b 100644 --- a/pkgs/applications/audio/spotify/default.nix +++ b/pkgs/applications/audio/spotify/default.nix @@ -5,7 +5,7 @@ assert stdenv.system == "x86_64-linux"; let - version = "1.0.25.127.g58007b4c-22"; + version = "1.0.26.125.g64dc8bc6-14"; deps = [ alsaLib @@ -50,7 +50,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://repository-origin.spotify.com/pool/non-free/s/spotify-client/spotify-client_${version}_amd64.deb"; - sha256 = "1fxps0ls0g4idw10la3qrpmp2jn85lkm3xj4nam4ycx0jj8g1v2p"; + sha256 = "09wanpml2a6k8asfc0pd56n7fia37amgsplsan1qdh6dwdzr3rv5"; }; buildInputs = [ dpkg makeWrapper ]; From 8bd72dfaa4f6987e5755ee6f31c636c466355023 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Mon, 28 Mar 2016 18:59:34 +0200 Subject: [PATCH 1012/1059] lsh: fix gcc5 build The build fails with c11 (also tested c99), but works with gnu90. --- pkgs/tools/networking/lsh/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/tools/networking/lsh/default.nix b/pkgs/tools/networking/lsh/default.nix index 77d268f3a47..5d788af1682 100644 --- a/pkgs/tools/networking/lsh/default.nix +++ b/pkgs/tools/networking/lsh/default.nix @@ -29,6 +29,8 @@ stdenv.mkDerivation rec { export lsh_cv_sys_unix98_ptys=yes ''; + NIX_CFLAGS_COMPILE = "-std=gnu90"; + buildInputs = [ gperf guile gmp zlib liboop readline gnum4 pam ]; meta = { From 9825a81cfc9eb368278383a0965a745f325b8038 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 28 Mar 2016 19:05:49 +0200 Subject: [PATCH 1013/1059] pythonPackages.numpy: 1.11 -> 1.10 Reverting default numpy to 1.11, since 1.10 breaks pandas and required patches couldn't be cherry-picked. 1.11 is still available as `pythonPackages.numpy_1_11`. --- 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 51925078838..dd109462dd5 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_11; + numpy = self.numpy_1_10; numpy_1_10 = self.buildNumpyPackage rec { version = "1.10.4"; From 43161614951b261889d91607d9ecb538b3c2f694 Mon Sep 17 00:00:00 2001 From: Patrick Callahan Date: Sat, 26 Mar 2016 10:50:48 -0700 Subject: [PATCH 1014/1059] ogre: 1.9.0 -> 1.9-hg --- pkgs/development/libraries/ogre/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/ogre/default.nix b/pkgs/development/libraries/ogre/default.nix index 51782449a25..89d694cc497 100644 --- a/pkgs/development/libraries/ogre/default.nix +++ b/pkgs/development/libraries/ogre/default.nix @@ -8,11 +8,11 @@ , nvidia_cg_toolkit }: stdenv.mkDerivation { - name = "ogre-1.9.0"; + name = "ogre-1.9-hg-20160322"; src = fetchurl { - url = "https://bitbucket.org/sinbad/ogre/get/v1-9-0.tar.gz"; - sha256 = "0p8gyn293qn3iyiy1smfmjd9zpnjb8h2zgvff8778fwh0ylbmlpa"; + url = "https://bitbucket.org/sinbad/ogre/get/v1-9.tar.gz"; + sha256 = "0w3argjy1biaxwa3c80zxxgll67wjp8czd83p87awlcvwzdk5mz9"; }; cmakeFlags = [ "-DOGRE_INSTALL_SAMPLES=yes" ] From 008bcf51a4790fcfd1a5bc65fe5a3eef41b6866f Mon Sep 17 00:00:00 2001 From: Patrick Callahan Date: Sat, 26 Mar 2016 10:55:19 -0700 Subject: [PATCH 1015/1059] tinyxml-2: init at 3.0.0 --- pkgs/development/libraries/tinyxml-2/default.nix | 11 +++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 13 insertions(+) create mode 100644 pkgs/development/libraries/tinyxml-2/default.nix diff --git a/pkgs/development/libraries/tinyxml-2/default.nix b/pkgs/development/libraries/tinyxml-2/default.nix new file mode 100644 index 00000000000..29fa2739f24 --- /dev/null +++ b/pkgs/development/libraries/tinyxml-2/default.nix @@ -0,0 +1,11 @@ +{ stdenv, fetchurl, cmake }: +let version = "3.0.0"; +in stdenv.mkDerivation rec { + name = "tinyxml-2-${version}"; + src = fetchurl { + url = "https://github.com/leethomason/tinyxml2/archive/${version}.tar.gz"; + sha256 = "0ispg7ngkry8vhzzawbq42y8gkj53xjipkycw0rkhh487ras32hj"; + }; + + nativeBuildInputs = [ cmake ]; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 60ec2ba3564..29d7a1f1161 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8788,6 +8788,8 @@ in tinyxml2 = callPackage ../development/libraries/tinyxml/2.6.2.nix { }; + tinyxml-2 = callPackage ../development/libraries/tinyxml-2 { }; + tk = tk-8_6; tk-8_6 = callPackage ../development/libraries/tk/8.6.nix { }; From b682906b6a8ab52f947f7878819bbc72a03c19ba Mon Sep 17 00:00:00 2001 From: Patrick Callahan Date: Sat, 26 Mar 2016 11:01:54 -0700 Subject: [PATCH 1016/1059] ignition robotics libs: init; .math: init at 2.3.0 --- .../libraries/ignition-math/default.nix | 23 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 8 +++++++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/development/libraries/ignition-math/default.nix diff --git a/pkgs/development/libraries/ignition-math/default.nix b/pkgs/development/libraries/ignition-math/default.nix new file mode 100644 index 00000000000..f71def55583 --- /dev/null +++ b/pkgs/development/libraries/ignition-math/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, cmake }: + +let + version = "2.3.0"; +in +stdenv.mkDerivation rec { + name = "ign-math2-${version}"; + + src = fetchurl { + url = "http://gazebosim.org/distributions/ign-math/releases/ignition-math2-${version}.tar.bz2"; + sha256 = "1a2jgq6allcxg62y0r61iv4hgxkfr1whpsxy75hg7k85s7da8dpl"; + }; + + buildInputs = [ cmake ]; + + meta = with stdenv.lib; { + homepage = http://ignitionrobotics.org/libraries/math; + description = "Math library by Ingition Robotics, created for the Gazebo project"; + license = licenses.asl20; + maintainers = with maintainers; [ pxc ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 29d7a1f1161..f7386d8f3b0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1906,6 +1906,14 @@ in ifuse = callPackage ../tools/filesystems/ifuse/default.nix { }; + ignition = recurseIntoAttrs { + + math = callPackage ../development/libraries/ignition-math { }; + + math2 = ignition.math; + + }; + ihaskell = callPackage ../development/tools/haskell/ihaskell/wrapper.nix { inherit (haskellPackages) ihaskell ghcWithPackages; From 3c95d6d1ea52539c772aa869cd2bc5a919730fc3 Mon Sep 17 00:00:00 2001 From: Patrick Callahan Date: Sat, 26 Mar 2016 11:11:48 -0700 Subject: [PATCH 1017/1059] sdformat: init at 3.7.0 and 4.0.0 --- pkgs/development/libraries/sdformat/3.nix | 7 ++++++ .../libraries/sdformat/default.nix | 23 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 8 +++++++ 3 files changed, 38 insertions(+) create mode 100644 pkgs/development/libraries/sdformat/3.nix create mode 100644 pkgs/development/libraries/sdformat/default.nix diff --git a/pkgs/development/libraries/sdformat/3.nix b/pkgs/development/libraries/sdformat/3.nix new file mode 100644 index 00000000000..116f248b3b4 --- /dev/null +++ b/pkgs/development/libraries/sdformat/3.nix @@ -0,0 +1,7 @@ +{ stdenv, fetchurl, callPackage, ... } @ args: + +callPackage ./default.nix (args // rec { + version = "3.7.0"; + srchash-sha256 = "07kn8bgvj9mwwinsp2cbmz11z7zw2lgnj61mi1gi1pjg7q9in98q"; +}) + diff --git a/pkgs/development/libraries/sdformat/default.nix b/pkgs/development/libraries/sdformat/default.nix new file mode 100644 index 00000000000..0245b47815e --- /dev/null +++ b/pkgs/development/libraries/sdformat/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, cmake, boost, ruby_1_9, ignition, tinyxml + , name ? "sdformat-${version}" + , version ? "4.0.0" # versions known to work with this expression include 3.7.0 + , srchash-sha256 ? "b0f94bb40b0d83e35ff250a7916fdfd6df5cdc1e60c47bc53dd2da5e2378163e" + , ... + }: + +let + ruby = ruby_1_9; +in +stdenv.mkDerivation rec { + src = fetchurl { + url = "http://osrf-distributions.s3.amazonaws.com/sdformat/releases/${name}.tar.bz2"; + sha256 = srchash-sha256; + }; + + inherit name; + + enableParallelBuilding = true; + buildInputs = [ + cmake boost ruby ignition.math2 tinyxml + ]; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f7386d8f3b0..b4052536305 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1572,6 +1572,14 @@ in gawp = goPackages.gawp.bin // { outputs = [ "bin" ]; }; + gazeboSimulator = recurseIntoAttrs { + sdformat = gazeboSimulator.sdformat4; + + sdformat3 = callPackage ../development/libraries/sdformat/3.nix { }; + + sdformat4 = callPackage ../development/libraries/sdformat { }; + }; + gbdfed = callPackage ../tools/misc/gbdfed { gtk = gtk2; }; From 565b7b34edf8db03a4156afa86f1ed78447f36f8 Mon Sep 17 00:00:00 2001 From: Patrick Callahan Date: Sat, 26 Mar 2016 11:13:51 -0700 Subject: [PATCH 1018/1059] ignition.transport: init at 0.9.0 and 1.0.1 --- .../libraries/ignition-transport/0.9.0.nix | 9 +++++++ .../libraries/ignition-transport/1.0.1.nix | 9 +++++++ .../libraries/ignition-transport/generic.nix | 25 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 6 +++++ 4 files changed, 49 insertions(+) create mode 100644 pkgs/development/libraries/ignition-transport/0.9.0.nix create mode 100644 pkgs/development/libraries/ignition-transport/1.0.1.nix create mode 100644 pkgs/development/libraries/ignition-transport/generic.nix diff --git a/pkgs/development/libraries/ignition-transport/0.9.0.nix b/pkgs/development/libraries/ignition-transport/0.9.0.nix new file mode 100644 index 00000000000..3452c72839f --- /dev/null +++ b/pkgs/development/libraries/ignition-transport/0.9.0.nix @@ -0,0 +1,9 @@ +{ stdenv, fetchurl, callPackage, ... } @ args : + +callPackage ./generic.nix (args // rec { + version = "0.9.0"; + src = fetchurl { + url = "http://gazebosim.org/distributions/ign-transport/releases/ignition-transport-${version}.tar.bz2"; + sha256 = "15a8lkxri8q2gc7h0pj1dg2kivhy46v8d3mlxpjy90l77788bw1z"; + }; +}) diff --git a/pkgs/development/libraries/ignition-transport/1.0.1.nix b/pkgs/development/libraries/ignition-transport/1.0.1.nix new file mode 100644 index 00000000000..2f9605a3a72 --- /dev/null +++ b/pkgs/development/libraries/ignition-transport/1.0.1.nix @@ -0,0 +1,9 @@ +{ stdenv, fetchurl, callPackage, ... } @ args : + +callPackage ./generic.nix (args // rec { + version = "1.0.1"; + src = fetchurl { + url = "http://gazebosim.org/distributions/ign-transport/releases/ignition-transport-${version}.tar.bz2"; + sha256 = "08qyd70vlymms1g4smblags9f057zsn62xxrx29rhd4wy8prnjsq"; + }; +}) diff --git a/pkgs/development/libraries/ignition-transport/generic.nix b/pkgs/development/libraries/ignition-transport/generic.nix new file mode 100644 index 00000000000..0b10c2cdb52 --- /dev/null +++ b/pkgs/development/libraries/ignition-transport/generic.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchurl, cmake, pkgconfig, utillinux, + protobuf, zeromq, cppzmq, + version, src # parametrize version and src so we can easily have pkgs + # for different versions + , ... +}: + +stdenv.mkDerivation rec { + name = "ign-transport-${version}"; + inherit src; + + buildInputs = [ cmake protobuf zeromq pkgconfig + utillinux # we need utillinux/e2fsprogs uuid/uuid.h + ]; + + propagatedBuildInputs = [ cppzmq ]; + + meta = with stdenv.lib; { + homepage = http://ignitionrobotics.org/libraries/math; + description = "Math library by Ingition Robotics, created for the Gazebo project"; + license = licenses.asl20; + maintainers = with maintainers; [ pxc ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b4052536305..a45fd4d72b7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1920,8 +1920,14 @@ in math2 = ignition.math; + transport0 = callPackage ../development/libraries/ignition-transport/0.9.0.nix { }; + + transport1 = callPackage ../development/libraries/ignition-transport/1.0.1.nix { }; + + transport = ignition.transport0; }; + ihaskell = callPackage ../development/tools/haskell/ihaskell/wrapper.nix { inherit (haskellPackages) ihaskell ghcWithPackages; From 66b5055b955256f0131b225ad40e95671034daef Mon Sep 17 00:00:00 2001 From: Patrick Callahan Date: Sat, 26 Mar 2016 11:16:09 -0700 Subject: [PATCH 1019/1059] gazebo: init at 6.5.1 and 7.0.0 --- .../science/robotics/gazebo/6.nix | 8 ++ .../science/robotics/gazebo/default.nix | 81 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 14 ++++ 3 files changed, 103 insertions(+) create mode 100644 pkgs/applications/science/robotics/gazebo/6.nix create mode 100644 pkgs/applications/science/robotics/gazebo/default.nix diff --git a/pkgs/applications/science/robotics/gazebo/6.nix b/pkgs/applications/science/robotics/gazebo/6.nix new file mode 100644 index 00000000000..0d1aa4a9085 --- /dev/null +++ b/pkgs/applications/science/robotics/gazebo/6.nix @@ -0,0 +1,8 @@ +{ stdenv, fetchurl, callPackage, ignition, gazeboSimulator, ... } @ args: + +callPackage ./default.nix (args // rec { + version = "6.5.1"; + src-sha256 = "96260aa23f1a1f24bc116f8e359d31f3bc65011033977cb7fb2c64d574321908"; + sdformat = gazeboSimulator.sdformat3; +}) + diff --git a/pkgs/applications/science/robotics/gazebo/default.nix b/pkgs/applications/science/robotics/gazebo/default.nix new file mode 100644 index 00000000000..1b71e45eb82 --- /dev/null +++ b/pkgs/applications/science/robotics/gazebo/default.nix @@ -0,0 +1,81 @@ +{ stdenv, fetchurl, cmake, pkgconfig, boost, protobuf, freeimage + , boost-build, boost_process + , xorg_sys_opengl, tbb, ogre, tinyxml-2 + , libtar, glxinfo, libusb, libxslt, ruby, ignition + , pythonPackages, utillinux + + # these deps are hidden; cmake doesn't catch them + , gazeboSimulator, sdformat ? gazeboSimulator.sdformat, curl, tinyxml, kde4, x11 + , withIgnitionTransport ? true + , libav, withLibAvSupport ? true + , openal, withAudioSupport ? false + , withQuickBuild ? false, withHeadless ? false, withLowMemorySupport ? false + , doxygen, withDocs ? true + , bullet, withBulletEngineSupport ? false + , graphviz, withModelEditorSchematicView ? true # graphviz needed for this view + , gdal, withDigitalElevationTerrainsSupport ? true + , gts, withConstructiveSolidGeometrySupport ? true + , hdf5, withHdf5Support ? true + , version ? "7.0.0" + , src-sha256 ? "127q2g93kvmak2b6vhl13xzg56h09v14s4pki8wv7aqjv0c3whbl" + , ... +}: with stdenv.lib; + +stdenv.mkDerivation rec { + inherit version; + name = "gazebo-${version}"; + + src = fetchurl { + url = "http://osrf-distributions.s3.amazonaws.com/gazebo/releases/${name}.tar.bz2"; + sha256 = src-sha256; + }; + + enableParallelBuilding = true; # gazebo needs this so bad + cmakeFlags = [] + ++ optional withQuickBuild [ "-DENABLE_TESTS_COMPILATION=False" ] + ++ optional withLowMemorySupport [ "-DUSE_LOW_MEMORY_TESTS=True" ] + ++ optional withHeadless [ "-DENABLE_SCREEN_TESTS=False" ]; + + buildInputs = [ + #cmake pkgconfig boost protobuf + freeimage + xorg_sys_opengl + tbb + ogre + tinyxml-2 + libtar + glxinfo + libusb + libxslt + ignition.math2 + sdformat + pythonPackages.pyopengl + + # TODO: add these hidden deps to cmake configuration & submit upstream + curl + tinyxml + x11 + kde4.qt4 + ] ++ optional stdenv.isLinux utillinux # on Linux needs uuid/uuid.h + ++ optional withDocs doxygen + ++ optional withLibAvSupport libav #TODO: package rubygem-ronn and put it here + ++ optional withAudioSupport openal + ++ optional withBulletEngineSupport bullet + ++ optional withIgnitionTransport ignition.transport + ++ optional withModelEditorSchematicView graphviz + ++ optional withDigitalElevationTerrainsSupport gdal + ++ optional withConstructiveSolidGeometrySupport gts + ++ optional withHdf5Support hdf5; + + nativeBuildInputs = [ cmake pkgconfig ]; + + propagatedNativeBuildInputs = [ boost boost-build boost_process protobuf ]; + + meta = with stdenv.lib; { + homepage = http://gazebosim.org/; + description = "Multi-robot simulator for outdoor environments"; + license = licenses.asl20; + maintainers = with maintainers; [ pxc ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a45fd4d72b7..e4dd0c5127f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1578,7 +1578,21 @@ in sdformat3 = callPackage ../development/libraries/sdformat/3.nix { }; sdformat4 = callPackage ../development/libraries/sdformat { }; + + gazebo6 = callPackage ../applications/science/robotics/gazebo/6.nix { }; + + gazebo6-headless = callPackage ../applications/science/robotics/gazebo/6.nix { withHeadless = true; }; + + gazebo7 = callPackage ../applications/science/robotics/gazebo { }; + + gazebo7-headless = callPackage ../applications/science/robotics/gazebo { withHeadless = true; }; + }; + + # at present, Gazebo 7.0.0 does not match Gazebo 6.5.1 for compatibility + gazebo = gazeboSimulator.gazebo6; + + gazebo-headless = gazeboSimulator.gazebo6-headless; gbdfed = callPackage ../tools/misc/gbdfed { gtk = gtk2; From c7a26ccf9dcc5a2ee7d7a1644887d778f17ed0ed Mon Sep 17 00:00:00 2001 From: = Date: Mon, 28 Mar 2016 20:50:47 +0200 Subject: [PATCH 1020/1059] meterbridge: fix gcc-5 build (thanks to: http://ports.ubuntu.com/pool/universe/m/meterbridge/) --- .../audio/meterbridge/default.nix | 2 +- .../meterbridge/fix_build_with_gcc-5.patch | 31 +++++++++++++++++++ 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 pkgs/applications/audio/meterbridge/fix_build_with_gcc-5.patch diff --git a/pkgs/applications/audio/meterbridge/default.nix b/pkgs/applications/audio/meterbridge/default.nix index e15febda231..d6ba094f458 100644 --- a/pkgs/applications/audio/meterbridge/default.nix +++ b/pkgs/applications/audio/meterbridge/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { sha256 = "0jb6g3kbfyr5yf8mvblnciva2bmc01ijpr51m21r27rqmgi8gj5k"; }; - patches = [ ./buf_rect.patch ]; + patches = [ ./buf_rect.patch ./fix_build_with_gcc-5.patch]; buildInputs = [ pkgconfig SDL SDL_image libjack2 diff --git a/pkgs/applications/audio/meterbridge/fix_build_with_gcc-5.patch b/pkgs/applications/audio/meterbridge/fix_build_with_gcc-5.patch new file mode 100644 index 00000000000..a738cd0b82a --- /dev/null +++ b/pkgs/applications/audio/meterbridge/fix_build_with_gcc-5.patch @@ -0,0 +1,31 @@ +Description: Fix build with gcc-5 +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=778003 +Author: Jaromír Mikeš +Forwarded: No + +Index: meterbridge/src/linedraw.h +=================================================================== +--- meterbridge.orig/src/linedraw.h ++++ meterbridge/src/linedraw.h +@@ -1,7 +1,7 @@ + #ifndef LINEDRAW_H + #define LINEDRAW_H + +-inline void set_rgba(SDL_Surface *surface, Uint32 x, Uint32 y, Uint32 col); ++void set_rgba(SDL_Surface *surface, Uint32 x, Uint32 y, Uint32 col); + + void draw_ptr(SDL_Surface *surface, int x1, int y1, int x2, int y2, Uint32 nedle_col, Uint32 aa_col); + +Index: meterbridge/src/linedraw.c +=================================================================== +--- meterbridge.orig/src/linedraw.c ++++ meterbridge/src/linedraw.c +@@ -4,7 +4,7 @@ + /* set a pixel on an SDL_Surface, assumes that the surface is 32bit RGBA, + * ordered ABGR (I think), probably wont work on bigendian systems */ + +-inline void set_rgba(SDL_Surface *surface, Uint32 x, Uint32 y, Uint32 col) ++void set_rgba(SDL_Surface *surface, Uint32 x, Uint32 y, Uint32 col) + { + Uint32 *bufp = (Uint32 *)surface->pixels + y*surface->pitch/4 + x; + *bufp = col; From 37617a2c4522176b5ebd07909f3c8a24a2aaa8ff Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Mon, 28 Mar 2016 14:00:00 -0500 Subject: [PATCH 1021/1059] nixos.tests.installer.swraid: mdadm verbosity These two steps seem to fail intermittently with exit code 1. It isn't clear to me why, or what the issue is. Adding the `--verbose` option, hoping to capture some debugging information which might aid stabilization. Also: I was unable to replicate the failure locally. --- nixos/tests/installer.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix index 9e5a6ad04e1..05c3f267eb9 100644 --- a/nixos/tests/installer.nix +++ b/nixos/tests/installer.nix @@ -366,8 +366,8 @@ in { "mkdir /mnt/boot", "mount LABEL=boot /mnt/boot", "udevadm settle", - "mdadm -W /dev/md0", # wait for sync to finish; booting off an unsynced device tends to fail - "mdadm -W /dev/md1", + "mdadm --verbose -W /dev/md0", # wait for sync to finish; booting off an unsynced device tends to fail + "mdadm --verbose -W /dev/md1", ); ''; }; From dcae10ebdac761005c6ce3fc33ea6d958faa3bb0 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Wed, 2 Mar 2016 19:04:21 +0100 Subject: [PATCH 1022/1059] wpa_supplicant service: Depend on interfaces being present --- nixos/modules/services/networking/wpa_supplicant.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/networking/wpa_supplicant.nix b/nixos/modules/services/networking/wpa_supplicant.nix index a8f445a2c73..53648aef1e0 100644 --- a/nixos/modules/services/networking/wpa_supplicant.nix +++ b/nixos/modules/services/networking/wpa_supplicant.nix @@ -125,10 +125,12 @@ in { # FIXME: start a separate wpa_supplicant instance per interface. systemd.services.wpa_supplicant = let ifaces = cfg.interfaces; + deviceUnit = interface: [ "sys-subsystem-net-devices-${interface}.device" ]; in { description = "WPA Supplicant"; after = [ "network-interfaces.target" ]; + requires = lib.concatMap deviceUnit ifaces; wantedBy = [ "network.target" ]; path = [ pkgs.wpa_supplicant ]; From d47e2fde696749e5d79871ca6e85c9e9af67ff25 Mon Sep 17 00:00:00 2001 From: Brian McKenna Date: Tue, 29 Mar 2016 09:14:27 +1100 Subject: [PATCH 1023/1059] steam: enable hardware decoding (for In-Home Streaming) Previous to this patch I was getting software decoding when I used In-Home Streaming. I had a look around and according to: https://bbs.archlinux.org/viewtopic.php?id=187922 > It seems that the libva version Steam comes with, is not compatible anymore to > the newer libva 1.4.0. Substituting in our version of libva gives me hardware decoding! --- pkgs/games/steam/runtime-wrapped.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/games/steam/runtime-wrapped.nix b/pkgs/games/steam/runtime-wrapped.nix index c1c79f8ac43..a8037be8f83 100644 --- a/pkgs/games/steam/runtime-wrapped.nix +++ b/pkgs/games/steam/runtime-wrapped.nix @@ -85,6 +85,7 @@ let libpulseaudio alsaLib openalSoft + libva ] ++ lib.optional newStdcpp gcc.cc; ourRuntime = if runtimeOnly then [] From 8db6998a0a744f6f94d68aa28bebdfe13ba00222 Mon Sep 17 00:00:00 2001 From: Anthony Cowley Date: Mon, 28 Mar 2016 18:19:41 -0400 Subject: [PATCH 1024/1059] doxygen: fix on darwin This avoids an issue where an old OS X SDK is assumed, leading to a linker error of the form: Undefined symbols: __Unwind_Resume --- pkgs/development/tools/documentation/doxygen/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/tools/documentation/doxygen/default.nix b/pkgs/development/tools/documentation/doxygen/default.nix index c843f0d2eef..0b16723866b 100644 --- a/pkgs/development/tools/documentation/doxygen/default.nix +++ b/pkgs/development/tools/documentation/doxygen/default.nix @@ -20,6 +20,9 @@ stdenv.mkDerivation rec { cmakeFlags = stdenv.lib.optional (qt4 != null) "-Dbuild_wizard=YES"; + NIX_CFLAGS_COMPILE = + stdenv.lib.optional stdenv.isDarwin "-mmacosx-version-min=10.9"; + enableParallelBuilding = true; meta = { From cef2db7e76d17e0b5d370b57483482f7bfbdc0c1 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 29 Mar 2016 02:21:30 +0300 Subject: [PATCH 1025/1059] haskellPackages.mueval: fix build --- pkgs/development/haskell-modules/configuration-common.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index b5b4db7e729..20a338dd2cb 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -957,4 +957,9 @@ self: super: { # We get lots of strange compiler errors during the test suite run. jsaddle = dontCheck super.jsaddle; + # https://github.com/gwern/mueval/issues/14 + mueval = super.mueval.override { + hint = self.hint_0_4_3; + }; + } From dc73280d1950319583f24fbd1984074431834c1b Mon Sep 17 00:00:00 2001 From: taku0 Date: Tue, 29 Mar 2016 09:19:34 +0900 Subject: [PATCH 1026/1059] thunderbird-bin: 38.6.0 -> 38.7.1 --- .../mailreaders/thunderbird-bin/sources.nix | 234 +++++++++--------- 1 file changed, 117 insertions(+), 117 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix index 19477d86a3c..e3ffa283ad9 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix @@ -4,123 +4,123 @@ # ruby generate_sources.rb > sources.nix { - version = "38.6.0"; + version = "38.7.1"; sources = [ - { locale = "ar"; arch = "linux-i686"; sha256 = "141b3e5a5a51b0ed8f11bc9233d19bccc3116e55d568eb4995bcd48c91ba3390"; } - { locale = "ar"; arch = "linux-x86_64"; sha256 = "f2841d9da85e788d868eb56a43baa8e7d72d40c9c82ca60f4f958b9285be5bc3"; } - { locale = "ast"; arch = "linux-i686"; sha256 = "aa52c0672bf8c2b28ae5efb26aa552592aad6c637b660f9cb4533cad72b9a4fc"; } - { locale = "ast"; arch = "linux-x86_64"; sha256 = "1a083214fc2f31e52b0d03bffbef64e364b77457e447ddc134dc363004768b03"; } - { locale = "be"; arch = "linux-i686"; sha256 = "f3e7653a7f9957e9722cf29a7a97b751ffc2b19bd4982ff603f6460afb07445d"; } - { locale = "be"; arch = "linux-x86_64"; sha256 = "55d7082b20da1bbe23b8d1a2e1e07f6a02f9dd96b065cab1a8a2acd086790d21"; } - { locale = "bg"; arch = "linux-i686"; sha256 = "132fb89107e653cb30e9f6fffbca6ced0451811080b89058a652dcb5187601f3"; } - { locale = "bg"; arch = "linux-x86_64"; sha256 = "03868dab14f8bd671eed93a05c50c3836bb047e4195a2b8e92d04d3cf3244c67"; } - { locale = "bn-BD"; arch = "linux-i686"; sha256 = "ffa2c116e814da8f0a5995f382de0b4d614e72b55ecc905185c014abea763851"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "74631bb2d75687aefc6e8dfa9414176a92de7a22890704f6f84603703a3dd880"; } - { locale = "br"; arch = "linux-i686"; sha256 = "3942e35a9ea655ac365a4b00f70d8b97e7833e50d00d7d07e5ce851956f55f00"; } - { locale = "br"; arch = "linux-x86_64"; sha256 = "33dba57581571faac7cc11aeafda68fce323c9fc322a3c8e43cbce794489ab39"; } - { locale = "ca"; arch = "linux-i686"; sha256 = "5001132684f89e6e4c4ab8d22f37739da4465577e850bed4748ad3079a0b592e"; } - { locale = "ca"; arch = "linux-x86_64"; sha256 = "3cfad5f05320d179b575bc263ceecef0c9bfec08e7a3471dd779be8798f8f8e8"; } - { locale = "cs"; arch = "linux-i686"; sha256 = "14879dadca5936473b42ccefc2485707330aa7062bd1c2094adafee0dde83a50"; } - { locale = "cs"; arch = "linux-x86_64"; sha256 = "92f39de732f2264c5658e3282d0a4259b437f81277c926b3fe0a1c51bb18a27b"; } - { locale = "cy"; arch = "linux-i686"; sha256 = "e38d9c45558bbf1414efff8568b79ed58c0383329923944aca72bcd075c71967"; } - { locale = "cy"; arch = "linux-x86_64"; sha256 = "43f11c8ea150c1b58031fd765fc5d789e56df68ef36dd989a8a67135d9a1e501"; } - { locale = "da"; arch = "linux-i686"; sha256 = "9815c3fb3c95d4fb73faeb9db10591a39131edcb846fb72b6c2b01ac132602f5"; } - { locale = "da"; arch = "linux-x86_64"; sha256 = "6435f69ebb748f2f81dfcd1da4d66030792e73735d11c788c4478cdb750de89d"; } - { locale = "de"; arch = "linux-i686"; sha256 = "d8601890fe1021c61b48cb755a98358fffb0e5c3de106d0408baa748c6e4ff21"; } - { locale = "de"; arch = "linux-x86_64"; sha256 = "96626e10573940ce9a77277f8776066e1f33d852ff1a9be25c613ea54b2ad3d0"; } - { locale = "dsb"; arch = "linux-i686"; sha256 = "c0cf3e5db343c031171cca6507839e18bb4232a498eb0ff87864c0d3f54c31d3"; } - { locale = "dsb"; arch = "linux-x86_64"; sha256 = "5c94f8200bf7e5bccdb4f454232707c1354d4cb87713648847d742d1d127b5bc"; } - { locale = "el"; arch = "linux-i686"; sha256 = "43b61ae50412d5df24f903bd1890be52164689b53ec9bbfe134b7bbb36952377"; } - { locale = "el"; arch = "linux-x86_64"; sha256 = "163e041e125f84db5f9d55f6e8a2e8d15b7ac6335187a55f00f7019b3038249c"; } - { locale = "en-GB"; arch = "linux-i686"; sha256 = "b34105daffdf9088fecd199e1525ebbc332ff6536487caa058d19daa4c7306c4"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "ac54bf8c804d17ecebab6a865471ce5adf712466612eb435e5871a4ffcc7238a"; } - { locale = "en-US"; arch = "linux-i686"; sha256 = "2e60a2a5764cdee16659b125f7ad2dde7ff6e993c69a738d86fb39530e469328"; } - { locale = "en-US"; arch = "linux-x86_64"; sha256 = "f0b4b0d5a7f4b21845e76411cd75d59b0e34a341747cafcb3e871a00b1b2535e"; } - { locale = "es-AR"; arch = "linux-i686"; sha256 = "fa9de1698297336d3db8d7cc6c59ea1cad595c2d5caf8081f85fc217535d630d"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "62bf96299b20de2b6ea17db2113fd8220c60507314d9c3dfbd2ef06557746298"; } - { locale = "es-ES"; arch = "linux-i686"; sha256 = "1e79df1375e29c6aaf2839584ee51e23a326587e02440c07f10969f82e29daa3"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "e5ef4e579c83b1f982b5d071966b3c1be39b94aa128e0ef14f4244e51b19c6c9"; } - { locale = "et"; arch = "linux-i686"; sha256 = "110dc75c81abcca2199c2f6bee542fe0909bfbe678e91376a1413a81bac88edf"; } - { locale = "et"; arch = "linux-x86_64"; sha256 = "71f7f7d5d9025423438138a62728d3494f2227c3b1daf8945cbd20d65e7629b3"; } - { locale = "eu"; arch = "linux-i686"; sha256 = "ad2e6071fafe18f3db5d4af4d938450ec1a8f538e2a5efc7f8ce1d28f1f3dd66"; } - { locale = "eu"; arch = "linux-x86_64"; sha256 = "32c8b0e825912b97a36cedf19ead4eba8427e08ac059b4bb9fda15c568ce6cff"; } - { locale = "fi"; arch = "linux-i686"; sha256 = "203006ba5572a315f851e69e74779f92123df25d6a1964283bbf546c43ca0ecb"; } - { locale = "fi"; arch = "linux-x86_64"; sha256 = "f87904779b68a60aef440a7eb5cf490fe224bc25517d9fa463575fd35c4fc895"; } - { locale = "fr"; arch = "linux-i686"; sha256 = "4d92b6273006f6a20c6b405cfdd017930e7341230f0deefdbe8961a3ab2099d7"; } - { locale = "fr"; arch = "linux-x86_64"; sha256 = "a7858e1fca3007710053cd6ffcd8d17fe111ec3727e98cfc410f426fb4dd04a1"; } - { locale = "fy-NL"; arch = "linux-i686"; sha256 = "d222ea0506db332ab7590fc85dce4102613489506d7680bac31c82b855ae238e"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "b466075727c3d3f709b9ddb1987f9fe69deb1efa34fecbd73aa1c5231ef844d8"; } - { locale = "ga-IE"; arch = "linux-i686"; sha256 = "d786389a7866d2be769c079ec65396fe3888968f80f3fbd8d54e355ac3098f91"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "8134a011c31cf63a5538fea89ef332a28ab510fb08e1251a9d460ba83946f656"; } - { locale = "gd"; arch = "linux-i686"; sha256 = "a5b5cb6e9a2daf1587af84083cd680b14f49a0f998d4e6e80f09c37aebac0b0f"; } - { locale = "gd"; arch = "linux-x86_64"; sha256 = "7b15ab841f95eda59256c7cb4c9c876b0bea34df9f0e1d3af3bd144230d7254a"; } - { locale = "gl"; arch = "linux-i686"; sha256 = "7bee6ae14c9f43689ab2c7b9a7de60af9fe4d9d567efb94b26e3109af04d6c43"; } - { locale = "gl"; arch = "linux-x86_64"; sha256 = "b9a6e5bd2c62745a82fd3685a694a6f34d3327b60a62af6e283caf3a67d77f22"; } - { locale = "he"; arch = "linux-i686"; sha256 = "17a322f92322de536ead76e292d877ab8e9deff9855b1c12fc20855d3935a548"; } - { locale = "he"; arch = "linux-x86_64"; sha256 = "e542cfdfd29f7d54520dc86c9b73252e57fd3346874f9d629fd31b25be463471"; } - { locale = "hr"; arch = "linux-i686"; sha256 = "fe1fc94042eaeeedc1e7592cbedc5e4c922c5e05cd212feff8a654898d2c2a9e"; } - { locale = "hr"; arch = "linux-x86_64"; sha256 = "de191f3cc421ed5b06ce981c0431decb933799252107b27103bc3c45ac6995be"; } - { locale = "hsb"; arch = "linux-i686"; sha256 = "f55ad886854541ea1d684d168f8fb3c858fc8a11324dc14fb64340cb47f6d7fe"; } - { locale = "hsb"; arch = "linux-x86_64"; sha256 = "ee03f60c834c141d3340dca9ecfce8f427ee50a3b6b963f4a565a843e895f614"; } - { locale = "hu"; arch = "linux-i686"; sha256 = "8462e0a665d04b9273dbfc1095ef57831165438c21c34b5d04d22b51276fc047"; } - { locale = "hu"; arch = "linux-x86_64"; sha256 = "6cc42919c6417860e19fcc851b8210b9d6e405c4b2ff0bf51cffb18af733b488"; } - { locale = "hy-AM"; arch = "linux-i686"; sha256 = "2c3f4f4358387dad669254da46e21b4da1f54cedbc7be62c38448862a88edf37"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "0556cb57c012554449d7044efaa5e8b4b938b15d55a19f91cb31ea5187b7ef76"; } - { locale = "id"; arch = "linux-i686"; sha256 = "26d31f04b836d3e5e3874c4e37d258effc8bd228223f6b963df3434d2276529c"; } - { locale = "id"; arch = "linux-x86_64"; sha256 = "55b2be7503278c0a41785796425fe35f5635e0c635d79a4246f7830a7cf6f075"; } - { locale = "is"; arch = "linux-i686"; sha256 = "29ce03e041c320aaa61c8ecefbe1a6cd2e9b96e916f3605f09a59cd271cfb741"; } - { locale = "is"; arch = "linux-x86_64"; sha256 = "44d7856e1779e86d715026a26fdc0db8beb8fac1bcba5c27ed652779f858c12e"; } - { locale = "it"; arch = "linux-i686"; sha256 = "47dd016eda154be31646105061570653ab61ab99d8bf873cf9e8e4b727847fc6"; } - { locale = "it"; arch = "linux-x86_64"; sha256 = "299941c56912734dd06c2f1dd89838d3a746dfde10df39f6caf198cf4fc6a332"; } - { locale = "ja"; arch = "linux-i686"; sha256 = "ff809f8f752612d242d5787f511b4821294855dd42027d7493f789200747575a"; } - { locale = "ja"; arch = "linux-x86_64"; sha256 = "babda834d5e6fa669691b974c4c4ea4b9207c3926796d0c1d76784b733d738a3"; } - { locale = "ko"; arch = "linux-i686"; sha256 = "a04ca9cd1cd435d4ab5d832efaeb1a6fee5e9e6c933c5a3a9b0e21bbc5141f24"; } - { locale = "ko"; arch = "linux-x86_64"; sha256 = "0390d47ca644679631b8bbb83cb45e404b4b7f1e4ad237d439318fd6464aeeb4"; } - { locale = "lt"; arch = "linux-i686"; sha256 = "9e9d3ed60a3ba5ef761937e5b2b06a4eaac1c6f6c1d72a9b3fe0ab7818e3d18f"; } - { locale = "lt"; arch = "linux-x86_64"; sha256 = "8d7cf2a173df6b7930a37244829934b2729341a8938288c988120010d1a52d2f"; } - { locale = "nb-NO"; arch = "linux-i686"; sha256 = "fde6089efa39e867f8c8b4b6d6e9d5c006f87c4ceaabb78517b34ea288cebe1e"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "9ff74ec5e87468f3912b1ec847eff2d215c35224b4ef82ba29efaba4a48f2bb0"; } - { locale = "nl"; arch = "linux-i686"; sha256 = "349101916960741272549700a4050850730679826ef3f6c837b542628ac9b17b"; } - { locale = "nl"; arch = "linux-x86_64"; sha256 = "0bc2cf52b46f15976cd5355960b81106279c4cea9b7d55ac0360a56dd934ce6a"; } - { locale = "nn-NO"; arch = "linux-i686"; sha256 = "6eff1f88b362d81d71833b50606afffdb7e0210160bc9933226c472daa692259"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "748726556948ebc59913a72965a54de67615217a93cf0351ece356524d8e3097"; } - { locale = "pa-IN"; arch = "linux-i686"; sha256 = "6606ee970387998235ed96fdbacc64a47fe2bc0d78061cf4205200517ab6f092"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "0a77fe35ddce1921252d2e2acbeb09d6e719d34b4d81af8d6ef9c5c846359780"; } - { locale = "pl"; arch = "linux-i686"; sha256 = "b8d81eba8470a29768ded1c6882cdbf2f3306843754d29fa35e385b0a6efce25"; } - { locale = "pl"; arch = "linux-x86_64"; sha256 = "2b10f69274860e7af35cbb795042d058c9480ad195cd435e457923da2341c99d"; } - { locale = "pt-BR"; arch = "linux-i686"; sha256 = "4391c285e1db0767f7242fad4fbf6441572ef930acabc63209f1d2ac64e6d08c"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "003060a341e1134870f96e1e032023884f3f22fa62261b07084e3cb8813423fb"; } - { locale = "pt-PT"; arch = "linux-i686"; sha256 = "d261cbc11bd9b176b656c3ae75f802aee4f1828e14f1a9f0e8c7822e9a24c090"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "81fb37b9591a159e9d5ceff18921683037b4c965765b47e736c9124ba6268ee2"; } - { locale = "rm"; arch = "linux-i686"; sha256 = "a7d699ac74a568922a363eabaa38627564fbc715cdd3612a8f51e0c373594646"; } - { locale = "rm"; arch = "linux-x86_64"; sha256 = "ab9c84765f54f02e385b360025d1c70937af91350cbf8eea666f97aec4e36276"; } - { locale = "ro"; arch = "linux-i686"; sha256 = "00db7d515ee4abcba36713a7bac64a2afdfa1782bc3e4175ae2c69535c7b6cdf"; } - { locale = "ro"; arch = "linux-x86_64"; sha256 = "03da97e6c832ce49ccf6736ddac4a14b92768442f6f462b0174324964693aaa7"; } - { locale = "ru"; arch = "linux-i686"; sha256 = "d7d78792a83d76ce4c521674275b3b6443d0c12ad376b4ec3c34bc4edef64078"; } - { locale = "ru"; arch = "linux-x86_64"; sha256 = "bc4c751c5079d3863df1b0dd5717d7f5c07c031fefe798642ff3ff91e8f7512c"; } - { locale = "si"; arch = "linux-i686"; sha256 = "9525a7a704f262efa1ad18ab154d7f0eeec8f923f641621a38cce3be5c090cd4"; } - { locale = "si"; arch = "linux-x86_64"; sha256 = "2e847ce3ee90d27b7e20602844cbc1c3a9e458a7d449386e5bc8067163b6559d"; } - { locale = "sk"; arch = "linux-i686"; sha256 = "389e6dea7b61aced9ad491b57441963cf9c3f5f0c90a80778ccee71320a8bf53"; } - { locale = "sk"; arch = "linux-x86_64"; sha256 = "c36e78ce9aecaa23cf183a453e6ae817a52b84e2129f4e41fd409a61e1705c6a"; } - { locale = "sl"; arch = "linux-i686"; sha256 = "e8f1dd49850b2c359a66e8f79839a95d6e1a09de5cdd41a64c44315fdcea544c"; } - { locale = "sl"; arch = "linux-x86_64"; sha256 = "3ae2a85dadbaf99109fa971bb0c7a825d4ad3d1357f4d51bc7bb20455564ea68"; } - { locale = "sq"; arch = "linux-i686"; sha256 = "dd52238fbd564d49ae8f3dfcee7e608615d3e78bd99373b1bbcdf51b9e20c354"; } - { locale = "sq"; arch = "linux-x86_64"; sha256 = "cbeadcb1de666c42c9e5b42b2a6c1fa14f80e4c6454ea8cfc34b0ad5dd472bb8"; } - { locale = "sr"; arch = "linux-i686"; sha256 = "1318c997a56245b296b2f9ac004b07f87d6492448272c8978e78193fe484336b"; } - { locale = "sr"; arch = "linux-x86_64"; sha256 = "0898d16c990669028fbea084755221c747db48392b30b7c498770fcb5df7b328"; } - { locale = "sv-SE"; arch = "linux-i686"; sha256 = "50c76b8904b51a84136a1c69939e49541205ce8b804c2ce90cff196e826c275c"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "bf3e5c83815458726317c8415963825975500452202f240200be0fab43b1e226"; } - { locale = "ta-LK"; arch = "linux-i686"; sha256 = "7d62ec98b8f01b12425e7692c4966faeeeb42ea66cd6105c37742698215bde5a"; } - { locale = "ta-LK"; arch = "linux-x86_64"; sha256 = "416cffbe25f2b00cd584fa455768b09c5f8d1bc7938263880903050f8c08fab4"; } - { locale = "tr"; arch = "linux-i686"; sha256 = "581d6c8df1611d749d0dda9d1f248ebf354825f8a8097624fd08338ea5e01d38"; } - { locale = "tr"; arch = "linux-x86_64"; sha256 = "24b1b9bfa251add2d7f3183b0c3aafdea6b4caa5bdbcea718462185d6dc63e5b"; } - { locale = "uk"; arch = "linux-i686"; sha256 = "97175dba275e382b2436e9b7a948c46f137ed38612e90ea43466dd3fe20c878b"; } - { locale = "uk"; arch = "linux-x86_64"; sha256 = "273b08710fbc57c30828736c38a158ff66ac788b2ca3726118367466cab09797"; } - { locale = "vi"; arch = "linux-i686"; sha256 = "e0391fdecb11b5daac913f57894970208b51e1e7f1665ff56cb7a68dba0c442a"; } - { locale = "vi"; arch = "linux-x86_64"; sha256 = "af51ee3bd2ac246a4b465aa65b13d1aa661dbce5e0988524532616fb9d2d651b"; } - { locale = "zh-CN"; arch = "linux-i686"; sha256 = "5e7d1543d41912ffa0a71137b90c40ab5569ffab65e8b99f0b62446561a78ca2"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "f85c8086b462474e40b0b090f9b566aa55b228ec49ec18fa1b5987ec3efa048b"; } - { locale = "zh-TW"; arch = "linux-i686"; sha256 = "6f161428af67a1635364660a8ec6d7c785350204d5bac602ebcd32861e9baf62"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "2088379539a9b4ece3012b603a5731c92567fa4b3e5c448ae54e2729c8df0658"; } + { locale = "ar"; arch = "linux-i686"; sha256 = "186ba5f03adc7cb94c69351f5edcf241abdba1a3602f9b140a46682cb94b053c"; } + { locale = "ar"; arch = "linux-x86_64"; sha256 = "7c6308024524c8ba458bb43cace95bdf92dfa7d797c7ff936598257c018e4807"; } + { locale = "ast"; arch = "linux-i686"; sha256 = "61de0fc548ff70367334c82bec580caa895f3db63c6b045c5a717bfa282e69db"; } + { locale = "ast"; arch = "linux-x86_64"; sha256 = "34c935a0b162e182a341699782143cad1e225ea63bf314c158d25f629889c5e1"; } + { locale = "be"; arch = "linux-i686"; sha256 = "4442d37c8bb411c5c151bd98d06a375dc8ffcf72fee4d03bed6ac8691ccd8e2c"; } + { locale = "be"; arch = "linux-x86_64"; sha256 = "e7226b6b42e7cfe4d36c430eca755f5deae8899fd64ea1877ad576f96fe29b8c"; } + { locale = "bg"; arch = "linux-i686"; sha256 = "eaf46e571b55800dfaf63a807236e8bf5fa8e8ba77bc996830ab0dfcdce23300"; } + { locale = "bg"; arch = "linux-x86_64"; sha256 = "62edb0cee78dd88a871355c996107901456f1fb70793d21209e75875c33d91a3"; } + { locale = "bn-BD"; arch = "linux-i686"; sha256 = "76e3222d9b7bc4f5948c56be6248deb23c1777550f497f115487e323c16b2f95"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "b7ad9dd397abb89b844f8a1adbd34d0dfdea6bb85b3f8ad5d5f297e7f8b1b081"; } + { locale = "br"; arch = "linux-i686"; sha256 = "b10c7e572ba88f79acb2d57988308c5af6fde268f64434956c4312f8a7c3ed42"; } + { locale = "br"; arch = "linux-x86_64"; sha256 = "174f671aa90307e4dd6756d60f37a0b628d7d1cee8c7bb623a1a32c55b26a967"; } + { locale = "ca"; arch = "linux-i686"; sha256 = "b966f3381a30567db88890dd3885c56f9cf367d9c92e192d0c6c79066e482c91"; } + { locale = "ca"; arch = "linux-x86_64"; sha256 = "e5d96ddd9ed6b685b872d90e95bded23124e21575e9e0bcb7aeaa77ef0226009"; } + { locale = "cs"; arch = "linux-i686"; sha256 = "fdbe97bc87656569b20d8154619cd7b3b5c3b03cbbcd7ff2f1e07a3af547bb41"; } + { locale = "cs"; arch = "linux-x86_64"; sha256 = "b24ea0ae2977d9380cadfd130f83971e798677ce956152d794523e90a54222e6"; } + { locale = "cy"; arch = "linux-i686"; sha256 = "ba39bd39698ad0486e22806ff468b9a763712f35e943b93e6021365dc061c2ce"; } + { locale = "cy"; arch = "linux-x86_64"; sha256 = "f51e4dcaeac1aeb53d858d029c34c366e948616f7ca3f35eb22b165fd2839376"; } + { locale = "da"; arch = "linux-i686"; sha256 = "511441bfe56749643f59e10c9219b8c3192d64c50008ee3d8a2dc342993c0133"; } + { locale = "da"; arch = "linux-x86_64"; sha256 = "9f60a1c06da4e61a415359eeaed831d61a8c8ad377952948c1475ee6a2bc0cd3"; } + { locale = "de"; arch = "linux-i686"; sha256 = "d48939ad0dab7c4829cd41cd6afe9239d12ab2a2337296203b660613cbba2698"; } + { locale = "de"; arch = "linux-x86_64"; sha256 = "6b1398161ab1271caa14b20c4ad0b3e4372fca743b4ae2e3d5bd1d77d8038c15"; } + { locale = "dsb"; arch = "linux-i686"; sha256 = "c30f3fea47cca28fcc928d813e8c631db43a665d8f347f174b23ef3c1fdd7550"; } + { locale = "dsb"; arch = "linux-x86_64"; sha256 = "592b18fa8ff3749c7a68b5f5406f5ae42f9f97e47cc8c2f9c18b242c8f192b8d"; } + { locale = "el"; arch = "linux-i686"; sha256 = "1ccdde8b11337e75feabbd1e40f1316c287862769d0b9c37934f22108c74bf1a"; } + { locale = "el"; arch = "linux-x86_64"; sha256 = "acb837b0120f00f6cb39e447e86cb140c0cabbe599bff70d85429126df377d85"; } + { locale = "en-GB"; arch = "linux-i686"; sha256 = "ba4c223c22fda306f4b66daa6ed0d157c5c24489ec7627e1124c9f79b5aca989"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "f4bb5a60493f3fbf519a55dc7ff2fa7bb455ad344d27b133addb2864f9d9d100"; } + { locale = "en-US"; arch = "linux-i686"; sha256 = "205729f0ce14666ef98b7e23dad0882d450a508b568fc1d2c99cdfffd2cc9547"; } + { locale = "en-US"; arch = "linux-x86_64"; sha256 = "7c7cb801ea902f93e57f944209e1358bcbe73f8ee312112e94ade2a2ef4b1194"; } + { locale = "es-AR"; arch = "linux-i686"; sha256 = "8bbb39afd31656bc7cdab60b179e0a5bb9d9d9fed62e1ad398dfc5c0f40a35ab"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "0d86ebebfd2ba294b0f27b5eb84b083a7c8cecc8fea944705525831cf3c161b8"; } + { locale = "es-ES"; arch = "linux-i686"; sha256 = "76673ffb93fb3b902366c5939619dfa11ecd724dc5ff37fe769d598dc937c353"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "6e7098cf9eb6f1b55d7504b341b709133fb5d4d20cb761984647422749b71615"; } + { locale = "et"; arch = "linux-i686"; sha256 = "3de2c84af3c7111a306e35f1f7304bf7a77a0e50c8d2c9bfbc896a11a6a23e5d"; } + { locale = "et"; arch = "linux-x86_64"; sha256 = "a2bb5c2b6e174a65cf825293f57cc1628930686f6a674d2cb7fcee6aaf755afc"; } + { locale = "eu"; arch = "linux-i686"; sha256 = "f0ec8c9613ee04c7f7c1b55cb81386036220a715b58edc302e2099882e2c642d"; } + { locale = "eu"; arch = "linux-x86_64"; sha256 = "3ed3c4431fc604fbc05b6f17c9c6e74057278e9ef85480d60ea638843eab1394"; } + { locale = "fi"; arch = "linux-i686"; sha256 = "e4dac93472bc5f41a75daf9ca18265de527b5fc621812bde2c634f1fa5a4692c"; } + { locale = "fi"; arch = "linux-x86_64"; sha256 = "8a30c0c7a586f598e6065f20b2a0dc1e105f59d3e4adac8167da462e8e0193d2"; } + { locale = "fr"; arch = "linux-i686"; sha256 = "adfe8aca07faf08ba780ca0f84d638d461f4a0f00b92d5a9cebe8102a94bce79"; } + { locale = "fr"; arch = "linux-x86_64"; sha256 = "19ccb4a2ec44b1c8edce204627af3d0e84f214591d3b7a4f6e67e297dd9db0f9"; } + { locale = "fy-NL"; arch = "linux-i686"; sha256 = "88f763080b2bbfb8957ed6b52189f2195b3317a1bfb851a6e686765e8a12181a"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "5955d594802281794ef25e9fda196206464ac0594ce12e957b5c40c589c89ad0"; } + { locale = "ga-IE"; arch = "linux-i686"; sha256 = "7fb849565e25b1bba853b434d7f0207bfc9b3f39251f08edf65a8a38ccd0dd96"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "b56cd8b5fc665ad24061fdf2ac3196aff9f953395e894007b133bc83f676be33"; } + { locale = "gd"; arch = "linux-i686"; sha256 = "860dca420cd8c6c18bc703ab4934948e038b4e7e91a1d80d3f632980f0799424"; } + { locale = "gd"; arch = "linux-x86_64"; sha256 = "4e8723dacd9a4961f02fece36066166c044880fbc0c7aab4e0f1289a36bd22c6"; } + { locale = "gl"; arch = "linux-i686"; sha256 = "fd071bf547ba0baaf13141e30f34c15108fb6e44432b02d55508cf3dfca91cdb"; } + { locale = "gl"; arch = "linux-x86_64"; sha256 = "b999261eb53e28c5b43fa5d3ffcb2f9c12cca45a38c6e8fc56a342b1a5dda78a"; } + { locale = "he"; arch = "linux-i686"; sha256 = "2c2e7d7a459dd85f88fb3839002e2eb602d47ce5df4d0572928d8a35a0df4773"; } + { locale = "he"; arch = "linux-x86_64"; sha256 = "0c540f0ffb1224c8d3b18423690f319d25ff5e0c004d18cc8bc6b7d69ecbc48a"; } + { locale = "hr"; arch = "linux-i686"; sha256 = "5d7e14f94f53c7623dc4fce69aa991a67792e0d2405a6c7044558d5023ea0cc0"; } + { locale = "hr"; arch = "linux-x86_64"; sha256 = "6355145ae642332d1798f8ce169cb85cc930af6add6c8cda142e8183666fdb71"; } + { locale = "hsb"; arch = "linux-i686"; sha256 = "897eca9ffdbf28f3d3f720dd44f68f67a289e4d2aff91005c180688b34358b08"; } + { locale = "hsb"; arch = "linux-x86_64"; sha256 = "43d2cf464be8be57a5d2bdba1683e6179641448e351d9a8bee9889febe1ebefd"; } + { locale = "hu"; arch = "linux-i686"; sha256 = "5e6b806364d7e97384bf3f30e4f398c8041cd8acc000b21edcf218ca24e1903a"; } + { locale = "hu"; arch = "linux-x86_64"; sha256 = "5b96ea401ec1af9473cc57e4f09f6f264598e52196dd9da38cebe3e802649fc9"; } + { locale = "hy-AM"; arch = "linux-i686"; sha256 = "3fbd40d914f9347f09848ffb3486d1cec9734f9ae3cc969bc71a8d9c61aea92b"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "9f60903ccb571eebdf7fab4c62e1f0675d4c7f5bcbca7589e669c931b355b55a"; } + { locale = "id"; arch = "linux-i686"; sha256 = "bd0e53bb5d792c9caf2aedc67cf1df2281d234905b96748766446e842448e39e"; } + { locale = "id"; arch = "linux-x86_64"; sha256 = "f7bc98632e15fb73c61c5fd54c3e349e93f3f07b61ee92d704b105b05386949d"; } + { locale = "is"; arch = "linux-i686"; sha256 = "6361b21f9a57468cb8e6273805437d4a40f90c0b461d447b17543f84f9cae8c2"; } + { locale = "is"; arch = "linux-x86_64"; sha256 = "df4d4ef5a25a8aa2f9cbbfef2425056c19b568030e2b217f9bb535fcd81cc017"; } + { locale = "it"; arch = "linux-i686"; sha256 = "def27fdc02da10e148b3312199826157b981165a98ea9a3f5135866092e07ad3"; } + { locale = "it"; arch = "linux-x86_64"; sha256 = "3c55c72d8b9936dc0b0ecf2e88024d4e128f4cbdb32ec5770d4caa930e12d696"; } + { locale = "ja"; arch = "linux-i686"; sha256 = "7f1e39da21362857afd57151b0bb606c7a8b52f0ea1362cbb5bf9c4eb9b18db8"; } + { locale = "ja"; arch = "linux-x86_64"; sha256 = "3b70e990616d999c572a9e95f92dc62b004f5449891778a6530ee81dc1f42703"; } + { locale = "ko"; arch = "linux-i686"; sha256 = "7023635ab8fde872b41b08f523128721863091d7bd7e76646ea2f2929a667719"; } + { locale = "ko"; arch = "linux-x86_64"; sha256 = "370075633a30d3f4afbe69c617ecc4df33e51aa95704ef9fff599a13e9cb3ab2"; } + { locale = "lt"; arch = "linux-i686"; sha256 = "f143791c658916ee2ddac2199293ded234cfd8201cd6399775ccb996cb784e18"; } + { locale = "lt"; arch = "linux-x86_64"; sha256 = "5d48abb53a5b71be190dc4c127c5718704fbc12590c2c5fbcf3b4046f9840415"; } + { locale = "nb-NO"; arch = "linux-i686"; sha256 = "319df90e458817537f7323e97c3d7fdeb2fd965a215b1173f87378b3c94e3ac7"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "2f93a35135f387c8cb2e4ca4b0c800f846596d0f93350f3be0983797a0571359"; } + { locale = "nl"; arch = "linux-i686"; sha256 = "8e3d9003a67a0d38821dae7a070eebe32698ae6a89272394d4f7faea91595360"; } + { locale = "nl"; arch = "linux-x86_64"; sha256 = "bf2bb1676c5966b6fdcf34c93eb3444ed0f3dd6ed03c8e2a39f6757811bf0e7f"; } + { locale = "nn-NO"; arch = "linux-i686"; sha256 = "e938fcf2e84bc19d766c89312f8ca8e055ffeaf7fe20ba8d616aeb0b862cd064"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "ab0b01922e883a34874de33f6eae08a8e4e40d23dd7ddcdf42254386218728e6"; } + { locale = "pa-IN"; arch = "linux-i686"; sha256 = "fd3fd9fe5280365a27ef4e81f7965da2e85ad149e4e026f6a8714a73d976eeb2"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "6a68c72828036a256a8d04b1678be58c786671ef97f106b23812ebcf149f1d15"; } + { locale = "pl"; arch = "linux-i686"; sha256 = "26bb8ca3617c70d1126ef4111787ab267bc6dcd28b2b995e07b7296bdf24723b"; } + { locale = "pl"; arch = "linux-x86_64"; sha256 = "de6ac16163aab662ba4fef2130dd822ec9cfecc0f4beec54f2017785fec8eb0a"; } + { locale = "pt-BR"; arch = "linux-i686"; sha256 = "82c459a487d2a7b156f92db36e85c815c714d59474ed9bd8cde46b08c69f1d57"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "1f4caae64ced0c69fe6ba6330921fce0d220b616a0eb8b1e696da85cdcf5ec01"; } + { locale = "pt-PT"; arch = "linux-i686"; sha256 = "830b649a394cd844bb1b159a76d265455f6ace76dec6697491367b2f6eff1588"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "e89e906cd896c8e04754a9658dc72617954e0a097e6e3b648e5ce827c8cec7d7"; } + { locale = "rm"; arch = "linux-i686"; sha256 = "260fc959ce74945d827c230124a451cec75b6347b78d7d8bbeb65a2bd91f5bd8"; } + { locale = "rm"; arch = "linux-x86_64"; sha256 = "aa416170d0d04d0e2e570d0b0874b6c585d706f8b670de3c24bc5a9ce9819d8d"; } + { locale = "ro"; arch = "linux-i686"; sha256 = "a24ec33c8812921ad0f15dd4306218a2443f7018be5141bcc8e87e0ce3f52929"; } + { locale = "ro"; arch = "linux-x86_64"; sha256 = "5c8bb4872206cacd17cfb77ed3cf58024cdc81be181908213f80659c4d36594b"; } + { locale = "ru"; arch = "linux-i686"; sha256 = "06bde08af3d4b73db3f0a8b87f4f5f3bbc95fd92d717a9ac83efddb7ebc0f12b"; } + { locale = "ru"; arch = "linux-x86_64"; sha256 = "6adf1e6992b05b6c93152bb19a79fe39f319b5a5a62d2491191544eaaabbcc1b"; } + { locale = "si"; arch = "linux-i686"; sha256 = "3f757064e857d8c4d025c0de8325b3bfd81648ac2b77ee11ca847e8ea85d35a5"; } + { locale = "si"; arch = "linux-x86_64"; sha256 = "01147194ad382e4cc61c22c6a2672a01740ced6fdb3d4c2a9394ca9d62503c24"; } + { locale = "sk"; arch = "linux-i686"; sha256 = "ffd8e8bbadb7be4672555f1ec8e4134af5c0898041cc197e1d0081b636d07642"; } + { locale = "sk"; arch = "linux-x86_64"; sha256 = "d1e9df7d081afa272e94534ee3d6310c3498629cd7bba0fd7ab86675ea885714"; } + { locale = "sl"; arch = "linux-i686"; sha256 = "2835ea496c48c171efa0d79924cd3183c12f6de49ce05af72214f6ad4a407c85"; } + { locale = "sl"; arch = "linux-x86_64"; sha256 = "e585b0839c2b31ef12f562c4303b46b392493c6619b7e1b0c92e21c3afdb7461"; } + { locale = "sq"; arch = "linux-i686"; sha256 = "592ece3de096b4135c24e9079f20b85b8c394d488caa6b7907b75d49f51fb30d"; } + { locale = "sq"; arch = "linux-x86_64"; sha256 = "048bcb92d0915b909e2174c990948dd5c50345452369e067bf8c5770bc7b40c4"; } + { locale = "sr"; arch = "linux-i686"; sha256 = "b24e02beeb02d44ba64884864cdfb6605e7b3454b6e953767ceeaf4817f41d95"; } + { locale = "sr"; arch = "linux-x86_64"; sha256 = "caad067689a49308c2e51385750f3d2319e3a06757cf56060ce3c5ecb74a9ed6"; } + { locale = "sv-SE"; arch = "linux-i686"; sha256 = "a2dc5de82a1736dd3aa157da305f5db478625508444df244a3492dfaff8278f3"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "d2c4ab30e6e5d17716d7981d0039f043a41107edb917a838be66659d60653074"; } + { locale = "ta-LK"; arch = "linux-i686"; sha256 = "58773ebf8d949541a2c19924935eb09f0d996aa4059ad3c17a71c664357c2bcc"; } + { locale = "ta-LK"; arch = "linux-x86_64"; sha256 = "bb5c4d1d81373c1d25c1df4d896fbd1ba52acfed4e890a81650e34e5b9bd2ef0"; } + { locale = "tr"; arch = "linux-i686"; sha256 = "c95f531aaa3d36788cf6511d51afa1242657890bdc10628218aef60d6d80b106"; } + { locale = "tr"; arch = "linux-x86_64"; sha256 = "bf04a4f7b629e20f8389aad530b89b592686bd1a8340090311882934f9bea391"; } + { locale = "uk"; arch = "linux-i686"; sha256 = "2c0c6d3a2d4228b7838864835665ff7d46cf8564d59db817ee1d8f9665828410"; } + { locale = "uk"; arch = "linux-x86_64"; sha256 = "c51477c9aaa96765205c163df83acb003c2db837243225d5d1e8753b1de5b71b"; } + { locale = "vi"; arch = "linux-i686"; sha256 = "3c92aef738962dab12fa0e118d64d29bb0d110f9ef2050630b3649d574036476"; } + { locale = "vi"; arch = "linux-x86_64"; sha256 = "4854536b65fb7afb8925315ff4192c369db53f55b3ccec698cb561af1bc03f68"; } + { locale = "zh-CN"; arch = "linux-i686"; sha256 = "3aa69342828a99d075e0b70938d1360dcb9016ad322638c57fba9288e37b9b3e"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "9d590c31e369d8e1287c915cb91061f14359329c89e5038e3491052ff3df894a"; } + { locale = "zh-TW"; arch = "linux-i686"; sha256 = "f133efa32b74f0203186abfeb5b191bf50711f04bf29762e2569b78e0feb66e3"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "15d71526ef072de2b9adacb300e0eb158170839be82a7def9efa6ac55adcda37"; } ]; } From ebf21fd29ee7df613b86f1c4f54873c4d592ba61 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 29 Mar 2016 04:53:53 +0200 Subject: [PATCH 1027/1059] libressl_2_3: 2.3.2 -> 2.3.3 --- pkgs/development/libraries/libressl/2.3.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libressl/2.3.nix b/pkgs/development/libraries/libressl/2.3.nix index a87e599cbc0..962bb547263 100644 --- a/pkgs/development/libraries/libressl/2.3.nix +++ b/pkgs/development/libraries/libressl/2.3.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libressl-${version}"; - version = "2.3.2"; + version = "2.3.3"; src = fetchurl { url = "mirror://openbsd/LibreSSL/${name}.tar.gz"; - sha256 = "0sm9cjjqvj581sfd4sh0i467sh8p89nq9b8ck2qn3war92p5zx40"; + sha256 = "1a8anm8nsfyxds03csk738m2cmzjbsb867my1rz5ij3w31k32wvn"; }; enableParallelBuilding = true; From 69c6f7e20ab34c0ee382a21c3a83112994c8af8d Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Tue, 29 Mar 2016 07:18:54 +0100 Subject: [PATCH 1028/1059] git: 2.7.4 -> 2.8.0 --- .../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 5083c73fb14..82a3dc79d7c 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.4"; + version = "2.8.0"; 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 = "0ys55v2xrhzj74jrrqx75xpr458klnyxshh8d8swfpp0zgg79rfy"; + sha256 = "0k77b5x41k80fqqmkmg59rdvs92xgp73iigh01l49h383r7rl2cs"; }; patches = [ From b40f0ac3c796eef57937e5f4634e54f47fdabb8d Mon Sep 17 00:00:00 2001 From: Louis Taylor Date: Tue, 29 Mar 2016 07:31:56 +0100 Subject: [PATCH 1029/1059] opencpn: init at 4.2.0 --- pkgs/applications/misc/opencpn/default.nix | 32 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 pkgs/applications/misc/opencpn/default.nix diff --git a/pkgs/applications/misc/opencpn/default.nix b/pkgs/applications/misc/opencpn/default.nix new file mode 100644 index 00000000000..d6b9b943b6e --- /dev/null +++ b/pkgs/applications/misc/opencpn/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchFromGitHub, pkgconfig, cmake, gtk2, wxGTK30, libpulseaudio, curl, + gettext, glib, portaudio }: + +stdenv.mkDerivation rec { + name = "opencpn-${version}"; + version = "4.2.0"; + + src = fetchFromGitHub { + owner = "OpenCPN"; + repo = "OpenCPN"; + rev = "v${version}"; + sha256 = "1m6fp9lf9ki9444h0dq6bj0vr7d0pcxkbjv3j2v76p0ksk2l8kw3"; + }; + + buildInputs = [ pkgconfig cmake gtk2 wxGTK30 libpulseaudio curl gettext + glib portaudio ]; + + cmakeFlags = [ + "-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2}/lib/gtk-2.0/include" + "-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib}/lib/glib-2.0/include" + ]; + + enableParallelBuilding = true; + + meta = { + description = "A concise ChartPlotter/Navigator"; + maintainers = [ stdenv.lib.maintainers.kragniz ]; + platforms = stdenv.lib.platforms.all; + license = stdenv.lib.licenses.gpl2; + homepage = "http://opencpn.org/"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c8bbccaf53c..72a3094a12d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13001,6 +13001,8 @@ let openbrf = callPackage ../applications/misc/openbrf { }; + opencpn = callPackage ../applications/misc/opencpn { }; + openimageio = callPackage ../applications/graphics/openimageio { }; openjump = callPackage ../applications/misc/openjump { }; From b44b0ab27c26dea780aec7476b7d9486798b340a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 29 Mar 2016 10:02:57 +0200 Subject: [PATCH 1030/1059] nixpkgs manual: remove cruft from a merge conflict It was clearly added unintentionally during #14243 merge. --- doc/languages-frameworks/index.xml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/doc/languages-frameworks/index.xml b/doc/languages-frameworks/index.xml index 63c4b7dec60..395d4688021 100644 --- a/doc/languages-frameworks/index.xml +++ b/doc/languages-frameworks/index.xml @@ -27,22 +27,5 @@ such as Perl or Haskell. These are described in this chapter. - ->>>>>>> 05113a5... nixpkgs manual: Add documentation for bower2nix - - From 62c29908da62fc2a11ae68830fea669cd2d4d618 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 29 Mar 2016 10:53:36 +0200 Subject: [PATCH 1031/1059] dvdisaster: disable parallel building http://hydra.nixos.org/build/33609373/nixlog/1/raw /cc @nkcx. I notified upstream. --- pkgs/tools/cd-dvd/dvdisaster/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/cd-dvd/dvdisaster/default.nix b/pkgs/tools/cd-dvd/dvdisaster/default.nix index 7cb1bf7506d..08da13b569a 100644 --- a/pkgs/tools/cd-dvd/dvdisaster/default.nix +++ b/pkgs/tools/cd-dvd/dvdisaster/default.nix @@ -33,7 +33,8 @@ stdenv.mkDerivation rec { ] ++ stdenv.lib.optional (builtins.elem stdenv.system stdenv.lib.platforms.x86_64) "--with-sse2=yes"; - enableParallelBuilding = true; + # fatal error: inlined-icons.h: No such file or directory + enableParallelBuilding = false; doCheck = true; checkPhase = '' From 117183e27e273f6c8c121b8281d06d07e9b502c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 29 Mar 2016 11:12:42 +0200 Subject: [PATCH 1032/1059] intltool: fix problems with perl-5.22 http://hydra.nixos.org/build/33608086/nixlog/1/raw --- pkgs/development/tools/misc/intltool/default.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pkgs/development/tools/misc/intltool/default.nix b/pkgs/development/tools/misc/intltool/default.nix index 761cd6edfc2..4ab9fa28491 100644 --- a/pkgs/development/tools/misc/intltool/default.nix +++ b/pkgs/development/tools/misc/intltool/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, gettext, perl, perlXMLParser }: +{ stdenv, fetchurl, fetchpatch, gettext, perl, perlXMLParser }: stdenv.mkDerivation rec { name = "intltool-${version}"; @@ -9,6 +9,14 @@ stdenv.mkDerivation rec { sha256 = "1karx4sb7bnm2j67q0q74hspkfn6lqprpy5r99vkn5bb36a4viv7"; }; + # fix "unescaped left brace" errors when using intltool in some cases + patches = [(fetchpatch { + name = "perl-5.22.patch"; + url = "https://anonscm.debian.org/viewvc/pkg-gnome/desktop/unstable/intltool" + + "/debian/patches/perl5.22-regex-fixes?revision=47255&view=co"; + sha256 = "17clqczb9fky7hp8czxa0fy82b5478irvz4f3fnans3sqxl95hx3"; + })]; + propagatedBuildInputs = [ gettext perl perlXMLParser ]; meta = with stdenv.lib; { From 5147b9d30a1904ee324154192c81d2039abdeff3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 29 Mar 2016 11:55:44 +0200 Subject: [PATCH 1033/1059] pythonPackages.poppler-qt4: fix build by a hack /cc maintainer @sepi. --- 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 dd109462dd5..c8f6b65cba2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6911,6 +6911,8 @@ in modules // { preBuild = "${python}/bin/${python.executable} setup.py build_ext" + " --include-dirs=${pkgs.poppler_qt4}/include/poppler/"; + NIX_CFLAGS_COMPILE = "-I${pkgs.poppler_qt4}/include/poppler/"; + meta = { description = "A Python binding to Poppler-Qt4"; longDescription = '' From e69306c46394f98e8ae53dd21dea3d0495a90780 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 29 Mar 2016 12:14:31 +0200 Subject: [PATCH 1034/1059] xmlsec: fix linkage, probably after #909 This fixes builds of (some) reverse dependencies, e.g. aqbanking. --- pkgs/development/libraries/xmlsec/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/xmlsec/default.nix b/pkgs/development/libraries/xmlsec/default.nix index 3d92dcf3e12..b4c0a51f6dd 100644 --- a/pkgs/development/libraries/xmlsec/default.nix +++ b/pkgs/development/libraries/xmlsec/default.nix @@ -16,6 +16,9 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; doCheck = true; + # otherwise libxmlsec1-gnutls.so won't find libgcrypt.so, after #909 + NIX_LDFLAGS = [ "-lgcrypt" ]; + postFixup = '' wrapProgram "$out/bin/xmlsec1" --prefix LD_LIBRARY_PATH ":" "$out/lib" ''; From f6a44bea9e5cfb07dc283f2c7c222f9e0dbadf18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Tue, 29 Mar 2016 12:23:12 +0200 Subject: [PATCH 1035/1059] Updating wings and dependencies to match erlang I updated the erlang esdl lib, added the erlang cl lib, added opencl-headers and ocl-icd to make wings build and run. I have not tested its opencl part; I only added dependencies so it builds. --- pkgs/applications/graphics/wings/default.nix | 19 +++++++---- pkgs/development/libraries/cl/default.nix | 33 +++++++++++++++++++ pkgs/development/libraries/esdl/default.nix | 22 +++++++++---- .../development/libraries/ocl-icd/default.nix | 18 ++++++++++ .../libraries/opencl-headers/default.nix | 23 +++++++++++++ pkgs/top-level/all-packages.nix | 11 ++++--- 6 files changed, 108 insertions(+), 18 deletions(-) create mode 100644 pkgs/development/libraries/cl/default.nix create mode 100644 pkgs/development/libraries/ocl-icd/default.nix create mode 100644 pkgs/development/libraries/opencl-headers/default.nix diff --git a/pkgs/applications/graphics/wings/default.nix b/pkgs/applications/graphics/wings/default.nix index 9e6d6fe492a..9ecf94e21c0 100644 --- a/pkgs/applications/graphics/wings/default.nix +++ b/pkgs/applications/graphics/wings/default.nix @@ -1,29 +1,34 @@ -{ fetchurl, stdenv, erlang, esdl }: +{ fetchurl, stdenv, erlang, esdl, cl }: stdenv.mkDerivation rec { - name = "wings-1.4.1"; + name = "wings-1.5.4"; src = fetchurl { url = "mirror://sourceforge/wings/${name}.tar.bz2"; - sha256 = "16kqy92rapmbvkc58mc50cidp1pm8nlwlwx69riyadc9w4qs9bji"; + sha256 = "0qz6rmmkqgk3p0d3v2ikkf22n511bq0m7xp3kkradwrp28fcl15x"; }; - ERL_LIBS = "${esdl}/lib/erlang/addons"; + ERL_LIBS = "${esdl}/lib/erlang/lib:${cl}/lib/erlang/lib"; patchPhase = '' sed -i 's,include("sdl_keyboard.hrl"),include_lib("esdl/include/sdl_keyboard.hrl"),' \ src/wings_body.erl plugins_src/commands/wpc_constraints.erl + + # Fix reference + sed -i 's,wings/e3d/,,' plugins_src/import_export/wpc_lwo.erl ''; - buildInputs = [ erlang esdl ]; + buildInputs = [ erlang esdl cl ]; + # I did not test the *cl* part. I added the -pa just by imitation. installPhase = '' mkdir -p $out/bin $out/lib/${name}/ebin cp ebin/* $out/lib/${name}/ebin cp -R fonts textures shaders plugins $out/lib/$name cat << EOF > $out/bin/wings #!/bin/sh - export ROOTDIR=$out/lib/erlang/addons/${name} - ${erlang}/bin/erl -smp disable -pa ${esdl}/lib/erlang/addons/${esdl.name}/ebin \ + ${erlang}/bin/erl -smp disable \ + -pa ${esdl}/lib/erlang/lib/${cl.name}/ebin \ + -pa ${esdl}/lib/erlang/lib/${esdl.name}/ebin \ -pa $out/lib/${name}/ebin -run wings_start start_halt "$@" EOF chmod +x $out/bin/wings diff --git a/pkgs/development/libraries/cl/default.nix b/pkgs/development/libraries/cl/default.nix new file mode 100644 index 00000000000..dfb54893b6c --- /dev/null +++ b/pkgs/development/libraries/cl/default.nix @@ -0,0 +1,33 @@ +{stdenv, fetchurl, SDL, mesa, rebar, erlang, opencl-headers, ocl-icd }: + +stdenv.mkDerivation rec { + version = "1.2.1"; + name = "cl-${version}"; + + src = fetchurl { + url = "https://github.com/tonyrog/cl/archive/${name}.tar.gz"; + sha256 = "03jv280h9gqqqkm0mmkjr53srd2mzhvyy1biss77wpjrzq2z12c8"; + }; + + buildInputs = [ erlang rebar opencl-headers ocl-icd ]; + #propagatedBuildInputs = [ SDL mesa ]; + + buildPhase = '' + sed 's/git/"${version}"/' -i src/cl.app.src + rebar compile + ''; + + # 'cp' line taken from Arch recipe + # https://projects.archlinux.org/svntogit/community.git/tree/trunk/PKGBUILD?h=packages/erlang-sdl + installPhase = '' + DIR=$out/lib/erlang/lib/${name} + mkdir -p $DIR + cp -ruv c_src doc ebin include priv src $DIR + ''; + + meta = { + homepage = https://github.com/tonyrog/cl; + description = "OpenCL binding for Erlang"; + license = stdenv.lib.licences.mit; + }; +} diff --git a/pkgs/development/libraries/esdl/default.nix b/pkgs/development/libraries/esdl/default.nix index ccc3318ff6b..63fc169355c 100644 --- a/pkgs/development/libraries/esdl/default.nix +++ b/pkgs/development/libraries/esdl/default.nix @@ -1,18 +1,26 @@ -{stdenv, fetchurl, SDL, mesa, erlang}: +{stdenv, fetchurl, SDL, mesa, rebar, erlang}: stdenv.mkDerivation rec { - name = "esdl-1.0.1"; + name = "esdl-1.3.1"; src = fetchurl { - url = "mirror://sourceforge/esdl/${name}.src.tar.gz"; - sha256 = "0zc7cmr44v10sb593dismdm5qc2v7sm3z9yh22g4r9g6asbg5z0n"; + url = "mirror://sourceforge/esdl/${name}.src.tgz"; + sha256 = "0f5ad519600qarsa2anmnaxh6b7djzx1dnwxzi4l36pxsq896y01"; }; - buildInputs = [ erlang ]; + buildInputs = [ erlang rebar ]; propagatedBuildInputs = [ SDL mesa ]; - preBuild = '' - export makeFlags="INSTALLDIR=$out/lib/erlang/addons/${name}"; + buildPhase = '' + rebar compile + ''; + + # 'cp' line taken from Arch recipe + # https://projects.archlinux.org/svntogit/community.git/tree/trunk/PKGBUILD?h=packages/erlang-sdl + installPhase = '' + DIR=$out/lib/erlang/lib/${name} + mkdir -p $DIR + cp -ruv c_src doc ebin include priv src $DIR ''; meta = { diff --git a/pkgs/development/libraries/ocl-icd/default.nix b/pkgs/development/libraries/ocl-icd/default.nix new file mode 100644 index 00000000000..ac26ac7126f --- /dev/null +++ b/pkgs/development/libraries/ocl-icd/default.nix @@ -0,0 +1,18 @@ +{stdenv, fetchurl, ruby }: + +stdenv.mkDerivation rec { + name = "ocl-icd-2.2.9"; + + src = fetchurl { + url = "https://forge.imag.fr/frs/download.php/716/${name}.tar.gz"; + sha256 = "1rgaixwnxmrq2aq4kcdvs0yx7i6krakarya9vqs7qwsv5hzc32hc"; + }; + + buildInputs = [ ruby ]; + + meta = with stdenv.lib; { + description = "OpenCL ICD Loader"; + homepage = https://forge.imag.fr/projects/ocl-icd/; + license = licenses.bsd2; + }; +} diff --git a/pkgs/development/libraries/opencl-headers/default.nix b/pkgs/development/libraries/opencl-headers/default.nix new file mode 100644 index 00000000000..9b931894f66 --- /dev/null +++ b/pkgs/development/libraries/opencl-headers/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchFromGitHub, cmake }: + +stdenv.mkDerivation rec { + name = "opencl-headers-2.1.0"; + + src = fetchFromGitHub { + owner = "KhronosGroup"; + repo = "OpenCL-Headers"; + rev = "c1770dcc6cf1daadec1905e7393f3691c1dde200"; + sha256 = "0m9fkblqja0686i2jjqiszvq3df95gp01a2674xknlmkd6525rck"; + }; + + installPhase = '' + mkdir -p $out/include/CL + cp * $out/include/CL + ''; + + meta = with stdenv.lib; { + description = "Khronos OpenCL headers"; + homepage = https://www.khronos.org/registry/cl/; + license = licenses.mit; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 752f2307995..8d15f689b0f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6432,6 +6432,8 @@ in stdenv = overrideInStdenv stdenv [gnumake380]; }; + cl = callPackage ../development/libraries/cl { }; + clanlib = callPackage ../development/libraries/clanlib { }; classads = callPackage ../development/libraries/classads { }; @@ -8217,6 +8219,8 @@ in nvidia-texture-tools = callPackage ../development/libraries/nvidia-texture-tools { }; + ocl-icd = callPackage ../development/libraries/ocl-icd { }; + ode = callPackage ../development/libraries/ode { }; ogre = callPackage ../development/libraries/ogre {}; @@ -8244,6 +8248,8 @@ in opencascade_oce = callPackage ../development/libraries/opencascade/oce.nix { }; + opencl-headers = callPackage ../development/libraries/opencl-headers { }; + opencollada = callPackage ../development/libraries/opencollada { }; opencsg = callPackage ../development/libraries/opencsg { }; @@ -14133,10 +14139,7 @@ in winswitch = callPackage ../tools/X11/winswitch { }; - wings = callPackage ../applications/graphics/wings { - erlang = erlangR14; - esdl = esdl.override { erlang = erlangR14; }; - }; + wings = callPackage ../applications/graphics/wings { }; wmname = callPackage ../applications/misc/wmname { }; From d7e87db0c7f8d0ed759261cdfbdd2c71a7933bf0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 29 Mar 2016 13:01:27 +0200 Subject: [PATCH 1036/1059] rustc: disable parallel building http://hydra.nixos.org/build/33119905/nixlog/1/raw --- pkgs/development/compilers/rustc/generic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/rustc/generic.nix b/pkgs/development/compilers/rustc/generic.nix index 8be2ec05f07..c0f15fbd116 100644 --- a/pkgs/development/compilers/rustc/generic.nix +++ b/pkgs/development/compilers/rustc/generic.nix @@ -166,7 +166,7 @@ with stdenv.lib; stdenv.mkDerivation { buildInputs = [ ncurses ] ++ optional (!forceBundledLLVM) llvmShared; - enableParallelBuilding = true; + enableParallelBuilding = false; # missing files during linking, occasionally outputs = [ "out" "doc" ]; From 27eaa3775784fd520a61611e7cab1ef39345115a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Tue, 29 Mar 2016 07:12:47 -0300 Subject: [PATCH 1037/1059] weather: fix file locations, add python dependency --- pkgs/applications/misc/weather/default.nix | 23 ++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/misc/weather/default.nix b/pkgs/applications/misc/weather/default.nix index dec18aea961..192e4406b6d 100644 --- a/pkgs/applications/misc/weather/default.nix +++ b/pkgs/applications/misc/weather/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgs }: +{ stdenv, fetchurl, pythonPackages }: stdenv.mkDerivation rec { version = "2.0"; @@ -9,15 +9,26 @@ stdenv.mkDerivation rec { sha256 = "0yil363y9iyr4mkd7xxq0p2260wh50f9i5p0map83k9i5l0gyyl0"; }; + nativeBuildInputs = [ pythonPackages.wrapPython ]; + + buildInputs = [ pythonPackages.python ]; + phases = [ "unpackPhase" "installPhase" ]; installPhase = '' - mkdir $out/{share,man,bin} -p - cp weather{,.py} $out/bin/ - cp {airports,overrides.{conf,log},places,slist,stations,weatherrc,zctas,zlist,zones} $out/share/ + site_packages=$out/${pythonPackages.python.sitePackages} + mkdir -p $out/{share/{man,weather-util},bin,etc} $site_packages + cp weather $out/bin/ + cp weather.py $site_packages/ chmod +x $out/bin/weather - cp ./weather.1 $out/man/ - cp ./weatherrc.5 $out/man/ + cp airports overrides.{conf,log} places slist stations zctas zlist zones $out/share/weather-util/ + cp weatherrc $out/etc + cp weather.1 weatherrc.5 $out/share/man/ + sed -i \ + -e "s|/etc|$out/etc|g" \ + -e "s|else: default_setpath = \".:~/.weather|&:$out/share/weather-util|" \ + $site_packages/weather.py + wrapPythonPrograms ''; meta = { From 5ad9ed9291e304df3f07d3ae9de97feb7925cc45 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Tue, 29 Mar 2016 08:23:27 -0400 Subject: [PATCH 1038/1059] kotlin: 1.0.1 -> 1.0.1-2 --- pkgs/development/compilers/kotlin/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix index 5b9d57cfcac..185dd278fba 100644 --- a/pkgs/development/compilers/kotlin/default.nix +++ b/pkgs/development/compilers/kotlin/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, makeWrapper, jre, unzip }: stdenv.mkDerivation rec { - version = "1.0.1"; + version = "1.0.1-2"; name = "kotlin-${version}"; src = fetchurl { url = "https://github.com/JetBrains/kotlin/releases/download/${version}/kotlin-compiler-${version}.zip"; - sha256 = "1hwdisjgy4q5y25gqnxk8ycd04j7hxb7xd0y6ixi12qfj7259a41"; + sha256 = "0kdfvkb7qh3icchxswai24ifsiw25y3mq1xxcsp8nd3jn9krnj87"; }; propagatedBuildInputs = [ jre ] ; From 14fd473894b82194a1c2904c9b8642f5c8b2c03f Mon Sep 17 00:00:00 2001 From: obadz Date: Tue, 29 Mar 2016 14:09:34 +0100 Subject: [PATCH 1039/1059] gapi-ocaml: 0.2.6 -> 0.2.10 --- pkgs/development/ocaml-modules/gapi-ocaml/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/ocaml-modules/gapi-ocaml/default.nix b/pkgs/development/ocaml-modules/gapi-ocaml/default.nix index ac85a03cc98..06a67e9cb8b 100644 --- a/pkgs/development/ocaml-modules/gapi-ocaml/default.nix +++ b/pkgs/development/ocaml-modules/gapi-ocaml/default.nix @@ -1,10 +1,10 @@ { stdenv, fetchurl, ocaml, findlib, ocurl, cryptokit, ocaml_extlib, yojson, ocamlnet, xmlm }: stdenv.mkDerivation rec { - name = "gapi-ocaml-0.2.6"; + name = "gapi-ocaml-0.2.10"; src = fetchurl { - url = "https://forge.ocamlcore.org/frs/download.php/1468/${name}.tar.gz"; - sha256 = "1sqsir07xxk9xy723l206r7d10sp6rfid9dvi0g34vbkvshm50y2"; + url = "https://forge.ocamlcore.org/frs/download.php/1601/${name}.tar.gz"; + sha256 = "0kg4j7dhr7jynpy8x53bflqjf78jyl14j414l6px34xz7c9qx5fl"; }; buildInputs = [ ocaml findlib ]; propagatedBuildInputs = [ ocurl cryptokit ocaml_extlib yojson ocamlnet xmlm ]; From b48a6fea80a4571e4e8d832087bb1da6d9cd4ff2 Mon Sep 17 00:00:00 2001 From: obadz Date: Tue, 29 Mar 2016 14:10:00 +0100 Subject: [PATCH 1040/1059] google-drive-ocamlfuse: 0.5.18 -> 0.5.22 --- .../networking/google-drive-ocamlfuse/default.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/networking/google-drive-ocamlfuse/default.nix b/pkgs/applications/networking/google-drive-ocamlfuse/default.nix index e085adbdcda..532ab361313 100644 --- a/pkgs/applications/networking/google-drive-ocamlfuse/default.nix +++ b/pkgs/applications/networking/google-drive-ocamlfuse/default.nix @@ -1,14 +1,12 @@ -{ stdenv, fetchFromGitHub, ocamlPackages, zlib }: +{ stdenv, fetchurl, ocamlPackages, zlib }: stdenv.mkDerivation rec { name = "google-drive-ocamlfuse-${version}"; - version = "0.5.18"; + version = "0.5.22"; - src = fetchFromGitHub { - owner = "astrada"; - repo = "google-drive-ocamlfuse"; - rev = "v${version}"; - sha256 = "0a545zalsqw3jndrvkc0bsn4aab74cf8lwnsw09b5gjm8pm79b9r"; + src = fetchurl { + url = "https://forge.ocamlcore.org/frs/download.php/1587/${name}.tar.gz"; + sha256 = "1hjm6hyva9sl6lddb0372wsy7f76105iaxh976yyzfn3b4ran6ab"; }; buildInputs = [ zlib ] ++ (with ocamlPackages; [ocaml ocamlfuse findlib gapi_ocaml ocaml_sqlite3 camlidl]); From fc33e877c1fa2d6b5b533f8dd2f8298ef4598674 Mon Sep 17 00:00:00 2001 From: obadz Date: Tue, 29 Mar 2016 14:15:21 +0100 Subject: [PATCH 1041/1059] spacefm: 1.0.4 -> 1.0.5 --- pkgs/applications/misc/spacefm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/spacefm/default.nix b/pkgs/applications/misc/spacefm/default.nix index 46500077a08..f0c244af05e 100644 --- a/pkgs/applications/misc/spacefm/default.nix +++ b/pkgs/applications/misc/spacefm/default.nix @@ -4,13 +4,13 @@ stdenv.mkDerivation rec { name = "spacefm-${version}"; - version = "1.0.4"; + version = "1.0.5"; src = fetchFromGitHub { owner = "IgnorantGuru"; repo = "spacefm"; rev = "${version}"; - sha256 = "1jywsb5yjrq4w9m94m4mbww36npd1jk6s0b59liz6965hv3xp2sy"; + sha256 = "06askkrwls09d1x382zjrmnvcm0ghfgz4cms2qbhdkazfyy0ff65"; }; configureFlags = [ From 54eb061a12dd5f29ec52cad95b8e19b23b592eaf Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 29 Mar 2016 15:47:18 +0300 Subject: [PATCH 1042/1059] avidemux: don't depend on unfree FAAC by default --- pkgs/applications/video/avidemux/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/video/avidemux/default.nix b/pkgs/applications/video/avidemux/default.nix index 3ffc18e3b18..177f3d1b20c 100644 --- a/pkgs/applications/video/avidemux/default.nix +++ b/pkgs/applications/video/avidemux/default.nix @@ -3,7 +3,7 @@ , yasm, fribidi, gtk3, qt4 , withX264 ? true, x264 , withLAME ? true, lame -, withFAAC ? true, faac +, withFAAC ? false, faac , withVorbis ? true, libvorbis , withPulse ? true, libpulseaudio , withFAAD ? true, faad2 From c56c3b65964b5d06ef1cf576aa609cd76c6edf78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Tue, 29 Mar 2016 14:16:01 +0100 Subject: [PATCH 1043/1059] nixos/lib/testing.nix: make 'config' a free variable cc @edolstra --- nixos/lib/build-vms.nix | 4 ++-- nixos/lib/testing.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/nixos/lib/build-vms.nix b/nixos/lib/build-vms.nix index a97bae57d9b..4e044deca21 100644 --- a/nixos/lib/build-vms.nix +++ b/nixos/lib/build-vms.nix @@ -1,6 +1,6 @@ -{ system, minimal ? false }: +{ system, minimal ? false, config ? {} }: -let pkgs = import ../.. { config = {}; inherit system; }; in +let pkgs = import ../.. { inherit system config; }; in with pkgs.lib; with import ../lib/qemu-flags.nix; diff --git a/nixos/lib/testing.nix b/nixos/lib/testing.nix index aa1cec1ea02..f7159634e4f 100644 --- a/nixos/lib/testing.nix +++ b/nixos/lib/testing.nix @@ -1,6 +1,6 @@ -{ system, minimal ? false }: +{ system, minimal ? false, config ? {} }: -with import ./build-vms.nix { inherit system minimal; }; +with import ./build-vms.nix { inherit system minimal config; }; with pkgs; rec { From d9b98b6b50261cd768bc595d68c91448d36b8692 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 29 Mar 2016 16:32:50 +0200 Subject: [PATCH 1044/1059] manual rl-16.03: document broadcom issue #12595 --- nixos/doc/manual/release-notes/rl-1603.xml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/nixos/doc/manual/release-notes/rl-1603.xml b/nixos/doc/manual/release-notes/rl-1603.xml index 350025da7b0..47654064163 100644 --- a/nixos/doc/manual/release-notes/rl-1603.xml +++ b/nixos/doc/manual/release-notes/rl-1603.xml @@ -274,6 +274,20 @@ services.syncthing = { + + + Systems with some broadcom cards used to result into a generated config + that is no longer accepted. If you get errors like + error: path ‘/nix/store/*-broadcom-sta-*’ does not exist and cannot be created + you should either re-run nixos-generate-config or manually replace + "${config.boot.kernelPackages.broadcom_sta}" + by + config.boot.kernelPackages.broadcom_sta + in your /etc/nixos/hardware-configuration.nix. + More discussion is on + the github issue. + + From a5322efd958cf9fd063f67f4580cffbf70fdb750 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 29 Mar 2016 17:06:54 +0300 Subject: [PATCH 1045/1059] Revert "Remove PATH assumption from fhs-userenv." This reverts commit 2f26b82411ea93349d375ea3b5d833b04a455972. This breaks terminfo in Bash for some reason (i.e. TAB and other special keys). --- pkgs/build-support/build-fhs-userenv/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/build-support/build-fhs-userenv/default.nix b/pkgs/build-support/build-fhs-userenv/default.nix index 4177846c433..a7e1bd11977 100644 --- a/pkgs/build-support/build-fhs-userenv/default.nix +++ b/pkgs/build-support/build-fhs-userenv/default.nix @@ -1,9 +1,8 @@ -{ runCommand, lib, writeText, writeScriptBin, stdenv, bash, ruby } : -{ env, runScript ? "${bash}/bin/bash", extraBindMounts ? [], extraInstallCommands ? "", importMeta ? {} } : +{ runCommand, lib, writeText, writeScriptBin, stdenv, ruby } : +{ env, runScript ? "bash", extraBindMounts ? [], extraInstallCommands ? "", importMeta ? {} } : let name = env.pname; - bash' = "${bash}/bin/bash"; # Sandboxing script chroot-user = writeScriptBin "chroot-user" '' @@ -33,7 +32,7 @@ in runCommand name { runCommand "${name}-shell-env" { shellHook = '' export CHROOTENV_EXTRA_BINDS="${lib.concatStringsSep ":" extraBindMounts}:$CHROOTENV_EXTRA_BINDS" - exec ${chroot-user}/bin/chroot-user ${env} ${bash'} -l ${init bash'} "$(pwd)" + exec ${chroot-user}/bin/chroot-user ${env} bash -l ${init "bash"} "$(pwd)" ''; } '' echo >&2 "" @@ -46,7 +45,7 @@ in runCommand name { cat <$out/bin/${name} #! ${stdenv.shell} export CHROOTENV_EXTRA_BINDS="${lib.concatStringsSep ":" extraBindMounts}:\$CHROOTENV_EXTRA_BINDS" - exec ${chroot-user}/bin/chroot-user ${env} ${bash'} ${init runScript} "\$(pwd)" "\$@" + exec ${chroot-user}/bin/chroot-user ${env} bash ${init runScript} "\$(pwd)" "\$@" EOF chmod +x $out/bin/${name} ${extraInstallCommands} From f38d620d596a45d6a7a4e20a1c7f4985cf4d3ffb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Tue, 29 Mar 2016 17:39:43 +0200 Subject: [PATCH 1046/1059] Updating giv to latest from git (>0.9.25). We were using a version years old. I picked the git version instead of the last release because the git version has fixes not released for almost one year. --- pkgs/applications/graphics/giv/build.patch | 27 ---------------------- pkgs/applications/graphics/giv/default.nix | 12 ++++++---- 2 files changed, 7 insertions(+), 32 deletions(-) diff --git a/pkgs/applications/graphics/giv/build.patch b/pkgs/applications/graphics/giv/build.patch index 639d881f415..ec343c90238 100644 --- a/pkgs/applications/graphics/giv/build.patch +++ b/pkgs/applications/graphics/giv/build.patch @@ -15,30 +15,3 @@ index 16eccd9..603e931 100644 env['SBOX'] = False -diff --git a/giv/SConstruct b/giv/SConstruct -index 047839a..2c267aa 100644 ---- a/giv/SConstruct -+++ b/giv/SConstruct -@@ -3,8 +3,9 @@ - - import sys - import re -+import os - --env = Environment() -+env = Environment(ENV = os.environ) - - src = ["giv.c", - "giv-backstore.c", -diff --git a/src/plugins/dcmtk/SConstruct.standalone b/src/plugins/dcmtk/SConstruct.standalone -index ffce001..74246f8 100644 ---- a/src/plugins/dcmtk/SConstruct.standalone -+++ b/src/plugins/dcmtk/SConstruct.standalone -@@ -1,4 +1,6 @@ --env = Environment() -+import os -+ -+env = Environment(ENV = os.environ) - - variant = "Debug" - diff --git a/pkgs/applications/graphics/giv/default.nix b/pkgs/applications/graphics/giv/default.nix index 2e9d55a3f3f..f9ea3173b43 100644 --- a/pkgs/applications/graphics/giv/default.nix +++ b/pkgs/applications/graphics/giv/default.nix @@ -1,12 +1,14 @@ -{ stdenv, fetchurl, gdk_pixbuf, scons, pkgconfig, gtk, glib, +{ stdenv, fetchFromGitHub, gdk_pixbuf, scons, pkgconfig, gtk, glib, pcre, cfitsio, perl, gob2, vala, libtiff, json_glib }: stdenv.mkDerivation rec { - name = "giv-0.9.22"; + name = "giv-20150811-git"; - src = fetchurl { - url = "mirror://sourceforge/giv/${name}.tar.gz"; - sha256 = "1q0806b66ajppxbv1i71wx5d3ydc1h3hsz23m6g4g80dhiai7dly"; + src = fetchFromGitHub { + owner = "dov"; + repo = "giv"; + rev = "64648bfbbf10ec4a9adfbc939c96c7d1dbdce57a"; + sha256 = "1sz2n7jbmg3g97bs613xxjpzqbsl5rvpg6v7g3x3ycyd35r8vsfp"; }; # It built code to be put in a shared object without -fPIC From 0c98b52816bfa4f064bdadfcb026144fd5cece6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Tue, 29 Mar 2016 17:47:07 +0200 Subject: [PATCH 1047/1059] Fix evaluation. (licenses, not licences) Thanks Domen. --- pkgs/development/libraries/cl/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/cl/default.nix b/pkgs/development/libraries/cl/default.nix index dfb54893b6c..c166a6e4acf 100644 --- a/pkgs/development/libraries/cl/default.nix +++ b/pkgs/development/libraries/cl/default.nix @@ -28,6 +28,6 @@ stdenv.mkDerivation rec { meta = { homepage = https://github.com/tonyrog/cl; description = "OpenCL binding for Erlang"; - license = stdenv.lib.licences.mit; + license = stdenv.lib.licenses.mit; }; } From 63f1eb6b00ca3bb792c36b4ce26685de90a62f5d Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 29 Mar 2016 17:57:24 +0300 Subject: [PATCH 1048/1059] xserver service: add glamoregl for intel drivers Closes #14286 Credits to vcunat for the initial patch. --- nixos/modules/services/x11/xserver.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix index 0fcea6ce5e4..76431f21124 100644 --- a/nixos/modules/services/x11/xserver.nix +++ b/nixos/modules/services/x11/xserver.nix @@ -13,9 +13,9 @@ let # Map video driver names to driver packages. FIXME: move into card-specific modules. knownVideoDrivers = { - virtualbox = { modules = [ kernelPackages.virtualboxGuestAdditions ]; driverName = "vboxvideo"; }; - ati = { modules = [ pkgs.xorg.xf86videoati pkgs.xorg.glamoregl ]; }; - intel-testing = { modules = with pkgs.xorg; [ xf86videointel-testing glamoregl ]; driverName = "intel"; }; + virtualbox = { modules = [ kernelPackages.virtualboxGuestAdditions ]; driverName = "vboxvideo"; }; + ati = { modules = with pkgs.xorg; [ xf86videoati glamoregl ]; }; + intel = { modules = with pkgs.xorg; [ xf86videointel glamoregl ]; }; }; fontsForXServer = From 9c8f810f834837131d113af0dd5f0c417542155b Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 29 Mar 2016 20:58:44 +0300 Subject: [PATCH 1049/1059] noto-fonts: 2015-09-08 -> 2016-03-29 --- pkgs/data/fonts/noto-fonts/default.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/pkgs/data/fonts/noto-fonts/default.nix b/pkgs/data/fonts/noto-fonts/default.nix index bb07596ab97..1ada615d500 100644 --- a/pkgs/data/fonts/noto-fonts/default.nix +++ b/pkgs/data/fonts/noto-fonts/default.nix @@ -1,15 +1,18 @@ { stdenv, fetchurl, fetchFromGitHub, optipng, cairo, unzip, fontforge, pythonPackages, pkgconfig }: rec { # 18MB - noto-fonts = let version = "git-2015-09-08"; in stdenv.mkDerivation { + noto-fonts = let version = "git-2016-03-29"; in stdenv.mkDerivation { name = "noto-fonts-${version}"; + src = fetchFromGitHub { owner = "googlei18n"; repo = "noto-fonts"; - rev = "9d677e7e47a13f6e88052833277783fe4f27671f"; - sha256 = "1dw1142znlk19a4mzhfi9pg3jzmz8pl1ivix7sd2grg70vxscxqc"; + rev = "e8b0af48b15d64bd490edab4418b5e396cf29644"; + sha256 = "02yv12fbb4n1gp9g9m0qxnj6adpg9hfsr9377h2d4xsf6sxcgy6f"; }; - phases = "unpackPhase installPhase"; + + phases = [ "unpackPhase" "installPhase" ]; + installPhase = '' mkdir -p $out/share/fonts/noto cp hinted/*.ttf $out/share/fonts/noto @@ -19,6 +22,9 @@ rec { cp -n unhinted/*.ttf $out/share/fonts/noto cp -n alpha/*.ttf $out/share/fonts/noto ''; + + preferLocalBuild = true; + meta = with stdenv.lib; { inherit version; description = "Beautiful and free fonts for many languages"; From 08db1b19a29f03ca2f070eae7fc0b38e387c823c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 29 Mar 2016 21:00:00 +0300 Subject: [PATCH 1050/1059] noto-fonts-cjk: cleanup --- pkgs/data/fonts/noto-fonts/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/fonts/noto-fonts/default.nix b/pkgs/data/fonts/noto-fonts/default.nix index 1ada615d500..d62b4758f75 100644 --- a/pkgs/data/fonts/noto-fonts/default.nix +++ b/pkgs/data/fonts/noto-fonts/default.nix @@ -57,9 +57,9 @@ rec { sha256 = "1vg3si6slvk8cklq6s5c76s84kqjc4wvwzr4ysljzjpgzra2rfn6"; }; - buildInputs = [ unzip ]; + nativeBuildInputs = [ unzip ]; - phases = "unpackPhase installPhase"; + phases = [ "unpackPhase" "installPhase" ]; sourceRoot = "."; From f4fa3565b8051abae51e823852a47ae9068f9abc Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 29 Mar 2016 21:00:18 +0300 Subject: [PATCH 1051/1059] noto-fonts-emoji: 2015-08-17 -> 2016-03-17 --- pkgs/data/fonts/noto-fonts/default.nix | 29 ++++++++++++-------------- 1 file changed, 13 insertions(+), 16 deletions(-) diff --git a/pkgs/data/fonts/noto-fonts/default.nix b/pkgs/data/fonts/noto-fonts/default.nix index d62b4758f75..5866d43b4e0 100644 --- a/pkgs/data/fonts/noto-fonts/default.nix +++ b/pkgs/data/fonts/noto-fonts/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, fetchFromGitHub, optipng, cairo, unzip, fontforge, pythonPackages, pkgconfig }: +{ stdenv, fetchurl, fetchFromGitHub, optipng, cairo, unzip, pythonPackages, pkgconfig, pngquant, which, imagemagick }: + rec { # 18MB noto-fonts = let version = "git-2016-03-29"; in stdenv.mkDerivation { @@ -92,34 +93,30 @@ rec { }; }; # 12MB - noto-fonts-emoji = let version = "git-2015-08-17"; in stdenv.mkDerivation { + noto-fonts-emoji = let version = "git-2016-03-17"; in stdenv.mkDerivation { name = "noto-fonts-emoji-${version}"; src = fetchFromGitHub { owner = "googlei18n"; repo = "noto-emoji"; - rev = "ffd7cfd0c84b7bf37210d0908ac94adfe3259ff2"; - sha256 = "1pa94gw2y0b6p8r81zbjzcjgi5nrx4dqrqr6mk98wj6jbi465sh2"; + rev = "c6379827aaa9cb0baca1a08a9d44ae74ca505236"; + sha256 = "1zh1b617cjr5laha6lx0ys4k1c3az2zkgzjwc2nlb7dsdmfw1n0q"; }; - buildInputs = with pythonPackages; [ - optipng cairo fontforge python nototools fonttools pkgconfig - ]; + buildInputs = [ cairo ] + nativeBuildInputs = [ pngquant optipng which cairo pkgconfig imagemagick ] + ++ (with pythonPackages; [ python fonttools nototools ]); - #FIXME: perhaps use our pngquant instead - preConfigure = '' - for f in ./*.py ./third_party/pngquant/configure; do - patchShebangs "$f" - done + postPatch = '' + sed -i 's,^PNGQUANT :=.*,PNGQUANT := ${pngquant}/bin/pngquant,' Makefile + patchShebangs flag_glyph_name.py ''; - preBuild = '' - export PYTHONPATH=$PYTHONPATH:$PWD - ''; + enableParallelBuilding = true; installPhase = '' mkdir -p $out/share/fonts/noto - cp NotoColorEmoji.ttf NotoEmoji-Regular.ttf $out/share/fonts/noto + cp NotoColorEmoji.ttf fonts/NotoEmoji-Regular.ttf $out/share/fonts/noto ''; meta = with stdenv.lib; { From 8862c5db0c34d44bc97f40ed18cfefb93b85a26c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 29 Mar 2016 21:00:40 +0300 Subject: [PATCH 1052/1059] pythonPackages.nototools: 2015-09-16 -> 2016-03-25 --- pkgs/top-level/python-packages.nix | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 62b16f69e6b..763e1aa15ff 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11834,11 +11834,17 @@ in modules // { }; nototools = buildPythonPackage rec { - version = "git-2015-09-16"; + version = "git-2016-03-25"; name = "nototools-${version}"; - disabled = isPy3k; - pythonPath = with self; [ fonttools numpy ]; + src = pkgs.fetchFromGitHub { + owner = "googlei18n"; + repo = "nototools"; + rev = "4f7b067d1b18f59288e5eaee34db5b0abd3a3f63"; + sha256 = "05brbkfg77ij4pmcrhq9302albzdalr9gv6jfdsbyyi2k8j85gbn"; + }; + + propagatedBuildInputs = with self; [ fonttools numpy ]; postPatch = '' sed -ie "s^join(_DATA_DIR_PATH,^join(\"$out/third_party/ucd\",^" nototools/unicode_data.py @@ -11848,11 +11854,12 @@ in modules // { cp -r third_party $out ''; - src = pkgs.fetchFromGitHub { - owner = "googlei18n"; - repo = "nototools"; - rev = "5a79bee819941849da7b414447929fc7ba6c2c08"; - sha256 = "0srrmyrjgksk4c6smgi1flyq325r4ma8r6bpkvbn731q3yykhmaa"; + disabled = isPy3k; + + meta = { + description = "Noto fonts support tools and scripts plus web site generation"; + license = licenses.asl20; + homepage = https://github.com/googlei18n/nototools; }; }; From e65b0b851bdd0cfb85bae4384574ce04891a1583 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 29 Mar 2016 21:05:32 +0300 Subject: [PATCH 1053/1059] noto-fonts-emoji: add uncommited fix --- pkgs/data/fonts/noto-fonts/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/data/fonts/noto-fonts/default.nix b/pkgs/data/fonts/noto-fonts/default.nix index 5866d43b4e0..28fce379968 100644 --- a/pkgs/data/fonts/noto-fonts/default.nix +++ b/pkgs/data/fonts/noto-fonts/default.nix @@ -103,7 +103,7 @@ rec { sha256 = "1zh1b617cjr5laha6lx0ys4k1c3az2zkgzjwc2nlb7dsdmfw1n0q"; }; - buildInputs = [ cairo ] + buildInputs = [ cairo ]; nativeBuildInputs = [ pngquant optipng which cairo pkgconfig imagemagick ] ++ (with pythonPackages; [ python fonttools nototools ]); From 51135d803a73218d5186b41bffd4298555de44ed Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 29 Mar 2016 21:16:56 +0200 Subject: [PATCH 1054/1059] bitlbee: 3.4.1 -> 3.4.2 --- .../networking/instant-messengers/bitlbee/default.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/bitlbee/default.nix b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix index d7c52ccfd6b..89ee38a7380 100644 --- a/pkgs/applications/networking/instant-messengers/bitlbee/default.nix +++ b/pkgs/applications/networking/instant-messengers/bitlbee/default.nix @@ -2,21 +2,16 @@ with stdenv.lib; stdenv.mkDerivation rec { - name = "bitlbee-3.4.1"; + name = "bitlbee-3.4.2"; src = fetchurl { url = "mirror://bitlbee/src/${name}.tar.gz"; - sha256 = "1qf0ypa9ba5jvsnpg9slmaran16hcc5fnfzbb1sdch1hjhchn2jh"; + sha256 = "0mza8lnfwibmklz8hdzg4f7p83hblf4h6fbf7d732kzpvra5bj39"; }; buildInputs = [ gnutls glib pkgconfig libotr python ] ++ optional doCheck check; - patches = [(fetchpatch { - url = "https://github.com/bitlbee/bitlbee/commit/34d16d5b4b5265990125894572a90493284358cd.patch"; - sha256 = "05in9kxabb6s2c1l4b9ry58ppfciwmwzrkaq33df2zv0pr3z7w33"; - })]; - configureFlags = [ "--gcov=1" "--otr=1" From 0ca288abc80752e2216afa2790d2bb92a5a38ef8 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Tue, 29 Mar 2016 21:29:26 +0200 Subject: [PATCH 1055/1059] global: 6.5.3 -> 6.5.4 --- 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 298a99ef665..5fdccc9acad 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.3"; + name = "global-6.5.4"; src = fetchurl { url = "mirror://gnu/global/${name}.tar.gz"; - sha256 = "00h3p10rn312rnsipfvpyr61bsfdqyfpxp506yy6ji58skqr2vrk"; + sha256 = "19hxajpwld6qx0faz4rzyh1hfs25ycjmws6bas8pavx4hskf05mg"; }; nativeBuildInputs = [ libtool makeWrapper ]; From d52efcc9d3d007c6586e2cc815208c6a35b249bb Mon Sep 17 00:00:00 2001 From: Anthony Cowley Date: Tue, 29 Mar 2016 15:38:48 -0400 Subject: [PATCH 1056/1059] assimp: add missing zlib dependency cmake searches for this package during the build phase. --- pkgs/development/libraries/assimp/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/assimp/default.nix b/pkgs/development/libraries/assimp/default.nix index cfe86ce4e70..38d7e50bdf8 100644 --- a/pkgs/development/libraries/assimp/default.nix +++ b/pkgs/development/libraries/assimp/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, unzip, cmake, boost }: +{ stdenv, fetchurl, unzip, cmake, boost, zlib }: let major = "3"; @@ -14,14 +14,14 @@ stdenv.mkDerivation { sha256 = "17nyzsqzqpafamhi779f1bkh5mfgj8rpas034x3v9a0hdy3jg66s"; }; - buildInputs = [ unzip cmake boost ]; + buildInputs = [ unzip cmake boost zlib ]; meta = with stdenv.lib; { description = "A library to import various 3D model formats"; homepage = http://assimp.sourceforge.net/; license = licenses.bsd3; maintainers = with maintainers; [ ehmry ]; - platfroms = platforms.linux; + platfroms = [ platforms.linux platforms.darwin ]; inherit version; }; -} \ No newline at end of file +} From 13e83a493e5e358a8a0a2677fc24b7e4b8436da8 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 29 Mar 2016 09:48:19 -0500 Subject: [PATCH 1057/1059] kde5.applications: 15.12.1 -> 15.12.3 --- .../kde-5/applications-15.12/fetchsrcs.sh | 2 +- .../kde-5/applications-15.12/srcs.nix | 1928 ++++++++--------- 2 files changed, 965 insertions(+), 965 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-15.12/fetchsrcs.sh b/pkgs/desktops/kde-5/applications-15.12/fetchsrcs.sh index 93da9d332f7..ff118a53e3a 100755 --- a/pkgs/desktops/kde-5/applications-15.12/fetchsrcs.sh +++ b/pkgs/desktops/kde-5/applications-15.12/fetchsrcs.sh @@ -4,7 +4,7 @@ set -x # The trailing slash at the end is necessary! -WGET_ARGS='http://download.kde.org/stable/applications/15.12.1/ -A *.tar.xz' +WGET_ARGS='http://download.kde.org/stable/applications/15.12.3/ -A *.tar.xz' mkdir tmp; cd tmp diff --git a/pkgs/desktops/kde-5/applications-15.12/srcs.nix b/pkgs/desktops/kde-5/applications-15.12/srcs.nix index cd123f49f76..7db99c26c3c 100644 --- a/pkgs/desktops/kde-5/applications-15.12/srcs.nix +++ b/pkgs/desktops/kde-5/applications-15.12/srcs.nix @@ -3,1931 +3,1931 @@ { akonadi = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/akonadi-15.12.1.tar.xz"; - sha256 = "1v9l1i9yny1ckyvq95wvd0bn3ain3fdlba76gf4f2zjwd57kw4il"; - name = "akonadi-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/akonadi-15.12.3.tar.xz"; + sha256 = "17qzwsf8x95jm5swbxx5692i5yzwzqylnqrdbx2bflaaw7i2k3by"; + name = "akonadi-15.12.3.tar.xz"; }; }; akonadi-calendar = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/akonadi-calendar-15.12.1.tar.xz"; - sha256 = "120fzy2l7c3rl4jlvk021wsrkp0gihqxhihmk6jrlwj4v7nswp69"; - name = "akonadi-calendar-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/akonadi-calendar-15.12.3.tar.xz"; + sha256 = "15algxz73wi143b93yps7dlbac0dp9isaxlf0h9xv1cia8s98a17"; + name = "akonadi-calendar-15.12.3.tar.xz"; }; }; akonadi-search = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/akonadi-search-15.12.1.tar.xz"; - sha256 = "1kzjhqxa3n8216x1cs2xkyqyzjq7i8py5y5d303yr38m62z3f4qr"; - name = "akonadi-search-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/akonadi-search-15.12.3.tar.xz"; + sha256 = "0dxr8rppaf0vnfmcys5hp6h936lim3s8f1ykhrygrvjr3va0fw3f"; + name = "akonadi-search-15.12.3.tar.xz"; }; }; analitza = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/analitza-15.12.1.tar.xz"; - sha256 = "0lvjsrraffqfl53gkdsbzmrsznrz1sqnhpsbx015v21pgiwnx6ll"; - name = "analitza-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/analitza-15.12.3.tar.xz"; + sha256 = "0hz59vfzh4kysrchafiaa3l8lw2zv0nky1dyi9ybzqwi5ilxcs9b"; + name = "analitza-15.12.3.tar.xz"; }; }; ark = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ark-15.12.1.tar.xz"; - sha256 = "0x61k21rjydcjz4b2z52xa559kymsji52ik0hjdkljvwhggcw96a"; - name = "ark-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ark-15.12.3.tar.xz"; + sha256 = "13pl4phk7zg19gc16x1faaycgipdd85xg2s7rj6silmvyxr47kzf"; + name = "ark-15.12.3.tar.xz"; }; }; artikulate = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/artikulate-15.12.1.tar.xz"; - sha256 = "1nlpyslrsqs0zirkaryq4sk2cb53sh2b8mk3cdzpj9w9isx9565x"; - name = "artikulate-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/artikulate-15.12.3.tar.xz"; + sha256 = "00dhgpkzjdqjag6k2m2d8l8pp40grzhqhvvivxzy6lcz67yr68m1"; + name = "artikulate-15.12.3.tar.xz"; }; }; audiocd-kio = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/audiocd-kio-15.12.1.tar.xz"; - sha256 = "0x9x25x096grhm5lb3zibvrdy1x0hf2ryqkgp3l05580iirdjwss"; - name = "audiocd-kio-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/audiocd-kio-15.12.3.tar.xz"; + sha256 = "0ibasnpjqbfhxgkfar88pzmywcnnjpamkkd2arzwgdmrv311f4rj"; + name = "audiocd-kio-15.12.3.tar.xz"; }; }; baloo-widgets = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/baloo-widgets-15.12.1.tar.xz"; - sha256 = "01nrw2wrvzkvnh1xgzxqzy6zpx2p74iwrz44rrgr5dixciy5bqf5"; - name = "baloo-widgets-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/baloo-widgets-15.12.3.tar.xz"; + sha256 = "19yxc4njgnxyqd7izjkf93mml0wnnl23w58pv44w23a10jihydrg"; + name = "baloo-widgets-15.12.3.tar.xz"; }; }; blinken = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/blinken-15.12.1.tar.xz"; - sha256 = "1x9pdji26s0hwrni26wl8r0rqbykxdpl348671d0jwmnidq6rabv"; - name = "blinken-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/blinken-15.12.3.tar.xz"; + sha256 = "04jkf6gh676ghf6mhgn3pyv2vl6dypja3bxjc2np1j7j44575jx1"; + name = "blinken-15.12.3.tar.xz"; }; }; bomber = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/bomber-15.12.1.tar.xz"; - sha256 = "0666ghxjcpscnc4d0q1jh29kx6knabkglbvggpkk1zqq3zl0fw6y"; - name = "bomber-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/bomber-15.12.3.tar.xz"; + sha256 = "03ydvhdcbgvalkn3ch512s7z7hn2ykamjilbs7iv6p9q21va6iws"; + name = "bomber-15.12.3.tar.xz"; }; }; bovo = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/bovo-15.12.1.tar.xz"; - sha256 = "0cma6b1896nj2m7gra5g7jc9lwb7m70mhd593nib93w1i2mkamfr"; - name = "bovo-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/bovo-15.12.3.tar.xz"; + sha256 = "086nxgdl37jgmi5x759ln7ai4nxv6mahzhlkf3m8m3faa6hxm2af"; + name = "bovo-15.12.3.tar.xz"; }; }; cantor = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/cantor-15.12.1.tar.xz"; - sha256 = "15bdh85hrcx54ynq70jh42aw4m46g9sszg1rvymjpqi0za80srrj"; - name = "cantor-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/cantor-15.12.3.tar.xz"; + sha256 = "0fs2zsd8aq5q0l5d2p8343af6cbi4qvi603gvrcjyyyc728djrqc"; + name = "cantor-15.12.3.tar.xz"; }; }; cervisia = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/cervisia-15.12.1.tar.xz"; - sha256 = "1kgnvv3az7mdl6q29wxwaj8k3cnxzyizri7l6zjkp6n5jywxpq5h"; - name = "cervisia-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/cervisia-15.12.3.tar.xz"; + sha256 = "04gs4yjjdn0ndqfcpr7ww3qwn80929g4ylilznhpp6xp35gb5dsa"; + name = "cervisia-15.12.3.tar.xz"; }; }; dolphin = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/dolphin-15.12.1.tar.xz"; - sha256 = "0lpc21abdw242cans08jnswbsf9avckf6v12za029g6p4nnvmspx"; - name = "dolphin-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/dolphin-15.12.3.tar.xz"; + sha256 = "1pdxsf8n5kys7zwlhr71mwj4scwk8qglqml65cb3bijyysxlghr6"; + name = "dolphin-15.12.3.tar.xz"; }; }; dolphin-plugins = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/dolphin-plugins-15.12.1.tar.xz"; - sha256 = "0k438rhcscqin9735mjq8qrapc4ff4kimwp8bl6b77743b2bk59f"; - name = "dolphin-plugins-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/dolphin-plugins-15.12.3.tar.xz"; + sha256 = "179c1k6xd1f1mjrdgx23jfhgn3y72qqwmpnx8pyw83gc8rcjgrzz"; + name = "dolphin-plugins-15.12.3.tar.xz"; }; }; dragon = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/dragon-15.12.1.tar.xz"; - sha256 = "0kqd7m8vjpc4ywz3hpqa8cy3fdlznnhv291wrgvvgm7dv83wylq3"; - name = "dragon-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/dragon-15.12.3.tar.xz"; + sha256 = "0hkm0w85w5bc1pfmbaz64kxcplpm9459ggpv9gfabgg3ydy3k8l7"; + name = "dragon-15.12.3.tar.xz"; }; }; ffmpegthumbs = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ffmpegthumbs-15.12.1.tar.xz"; - sha256 = "1apcafjdjzhpqm72h2rvzxcy00fjdl8dah49ss7mj2ld0f36vl07"; - name = "ffmpegthumbs-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ffmpegthumbs-15.12.3.tar.xz"; + sha256 = "1wkxz3xhmfafq52ws9i8401s0nacdh896xfin86ypfqb6dk94119"; + name = "ffmpegthumbs-15.12.3.tar.xz"; }; }; filelight = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/filelight-15.12.1.tar.xz"; - sha256 = "0za42abixfhkxczcddy9n4b98ryf3wvq2gngnqwgrs0m4wv3y530"; - name = "filelight-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/filelight-15.12.3.tar.xz"; + sha256 = "1s31q8x2yywi2v8kql7zw5yz9r05v1509334kwlyyfz63zz54kgm"; + name = "filelight-15.12.3.tar.xz"; }; }; gpgmepp = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/gpgmepp-15.12.1.tar.xz"; - sha256 = "0ygmdmampd3yc0mkfbw7ihrdc6vmxb178kd5y3dxms4kiilxw6lv"; - name = "gpgmepp-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/gpgmepp-15.12.3.tar.xz"; + sha256 = "1vrr3i5d9nfyvn5v1hn6rxi3hkw4gi1bj7plnd4fhbl3s4nfhlsp"; + name = "gpgmepp-15.12.3.tar.xz"; }; }; granatier = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/granatier-15.12.1.tar.xz"; - sha256 = "09v0fwwkz7k8dx2rqc18qdrlmzkbmxna0ppxwq4cdhxixyppi0py"; - name = "granatier-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/granatier-15.12.3.tar.xz"; + sha256 = "1mjwgw4laxlkpy7zjd0jj7i2nq9mqpzzz048fw0swkndbh1ykrnc"; + name = "granatier-15.12.3.tar.xz"; }; }; gwenview = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/gwenview-15.12.1.tar.xz"; - sha256 = "1bqcq277h6421rwhqvy8b2dn95h0zqqiskw38xfzrablfmr4ba9h"; - name = "gwenview-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/gwenview-15.12.3.tar.xz"; + sha256 = "11wia3ljhwxfqbakiavi9b0h59fa2l5i1skgkbpnnglafj6j9dn9"; + name = "gwenview-15.12.3.tar.xz"; }; }; jovie = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/jovie-15.12.1.tar.xz"; - sha256 = "0z6lxvzv92z5hkbin6l7d75l6alnk94l3mhdkfa6p9mfimxvzixy"; - name = "jovie-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/jovie-15.12.3.tar.xz"; + sha256 = "07rmig3zfxhipf817gvphc68gm9zkliiwznw06z76zlpavcmmlgp"; + name = "jovie-15.12.3.tar.xz"; }; }; juk = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/juk-15.12.1.tar.xz"; - sha256 = "1k9js66kmbpc6wyxxgp3z2zx7zhyvdsawy8fra9j76zd2fjyja60"; - name = "juk-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/juk-15.12.3.tar.xz"; + sha256 = "1nbjv5vdxb3n5m213s7srfxh38y7bavvib9v4maabg84q84c4531"; + name = "juk-15.12.3.tar.xz"; }; }; kaccessible = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kaccessible-15.12.1.tar.xz"; - sha256 = "1vjla5wf63h88y738f0p8prqkmzdifl0l6akmjvkasjipy3bcdw6"; - name = "kaccessible-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kaccessible-15.12.3.tar.xz"; + sha256 = "0pg7jc7y6c8x246qyn0f9qdl38cg055bj4cfvnlp9bqkq69r4mw4"; + name = "kaccessible-15.12.3.tar.xz"; }; }; kaccounts-integration = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kaccounts-integration-15.12.1.tar.xz"; - sha256 = "1q7gjv4jr534q42am40x27kbk2sqs8im800xjw214y3dgw146g6d"; - name = "kaccounts-integration-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kaccounts-integration-15.12.3.tar.xz"; + sha256 = "0l3x3fgj7wvhlzx73qi0qb8yhk305yw71jrv8x4vvaagw0ffmkb9"; + name = "kaccounts-integration-15.12.3.tar.xz"; }; }; kaccounts-providers = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kaccounts-providers-15.12.1.tar.xz"; - sha256 = "1ir7cb3ma8j1jfnjk4m9xx5mj7yj769pblsjz1v6nh6s846ri1fh"; - name = "kaccounts-providers-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kaccounts-providers-15.12.3.tar.xz"; + sha256 = "0lmsv1296zgcrzlsidfwv4wlc6vdiaznbaw45xzfy6ki6yfldwc9"; + name = "kaccounts-providers-15.12.3.tar.xz"; }; }; kajongg = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kajongg-15.12.1.tar.xz"; - sha256 = "1dzw9dvh3an26i6w8zf319337x7d4iggfgz0v9c46kngh8b9lydx"; - name = "kajongg-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kajongg-15.12.3.tar.xz"; + sha256 = "13r7mgdmcv3ywn6ni7l1y9g021jrqga1lc9q4i4h4pi4ymc8vqn3"; + name = "kajongg-15.12.3.tar.xz"; }; }; kalarmcal = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kalarmcal-15.12.1.tar.xz"; - sha256 = "1kdbqy6hb19sip49nca05375rjwj2502mq1vmylrqfggbrh277wz"; - name = "kalarmcal-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kalarmcal-15.12.3.tar.xz"; + sha256 = "15cby2615r420zzfx7h2fpb0vsmnrbrr1l62arx2vswpb694d0hi"; + name = "kalarmcal-15.12.3.tar.xz"; }; }; kalgebra = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kalgebra-15.12.1.tar.xz"; - sha256 = "1f4kqjljw2rwzi82vzfbk7j9h4b9i127lnhklw47vyapllw2jjjc"; - name = "kalgebra-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kalgebra-15.12.3.tar.xz"; + sha256 = "0da88b30yi0f5h2alysmd1z94bzb9006zbh7939sx1v4fwg8nvha"; + name = "kalgebra-15.12.3.tar.xz"; }; }; kalzium = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kalzium-15.12.1.tar.xz"; - sha256 = "00fh91p4rrw7y6qdkg33dqf74c15q4j76b8xp1a6ydcvwjjcp4cv"; - name = "kalzium-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kalzium-15.12.3.tar.xz"; + sha256 = "0lrca50kczjynhn7c9b2sls6pjr7f86k69yq7b7krf3xk59a1hm1"; + name = "kalzium-15.12.3.tar.xz"; }; }; kamera = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kamera-15.12.1.tar.xz"; - sha256 = "01vd2zg2gyzbzcgdk6yd10vndn41wrf4cqg6vk65y0idk2gqjfbi"; - name = "kamera-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kamera-15.12.3.tar.xz"; + sha256 = "1azzvdj0gmafjkq7w19ns1mxjm240p0yx7cpq9dqhz0hhyl63666"; + name = "kamera-15.12.3.tar.xz"; }; }; kanagram = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kanagram-15.12.1.tar.xz"; - sha256 = "0pifl0qh33cm09m1fl8ma7p4nzd6bw2sisq3aj1x6r2yal48n5l7"; - name = "kanagram-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kanagram-15.12.3.tar.xz"; + sha256 = "1adhc1f4hdrgc780v1yadhjpb1dbydwh1xzvgwpd953df7pfxzzj"; + name = "kanagram-15.12.3.tar.xz"; }; }; kapman = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kapman-15.12.1.tar.xz"; - sha256 = "1fygp0v0s4dk6cb30samg63dbzdspx0fmd7shijhx4rdphq6jr5f"; - name = "kapman-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kapman-15.12.3.tar.xz"; + sha256 = "0iks3c18dqxds55fmf0fi93lbh14mfdhjh82xx4hc1fn9j8xhfw5"; + name = "kapman-15.12.3.tar.xz"; }; }; kapptemplate = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kapptemplate-15.12.1.tar.xz"; - sha256 = "045v0gb8gbhsnqk63zvwhmq7nncf6wd8zpbrp1s92sjkyjc7p8rn"; - name = "kapptemplate-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kapptemplate-15.12.3.tar.xz"; + sha256 = "1d1z6j5w80cjs8ls6c44sn0wwa1z4nly9gkk6qr47j8265a1rqnx"; + name = "kapptemplate-15.12.3.tar.xz"; }; }; kate = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kate-15.12.1.tar.xz"; - sha256 = "1nwg578z49pswj098awlqblxzj7a5isqg6j9fy28zdg29rzfwchx"; - name = "kate-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kate-15.12.3.tar.xz"; + sha256 = "1yxqs6j41cpx4zws5hfs7j01gqn47b6inddifbwglrp5w9j33wpv"; + name = "kate-15.12.3.tar.xz"; }; }; katomic = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/katomic-15.12.1.tar.xz"; - sha256 = "1xvqpazmak4xdzg0wlan5ysn0xnpjqfz8c0j5vhsbglhfw8a71d6"; - name = "katomic-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/katomic-15.12.3.tar.xz"; + sha256 = "0ydflzaxfxbk4yb26j4yziywr72dijva5g3xi9car3b0hckvqpf0"; + name = "katomic-15.12.3.tar.xz"; }; }; kblackbox = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kblackbox-15.12.1.tar.xz"; - sha256 = "1dgla3c0wd1vl3yx8civn60xv10kab7nkngmclp6kw4v6f4vqk7q"; - name = "kblackbox-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kblackbox-15.12.3.tar.xz"; + sha256 = "1yzw61b62plad78wchids243x4lb5bzla3zrlmi3lv5q3g7imz0f"; + name = "kblackbox-15.12.3.tar.xz"; }; }; kblocks = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kblocks-15.12.1.tar.xz"; - sha256 = "1zzdwg8bmf28r8yfjw4105j96xja30yq0aqg5cvpp0krmnr3254i"; - name = "kblocks-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kblocks-15.12.3.tar.xz"; + sha256 = "0hgmm4gyysn9k031im3xk7aiawavv4920y8xd44scxlcwxfid8cw"; + name = "kblocks-15.12.3.tar.xz"; }; }; kblog = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kblog-15.12.1.tar.xz"; - sha256 = "0yzi0q64szwgrda3x1w6vblfymgaqp3rq61z71fr327n8hngnpq8"; - name = "kblog-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kblog-15.12.3.tar.xz"; + sha256 = "01z3n0lzg9d6ygqn87yvi8wg6yyg5b8jhf96ywcmb5zzacamb2hq"; + name = "kblog-15.12.3.tar.xz"; }; }; kbounce = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kbounce-15.12.1.tar.xz"; - sha256 = "18z8q2ny5m3fik4q0zi0hkqy3w87qfhbpffp9nd6vrsi3wdj013p"; - name = "kbounce-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kbounce-15.12.3.tar.xz"; + sha256 = "1gbks7hyis7czvvvqb53qwfkbzmlwg85d51m5mg1m54qixq4blq9"; + name = "kbounce-15.12.3.tar.xz"; }; }; kbreakout = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kbreakout-15.12.1.tar.xz"; - sha256 = "02d964h3ay2sr5xk2g2kam80w9pi8ah98k6ld3vx5l5mjs5qffib"; - name = "kbreakout-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kbreakout-15.12.3.tar.xz"; + sha256 = "01d7i3ga4sdgvvyl4s77i9x15f80nbh3kcqmwmrj511icvynzkl8"; + name = "kbreakout-15.12.3.tar.xz"; }; }; kbruch = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kbruch-15.12.1.tar.xz"; - sha256 = "05s8ghmg562za2y7g9vqwdh4jbifz7kjd9fj45j9mjwb5rxdckpr"; - name = "kbruch-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kbruch-15.12.3.tar.xz"; + sha256 = "1y4dipifj3dz78y6h7852840msg80iwix427l6wxb8ybyzhapmz1"; + name = "kbruch-15.12.3.tar.xz"; }; }; kcachegrind = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kcachegrind-15.12.1.tar.xz"; - sha256 = "0v036sc9lmvc00gllyzzvlgbap3m7q2gx4m0c931iaw6sal473q0"; - name = "kcachegrind-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kcachegrind-15.12.3.tar.xz"; + sha256 = "0zprqhzqlhgvw3fyvqs4cdkmxgibw8l8i15ng6badnmdyi5dkz29"; + name = "kcachegrind-15.12.3.tar.xz"; }; }; kcalc = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kcalc-15.12.1.tar.xz"; - sha256 = "1dgpifj3w26d595gbv6m4r16729i92lkwl6p8hk0l5v5hxx82dkw"; - name = "kcalc-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kcalc-15.12.3.tar.xz"; + sha256 = "00138746j1j92dkc22c680wi9qqc891040d2b0i5fi1hp1a3z2r4"; + name = "kcalc-15.12.3.tar.xz"; }; }; kcalcore = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kcalcore-15.12.1.tar.xz"; - sha256 = "14w47ljak5v5nnbcgilsqc1hxf212vi8vycfxddflvmxzcy6b9c3"; - name = "kcalcore-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kcalcore-15.12.3.tar.xz"; + sha256 = "1zdkqxli6gr65947xgwsbyl84ar0px6flbky0zjy1i4h9jiysfan"; + name = "kcalcore-15.12.3.tar.xz"; }; }; kcalutils = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kcalutils-15.12.1.tar.xz"; - sha256 = "0p10vvbnn01qnaxgyinyil4dwqfbwgqk7ngkgblfbmfg9h8drwfp"; - name = "kcalutils-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kcalutils-15.12.3.tar.xz"; + sha256 = "0l65bc71i734j700akkr1ksjv5q09f7v2dfqcnciabqiphchr5cd"; + name = "kcalutils-15.12.3.tar.xz"; }; }; kcharselect = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kcharselect-15.12.1.tar.xz"; - sha256 = "1jagbaxs9nfih2wic0i9cgbmz76kwnrscrmcvd0w8jg4w5rnf59d"; - name = "kcharselect-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kcharselect-15.12.3.tar.xz"; + sha256 = "0ahk95k0vssk7kdsdddz1s1n3hzy4049s0dq4j5kiill3j5z47ba"; + name = "kcharselect-15.12.3.tar.xz"; }; }; kcolorchooser = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kcolorchooser-15.12.1.tar.xz"; - sha256 = "1djcknlp97zlwvrs9fswg4v188qs2acb7lzw8y9j2p982d0g1idc"; - name = "kcolorchooser-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kcolorchooser-15.12.3.tar.xz"; + sha256 = "0paki5clb420w8fhx9y9cyxrf86nz1bp5w6jgkyk5fqdw69d77wk"; + name = "kcolorchooser-15.12.3.tar.xz"; }; }; kcontacts = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kcontacts-15.12.1.tar.xz"; - sha256 = "0i6mx1ss19g86j55kj47qvrcvqwp6ax7wyg0ar436aa18digfa96"; - name = "kcontacts-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kcontacts-15.12.3.tar.xz"; + sha256 = "0xavlrf2zxvizv1w620w2wp46qx1267df7qilmws50qmyzdzd8pz"; + name = "kcontacts-15.12.3.tar.xz"; }; }; kcron = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kcron-15.12.1.tar.xz"; - sha256 = "04w3017y3955fj3z76ng28fksyzjbqlw09g6g6b9l8nyi5y1zgm0"; - name = "kcron-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kcron-15.12.3.tar.xz"; + sha256 = "1dwcqng0128n2d9lk059b94vzyn98xm0yx34wp5qibqg8c7a2z0z"; + name = "kcron-15.12.3.tar.xz"; }; }; kde-baseapps = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-baseapps-15.12.1.tar.xz"; - sha256 = "0n0g7jjb2kf8h9nr9sc0l5ia796nc2nzlfxnibyvvlp68sj4ffwd"; - name = "kde-baseapps-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-baseapps-15.12.3.tar.xz"; + sha256 = "1rqdbv5lhy7k8i4csp1lqvril7df12lz9vvjqnq7ccbbn67yjcfk"; + name = "kde-baseapps-15.12.3.tar.xz"; }; }; kdebugsettings = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kdebugsettings-15.12.1.tar.xz"; - sha256 = "1b7w5rnbxg0m4xlrlisd1ipv4w0xl5125m5vxvrqdrcsl647xbk0"; - name = "kdebugsettings-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kdebugsettings-15.12.3.tar.xz"; + sha256 = "1ik2j2i9k3rcfznwia9fxbivsva2ngb31wzrdciircl6i55k4sdd"; + name = "kdebugsettings-15.12.3.tar.xz"; }; }; kde-dev-scripts = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-dev-scripts-15.12.1.tar.xz"; - sha256 = "1d2d1r11xnk3wbxgmnkm8k6azbjxz8gm0mpp37lrx5aq181i8598"; - name = "kde-dev-scripts-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-dev-scripts-15.12.3.tar.xz"; + sha256 = "0cvcd2yv0xkk0q6zhpyqv0bjnpy6s09aw3kjjyyq5ddai5m5hp4q"; + name = "kde-dev-scripts-15.12.3.tar.xz"; }; }; kde-dev-utils = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-dev-utils-15.12.1.tar.xz"; - sha256 = "1igpf4qa502nsz7rxqmv3phrlj58fgjdbamlrz9fz4czlcd4j8fb"; - name = "kde-dev-utils-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-dev-utils-15.12.3.tar.xz"; + sha256 = "1k0d7z7rm6dgzy56dggxjwzzhz9ar2wfmvjs257l6lbjxxxry2gc"; + name = "kde-dev-utils-15.12.3.tar.xz"; }; }; kdeedu-data = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kdeedu-data-15.12.1.tar.xz"; - sha256 = "0avpy6w5n554hxi2qhsfi8n9m1x9wf3faklqzfj650j1574n17yj"; - name = "kdeedu-data-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kdeedu-data-15.12.3.tar.xz"; + sha256 = "18jssqnkjxxz98rmzd4gv0ix1zbb60qv22k150lqp32kckmgkn0y"; + name = "kdeedu-data-15.12.3.tar.xz"; }; }; kdegraphics-mobipocket = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kdegraphics-mobipocket-15.12.1.tar.xz"; - sha256 = "0ya6cli7c0yh7myh00b818qydlm481cnszc39b3557iq43qrxd89"; - name = "kdegraphics-mobipocket-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kdegraphics-mobipocket-15.12.3.tar.xz"; + sha256 = "05fhnh2qs1mgz1hfdvqb5dfd4h2vsz00hb2vl902qprnsjlpc6fb"; + name = "kdegraphics-mobipocket-15.12.3.tar.xz"; }; }; kdegraphics-strigi-analyzer = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kdegraphics-strigi-analyzer-15.12.1.tar.xz"; - sha256 = "1i0sqdyl2fcg7v0q9c7pvk5v4klzsfphv82knapmkpvlddj7mwyz"; - name = "kdegraphics-strigi-analyzer-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kdegraphics-strigi-analyzer-15.12.3.tar.xz"; + sha256 = "1bfxmv9pxxd5w2ppm673sdg459w04493p7lp8rwd3n7aa5dhw5fp"; + name = "kdegraphics-strigi-analyzer-15.12.3.tar.xz"; }; }; kdegraphics-thumbnailers = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kdegraphics-thumbnailers-15.12.1.tar.xz"; - sha256 = "03fvrlk6dgj6s6dr3vvhxn9877ay3798kf156hjn9pqx4iypqhz3"; - name = "kdegraphics-thumbnailers-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kdegraphics-thumbnailers-15.12.3.tar.xz"; + sha256 = "1limkjpdd8n8hcj3ysr3zwa0fyydfjb1m5rl9lwb9mb08bl5qg70"; + name = "kdegraphics-thumbnailers-15.12.3.tar.xz"; }; }; kde-l10n-ar = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-ar-15.12.1.tar.xz"; - sha256 = "1p417hkkikggy01awyazd1njyq2bs6y1jvspd7ijr3y4w1jia78q"; - name = "kde-l10n-ar-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-ar-15.12.3.tar.xz"; + sha256 = "1s1xi98zk277rkfiip568712yammb30ld828rspxrl51ysqaj6gs"; + name = "kde-l10n-ar-15.12.3.tar.xz"; }; }; kde-l10n-bg = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-bg-15.12.1.tar.xz"; - sha256 = "1l2s8h2rpyp71xs8jkww6s5zi58xxizf38k5xh4jrvx9vias4cl8"; - name = "kde-l10n-bg-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-bg-15.12.3.tar.xz"; + sha256 = "19yz3x4f2mkqfpa37gzgkqmmka1xs5fnr54w7w0lz7scmi3pfqyp"; + name = "kde-l10n-bg-15.12.3.tar.xz"; }; }; kde-l10n-bs = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-bs-15.12.1.tar.xz"; - sha256 = "10a5680bl5w30ynndf019627l235bx2v5bi5yyx27l7ki3infs86"; - name = "kde-l10n-bs-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-bs-15.12.3.tar.xz"; + sha256 = "1k8kawr0psvlg6cgryqwwjb59g209bz08n8h7jg5h6vkb784v3bb"; + name = "kde-l10n-bs-15.12.3.tar.xz"; }; }; kde-l10n-ca = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-ca-15.12.1.tar.xz"; - sha256 = "1841vmsf1iya41zwkcpgmcs2agc825l8mjbpmvpa5d5xyh9nsyp3"; - name = "kde-l10n-ca-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-ca-15.12.3.tar.xz"; + sha256 = "0hf6cml2hw5mj5iwa5cbp56a6ns3qzy21c0c167p6yp2i6kshzcb"; + name = "kde-l10n-ca-15.12.3.tar.xz"; }; }; kde-l10n-ca_valencia = { - version = "ca_valencia-15.12.1"; + version = "ca_valencia-15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-ca@valencia-15.12.1.tar.xz"; - sha256 = "0yz30y1khvsng166wkq49kr17vv8y67n3cns5y6zrnq6wb7zplri"; - name = "kde-l10n-ca_valencia-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-ca@valencia-15.12.3.tar.xz"; + sha256 = "0ibamck48cklkx6pjvcyw9bjfwnzib82822pagwrzgrr3g51djgf"; + name = "kde-l10n-ca_valencia-15.12.3.tar.xz"; }; }; kde-l10n-cs = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-cs-15.12.1.tar.xz"; - sha256 = "1vvi8mlj3sxwvpbz5fp2yhkzm1933nfmmhhfklpj264dynw6jxzm"; - name = "kde-l10n-cs-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-cs-15.12.3.tar.xz"; + sha256 = "1vp1aisfp0qw94w1kn66sxa79askj8yqn70adhf6q37rc8x3hz6z"; + name = "kde-l10n-cs-15.12.3.tar.xz"; }; }; kde-l10n-da = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-da-15.12.1.tar.xz"; - sha256 = "00vy9if529za7iybb8i7xxdazd8f4y9kiy1yjpgky39yhsjp65bw"; - name = "kde-l10n-da-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-da-15.12.3.tar.xz"; + sha256 = "0z7p992xinf0hw646mp5bgi93890kivs8kn407m1m4m0334m687c"; + name = "kde-l10n-da-15.12.3.tar.xz"; }; }; kde-l10n-de = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-de-15.12.1.tar.xz"; - sha256 = "0s9ibm1sjw1xa4gx36g0midy2wvc8baixaq7ldv23a56gr9ls37a"; - name = "kde-l10n-de-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-de-15.12.3.tar.xz"; + sha256 = "0f2z6qpv6qzajmh91skqbx6vn14ih74r3yzavj9xwzw940apiw34"; + name = "kde-l10n-de-15.12.3.tar.xz"; }; }; kde-l10n-el = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-el-15.12.1.tar.xz"; - sha256 = "16xfri6pv01vvxh47h0an2gy9hd38l0lvnmvq33kf60424p20iy9"; - name = "kde-l10n-el-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-el-15.12.3.tar.xz"; + sha256 = "0pdx8zlv2vv33iq2581yl67c3ly37s7hhg3m9lnnlm3wnybj658r"; + name = "kde-l10n-el-15.12.3.tar.xz"; }; }; kde-l10n-en_GB = { - version = "en_GB-15.12.1"; + version = "en_GB-15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-en_GB-15.12.1.tar.xz"; - sha256 = "170hd2g8a7dafsjr35lkpc9wwiwj0gsg0bmrir3dmqjw78fkfrjw"; - name = "kde-l10n-en_GB-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-en_GB-15.12.3.tar.xz"; + sha256 = "041hwzh05ryqkzll6klva9cq7n0mcyqi8b7pgx0argkc68mn123y"; + name = "kde-l10n-en_GB-15.12.3.tar.xz"; }; }; kde-l10n-eo = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-eo-15.12.1.tar.xz"; - sha256 = "0jrhrr4rxz9qfapx2gvw8i7q17fc4zzp45q1scz0h7cvnmw087ac"; - name = "kde-l10n-eo-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-eo-15.12.3.tar.xz"; + sha256 = "1nrrk5a9m15xyj97shpxwnw4vjnafmwh25mq8906z150mr8fy4na"; + name = "kde-l10n-eo-15.12.3.tar.xz"; }; }; kde-l10n-es = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-es-15.12.1.tar.xz"; - sha256 = "1f54wg365mqbcgf93rs6lay78ac9zijff0kszylzjm1k2a2vl5wj"; - name = "kde-l10n-es-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-es-15.12.3.tar.xz"; + sha256 = "0bhws59jd9vbfdy7kv8d7gpsg5a39z4jkypd3pyqk98v0ahxlj5p"; + name = "kde-l10n-es-15.12.3.tar.xz"; }; }; kde-l10n-et = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-et-15.12.1.tar.xz"; - sha256 = "0arrgznymzv4vfc97g40b51z3szbg7y4k1nncl01w0758szrp6c0"; - name = "kde-l10n-et-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-et-15.12.3.tar.xz"; + sha256 = "0lafw4b9qdfy091w5dvhp9idn29p7in05p8jlvpa39v2cxmp271q"; + name = "kde-l10n-et-15.12.3.tar.xz"; }; }; kde-l10n-eu = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-eu-15.12.1.tar.xz"; - sha256 = "15dpm0isgh8645qwqw5mza295hb8ls6lp2pnil1iy2lpcmsr53cr"; - name = "kde-l10n-eu-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-eu-15.12.3.tar.xz"; + sha256 = "0p7lrd3k3mjxnhk4mr1p6znjp8j14xr93lg83s3v90w4vd34frsz"; + name = "kde-l10n-eu-15.12.3.tar.xz"; }; }; kde-l10n-fa = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-fa-15.12.1.tar.xz"; - sha256 = "1867bxi0bvy5dgig41z4gwghnkjgy43h4i5w65al8djf0haqyr52"; - name = "kde-l10n-fa-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-fa-15.12.3.tar.xz"; + sha256 = "0gzx0bz9gv4kwd89ryny9qf4d7fjvicai54ryk3z3qibs3sy3g66"; + name = "kde-l10n-fa-15.12.3.tar.xz"; }; }; kde-l10n-fi = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-fi-15.12.1.tar.xz"; - sha256 = "1028psgc58wk5lp245jk905w54m654pmwkfj24g06jxas65pglrd"; - name = "kde-l10n-fi-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-fi-15.12.3.tar.xz"; + sha256 = "1nh79mkcn5la6wnbpclcbcg6gia6srcv87462wax4sbhmz7b3gh8"; + name = "kde-l10n-fi-15.12.3.tar.xz"; }; }; kde-l10n-fr = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-fr-15.12.1.tar.xz"; - sha256 = "0hi3dzd07ns8hrm7rv6hxx1b6idwmgvr3jgdmzs2883gkjivv6g8"; - name = "kde-l10n-fr-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-fr-15.12.3.tar.xz"; + sha256 = "1gwwc596p6mqjbjlhcz57hkc30slb5r3qgmnm5x68jlp4glhyyfm"; + name = "kde-l10n-fr-15.12.3.tar.xz"; }; }; kde-l10n-ga = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-ga-15.12.1.tar.xz"; - sha256 = "1gq7j053c3lv30pmf0q2xlsazyl21jgpcr0kfmza6yrg5cxaivjb"; - name = "kde-l10n-ga-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-ga-15.12.3.tar.xz"; + sha256 = "134r2i4f6j2db24rlc2y50da98spjwv5crd3yw27k4m2whw28g1q"; + name = "kde-l10n-ga-15.12.3.tar.xz"; }; }; kde-l10n-gl = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-gl-15.12.1.tar.xz"; - sha256 = "1pmizbmfqi95lcwbka5h87f015p3ml1vf59npkchfq6v7iv45zxf"; - name = "kde-l10n-gl-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-gl-15.12.3.tar.xz"; + sha256 = "1bpki1gk1gc5rqrrwkhil44mxmh76v5fygwvvlglk7rwyxkm0bfn"; + name = "kde-l10n-gl-15.12.3.tar.xz"; }; }; kde-l10n-he = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-he-15.12.1.tar.xz"; - sha256 = "1kyf48hpj42hzc75r1s1js730n0gw94ldcrap3ypd1vjzg67f6wn"; - name = "kde-l10n-he-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-he-15.12.3.tar.xz"; + sha256 = "12da700i3dbim64f5ybgfp5s8rky8s9828qklsnvrw6gj9i1qdh8"; + name = "kde-l10n-he-15.12.3.tar.xz"; }; }; kde-l10n-hi = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-hi-15.12.1.tar.xz"; - sha256 = "0rarsx7y0plr1l0vh5nx4dm9xdq69wr3szcdcvlxx1xdx0f2xyxk"; - name = "kde-l10n-hi-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-hi-15.12.3.tar.xz"; + sha256 = "0r5z5652j52j16gdb08z1wnfa8vr871f7msip2xikmfm3kcgiwki"; + name = "kde-l10n-hi-15.12.3.tar.xz"; }; }; kde-l10n-hr = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-hr-15.12.1.tar.xz"; - sha256 = "15gxrrla5gwvwsx5ncf97naj9p09x3g03jbxkpzjf2vn4xgkq7wf"; - name = "kde-l10n-hr-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-hr-15.12.3.tar.xz"; + sha256 = "1mz95pqd3pslg1f5cl1n8s35j19wijhhqpa64m6ahjm82p3dfqiz"; + name = "kde-l10n-hr-15.12.3.tar.xz"; }; }; kde-l10n-hu = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-hu-15.12.1.tar.xz"; - sha256 = "15cw97fjcbqn6n6h03mldf40vjsmzzjwgb63z0qlcg5s87yl8lik"; - name = "kde-l10n-hu-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-hu-15.12.3.tar.xz"; + sha256 = "0gz3lvzpf58j0jdzmjg16nkz3078gjzlfwbanx5w6f4dfqp9ha4q"; + name = "kde-l10n-hu-15.12.3.tar.xz"; }; }; kde-l10n-ia = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-ia-15.12.1.tar.xz"; - sha256 = "1ab7pivq4xbzvjwq18rnw1c7lyaz0yyhfqkkw0w31qdvh8zx91xg"; - name = "kde-l10n-ia-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-ia-15.12.3.tar.xz"; + sha256 = "0flv662j20sqfd0cgy2p6wr2fk41sq47sxf2gkbmhr7n7n6an1fr"; + name = "kde-l10n-ia-15.12.3.tar.xz"; }; }; kde-l10n-id = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-id-15.12.1.tar.xz"; - sha256 = "1w7s7m7p4mia0q9x32rcmdszsz0x7zw210pssw1zk3vh9dc29f1j"; - name = "kde-l10n-id-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-id-15.12.3.tar.xz"; + sha256 = "07r4y1hnqz3xb649gvp818alwzyci8657fi4f3lpj8z54dngddx0"; + name = "kde-l10n-id-15.12.3.tar.xz"; }; }; kde-l10n-is = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-is-15.12.1.tar.xz"; - sha256 = "0w1b8fsw3q6ry63bs27s7rbv9q5cps3kd5rd4bhkja0v950p2lfg"; - name = "kde-l10n-is-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-is-15.12.3.tar.xz"; + sha256 = "14xs3n9468l4qgw5bpm57k4xmh37ixjr3sq370fbfmbrifrydrsb"; + name = "kde-l10n-is-15.12.3.tar.xz"; }; }; kde-l10n-it = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-it-15.12.1.tar.xz"; - sha256 = "03cal5i75540q6vk8ln32lfg93s1hy02qnnajggm96ncpmlw1fp4"; - name = "kde-l10n-it-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-it-15.12.3.tar.xz"; + sha256 = "0arvj4ms0qc283i1xqdmh6x8qjgjfsld57y341xk55b1birq87dp"; + name = "kde-l10n-it-15.12.3.tar.xz"; }; }; kde-l10n-ja = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-ja-15.12.1.tar.xz"; - sha256 = "1d8p2pvz5h9mr0agbazggjd363h4ggmxs35lfkc41sw2ka8wc7zk"; - name = "kde-l10n-ja-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-ja-15.12.3.tar.xz"; + sha256 = "1fby4r9aam0f31xlp00lmnhi156wfb3rbvwffvhm9qwam3gnypv2"; + name = "kde-l10n-ja-15.12.3.tar.xz"; }; }; kde-l10n-kk = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-kk-15.12.1.tar.xz"; - sha256 = "06pr04sq9szkgvgrj0saiwc5axqv09sz48alz97qvhprfi63k7gm"; - name = "kde-l10n-kk-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-kk-15.12.3.tar.xz"; + sha256 = "04yf8m84ywf6bzq3dfxxxcgz2syy4i72q5xjq3sba76p1w9wz8hf"; + name = "kde-l10n-kk-15.12.3.tar.xz"; }; }; kde-l10n-km = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-km-15.12.1.tar.xz"; - sha256 = "1j0jf01j12y1jsyx8n47nz5wjwk545z6wn3hp8shkf3gfrda6x8h"; - name = "kde-l10n-km-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-km-15.12.3.tar.xz"; + sha256 = "0q70agf08ln5xfg4hc0rw39qiq4mn0jq418d8f53qkdjvrj07hs2"; + name = "kde-l10n-km-15.12.3.tar.xz"; }; }; kde-l10n-ko = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-ko-15.12.1.tar.xz"; - sha256 = "08hknapyy10205h71zapj3n5k46gqjjfd7acpqz85ff92l0iryxd"; - name = "kde-l10n-ko-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-ko-15.12.3.tar.xz"; + sha256 = "0545nv721g2xlljv1jbq42j9b6g2l19yclv0lmy07dp0fx0ms2kc"; + name = "kde-l10n-ko-15.12.3.tar.xz"; }; }; kde-l10n-lt = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-lt-15.12.1.tar.xz"; - sha256 = "0l844nsr0najfhfbqzwhi4pvagir9fvq2gx2p1xkfk06m1ki1krw"; - name = "kde-l10n-lt-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-lt-15.12.3.tar.xz"; + sha256 = "0sc9g2iya3k4pzwmlcjlyvf25dag9z2ckbk2gz0fzzrwgvn61875"; + name = "kde-l10n-lt-15.12.3.tar.xz"; }; }; kde-l10n-lv = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-lv-15.12.1.tar.xz"; - sha256 = "09pnn4m70655pn9ycqpmxlich8pih5j0kgqa64r3ip2gsw4gx5js"; - name = "kde-l10n-lv-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-lv-15.12.3.tar.xz"; + sha256 = "0mllwxbcvfgvmxcv23azchkvirlamgh16hzi5575qd8mprxxayjx"; + name = "kde-l10n-lv-15.12.3.tar.xz"; }; }; kde-l10n-mr = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-mr-15.12.1.tar.xz"; - sha256 = "1nqvacfyar88zgq1h836r6amm56qk8whr4xh7q571969qmcbz8mc"; - name = "kde-l10n-mr-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-mr-15.12.3.tar.xz"; + sha256 = "1sg9s1d6yg6pjjqp986lixg5w8g3y9a0hi15iyv6iww2iwab821w"; + name = "kde-l10n-mr-15.12.3.tar.xz"; }; }; kde-l10n-nb = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-nb-15.12.1.tar.xz"; - sha256 = "0h9w9ya8ridprsav2ypn1rl92gdkx7cdnzjhjfyb028c6mrzx2xl"; - name = "kde-l10n-nb-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-nb-15.12.3.tar.xz"; + sha256 = "0841zkw34afiq7kpl65mjxl66fvb7pbc2m5c7cbbpykb92hqy4gw"; + name = "kde-l10n-nb-15.12.3.tar.xz"; }; }; kde-l10n-nds = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-nds-15.12.1.tar.xz"; - sha256 = "0xj644sdicdqg4f5qvvmb3gzdw46rcma1bz2wr19prismswm61q4"; - name = "kde-l10n-nds-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-nds-15.12.3.tar.xz"; + sha256 = "1y0svbp1fgr6azfqpicvfxz1bbfkkn27l91rl8mhpaqz79zmdsjz"; + name = "kde-l10n-nds-15.12.3.tar.xz"; }; }; kde-l10n-nl = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-nl-15.12.1.tar.xz"; - sha256 = "00wimacv53ggjrccm33mm406yd501c57pkvzdvzzx6ljdq0gz3j1"; - name = "kde-l10n-nl-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-nl-15.12.3.tar.xz"; + sha256 = "0l2l0hypza8hrrz86pahvkn4qdwg1bzdsv4mk0w3f8anlfv5nlhy"; + name = "kde-l10n-nl-15.12.3.tar.xz"; }; }; kde-l10n-nn = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-nn-15.12.1.tar.xz"; - sha256 = "13cb7inz00i0cj9da3zhlbh6mb3rrya4c79ydy2gvwj5p54bdbxy"; - name = "kde-l10n-nn-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-nn-15.12.3.tar.xz"; + sha256 = "1ryqkbjrc9fam4wlpfx3af5mppajcpf4qj6ghh16y2vjpxmy6226"; + name = "kde-l10n-nn-15.12.3.tar.xz"; }; }; kde-l10n-pa = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-pa-15.12.1.tar.xz"; - sha256 = "1f58fnmlzgsyfmn9f2lfsla1v0ynpmg4d5x6kk8b92a6ad2an9dc"; - name = "kde-l10n-pa-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-pa-15.12.3.tar.xz"; + sha256 = "0dq0sv7yh8xkk5g005q8mh6c5drzp2alday28lz2i4a2wi6m1pbn"; + name = "kde-l10n-pa-15.12.3.tar.xz"; }; }; kde-l10n-pl = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-pl-15.12.1.tar.xz"; - sha256 = "0wfl6sgdbzwbg00c8rqj9i2avi46vdppdjk48w222j9cibf1ifwp"; - name = "kde-l10n-pl-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-pl-15.12.3.tar.xz"; + sha256 = "186lb0ydgcgwmpjasdjnj1i6cn43m1l26lvh7c97kqmh0k7ixwbl"; + name = "kde-l10n-pl-15.12.3.tar.xz"; }; }; kde-l10n-pt = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-pt-15.12.1.tar.xz"; - sha256 = "0ljxz362ahz1r8hvvh8zliiki3jmsqzx656jn5f6g3c4xjxmmhd9"; - name = "kde-l10n-pt-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-pt-15.12.3.tar.xz"; + sha256 = "1s71gn3xb98y5s6ly9qfjh51afk8w8ml3xqiri3vi1c7li3v6kas"; + name = "kde-l10n-pt-15.12.3.tar.xz"; }; }; kde-l10n-pt_BR = { - version = "pt_BR-15.12.1"; + version = "pt_BR-15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-pt_BR-15.12.1.tar.xz"; - sha256 = "072jn9r4sfi62mb5yh6ayisana18da0xrvdf9r2c03rhl1hlqiiq"; - name = "kde-l10n-pt_BR-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-pt_BR-15.12.3.tar.xz"; + sha256 = "1iq83ycsilracwa1cml7dliy6vsf7frk4k0rzawnprygnf89iavr"; + name = "kde-l10n-pt_BR-15.12.3.tar.xz"; }; }; kde-l10n-ro = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-ro-15.12.1.tar.xz"; - sha256 = "0pp328zj5v50paf7xgajh2l4mk75hg3am6xyiw7p94fx3m6lnw9g"; - name = "kde-l10n-ro-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-ro-15.12.3.tar.xz"; + sha256 = "1i4kmxjc9mr8ybg4gnbhdanp7s5illknaxh0av8v45an7j051vjd"; + name = "kde-l10n-ro-15.12.3.tar.xz"; }; }; kde-l10n-ru = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-ru-15.12.1.tar.xz"; - sha256 = "1sg38y0778ld1cjvvm2zfn8gmav195dak52596lpzklh6ahnp9dc"; - name = "kde-l10n-ru-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-ru-15.12.3.tar.xz"; + sha256 = "1xbd5nvyf6ckdry0c5d52s3qrnqbnmndbnbxz7ayqllz6b61vmp0"; + name = "kde-l10n-ru-15.12.3.tar.xz"; }; }; kde-l10n-sk = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-sk-15.12.1.tar.xz"; - sha256 = "16nxrz95x558n5kqvs8q0rdy8lqas0w7zlgr910v92497hsmxmsg"; - name = "kde-l10n-sk-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-sk-15.12.3.tar.xz"; + sha256 = "03i2ngldf35ix4pgyv6pjjzfg4i330dmyml9rd9v6cspm0vpq7r2"; + name = "kde-l10n-sk-15.12.3.tar.xz"; }; }; kde-l10n-sl = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-sl-15.12.1.tar.xz"; - sha256 = "128jp5pis4np8734dn8j77xf2h8a8hq041gnjdlfd0yvq61pn9dk"; - name = "kde-l10n-sl-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-sl-15.12.3.tar.xz"; + sha256 = "08cp9dzvii5afjck3wx05q7mjwsd10g1yg2bsxw4qldjzad31xhq"; + name = "kde-l10n-sl-15.12.3.tar.xz"; }; }; kde-l10n-sr = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-sr-15.12.1.tar.xz"; - sha256 = "0cmchn7niddx48lvjflzvqv0xlbp1fxwr492ldb8vs0l71ifsl6v"; - name = "kde-l10n-sr-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-sr-15.12.3.tar.xz"; + sha256 = "0j8gfj1qx10yllj5vq85h4pw2l8hq1kimgm315v4wwyr4jyf4vi7"; + name = "kde-l10n-sr-15.12.3.tar.xz"; }; }; kde-l10n-sv = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-sv-15.12.1.tar.xz"; - sha256 = "02sh0z394bd03m0as4n6qdk9mm8yy8z80b2xk9d42f27v6snqr29"; - name = "kde-l10n-sv-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-sv-15.12.3.tar.xz"; + sha256 = "0ijyxzm7akcpkf5vwppay063vkbn6rz8irc4yi9flc5mm1rpmb64"; + name = "kde-l10n-sv-15.12.3.tar.xz"; }; }; kde-l10n-tr = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-tr-15.12.1.tar.xz"; - sha256 = "18rlg2xdif54npfi2dhw2my494pbg089r3wvl6msc17nf0c72w10"; - name = "kde-l10n-tr-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-tr-15.12.3.tar.xz"; + sha256 = "1yyz8zf10jn8v5vz2h08m88l12gz95hsdvld4h8imbqc4b8ih9xh"; + name = "kde-l10n-tr-15.12.3.tar.xz"; }; }; kde-l10n-ug = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-ug-15.12.1.tar.xz"; - sha256 = "1dkv3vqa66fvyksqxjdvrm6jmks07dp34934ccx9dm2kqq0nciz9"; - name = "kde-l10n-ug-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-ug-15.12.3.tar.xz"; + sha256 = "0db4pf7j6m376irsby31qz42z4d0m45i1zhqmn5mplrq8hi3sy5n"; + name = "kde-l10n-ug-15.12.3.tar.xz"; }; }; kde-l10n-uk = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-uk-15.12.1.tar.xz"; - sha256 = "15vl45g85f9xncn2dxz527kxig151iddf1pbh57hngdhdirz98cd"; - name = "kde-l10n-uk-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-uk-15.12.3.tar.xz"; + sha256 = "0xsn75g7dw8p0gxfmk2xkr6cix5wvglj2hhbbcqdzixm0bnshiwj"; + name = "kde-l10n-uk-15.12.3.tar.xz"; }; }; kde-l10n-wa = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-wa-15.12.1.tar.xz"; - sha256 = "192rb9hrfw9b525czwc33x2djjg9klm5icdx4l7jp0qsrwzdgr0g"; - name = "kde-l10n-wa-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-wa-15.12.3.tar.xz"; + sha256 = "1zx5k0hnh17015c1jcf3hgbi3abnsrdr5zl9m06lvsccl32rcgla"; + name = "kde-l10n-wa-15.12.3.tar.xz"; }; }; kde-l10n-zh_CN = { - version = "zh_CN-15.12.1"; + version = "zh_CN-15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-zh_CN-15.12.1.tar.xz"; - sha256 = "055prxx6dspsyp3j51a8chmg6fdzl0ncjkhhyr21hlfiwv91fac0"; - name = "kde-l10n-zh_CN-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-zh_CN-15.12.3.tar.xz"; + sha256 = "0lfm6q4xk5c5rywivhg6dbs5dczddixz4jjfdz5gb2xmnv5ns9z7"; + name = "kde-l10n-zh_CN-15.12.3.tar.xz"; }; }; kde-l10n-zh_TW = { - version = "zh_TW-15.12.1"; + version = "zh_TW-15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-l10n/kde-l10n-zh_TW-15.12.1.tar.xz"; - sha256 = "14kargm5s1vb6ylf7nrnv1s3pbjaplmbi8kr4qrggcyinda4wp74"; - name = "kde-l10n-zh_TW-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-l10n/kde-l10n-zh_TW-15.12.3.tar.xz"; + sha256 = "1s0gp678sq6zxk9gkzhmkx1c0nxzx0n08pszv737a76lnnzg0fb0"; + name = "kde-l10n-zh_TW-15.12.3.tar.xz"; }; }; kdelibs = { - version = "4.14.16"; + version = "4.14.18"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kdelibs-4.14.16.tar.xz"; - sha256 = "1amkwrwjm2v0jd1rl1n0pfi8ahvzaszj03093bmxqllrqhqbkxkv"; - name = "kdelibs-4.14.16.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kdelibs-4.14.18.tar.xz"; + sha256 = "0qyfsci3z4vm79c5xkdk45qlh63as1iyfdgk3iny6q9c5wwqd3kp"; + name = "kdelibs-4.14.18.tar.xz"; }; }; kdenetwork-filesharing = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kdenetwork-filesharing-15.12.1.tar.xz"; - sha256 = "15fj3kk76gg6vk43yiz508cks1l9yazlhmqf7s4q0b9xwmvdahsj"; - name = "kdenetwork-filesharing-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kdenetwork-filesharing-15.12.3.tar.xz"; + sha256 = "0psln12gnyf7pp6r01p7bi5lygqpg5frfkc8hh1wn982i1vbkn8s"; + name = "kdenetwork-filesharing-15.12.3.tar.xz"; }; }; kdenetwork-strigi-analyzers = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kdenetwork-strigi-analyzers-15.12.1.tar.xz"; - sha256 = "1nwckiggwrmvsdhyfmhqv1w79zcvzh4s2jyivyprvk418c1qy69b"; - name = "kdenetwork-strigi-analyzers-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kdenetwork-strigi-analyzers-15.12.3.tar.xz"; + sha256 = "0yisyhic3nmbj7a0csjafhl3mjcg3hqa8pwfrkwwm848b67n9qls"; + name = "kdenetwork-strigi-analyzers-15.12.3.tar.xz"; }; }; kdenlive = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kdenlive-15.12.1.tar.xz"; - sha256 = "1j7mpjwis9n99dsyax7swqmx45g9mw46lcn063m0rsdzsh905yrk"; - name = "kdenlive-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kdenlive-15.12.3.tar.xz"; + sha256 = "0svw8dms0qha4mbnyldm0cwvy52ikly3x26b9q8psayjd0pbbb5p"; + name = "kdenlive-15.12.3.tar.xz"; }; }; kdepim = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kdepim-15.12.1.tar.xz"; - sha256 = "0r1l3za5jbdvr4x6hv0d94d8lwa1a5qcg3q83wn1jrb6mlfc1f03"; - name = "kdepim-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kdepim-15.12.3.tar.xz"; + sha256 = "0niy2wfrarnrphwwi6jp2g0xj5dbvvcmdjgprdrw3zn7ni7kxa9q"; + name = "kdepim-15.12.3.tar.xz"; }; }; kdepimlibs = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kdepimlibs-15.12.1.tar.xz"; - sha256 = "1f5j4alzmpm4scvn6k4mg9ykdsi0b6r28h2bisq39apn0k6fzadl"; - name = "kdepimlibs-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kdepimlibs-15.12.3.tar.xz"; + sha256 = "17dn4yals62657dnx5adm9622z5bmwzl2nqgidcvflamvnvjj2b1"; + name = "kdepimlibs-15.12.3.tar.xz"; }; }; kdepim-runtime = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kdepim-runtime-15.12.1.tar.xz"; - sha256 = "0l6la5jds6byg9ibphlbf8yywgfjyin4w02ik16h3mm01rl5d1mn"; - name = "kdepim-runtime-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kdepim-runtime-15.12.3.tar.xz"; + sha256 = "1ljsn2b5ylzsr8mm48l4k84bgc9d6h9ilv46zgiciisgqs0xd4y3"; + name = "kdepim-runtime-15.12.3.tar.xz"; }; }; kde-runtime = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kde-runtime-15.12.1.tar.xz"; - sha256 = "19arkcj95dysxhanbh0armwimxph3s7ljhvgbzdi7r4glm9aq0kn"; - name = "kde-runtime-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kde-runtime-15.12.3.tar.xz"; + sha256 = "097h9kjqikr4qxj6swkh2r90havaw6zxs12kkic0qkmvbxxa6qdj"; + name = "kde-runtime-15.12.3.tar.xz"; }; }; kdesdk-kioslaves = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kdesdk-kioslaves-15.12.1.tar.xz"; - sha256 = "198i8cfz194smlhj8rafmkjbgzk1wmiw1gki4mb9vvk1gddgxc65"; - name = "kdesdk-kioslaves-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kdesdk-kioslaves-15.12.3.tar.xz"; + sha256 = "0605aldqng33cd44qap2bargsf99jlrclsw84pv2hh4m33qlxkhi"; + name = "kdesdk-kioslaves-15.12.3.tar.xz"; }; }; kdesdk-strigi-analyzers = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kdesdk-strigi-analyzers-15.12.1.tar.xz"; - sha256 = "0lcn0b58574kwsg7j5qyf46vjkbvsl7w8y9wi983rd06dhfgql5l"; - name = "kdesdk-strigi-analyzers-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kdesdk-strigi-analyzers-15.12.3.tar.xz"; + sha256 = "0jc2dvnpmr6hw58nfmnw7lmys74zgl0m5vbmp27vkain95wab17c"; + name = "kdesdk-strigi-analyzers-15.12.3.tar.xz"; }; }; kdesdk-thumbnailers = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kdesdk-thumbnailers-15.12.1.tar.xz"; - sha256 = "18fbgwb8bil90arbylw4605xk240g21saaw39zlx203q8bmnm7cm"; - name = "kdesdk-thumbnailers-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kdesdk-thumbnailers-15.12.3.tar.xz"; + sha256 = "0k67zx5c2qsrk3nnnrs5ir0z8c42lp4ig9l82brv35iw3frgfyr9"; + name = "kdesdk-thumbnailers-15.12.3.tar.xz"; }; }; kdewebdev = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kdewebdev-15.12.1.tar.xz"; - sha256 = "1zmbagi1fqlr2y74hghlbs8y7kbaxx739vjhxxvd8qn4akhgij92"; - name = "kdewebdev-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kdewebdev-15.12.3.tar.xz"; + sha256 = "1hn0s72695mm7b3lqx45d2rbm639p3la1v95274il8nd6qnxfd1h"; + name = "kdewebdev-15.12.3.tar.xz"; }; }; kdf = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kdf-15.12.1.tar.xz"; - sha256 = "0g0b2hqsls8nrwrqj78v6m38h4szsr0hs9bwfbrv63ppjm6a8272"; - name = "kdf-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kdf-15.12.3.tar.xz"; + sha256 = "0h37405qiz5478fdm8k7h5hmpmznzrrb6a55grcc9jnp4qxqhdk7"; + name = "kdf-15.12.3.tar.xz"; }; }; kdiamond = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kdiamond-15.12.1.tar.xz"; - sha256 = "12xl2h3hcb4c7sm1v9p9cqcflqi30cfqhjj6vjwwb474pjffxfdw"; - name = "kdiamond-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kdiamond-15.12.3.tar.xz"; + sha256 = "1p5a26dw4sasfk0bmf79zwcp60s4wqk65169vn73nn51dkyplr0z"; + name = "kdiamond-15.12.3.tar.xz"; }; }; kfloppy = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kfloppy-15.12.1.tar.xz"; - sha256 = "1hrr4rfk63q4r7lbqq6nn96camcm5jq41qnvx6cm4pqqd4a8z6hp"; - name = "kfloppy-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kfloppy-15.12.3.tar.xz"; + sha256 = "1dsnv89n48aj1pcx6r64ds9pkafb0d8gpmw8ps0mhiwyhzjik0af"; + name = "kfloppy-15.12.3.tar.xz"; }; }; kfourinline = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kfourinline-15.12.1.tar.xz"; - sha256 = "1xj3krs20j3df3mkbav1nmwjaw524kif6g5qp36jipv9f58zw73g"; - name = "kfourinline-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kfourinline-15.12.3.tar.xz"; + sha256 = "1j0yhwwsr6kxynhyj8m9bwckz49rp33y8b7br8s4i186byjviw6f"; + name = "kfourinline-15.12.3.tar.xz"; }; }; kgeography = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kgeography-15.12.1.tar.xz"; - sha256 = "0rvq9a4l4yjyk2bmlwppjmik3pfkhbxrp9105136n4vskizhrm8h"; - name = "kgeography-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kgeography-15.12.3.tar.xz"; + sha256 = "19sqrgj08ilf43za4l1apz5whpnxhy9aafygxnklyl6xwkldfa56"; + name = "kgeography-15.12.3.tar.xz"; }; }; kget = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kget-15.12.1.tar.xz"; - sha256 = "1nqiw64yaz7kw58cldjjwdmlilrg9hxrlqwd2r7d0ip3mid5clkj"; - name = "kget-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kget-15.12.3.tar.xz"; + sha256 = "0ks210pxs4phrc0k05zaf0ip91yzg5xycfdac1rz4snn3wd5x8x5"; + name = "kget-15.12.3.tar.xz"; }; }; kgoldrunner = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kgoldrunner-15.12.1.tar.xz"; - sha256 = "0rlhqvksyi0b79z955d3anagk5p5k4b9nikr8fsb64xzq7pjwn42"; - name = "kgoldrunner-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kgoldrunner-15.12.3.tar.xz"; + sha256 = "19pvabs8fbzq6j9l8v2bdvz8rbzhmav14hymxf0fndg3b5qi1v46"; + name = "kgoldrunner-15.12.3.tar.xz"; }; }; kgpg = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kgpg-15.12.1.tar.xz"; - sha256 = "1ylns50237qr3af9i66n3v31qm6n1dd64j09smbjy6ij010ja4l3"; - name = "kgpg-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kgpg-15.12.3.tar.xz"; + sha256 = "1fw74kpd8f2hm82l2sn8nvi4dzrw1i2xgd5dkfhj1c8frnp4akrn"; + name = "kgpg-15.12.3.tar.xz"; }; }; khangman = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/khangman-15.12.1.tar.xz"; - sha256 = "12xkqa8i53km3nwi9kzlclr29hg185pcjmsd6grzkyh3brqz40y2"; - name = "khangman-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/khangman-15.12.3.tar.xz"; + sha256 = "1a0jbg0xfnjji1y946d8c1dmm8awdf6j4r3w226fmci2q764ap4l"; + name = "khangman-15.12.3.tar.xz"; }; }; kholidays = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kholidays-15.12.1.tar.xz"; - sha256 = "01ycl8j4nsc454wkk7ir5q38j4xlqcq05bgapks04s9lws1582dz"; - name = "kholidays-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kholidays-15.12.3.tar.xz"; + sha256 = "1hr253vc5r3fq2vkrl175zql8z146h5zpikq6wlxabh86isri07b"; + name = "kholidays-15.12.3.tar.xz"; }; }; kidentitymanagement = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kidentitymanagement-15.12.1.tar.xz"; - sha256 = "12adkn01h5392fqixiap62cql20sijjm23c666kabwdmji98183p"; - name = "kidentitymanagement-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kidentitymanagement-15.12.3.tar.xz"; + sha256 = "16v4ykbgiw06xdrd74gnjhwlvdjs926zdfmnn1gzhf2isyz0c4jp"; + name = "kidentitymanagement-15.12.3.tar.xz"; }; }; kig = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kig-15.12.1.tar.xz"; - sha256 = "0x3g1ipxrqvd7pxpc2kccv0r4m2qnasarjcxz6ljz3227xzcc5zf"; - name = "kig-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kig-15.12.3.tar.xz"; + sha256 = "12wf10d9579jhygrch4avacnxkhrmiyp2ci3kccyvva09cjdahpb"; + name = "kig-15.12.3.tar.xz"; }; }; kigo = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kigo-15.12.1.tar.xz"; - sha256 = "0b3ngl9ndgfbbihp1dikii40r8kbpi8yz9s0f4jadp6gqna6xjl5"; - name = "kigo-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kigo-15.12.3.tar.xz"; + sha256 = "15n6chq4mjynh5b4g2mbk1qjmgxlfzln5fl19i6qi11xd5yanz50"; + name = "kigo-15.12.3.tar.xz"; }; }; killbots = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/killbots-15.12.1.tar.xz"; - sha256 = "1qvy6y4rbapp2y7vd2ammbiqxxqp3dbpyy16fyd7h08639wbrl7f"; - name = "killbots-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/killbots-15.12.3.tar.xz"; + sha256 = "14mlmi958sz3nf5l1v2mq5ahfiqnb3m9a32hqfz2d5vzczrvarxv"; + name = "killbots-15.12.3.tar.xz"; }; }; kimap = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kimap-15.12.1.tar.xz"; - sha256 = "0q1n8p4h7n5zad0lwaawh5kb5k6z4wzdr8kbpvhlw0dkp8a504ds"; - name = "kimap-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kimap-15.12.3.tar.xz"; + sha256 = "1qk68zjw31hfxr577idn2rirmb8pwxxqcwz56jg9kc6mxff6k2sw"; + name = "kimap-15.12.3.tar.xz"; }; }; kio-extras = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kio-extras-15.12.1.tar.xz"; - sha256 = "0crl21kq8ya49hhcgfcch4x9xxjakwgs90yv0qp8zj19k12kl8fn"; - name = "kio-extras-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kio-extras-15.12.3.tar.xz"; + sha256 = "1lhg5g9fmfsg7yl0kzi779wilgcfdcx0zhzryqz307dhmvbffs87"; + name = "kio-extras-15.12.3.tar.xz"; }; }; kiriki = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kiriki-15.12.1.tar.xz"; - sha256 = "04zyq7nmdlnskzlw0hn78hpcf8rwjq53d7imnai7gvbxgcv2qf7a"; - name = "kiriki-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kiriki-15.12.3.tar.xz"; + sha256 = "0bff99yxlaqa46d5mgv6qnscyhidbi6kg0zb10b7jl4wr60d1gkm"; + name = "kiriki-15.12.3.tar.xz"; }; }; kiten = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kiten-15.12.1.tar.xz"; - sha256 = "0wr3zr26y07m911fy6ar4n53fp8b9jvms49i9cf7qwx4dc4a0wvr"; - name = "kiten-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kiten-15.12.3.tar.xz"; + sha256 = "067lcpgp3kc4rl2zz4a8rrm0pdgwsm8fwvrzay4dpghwznkmr7s5"; + name = "kiten-15.12.3.tar.xz"; }; }; kjumpingcube = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kjumpingcube-15.12.1.tar.xz"; - sha256 = "1xsza01v0c6d1p6ydng1pkqq8g9397x1xbzfzq3fal8l8bf1nnl7"; - name = "kjumpingcube-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kjumpingcube-15.12.3.tar.xz"; + sha256 = "1b6bsp7vmnik1119yx7vgsgn55pz250mqd5fmqxi9khllz1alsh1"; + name = "kjumpingcube-15.12.3.tar.xz"; }; }; kldap = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kldap-15.12.1.tar.xz"; - sha256 = "1dr8pavgr3hrlk0xxvfnsk9p05bzg9rgwzgqw4xci9cx22jmyaxi"; - name = "kldap-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kldap-15.12.3.tar.xz"; + sha256 = "18rdad71x5h4710bq9b0207rsfnlb7jqriv5zp8qmiz3zf04jwvc"; + name = "kldap-15.12.3.tar.xz"; }; }; klettres = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/klettres-15.12.1.tar.xz"; - sha256 = "0b1sw7x3miqivryc6bq1qn5gnfm8x8ns5v8qpvq5a2j76ifwkj54"; - name = "klettres-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/klettres-15.12.3.tar.xz"; + sha256 = "1a89w5r1in86k101qjg40q32c5rcgp4fbcydysa40knawnryfd1c"; + name = "klettres-15.12.3.tar.xz"; }; }; klickety = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/klickety-15.12.1.tar.xz"; - sha256 = "1cfrn7fvrrvn9s22d8ry1nck6h0hg0l8ccdy6405wjiks9wb5jra"; - name = "klickety-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/klickety-15.12.3.tar.xz"; + sha256 = "1sa3ilz14y1hd7m2czdqsrc5ih2a9gq8a26xh7wy1g4w32c59qp2"; + name = "klickety-15.12.3.tar.xz"; }; }; klines = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/klines-15.12.1.tar.xz"; - sha256 = "1b0plhc79cpxag02ij5zj3ix1hg4rpsnbc272gdy6kzl2862brdd"; - name = "klines-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/klines-15.12.3.tar.xz"; + sha256 = "1w8vni5m1j2ac6c72z5g6jdd6qml4jqn140a6i8sb5jkr6b8ccwb"; + name = "klines-15.12.3.tar.xz"; }; }; kmag = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kmag-15.12.1.tar.xz"; - sha256 = "1j7vgzpl61b2bm4csh6y9m58451nj0d7sxvjhxbimz0vzv9hh90x"; - name = "kmag-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kmag-15.12.3.tar.xz"; + sha256 = "0ng6rz93hxpzyk9gj91hjlpf7phpcg88wvn00d8f7ddfy0fydnaa"; + name = "kmag-15.12.3.tar.xz"; }; }; kmahjongg = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kmahjongg-15.12.1.tar.xz"; - sha256 = "1ng2495vrk7czfd1zlmij1qch6ir3vm2dfm63y8vnyf1dj39g1z3"; - name = "kmahjongg-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kmahjongg-15.12.3.tar.xz"; + sha256 = "0d6zcyf7l98albi7ikpb16wglvbvh4c2x0y4rpzwy6pbskkmvapd"; + name = "kmahjongg-15.12.3.tar.xz"; }; }; kmailtransport = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kmailtransport-15.12.1.tar.xz"; - sha256 = "04c9pq16aaf1fmyy25jlnq2wcsninbr19j7ygaaiqm2scj2mikk3"; - name = "kmailtransport-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kmailtransport-15.12.3.tar.xz"; + sha256 = "1p5qkk8qz6072yr6f9gzhzpk05qny8zxaiyaghc9vgh0dq2zpsyq"; + name = "kmailtransport-15.12.3.tar.xz"; }; }; kmbox = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kmbox-15.12.1.tar.xz"; - sha256 = "17ri9ay28v7f8yar8a33gx2wm99shby8bi9pj0sflxnzvawnlrwq"; - name = "kmbox-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kmbox-15.12.3.tar.xz"; + sha256 = "0p2zbxd2my1z48i5xr2nb9fnzqjnvgpfc8m7klp2b443lgmnwg3v"; + name = "kmbox-15.12.3.tar.xz"; }; }; kmime = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kmime-15.12.1.tar.xz"; - sha256 = "0r5scbsq21zhxs6c2lj0ay6sizrkyfczzjrnyv15izxh18jm7h7d"; - name = "kmime-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kmime-15.12.3.tar.xz"; + sha256 = "1as3pql5gxqf9m36qxl78cfzcjxwf41l57b7w9wy4p5wi1izdmba"; + name = "kmime-15.12.3.tar.xz"; }; }; kmines = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kmines-15.12.1.tar.xz"; - sha256 = "0za53gh6v74c2rwmm2f084z80w9gqrdx5g6zqdlxwiml8m9ybzq1"; - name = "kmines-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kmines-15.12.3.tar.xz"; + sha256 = "01090mwigxx5lwrzywnq8qwxqflylrf807rfjqa0s4na9qx2v682"; + name = "kmines-15.12.3.tar.xz"; }; }; kmix = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kmix-15.12.1.tar.xz"; - sha256 = "10vbb5x9hbd124avs68x39zlp7jrqww0gp2avsgvgv8hr7caxwlv"; - name = "kmix-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kmix-15.12.3.tar.xz"; + sha256 = "16yrfgg3cvjbypmz6p8zqsvp2qdihlq4d68w46f0m9gnm4dmywf1"; + name = "kmix-15.12.3.tar.xz"; }; }; kmousetool = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kmousetool-15.12.1.tar.xz"; - sha256 = "16lr93v2jmj0851afiz63p317fbnfdjavi2f2j49dxd51dayxydl"; - name = "kmousetool-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kmousetool-15.12.3.tar.xz"; + sha256 = "171lcfwrkbfwhvdfi7y2xprv6fb6xn5yd6zi3ifyka1jgl0z3nr8"; + name = "kmousetool-15.12.3.tar.xz"; }; }; kmouth = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kmouth-15.12.1.tar.xz"; - sha256 = "0hfkmj3gd71fjp3fvqyv2ds42rlrgyzd1g0scrjpaql9d28g5q7f"; - name = "kmouth-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kmouth-15.12.3.tar.xz"; + sha256 = "1fdgrpv7nqpfcrq5p2d22ysanj3fmwxy1lb2hxy75k1f051jyzvr"; + name = "kmouth-15.12.3.tar.xz"; }; }; kmplot = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kmplot-15.12.1.tar.xz"; - sha256 = "1bniv6aahgmdh4kqkcvhi34jpd5i6g4q9s1gyjsfi4b65lhvb908"; - name = "kmplot-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kmplot-15.12.3.tar.xz"; + sha256 = "1wxw65chz8ibf0ad6262qpr1761kx8k7mdin5wmiczakwkkpn7r1"; + name = "kmplot-15.12.3.tar.xz"; }; }; knavalbattle = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/knavalbattle-15.12.1.tar.xz"; - sha256 = "1ky6wx26l1dk244py2j59rh1yyyhdv00kv698i44w71g21g0zg2h"; - name = "knavalbattle-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/knavalbattle-15.12.3.tar.xz"; + sha256 = "1ma4dvrprlb0rdfq2iy56cvgfv6skm32yv6lk5vbqnp3mw7amyjz"; + name = "knavalbattle-15.12.3.tar.xz"; }; }; knetwalk = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/knetwalk-15.12.1.tar.xz"; - sha256 = "0zxq3rcs62q2q393b5nrf9496h0ahja7rwydgqmim0gywfnq1xk6"; - name = "knetwalk-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/knetwalk-15.12.3.tar.xz"; + sha256 = "1iqvp9pmiav0w03p0xfri7l0dx0h97283pyz6xhfmffvi5vsr1zn"; + name = "knetwalk-15.12.3.tar.xz"; }; }; kolf = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kolf-15.12.1.tar.xz"; - sha256 = "182196bjz721vxll4d1j6kflrpqnzrx2ws369p2wm7sy72md5d9s"; - name = "kolf-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kolf-15.12.3.tar.xz"; + sha256 = "0ky9bn8kgirm2shg1vc98q91ab8rx14fm2i4ammx3hjh6qp043hb"; + name = "kolf-15.12.3.tar.xz"; }; }; kollision = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kollision-15.12.1.tar.xz"; - sha256 = "09cf6dkq499wlafdlzvgkvs4vbkz4pws1q2x1w8ayl0qg4d85a5g"; - name = "kollision-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kollision-15.12.3.tar.xz"; + sha256 = "0y2bmw2h2big65arfhg8vhppglvw8xf5acmgbx37mnds3pxwqaw1"; + name = "kollision-15.12.3.tar.xz"; }; }; kolourpaint = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kolourpaint-15.12.1.tar.xz"; - sha256 = "1dnzgyd61n09ia4nvzdc94z2w82akv386kqvla85yrjyr11jcr2j"; - name = "kolourpaint-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kolourpaint-15.12.3.tar.xz"; + sha256 = "15ws4hyyq2shygblyp9dvq7dln61dpi3g0frxbxwkk8p3iznwsbw"; + name = "kolourpaint-15.12.3.tar.xz"; }; }; kompare = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kompare-15.12.1.tar.xz"; - sha256 = "00mibqn1ca09z3i12ic7vkpdr48sh6ry302jmlcbbmx9pfwlnvdv"; - name = "kompare-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kompare-15.12.3.tar.xz"; + sha256 = "0lvrhkmdhb74akby2js1hd6avmc5a5w7h2cbb7yw658zmg2xq0lq"; + name = "kompare-15.12.3.tar.xz"; }; }; konquest = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/konquest-15.12.1.tar.xz"; - sha256 = "1lhfv8l2yn49bdbkh41pjdjin7g1xgy6qh5hcixvh5sizhnax3yd"; - name = "konquest-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/konquest-15.12.3.tar.xz"; + sha256 = "1vgcqmw84ybly4hv8r33jdj0x8dpnfzdl2n7rqxvmb9ma12lc2wy"; + name = "konquest-15.12.3.tar.xz"; }; }; konsole = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/konsole-15.12.1.tar.xz"; - sha256 = "0vpaq3081y8x0sybnnkhq6sz6gdpsl73yvzpgnbmshxr34xnn26z"; - name = "konsole-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/konsole-15.12.3.tar.xz"; + sha256 = "1n2zv07hj53yq7msgh2r824c6r9gbvki57njn4c7vpx5fzyiwmjk"; + name = "konsole-15.12.3.tar.xz"; }; }; kontactinterface = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kontactinterface-15.12.1.tar.xz"; - sha256 = "1j95qcfiwbij7l2fwls4wmpsad2mzsrzg82cdfy6wddgl86v1i1n"; - name = "kontactinterface-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kontactinterface-15.12.3.tar.xz"; + sha256 = "0cgb79nmifajs3088pp5qvcbc970grx2irpfdy2nvh451g53jagf"; + name = "kontactinterface-15.12.3.tar.xz"; }; }; kopete = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kopete-15.12.1.tar.xz"; - sha256 = "0cv22hx0xk2yfwbqh7dqhpdsifb63gyjng2k4zbjjgiixhyg82z8"; - name = "kopete-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kopete-15.12.3.tar.xz"; + sha256 = "1r8v6l83avyygpw3yjni7bx01jhsnhq41c89c9g800qzl1zy67f8"; + name = "kopete-15.12.3.tar.xz"; }; }; kpat = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kpat-15.12.1.tar.xz"; - sha256 = "1qjrs2sblwkhb9avrjsximfshabpc0gqznhq6lwwm41i8kql261m"; - name = "kpat-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kpat-15.12.3.tar.xz"; + sha256 = "028vx550fkzqnk4dmkkrmicpr8k8yx9alj6da04p2y8ans70v7q4"; + name = "kpat-15.12.3.tar.xz"; }; }; kpimtextedit = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kpimtextedit-15.12.1.tar.xz"; - sha256 = "1qgr5bcqmlqngi1g2ylxik80pixa5nijj2ii8qvjh7wkbd7m549y"; - name = "kpimtextedit-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kpimtextedit-15.12.3.tar.xz"; + sha256 = "0jyiwjwz62dk746707z9fs3q0bw6xbz6kg2h92m85060db18vkl5"; + name = "kpimtextedit-15.12.3.tar.xz"; }; }; kppp = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kppp-15.12.1.tar.xz"; - sha256 = "0v03mp295h184dhx0kps7r1aygmbdyxr7yz2ab8m259pzb6mfv5l"; - name = "kppp-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kppp-15.12.3.tar.xz"; + sha256 = "17609g9npn8y3wr6zfq00raifw61qmc6qqn0j6mvn47d4942c1zp"; + name = "kppp-15.12.3.tar.xz"; }; }; kqtquickcharts = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kqtquickcharts-15.12.1.tar.xz"; - sha256 = "1vwx3qb8hrwn4r89a9kb8ycvgv43d94zhfi46l0a5msl94k2kigr"; - name = "kqtquickcharts-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kqtquickcharts-15.12.3.tar.xz"; + sha256 = "1lyx8m02xqjc8l65plwm12wdyqbspg5qr9hr1wlj6x711amjp7m4"; + name = "kqtquickcharts-15.12.3.tar.xz"; }; }; krdc = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/krdc-15.12.1.tar.xz"; - sha256 = "1vhxl6h4xjqvckl2zxhfcb633wllj1xx5dv4lwpvpqk2zpihkrli"; - name = "krdc-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/krdc-15.12.3.tar.xz"; + sha256 = "0j05p5j99bbldcnzwd0dqshry7pgb5v2jp2jqg390vfmqmx438sd"; + name = "krdc-15.12.3.tar.xz"; }; }; kremotecontrol = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kremotecontrol-15.12.1.tar.xz"; - sha256 = "0v59y8ilgyyjl327qf25d21z0gr7ii2p9wd985xj9lcdx2gax811"; - name = "kremotecontrol-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kremotecontrol-15.12.3.tar.xz"; + sha256 = "1yjjb6agh1i3axj82g4zsaygm2x39x1bnq90aiplxn84gh98cnfd"; + name = "kremotecontrol-15.12.3.tar.xz"; }; }; kreversi = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kreversi-15.12.1.tar.xz"; - sha256 = "1hlh2ddxg1kcg9pmd0pmw8kwnnvv7jy45sq8dhw1wnfmqxyni5m9"; - name = "kreversi-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kreversi-15.12.3.tar.xz"; + sha256 = "09h1pi4kccy0k0m0zifdlys89j2ybsa9xwp8aqzyifbqi7s874cs"; + name = "kreversi-15.12.3.tar.xz"; }; }; krfb = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/krfb-15.12.1.tar.xz"; - sha256 = "1dw7jwny6qqffykdkv1ic0xb4qbn5kymxv3rpy9g0gzwgyphgg3c"; - name = "krfb-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/krfb-15.12.3.tar.xz"; + sha256 = "1a6ddsjr26lwk7d7isna8shnzciyqghad9nhzn5jgqc56v13hg1m"; + name = "krfb-15.12.3.tar.xz"; }; }; kross-interpreters = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kross-interpreters-15.12.1.tar.xz"; - sha256 = "1lwxk5p5mb4760bwi5b10yqdrbr7vw1g4xq9g8krd9k3nz5gkkqg"; - name = "kross-interpreters-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kross-interpreters-15.12.3.tar.xz"; + sha256 = "14g1mp0izqqllr75vlbi9yn6awn77zasb42zppqxq1rl11bwp2li"; + name = "kross-interpreters-15.12.3.tar.xz"; }; }; kruler = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kruler-15.12.1.tar.xz"; - sha256 = "0y7cli4k0hhdrsw1c0mldlrw9nh7smsayik108na5wyd10ps2yyl"; - name = "kruler-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kruler-15.12.3.tar.xz"; + sha256 = "0i9f2ck55p87npk7xsqgi5zy0a9yiiv4razjdfj7fh8g78xj51yk"; + name = "kruler-15.12.3.tar.xz"; }; }; ksaneplugin = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ksaneplugin-15.12.1.tar.xz"; - sha256 = "1fs19rs6kkh2vq5kg1i2n1650349qanw03v6wziqnar4ay243grp"; - name = "ksaneplugin-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ksaneplugin-15.12.3.tar.xz"; + sha256 = "0834p0lfbf7l8lknxr0rz1w8j688dld36nyrz6pfk00h06an59h5"; + name = "ksaneplugin-15.12.3.tar.xz"; }; }; kscd = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kscd-15.12.1.tar.xz"; - sha256 = "16hzmxgc73p0n154clnyqz5hc3xliqcra37hrsbx2g0mkbm15p8g"; - name = "kscd-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kscd-15.12.3.tar.xz"; + sha256 = "0d82di7sg9mypxk7s24yldjjgwymi2yxwjhai67337wn6ivvw338"; + name = "kscd-15.12.3.tar.xz"; }; }; kshisen = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kshisen-15.12.1.tar.xz"; - sha256 = "1kkzpf4dvlfaqs6f5rxabjn0n95nqxadfw1rp6aqxj0v2qb60pcp"; - name = "kshisen-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kshisen-15.12.3.tar.xz"; + sha256 = "0aqz8w1rps0g8kvccqpkpmy8g2m5k4bpydz9gdh1nhia5h9558fq"; + name = "kshisen-15.12.3.tar.xz"; }; }; ksirk = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ksirk-15.12.1.tar.xz"; - sha256 = "1hfq7c77y9wia4534j4cwai3xj4xn4nny9mxx6jwj9hfw6yh3lj6"; - name = "ksirk-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ksirk-15.12.3.tar.xz"; + sha256 = "1z43v25gfv6gzpsm87s84v34389fjvvgq41maa1yzv0p3lj14v86"; + name = "ksirk-15.12.3.tar.xz"; }; }; ksnakeduel = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ksnakeduel-15.12.1.tar.xz"; - sha256 = "0mdfv4slh2nj50jc27p2hslqxzghyv0mvx270wk2b1n53zg079q9"; - name = "ksnakeduel-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ksnakeduel-15.12.3.tar.xz"; + sha256 = "1bkbbfvbpihq19z0jvk3ix535y60b7fb943crcflbqyknpnnh038"; + name = "ksnakeduel-15.12.3.tar.xz"; }; }; kspaceduel = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kspaceduel-15.12.1.tar.xz"; - sha256 = "0wi6zcmgihw42w4hxrcwc5bq3cksgc71m4a53hqs9j3pq1lz1ykr"; - name = "kspaceduel-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kspaceduel-15.12.3.tar.xz"; + sha256 = "0snjlvc56299frj89h41rs6ij85idyzcp8yv6rkc8kqjbdqm8hjj"; + name = "kspaceduel-15.12.3.tar.xz"; }; }; ksquares = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ksquares-15.12.1.tar.xz"; - sha256 = "0cmls8lpm271m55wflg1cbj88nvqzfawqn27nxfrg313j7n3a04b"; - name = "ksquares-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ksquares-15.12.3.tar.xz"; + sha256 = "06ij62n2kbjbgijcw3ddkc3fyl27rgyrkbz3cl5f3ydfyrmsnmzv"; + name = "ksquares-15.12.3.tar.xz"; }; }; kstars = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kstars-15.12.1.tar.xz"; - sha256 = "1jfha7s54rcs76kzw2v445k4s0qnkfdfipbylhkd0jd50a5j7wvl"; - name = "kstars-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kstars-15.12.3.tar.xz"; + sha256 = "1ka31vbzwdxv16p4nh40g6c6yijczv73y3js1scrc195k6byni5r"; + name = "kstars-15.12.3.tar.xz"; }; }; ksudoku = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ksudoku-15.12.1.tar.xz"; - sha256 = "0pm0a3b59wv30pkl50mcaqn37pmq4yjyviy2l62gbvb229sw9cl2"; - name = "ksudoku-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ksudoku-15.12.3.tar.xz"; + sha256 = "1132551s0hdabm42jxnbd9q9yiwh40lgfnzm4ccznv02l1g0fp8k"; + name = "ksudoku-15.12.3.tar.xz"; }; }; ksystemlog = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ksystemlog-15.12.1.tar.xz"; - sha256 = "0k3bwjmxs0xzxdvmq6s5sm1x84bfglf347f5bxdcfjmv95vp9bq6"; - name = "ksystemlog-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ksystemlog-15.12.3.tar.xz"; + sha256 = "0yiq0kajqjbb3s8ljp11kb83xha4n20v17fk8rnjn9dymvlkmw1j"; + name = "ksystemlog-15.12.3.tar.xz"; }; }; kteatime = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kteatime-15.12.1.tar.xz"; - sha256 = "12fjqq5n6305203b05q1lkwq7a56jynlkwykjai0yfjg2phxwa1c"; - name = "kteatime-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kteatime-15.12.3.tar.xz"; + sha256 = "0chf0cbghmf0aj0l0zxinhfpwpr40af3b4r7axkj77lrkkyl1acq"; + name = "kteatime-15.12.3.tar.xz"; }; }; ktimer = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ktimer-15.12.1.tar.xz"; - sha256 = "0nwjyd7z6gz45291w50qa356nlbva6mc4qa53z8jl8nqn6c74iwn"; - name = "ktimer-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ktimer-15.12.3.tar.xz"; + sha256 = "1sghh5983bzn3qlfm7fs74v6f5djmbixppfw09j8nn9rsmsah30a"; + name = "ktimer-15.12.3.tar.xz"; }; }; ktnef = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ktnef-15.12.1.tar.xz"; - sha256 = "178r4ql1jyfk40l6s3jwabqvx5i25fzq3kv83csvd7p3y2299xbh"; - name = "ktnef-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ktnef-15.12.3.tar.xz"; + sha256 = "043im3rcw210w90spyxap3pjqfk5dmgk57p2pqkxir6mcsfz9hm8"; + name = "ktnef-15.12.3.tar.xz"; }; }; ktouch = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ktouch-15.12.1.tar.xz"; - sha256 = "1d7nkq060h5wvjxrgsqdjhmilgaaakk48a6qnx4yv5bc0gpd47rl"; - name = "ktouch-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ktouch-15.12.3.tar.xz"; + sha256 = "1zmzm52pxi3hs7r12qsfmmqf8x7q1aapss2drlmx3r4lfi3hwzsp"; + name = "ktouch-15.12.3.tar.xz"; }; }; ktp-accounts-kcm = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ktp-accounts-kcm-15.12.1.tar.xz"; - sha256 = "1nfk33cxl278p4a3f3hiwxn25crvc0bvggfsmmkqd5m1iq1y2vid"; - name = "ktp-accounts-kcm-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ktp-accounts-kcm-15.12.3.tar.xz"; + sha256 = "1zyprpzwbpvj22wsl6bc75r38bm7rshhl7llyk47rl0v02p8gd7s"; + name = "ktp-accounts-kcm-15.12.3.tar.xz"; }; }; ktp-approver = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ktp-approver-15.12.1.tar.xz"; - sha256 = "10h40f8hhxv5a50yby728znfsl8w3jhy4cpp3a15bl21y0javb8p"; - name = "ktp-approver-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ktp-approver-15.12.3.tar.xz"; + sha256 = "01ppnmi7fah8yq4yvhsrz6kask9f1fxhzcvjmjr5igv2d9hfsppw"; + name = "ktp-approver-15.12.3.tar.xz"; }; }; ktp-auth-handler = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ktp-auth-handler-15.12.1.tar.xz"; - sha256 = "00r0r46vqd4y89djmkdibb566i23nkd0viz7rfp46s35mlwlfylf"; - name = "ktp-auth-handler-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ktp-auth-handler-15.12.3.tar.xz"; + sha256 = "1hkc7gkh38vw7l3b8ygywifv60g1chm3xcgklj94dsm3x9j8xbwa"; + name = "ktp-auth-handler-15.12.3.tar.xz"; }; }; ktp-common-internals = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ktp-common-internals-15.12.1.tar.xz"; - sha256 = "0bswmvzr78amwpcrmsvpr49854rcq6c9d1g475bgwwi9h2qjajqg"; - name = "ktp-common-internals-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ktp-common-internals-15.12.3.tar.xz"; + sha256 = "13wp73k52nrqml17x9papdi9jymbymrkszag6rmmzmw5rq5kikb6"; + name = "ktp-common-internals-15.12.3.tar.xz"; }; }; ktp-contact-list = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ktp-contact-list-15.12.1.tar.xz"; - sha256 = "1awidixqp12i29bm15vr1c6lf6m5mwqs9yvfczdvhxmq1vkniwxr"; - name = "ktp-contact-list-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ktp-contact-list-15.12.3.tar.xz"; + sha256 = "1b9ql2435wq410gfxw5ybvlm68pilx8rp8dxbxrs1cw4wrc88mf3"; + name = "ktp-contact-list-15.12.3.tar.xz"; }; }; ktp-contact-runner = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ktp-contact-runner-15.12.1.tar.xz"; - sha256 = "0b7gj3vandgqyd27rc7cdr61l7f7ph0whq9pggfxcbly7xmhyhh1"; - name = "ktp-contact-runner-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ktp-contact-runner-15.12.3.tar.xz"; + sha256 = "0hnkrnq2kr3jan0pmy82hndji5jvjxpr9sn90s8swwksdv8f2gc9"; + name = "ktp-contact-runner-15.12.3.tar.xz"; }; }; ktp-desktop-applets = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ktp-desktop-applets-15.12.1.tar.xz"; - sha256 = "0h6zw79canpwlnngkn9w7qnz4jch0ksqvn2vw4vfqgy3w91dxxkj"; - name = "ktp-desktop-applets-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ktp-desktop-applets-15.12.3.tar.xz"; + sha256 = "0pcync77gh55wn9701mviwmnm2ahxqs1rfzw7cxsjvgk4324arzq"; + name = "ktp-desktop-applets-15.12.3.tar.xz"; }; }; ktp-filetransfer-handler = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ktp-filetransfer-handler-15.12.1.tar.xz"; - sha256 = "13mzc2brzfxfpsqya35iyf76mllp7bhs6yjfcy4rhvazdf79p3dm"; - name = "ktp-filetransfer-handler-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ktp-filetransfer-handler-15.12.3.tar.xz"; + sha256 = "0ykvly1giqn5nn4vwa7xcdz0q6mrni6raay9krvajk97qcdc5af8"; + name = "ktp-filetransfer-handler-15.12.3.tar.xz"; }; }; ktp-kded-module = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ktp-kded-module-15.12.1.tar.xz"; - sha256 = "1bn22k1ai2bsncim1k55nm0k0k34xkxs2cvvf4f8y4za5s0hsyix"; - name = "ktp-kded-module-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ktp-kded-module-15.12.3.tar.xz"; + sha256 = "0x42cgjiwy4yawial483ilb0sxncnip40ilma0kxzli0nzlbjfq8"; + name = "ktp-kded-module-15.12.3.tar.xz"; }; }; ktp-send-file = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ktp-send-file-15.12.1.tar.xz"; - sha256 = "18l6il6b70bqs9ggjah2yrmbw229k8cjr8gf1kvkckwh1rv3z343"; - name = "ktp-send-file-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ktp-send-file-15.12.3.tar.xz"; + sha256 = "0bx30sbwbxjgnylx9xzhq5vkisn34xxzqryalvg1lzhqnh338iri"; + name = "ktp-send-file-15.12.3.tar.xz"; }; }; ktp-text-ui = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ktp-text-ui-15.12.1.tar.xz"; - sha256 = "0ydk503b8gn84jk5l1v061g9zdi79mb5xjpa7lffgqzjippsb5y1"; - name = "ktp-text-ui-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ktp-text-ui-15.12.3.tar.xz"; + sha256 = "044pfam4i3qs43xgp2q0lsvrfjvbvbywclw4wx22m0i02580llga"; + name = "ktp-text-ui-15.12.3.tar.xz"; }; }; ktuberling = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/ktuberling-15.12.1.tar.xz"; - sha256 = "1rxn6ih2jy36jisaxf8gxs6rnsdbgmbhv0xmczn74vlzfi35izja"; - name = "ktuberling-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/ktuberling-15.12.3.tar.xz"; + sha256 = "0x73hppzchi5k4y9xd520qllkhn5mhrrmaapnacybb2pbpv58d17"; + name = "ktuberling-15.12.3.tar.xz"; }; }; kturtle = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kturtle-15.12.1.tar.xz"; - sha256 = "1d3vmkjww7zc0blc0i62jbay3mqgcccnkr6wxfabmcsz8cp062f4"; - name = "kturtle-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kturtle-15.12.3.tar.xz"; + sha256 = "12x86v658d7by5x1axwchn53fd23yrfavfxn5yy700vbqa6jd8qn"; + name = "kturtle-15.12.3.tar.xz"; }; }; kubrick = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kubrick-15.12.1.tar.xz"; - sha256 = "1r2pwrj8hd5vb18m3ad72cfka6kjz9rab0nsk33sp2yg23zwrg2y"; - name = "kubrick-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kubrick-15.12.3.tar.xz"; + sha256 = "0az5vcg5a565cmzmavzww5sl7wiz6gi2p0h61xl3di1pc8gk8wkp"; + name = "kubrick-15.12.3.tar.xz"; }; }; kuser = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kuser-15.12.1.tar.xz"; - sha256 = "1qg67d6r2ng217r5f36qgqyyvy16bv1pv0xy3i35d1qpq6y7indy"; - name = "kuser-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kuser-15.12.3.tar.xz"; + sha256 = "0aggk24z6fmsqimj7c3zi0vaq508m3g1956v0kfxd2k5wipb9cfz"; + name = "kuser-15.12.3.tar.xz"; }; }; kwalletmanager = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kwalletmanager-15.12.1.tar.xz"; - sha256 = "09801vnq6c2cq10ywg68fddwbmvly6lyaybdffw27h8cl4qkxy9f"; - name = "kwalletmanager-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kwalletmanager-15.12.3.tar.xz"; + sha256 = "1qyms04w0xmhxxd4kb9zsdkr50gxbjhs3hjq5vhvbagb05ya8g4m"; + name = "kwalletmanager-15.12.3.tar.xz"; }; }; kwordquiz = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/kwordquiz-15.12.1.tar.xz"; - sha256 = "1brihl4a488nmi5s1yk4jy8bb1a5l5576j9vldh2ad9y5mqdq68d"; - name = "kwordquiz-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/kwordquiz-15.12.3.tar.xz"; + sha256 = "1vhxdng5i9hzx57mj9jfsdc63wbk9xyjhr6f1hq035z0cz4j59r6"; + name = "kwordquiz-15.12.3.tar.xz"; }; }; libkcddb = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/libkcddb-15.12.1.tar.xz"; - sha256 = "0y5jsimz71a8dilb3gwa8xa2r6bgfh3giwqbg0vl5xsnmq5q282k"; - name = "libkcddb-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/libkcddb-15.12.3.tar.xz"; + sha256 = "1m3r5d4jy4n8l29ncm3wnmmnfilr64qn987brm4y16bcbxidigcz"; + name = "libkcddb-15.12.3.tar.xz"; }; }; libkcompactdisc = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/libkcompactdisc-15.12.1.tar.xz"; - sha256 = "1cmabgzv1lliqlc0yc3y365g5rdvqpjfs8am4179h2mr1vibvx6b"; - name = "libkcompactdisc-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/libkcompactdisc-15.12.3.tar.xz"; + sha256 = "0cb50346c4jv35125kaz65m8n1bw0rn8wynig6iygp8b2xam9303"; + name = "libkcompactdisc-15.12.3.tar.xz"; }; }; libkdcraw = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/libkdcraw-15.12.1.tar.xz"; - sha256 = "0gl1a5dk63jmdh7ip8b1z8179daz1hx0w0p2pqgyklaxg883r88v"; - name = "libkdcraw-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/libkdcraw-15.12.3.tar.xz"; + sha256 = "1d2l6nk25vj0h0a7slnz6dnlpfr4wyc6rh188vsdm24nz8q89hqf"; + name = "libkdcraw-15.12.3.tar.xz"; }; }; libkdeedu = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/libkdeedu-15.12.1.tar.xz"; - sha256 = "1fp41cx2gsdax8iqx2kw790i8j718q46ss4c5zhxagshnkd3czmz"; - name = "libkdeedu-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/libkdeedu-15.12.3.tar.xz"; + sha256 = "1imk40ygm9jndj95hkz1grjrsh9r0adjz41sarkjyfglxw3xwm0c"; + name = "libkdeedu-15.12.3.tar.xz"; }; }; libkdegames = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/libkdegames-15.12.1.tar.xz"; - sha256 = "003ypjiqi3mk00a6iv9d8nf6d4kq7l6nflgwf0d3sq0y4cbkix0m"; - name = "libkdegames-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/libkdegames-15.12.3.tar.xz"; + sha256 = "1v3zmg8zb9cnfw3inba68c4v6iv1mqinskvsa61rkzzdhjf1cjj4"; + name = "libkdegames-15.12.3.tar.xz"; }; }; libkeduvocdocument = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/libkeduvocdocument-15.12.1.tar.xz"; - sha256 = "0v1ssh4m59kb7b82r06fwgb0cmj9xm5yy9vcrmhs1167l1s8vr6w"; - name = "libkeduvocdocument-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/libkeduvocdocument-15.12.3.tar.xz"; + sha256 = "1i4s3v9pdn0jrgbdidq1rg9zka9m06h1c1yxrs0j0zscwmnalzlc"; + name = "libkeduvocdocument-15.12.3.tar.xz"; }; }; libkexiv2 = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/libkexiv2-15.12.1.tar.xz"; - sha256 = "1z4z77psaiqwh62spsvqpkd21agsfjjrpaiiqdaxinsimw5pagb0"; - name = "libkexiv2-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/libkexiv2-15.12.3.tar.xz"; + sha256 = "196sxzhirc1l33jj1zjl6h57w9fyqa0kik0mmwj9w3jbjbsdmazv"; + name = "libkexiv2-15.12.3.tar.xz"; }; }; libkface = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/libkface-15.12.1.tar.xz"; - sha256 = "0x6pz72vxmrsncc0kkwdaci9i9nxkdqkdklwlg7q4wbn8kxxa8n6"; - name = "libkface-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/libkface-15.12.3.tar.xz"; + sha256 = "0rsy3xqfj7mbnhwb8gknv0cz20m2nv1zzs9jl39dna381gjh7sw0"; + name = "libkface-15.12.3.tar.xz"; }; }; libkgeomap = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/libkgeomap-15.12.1.tar.xz"; - sha256 = "127flkwgkmcdkd40ccrvxmyq2nzb1jshpj79pjyhwirh9iqbw773"; - name = "libkgeomap-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/libkgeomap-15.12.3.tar.xz"; + sha256 = "0mm46if7jrf31s9sxn2vpaq6bk4bansbkgjb166anbfb6ywfs30d"; + name = "libkgeomap-15.12.3.tar.xz"; }; }; libkipi = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/libkipi-15.12.1.tar.xz"; - sha256 = "0x14adzkla7cpiwbs75n87x5gb8ifcby1zkw2f2i69g6w9x8nnps"; - name = "libkipi-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/libkipi-15.12.3.tar.xz"; + sha256 = "0lz8b792gpdgy6nlw50n62jn7fj2bj8znqsln2s2vmibgjscvl55"; + name = "libkipi-15.12.3.tar.xz"; }; }; libkmahjongg = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/libkmahjongg-15.12.1.tar.xz"; - sha256 = "1q04c91j78hzk5x7iiwxkn2is3c5cy7wca1wmxlbqbw3q3zc5jlh"; - name = "libkmahjongg-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/libkmahjongg-15.12.3.tar.xz"; + sha256 = "0vjzdicqwgz49vykb698b2vgj1vmsxhn2ad8fjw863dqds9979v7"; + name = "libkmahjongg-15.12.3.tar.xz"; }; }; libkomparediff2 = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/libkomparediff2-15.12.1.tar.xz"; - sha256 = "0vkndb5l5lv50id8fik6zbg0ph5mv0kmcxz6ywh2i6mh3nf5h0m2"; - name = "libkomparediff2-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/libkomparediff2-15.12.3.tar.xz"; + sha256 = "1iw60r4rnijsh22mslrcsgrhqndqndvqsin20g0gx8zl6qs680kn"; + name = "libkomparediff2-15.12.3.tar.xz"; }; }; libksane = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/libksane-15.12.1.tar.xz"; - sha256 = "112w0hpnq4rzp40rq68wjdkx0w2p06z1chxribgh032wh09j21by"; - name = "libksane-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/libksane-15.12.3.tar.xz"; + sha256 = "0r4v20l6bpv5j0gk0vcm90ag4cd410mllfw03f4v683wsda1phcj"; + name = "libksane-15.12.3.tar.xz"; }; }; lokalize = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/lokalize-15.12.1.tar.xz"; - sha256 = "0ldmw4rgli64dq4xllxbrgvc8wz52a5xhmbcb7m31yr7vpsav533"; - name = "lokalize-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/lokalize-15.12.3.tar.xz"; + sha256 = "1qnhhvgpigss0ngca7yqwqlwixm2221cynp94nw0csfx72mkbpyl"; + name = "lokalize-15.12.3.tar.xz"; }; }; lskat = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/lskat-15.12.1.tar.xz"; - sha256 = "116vfahyh65bhfp8z5ay2xj8gb7s935d3cbd4f9ppidva493lpvp"; - name = "lskat-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/lskat-15.12.3.tar.xz"; + sha256 = "05d40mc8bs4f45jy1sh64chp0ffb0631660wwd4p60d7x0j5as98"; + name = "lskat-15.12.3.tar.xz"; }; }; marble = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/marble-15.12.1.tar.xz"; - sha256 = "15zybdm28a0q3nanv43y5g3xbl2gpi19fdx1smslypkz33srfwlm"; - name = "marble-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/marble-15.12.3.tar.xz"; + sha256 = "1gz7nj0jaqg7pbird2rv3cngfifpm9g1dnmx9rykdripv9m4g9am"; + name = "marble-15.12.3.tar.xz"; }; }; mplayerthumbs = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/mplayerthumbs-15.12.1.tar.xz"; - sha256 = "16wgsg3s0a0mcn1p3ixy8xw8qci082qq415hcy4vr1ycbxzypcd0"; - name = "mplayerthumbs-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/mplayerthumbs-15.12.3.tar.xz"; + sha256 = "0r2v4b1kxrc1rpk771xry1swirf66z9lbrg7qs0an5vgp9wmghzw"; + name = "mplayerthumbs-15.12.3.tar.xz"; }; }; okteta = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/okteta-15.12.1.tar.xz"; - sha256 = "1fzk1qlsxw5mkvk5sbzaxs902waagf9i8rggis00c6cpgd2il75q"; - name = "okteta-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/okteta-15.12.3.tar.xz"; + sha256 = "1qhrddir85z5c91xrqzndnd3n30vsfw6rafsk55zxwyhkws2jks0"; + name = "okteta-15.12.3.tar.xz"; }; }; okular = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/okular-15.12.1.tar.xz"; - sha256 = "17d2xhwdlqf2jcx34hh0l7gj3n3lpidv9wha8xp2vww8hibmdmn3"; - name = "okular-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/okular-15.12.3.tar.xz"; + sha256 = "1xrw0rvzw2i7289fv2maff3zb7f3vqv50fb88dbx67n9mzib794v"; + name = "okular-15.12.3.tar.xz"; }; }; palapeli = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/palapeli-15.12.1.tar.xz"; - sha256 = "1kq06xi6d6f47chzzcknr1v1jd3pajzg7s45zc78sfwvq1lkcwpj"; - name = "palapeli-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/palapeli-15.12.3.tar.xz"; + sha256 = "08sj1zjd3smfcdgnmj57q9yz3bsd7k654zyh3sqar29yd4ja1b8l"; + name = "palapeli-15.12.3.tar.xz"; }; }; parley = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/parley-15.12.1.tar.xz"; - sha256 = "1imkxanm5nzjkvgyskj3bcnn7rz7hwggspg3iyq75vmrqvmnd17y"; - name = "parley-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/parley-15.12.3.tar.xz"; + sha256 = "00h83mpkz52ybav8d3c3gv6y53xcz3d5abq11daa6hc171bm35qy"; + name = "parley-15.12.3.tar.xz"; }; }; picmi = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/picmi-15.12.1.tar.xz"; - sha256 = "0ka8ksq2v7j313i0iki07d2rn6d0ga7qi5zmwvz0c7c0yk1ndpd0"; - name = "picmi-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/picmi-15.12.3.tar.xz"; + sha256 = "0x952gpdz415pr691bv8x98pnvs1xajgsgk6rm6kx9crm1qm0qfa"; + name = "picmi-15.12.3.tar.xz"; }; }; poxml = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/poxml-15.12.1.tar.xz"; - sha256 = "08qyhw1x4lf5lgbi55cdvvlizbfjjrg2xncgnnvcc2xvs0vbsdrx"; - name = "poxml-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/poxml-15.12.3.tar.xz"; + sha256 = "1w3mgz5ayryra844pn5jrhnxnhbz8d8kjg74a9xnw98j81qqjz1y"; + name = "poxml-15.12.3.tar.xz"; }; }; print-manager = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/print-manager-15.12.1.tar.xz"; - sha256 = "0n11ras6zk68zb901jwg5dkay04cl4qwplh57yvcvkaqzp7dx29h"; - name = "print-manager-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/print-manager-15.12.3.tar.xz"; + sha256 = "1xranm7l9bgg9dnpj91d9nmzmbgj52zgzsvvsnp9ygxgcs5bzlhc"; + name = "print-manager-15.12.3.tar.xz"; }; }; rocs = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/rocs-15.12.1.tar.xz"; - sha256 = "1car9wdw3jrnczcws8hp15nky6fm04asqh6z64v1x46xpgqq15s8"; - name = "rocs-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/rocs-15.12.3.tar.xz"; + sha256 = "0pl3ildg2rgnq7ax28ba5ninv8lw7mm5c4zwj63fwz3ds1d4rysq"; + name = "rocs-15.12.3.tar.xz"; }; }; signon-kwallet-extension = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/signon-kwallet-extension-15.12.1.tar.xz"; - sha256 = "1s96924sahamdiw6gs42c7f6fmxacccy0x7a7vcm25jrdw2y8rny"; - name = "signon-kwallet-extension-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/signon-kwallet-extension-15.12.3.tar.xz"; + sha256 = "05y6c4pd833zwxx6fndidxr39w3qxga6nkcjds8ywxrr0968mfi7"; + name = "signon-kwallet-extension-15.12.3.tar.xz"; }; }; spectacle = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/spectacle-15.12.1.tar.xz"; - sha256 = "0ikv29g85fzk4k84a3p56krsabg92na1kc3r1dvg6vmhprr5ar0y"; - name = "spectacle-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/spectacle-15.12.3.tar.xz"; + sha256 = "0qyyc30pgybx205a45vj0yqv03csi0dihx012iz3hlnhgr2g586n"; + name = "spectacle-15.12.3.tar.xz"; }; }; step = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/step-15.12.1.tar.xz"; - sha256 = "0g85cwr4ixh254i75af0pvqs6rp9zmzifnn8757dmqb0z0l31l9r"; - name = "step-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/step-15.12.3.tar.xz"; + sha256 = "0473n43wqiwsrajy06mr024qnfr2nhhjxwsv1arg2gv7xvzhbgq1"; + name = "step-15.12.3.tar.xz"; }; }; svgpart = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/svgpart-15.12.1.tar.xz"; - sha256 = "1l86kvgrjbhyqaldw3cdm483lc1j9lrf8rif059qnq20r35llfp0"; - name = "svgpart-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/svgpart-15.12.3.tar.xz"; + sha256 = "1lhhjmf2ay9v6p64693kf5rk3jywyyyd18xq9lgqlng0b27acsac"; + name = "svgpart-15.12.3.tar.xz"; }; }; sweeper = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/sweeper-15.12.1.tar.xz"; - sha256 = "1ykk3msicf71p3p9y6135hdrv3szjfv9khb0bl2nzqg2i28psdad"; - name = "sweeper-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/sweeper-15.12.3.tar.xz"; + sha256 = "0wnk6zmf24mpnacsp6wi8c617jl4znk1pbm9jl38ckmg5z56ghz0"; + name = "sweeper-15.12.3.tar.xz"; }; }; syndication = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/syndication-15.12.1.tar.xz"; - sha256 = "1kq97rid82dv70ii4imh6aq1bwc2i0x7yzw95g855khxbd485a1m"; - name = "syndication-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/syndication-15.12.3.tar.xz"; + sha256 = "07xnjxjdf11k0fkpf9xdfvfh176pimx3v4h5y6f7bswsgnld7h38"; + name = "syndication-15.12.3.tar.xz"; }; }; umbrello = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/umbrello-15.12.1.tar.xz"; - sha256 = "1qxqkqvkp19vj8zkl39cwn077sncl3wqkgv0a1a16cdxhhvfbf23"; - name = "umbrello-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/umbrello-15.12.3.tar.xz"; + sha256 = "072nqqjq2cfxwi098kh7m24cvs6f6nss62wxdskvzdkbcd7gfh26"; + name = "umbrello-15.12.3.tar.xz"; }; }; zeroconf-ioslave = { - version = "15.12.1"; + version = "15.12.3"; src = fetchurl { - url = "${mirror}/stable/applications/15.12.1/src/zeroconf-ioslave-15.12.1.tar.xz"; - sha256 = "0q9q1vj62h3lw0451csg4sa2cgm9h5r9jxbgn8yg4xa31vx1cw03"; - name = "zeroconf-ioslave-15.12.1.tar.xz"; + url = "${mirror}/stable/applications/15.12.3/src/zeroconf-ioslave-15.12.3.tar.xz"; + sha256 = "1iv4l58v7wg4kjmp7723za84rpns4dm6av6b6cybmj8dzw3jixxf"; + name = "zeroconf-ioslave-15.12.3.tar.xz"; }; }; } From e498a645c1087cd85b3f4168e0b56233c729959c Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 26 Jan 2016 02:58:17 +0100 Subject: [PATCH 1058/1059] ncat: Remove old package, available in nmap --- pkgs/tools/networking/ncat/default.nix | 25 ------------ pkgs/tools/networking/ncat/ncat-0.10rc3.patch | 38 ------------------- pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 3 -- pkgs/top-level/release-small.nix | 1 - pkgs/top-level/release.nix | 1 - 6 files changed, 1 insertion(+), 68 deletions(-) delete mode 100644 pkgs/tools/networking/ncat/default.nix delete mode 100644 pkgs/tools/networking/ncat/ncat-0.10rc3.patch diff --git a/pkgs/tools/networking/ncat/default.nix b/pkgs/tools/networking/ncat/default.nix deleted file mode 100644 index 8f81e9284b6..00000000000 --- a/pkgs/tools/networking/ncat/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{stdenv, fetchurl, openssl}: - -stdenv.mkDerivation { - name = "ncat-0.10rc3"; - - src = fetchurl { - url = mirror://sourceforge/nmap-ncat/ncat-0.10rc3.tar.gz; - sha256 = "1yb26ipxwhqkfannji90jxi38k35fal4ffx0jm5clr1a1rndjjzb"; - }; - - patches = [./ncat-0.10rc3.patch]; - - buildInputs = [openssl]; - - CFLAGS = "-g"; - - postInstall = '' - install -D ncat $out/bin/ncat - install -D docs/man/ncat.1 $out/man/ncat.1 - ''; - - meta = { - description = "A netcat implementation with IPv6 support"; - }; -} diff --git a/pkgs/tools/networking/ncat/ncat-0.10rc3.patch b/pkgs/tools/networking/ncat/ncat-0.10rc3.patch deleted file mode 100644 index ed4c93673aa..00000000000 --- a/pkgs/tools/networking/ncat/ncat-0.10rc3.patch +++ /dev/null @@ -1,38 +0,0 @@ -diff -urN ncat-0.10rc3/ncat_main.c ncat-0.10rc3-fixed/ncat_main.c ---- ncat-0.10rc3/ncat_main.c 2006-01-10 03:29:08.000000000 +0300 -+++ ncat-0.10rc3-fixed/ncat_main.c 2007-07-09 09:58:58.000000000 +0400 -@@ -23,6 +23,7 @@ - { - struct sockaddr_in ss; - struct sockaddr_in6 ss6; -+ struct sockaddr_storage sst; - - struct conn_state cs; - -@@ -271,7 +272,7 @@ - } - - /* resolve hostname */ -- if (!resolve(argv[optind], (struct sockaddr_storage *) &ss)) { -+ if (!resolve(argv[optind], (struct sockaddr_storage *) &sst)) { - /* host failed to resolve :( */ - fprintf(stderr, - "%s: Could not resolve target hostname %s. QUITTING.\n", -@@ -297,6 +298,8 @@ - - /* IPv6 connect() */ - if (oipv == 6) { -+ memcpy(&ss6,&sst,sizeof(ss6)); -+ - ss6.sin6_family = AF_INET6; - ss_len = sizeof(struct sockaddr_in6); - -@@ -329,6 +332,8 @@ - } - /* IPv4 connect() - default. */ - else { -+ memcpy(&ss,&sst,sizeof(ss)); -+ - ss.sin_family = AF_INET; - ss_len = sizeof(struct sockaddr_in); - diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 9d278b19342..23e05eb6c9e 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -62,6 +62,7 @@ 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 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8d15f689b0f..edc2abe1f4d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2434,8 +2434,6 @@ in nc6 = callPackage ../tools/networking/nc6 { }; - ncat = callPackage ../tools/networking/ncat { }; - ncftp = callPackage ../tools/networking/ncftp { }; ncompress = callPackage ../tools/compression/ncompress { }; @@ -16407,4 +16405,3 @@ in togglesg-download = callPackage ../tools/misc/togglesg-download { }; } - diff --git a/pkgs/top-level/release-small.nix b/pkgs/top-level/release-small.nix index 9a10fad4e9f..bd2223b4b04 100644 --- a/pkgs/top-level/release-small.nix +++ b/pkgs/top-level/release-small.nix @@ -111,7 +111,6 @@ with import ./release-lib.nix { inherit supportedSystems; }; mpg321 = linux; mutt = linux; mysql = linux; - ncat = linux; netcat = all; nfs-utils = linux; nix = all; diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index cc1e9b791f7..24ea9bdc470 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -167,7 +167,6 @@ let mupen64plus = linux; mutt = linux; nano = allBut cygwin; - ncat = linux; netcat = all; nss_ldap = linux; nssmdns = linux; From 8605dab96431d5a790e99a3f5f86ab2625747c10 Mon Sep 17 00:00:00 2001 From: Ryan Trinkle Date: Tue, 29 Mar 2016 12:04:46 -0400 Subject: [PATCH 1059/1059] webkitgtk: add darwin support --- pkgs/development/libraries/cairo/default.nix | 24 +++++++--- .../gobject-introspection/darwin-fixups.patch | 26 +++++++++++ .../gobject-introspection/default.nix | 4 ++ .../separate-rpath-arg.patch | 21 +++++++++ pkgs/development/libraries/gtk+/3.x.nix | 12 +++++ pkgs/development/libraries/pango/default.nix | 4 ++ pkgs/development/libraries/webkitgtk/2.4.nix | 40 ++++++++++++++--- .../libraries/webkitgtk/adding-libintl.patch | 10 +++++ .../libraries/webkitgtk/default.nix | 45 +++++++++++++++---- .../libraries/webkitgtk/impure-icucore.patch | 12 +++++ .../libraries/webkitgtk/libc++.patch | 20 +++++++++ .../libraries/webkitgtk/plugin-none.patch | 38 ++++++++++++++++ .../libraries/webkitgtk/quartz-webcore.patch | 22 +++++++++ 13 files changed, 259 insertions(+), 19 deletions(-) create mode 100644 pkgs/development/libraries/gobject-introspection/darwin-fixups.patch create mode 100644 pkgs/development/libraries/gobject-introspection/separate-rpath-arg.patch create mode 100644 pkgs/development/libraries/webkitgtk/adding-libintl.patch create mode 100644 pkgs/development/libraries/webkitgtk/impure-icucore.patch create mode 100644 pkgs/development/libraries/webkitgtk/libc++.patch create mode 100644 pkgs/development/libraries/webkitgtk/plugin-none.patch create mode 100644 pkgs/development/libraries/webkitgtk/quartz-webcore.patch diff --git a/pkgs/development/libraries/cairo/default.nix b/pkgs/development/libraries/cairo/default.nix index 5add4e45129..537107f3f6a 100644 --- a/pkgs/development/libraries/cairo/default.nix +++ b/pkgs/development/libraries/cairo/default.nix @@ -4,6 +4,7 @@ , xcbSupport ? true # no longer experimental since 1.12 , glSupport ? true, mesa_noglu ? null # mesa is no longer a big dependency , pdfSupport ? true +, darwin }: assert glSupport -> mesa_noglu != null; @@ -11,14 +12,21 @@ assert glSupport -> mesa_noglu != null; with { inherit (stdenv.lib) optional optionals; }; stdenv.mkDerivation rec { - name = "cairo-1.14.4"; + name = "cairo-1.14.6"; src = fetchurl { url = "http://cairographics.org/releases/${name}.tar.xz"; - sha256 = "05p75r914d809711yg9rapgmmi4hymzbarhd3w0yrfadhiy9rv7n"; + sha256 = "0lmjlzmghmr27y615px9hkm552x7ap6pmq9mfbzr6smp8y2b6g31"; }; - nativeBuildInputs = [ pkgconfig libiconv ] ++ libintlOrEmpty; + nativeBuildInputs = [ + pkgconfig + libiconv + ] ++ libintlOrEmpty ++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ + CoreGraphics + ApplicationServices + Carbon + ]); propagatedBuildInputs = with xorg; [ xorg.xlibsWrapper fontconfig expat freetype pixman zlib libpng ] @@ -28,11 +36,17 @@ stdenv.mkDerivation rec { ++ optionals glSupport [ mesa_noglu ] ; - configureFlags = [ "--enable-tee" ] + configureFlags = if stdenv.isDarwin then [ + "--disable-dependency-tracking" + "--enable-quartz" + "--enable-quartz-font" + "--enable-quartz-image" + "--enable-ft" + ] else ([ "--enable-tee" ] ++ optional xcbSupport "--enable-xcb" ++ optional glSupport "--enable-gl" ++ optional pdfSupport "--enable-pdf" - ; + ); preConfigure = # On FreeBSD, `-ldl' doesn't exist. diff --git a/pkgs/development/libraries/gobject-introspection/darwin-fixups.patch b/pkgs/development/libraries/gobject-introspection/darwin-fixups.patch new file mode 100644 index 00000000000..02443d56afa --- /dev/null +++ b/pkgs/development/libraries/gobject-introspection/darwin-fixups.patch @@ -0,0 +1,26 @@ +diff -ur gobject-introspection-1.46.0-orig/giscanner/ccompiler.py gobject-introspection-1.46.0/giscanner/ccompiler.py +--- gobject-introspection-1.46.0-orig/giscanner/ccompiler.py 2016-02-01 12:25:41.000000000 -0500 ++++ gobject-introspection-1.46.0/giscanner/ccompiler.py 2016-02-01 15:50:36.000000000 -0500 +@@ -128,11 +128,7 @@ + self.compiler.add_runtime_library_dir('.') + + # https://bugzilla.gnome.org/show_bug.cgi?id=625195 +- args.append('-Wl,-rpath=.') +- +- # Ensure libraries are always linked as we are going to use ldd to work +- # out their names later +- args.append('-Wl,--no-as-needed') ++ args.append('-Wl,-rpath,.') + + for library in libraries: + self.compiler.add_library(library) +@@ -140,7 +136,7 @@ + for library_path in libpaths: + args.append('-L' + library_path) + if os.path.isabs(library_path): +- args.append('-Wl,-rpath=' + library_path) ++ args.append('-Wl,-rpath,' + library_path) + + else: + # libtool case: assemble linker command arguments, like we did before +Only in gobject-introspection-1.46.0/giscanner: ccompiler.py~ diff --git a/pkgs/development/libraries/gobject-introspection/default.nix b/pkgs/development/libraries/gobject-introspection/default.nix index 959abc44d24..e13ce337f38 100644 --- a/pkgs/development/libraries/gobject-introspection/default.nix +++ b/pkgs/development/libraries/gobject-introspection/default.nix @@ -10,6 +10,7 @@ let ver_maj = "1.46"; ver_min = "0"; in +with stdenv.lib; stdenv.mkDerivation rec { name = "gobject-introspection-${ver_maj}.${ver_min}"; @@ -38,6 +39,9 @@ stdenv.mkDerivation rec { patches = stdenv.lib.singleton (substituteAll { src = ./absolute_shlib_path.patch; inherit nixStoreDir; + }) ++ optional stdenv.isDarwin (substituteAll { + src = ./darwin-fixups.patch; + inherit nixStoreDir; }); meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/gobject-introspection/separate-rpath-arg.patch b/pkgs/development/libraries/gobject-introspection/separate-rpath-arg.patch new file mode 100644 index 00000000000..1f25aa1f898 --- /dev/null +++ b/pkgs/development/libraries/gobject-introspection/separate-rpath-arg.patch @@ -0,0 +1,21 @@ +diff -ur gobject-introspection-1.46.0-orig/giscanner/ccompiler.py gobject-introspection-1.46.0/giscanner/ccompiler.py +--- gobject-introspection-1.46.0-orig/giscanner/ccompiler.py 2016-02-01 12:25:41.000000000 -0500 ++++ gobject-introspection-1.46.0/giscanner/ccompiler.py 2016-02-01 12:26:52.000000000 -0500 +@@ -128,7 +128,7 @@ + self.compiler.add_runtime_library_dir('.') + + # https://bugzilla.gnome.org/show_bug.cgi?id=625195 +- args.append('-Wl,-rpath=.') ++ args.append('-Wl,-rpath,.') + + # Ensure libraries are always linked as we are going to use ldd to work + # out their names later +@@ -140,7 +140,7 @@ + for library_path in libpaths: + args.append('-L' + library_path) + if os.path.isabs(library_path): +- args.append('-Wl,-rpath=' + library_path) ++ args.append('-Wl,-rpath,' + library_path) + + else: + # libtool case: assemble linker command arguments, like we did before diff --git a/pkgs/development/libraries/gtk+/3.x.nix b/pkgs/development/libraries/gtk+/3.x.nix index 248c4fa385e..f738f76ca02 100644 --- a/pkgs/development/libraries/gtk+/3.x.nix +++ b/pkgs/development/libraries/gtk+/3.x.nix @@ -3,11 +3,14 @@ , xlibs, x11, wayland, libxkbcommon, epoxy , xineramaSupport ? stdenv.isLinux , cupsSupport ? stdenv.isLinux, cups ? null +, darwin }: assert xineramaSupport -> xlibs.libXinerama != null; assert cupsSupport -> cups != null; +with stdenv.lib; + let ver_maj = "3.18"; ver_min = "5"; @@ -27,6 +30,7 @@ stdenv.mkDerivation rec { propagatedBuildInputs = with xlibs; with stdenv.lib; [ expat glib cairo pango gdk_pixbuf atk at_spi2_atk libXrandr libXrender libXcomposite libXi libXcursor ] ++ optionals stdenv.isLinux [ wayland ] + ++ optional stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ AppKit Cocoa ]) ++ optional xineramaSupport libXinerama ++ optional cupsSupport cups; @@ -37,6 +41,14 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + configureFlags = optional stdenv.isDarwin [ + "--disable-debug" + "--disable-dependency-tracking" + "--disable-glibtest" + "--with-gdktarget=quartz" + "--enable-quartz-backend" + ]; + postInstall = "rm -rf $out/share/gtk-doc"; passthru = { diff --git a/pkgs/development/libraries/pango/default.nix b/pkgs/development/libraries/pango/default.nix index 07a987c8ff6..bb619c7fda5 100644 --- a/pkgs/development/libraries/pango/default.nix +++ b/pkgs/development/libraries/pango/default.nix @@ -2,6 +2,8 @@ , fontconfig, freetype, libintlOrEmpty, gobjectIntrospection }: +with stdenv.lib; + let ver_maj = "1.38"; ver_min = "1"; @@ -29,6 +31,8 @@ stdenv.mkDerivation rec { # .../bin/sh: line 5: 14823 Abort trap: 6 srcdir=. PANGO_RC_FILE=./pangorc ${dir}$tst # FAIL: testiter + configureFlags = optional stdenv.isDarwin "--without-x"; + postInstall = "rm -rf $out/share/gtk-doc"; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/webkitgtk/2.4.nix b/pkgs/development/libraries/webkitgtk/2.4.nix index b1f47b80d78..e8f0a3d4da7 100644 --- a/pkgs/development/libraries/webkitgtk/2.4.nix +++ b/pkgs/development/libraries/webkitgtk/2.4.nix @@ -4,9 +4,15 @@ , libxml2, libsoup, libsecret, libxslt, harfbuzz , gst-plugins-base , withGtk2 ? false -, enableIntrospection ? true +, enableIntrospection ? !stdenv.isDarwin +, enableCredentialStorage ? !stdenv.isDarwin +, readline, libedit }: +assert stdenv.isDarwin -> !enableIntrospection; +assert stdenv.isDarwin -> !enableCredentialStorage; + +with stdenv.lib; stdenv.mkDerivation rec { name = "webkitgtk-${version}"; version = "2.4.9"; @@ -29,16 +35,32 @@ stdenv.mkDerivation rec { prePatch = '' patchShebangs Tools/gtk ''; - patches = [ ./webcore-svg-libxml-cflags.patch ]; + patches = [ + ./webcore-svg-libxml-cflags.patch + ] ++ optionals stdenv.isDarwin [ + ./impure-icucore.patch + ./quartz-webcore.patch + ./libc++.patch + ./plugin-none.patch + ]; configureFlags = with stdenv.lib; [ "--disable-geolocation" (optionalString enableIntrospection "--enable-introspection") - ] ++ stdenv.lib.optional withGtk2 [ + ] ++ optional withGtk2 [ "--with-gtk=2.0" + ] ++ optionals (withGtk2 || stdenv.isDarwin) [ "--disable-webkit2" + ] ++ optionals stdenv.isDarwin [ + "--disable-x11-target" + "--enable-quartz-target" + "--disable-web-audio" + ] ++ optionals (!enableCredentialStorage) [ + "--disable-credential-storage" ]; + NIX_CFLAGS_COMPILE = "-DU_NOEXCEPT="; + dontAddDisableDepTrack = true; nativeBuildInputs = [ @@ -47,10 +69,16 @@ stdenv.mkDerivation rec { ]; buildInputs = [ - gtk2 wayland libwebp enchant - libxml2 libsecret libxslt + gtk2 libwebp enchant + libxml2 libxslt gst-plugins-base sqlite - ]; + ] ++ optionals enableCredentialStorage [ + libsecret + ] ++ (if stdenv.isDarwin then [ + readline libedit + ] else [ + wayland + ]); propagatedBuildInputs = [ libsoup harfbuzz/*icu in *.la*/ diff --git a/pkgs/development/libraries/webkitgtk/adding-libintl.patch b/pkgs/development/libraries/webkitgtk/adding-libintl.patch new file mode 100644 index 00000000000..b6e8b073c9d --- /dev/null +++ b/pkgs/development/libraries/webkitgtk/adding-libintl.patch @@ -0,0 +1,10 @@ +--- webkitgtk-2.10.4-orig/Source/WebKit2/CMakeLists.txt 2015-11-11 02:42:51.000000000 -0500 ++++ webkitgtk-2.10.4/Source/WebKit2/CMakeLists.txt 2016-01-31 18:27:49.000000000 -0500 +@@ -738,6 +738,7 @@ + set(WebKit2_LIBRARIES + JavaScriptCore + WebCore ++ intl + ) + + set(PluginProcess_LIBRARIES diff --git a/pkgs/development/libraries/webkitgtk/default.nix b/pkgs/development/libraries/webkitgtk/default.nix index 5fd10816168..1abfcbb6c86 100644 --- a/pkgs/development/libraries/webkitgtk/default.nix +++ b/pkgs/development/libraries/webkitgtk/default.nix @@ -2,11 +2,13 @@ , pkgconfig, gettext, gobjectIntrospection, libnotify , gtk2, gtk3, wayland, libwebp, enchant , libxml2, libsoup, libsecret, libxslt, harfbuzz, libpthreadstubs -, enableGeoLocation ? true, geoclue2, sqlite -, gst-plugins-base +, enableGeoLocation ? false, geoclue2, sqlite +, enableCredentialStorage ? !stdenv.isDarwin +, gst-plugins-base, readline, libedit }: assert enableGeoLocation -> geoclue2 != null; +assert stdenv.isDarwin -> !enableCredentialStorage; with stdenv.lib; stdenv.mkDerivation rec { @@ -29,16 +31,37 @@ stdenv.mkDerivation rec { sha256 = "0mghsbfnmmf6nsf7cb3ah76s77aigkzf3k6kw96wgh6all6jdy6v"; }; - patches = [ ./finding-harfbuzz-icu.patch + patches = [ + ./finding-harfbuzz-icu.patch (fetchpatch { name = "glibc-isnan.patch"; url = "http://trac.webkit.org/changeset/194518/trunk/Source/JavaScriptCore" + "/runtime/Options.cpp?format=diff&new=194518"; sha256 = "0pzdv1zmlym751n9d310cx3yp752yzsc49cysbvgnrib4dh68nbm"; }) - ]; + ] ++ optional stdenv.isDarwin ./adding-libintl.patch; - cmakeFlags = [ "-DPORT=GTK" "-DUSE_LIBHYPHEN=0" ]; + cmakeFlags = [ + "-DPORT=GTK" + "-DUSE_LIBHYPHEN=OFF" + ] ++ optionals (!enableCredentialStorage) [ + "-DENABLE_CREDENTIAL_STORAGE=OFF" + ] ++ optionals (!enableGeoLocation) [ + "-DENABLE_GEOLOCATION=OFF" + ] ++ optionals stdenv.isDarwin [ + "-DENABLE_WEBKIT=ON" + "-DENABLE_X11_TARGET=OFF" + "-DENABLE_QUARTZ_TARGET=ON" + "-DENABLE_TOOLS=ON" + "-DENABLE_MINIBROWSER=ON" + "-DENABLE_PLUGIN_PROCESS_GTK2=OFF" + "-DENABLE_VIDEO=OFF" + "-DENABLE_WEB_AUDIO=OFF" + "-DENABLE_OPENGL=OFF" + "-DENABLE_INTROSPECTION=OFF" + "-DUSE_LIBNOTIFY=OFF" + "-DCMAKE_SHARED_LINKER_FLAGS=-L/path/to/nonexistent/folder" + ]; # XXX: WebKit2 missing include path for gst-plugins-base. # Filled: https://bugs.webkit.org/show_bug.cgi?id=148894 @@ -50,10 +73,16 @@ stdenv.mkDerivation rec { ]; buildInputs = [ - gtk2 wayland libwebp enchant libnotify - libxml2 libsecret libxslt harfbuzz libpthreadstubs + gtk2 libwebp enchant libnotify + libxml2 libxslt harfbuzz libpthreadstubs gst-plugins-base - ] ++ optional enableGeoLocation geoclue2; + ] ++ optionals enableCredentialStorage [ + libsecret + ] ++ (if stdenv.isDarwin then [ + readline libedit + ] else [ + wayland + ]) ++ optional enableGeoLocation geoclue2; propagatedBuildInputs = [ libsoup gtk3 diff --git a/pkgs/development/libraries/webkitgtk/impure-icucore.patch b/pkgs/development/libraries/webkitgtk/impure-icucore.patch new file mode 100644 index 00000000000..24bf690d8b8 --- /dev/null +++ b/pkgs/development/libraries/webkitgtk/impure-icucore.patch @@ -0,0 +1,12 @@ +diff -ru webkitgtk-2.4.9-orig/configure webkitgtk-2.4.9/configure +--- webkitgtk-2.4.9-orig/configure 2016-02-02 13:23:22.000000000 -0500 ++++ webkitgtk-2.4.9/configure 2016-02-02 13:24:13.000000000 -0500 +@@ -17715,7 +17715,7 @@ + case "$host" in + *-*-darwin*) + UNICODE_CFLAGS="-I$srcdir/Source/JavaScriptCore/icu -I$srcdir/Source/WebCore/icu" +- UNICODE_LIBS="-licucore" ++ UNICODE_LIBS="/usr/lib/libicucore.dylib" + ;; + *-*-mingw*) + diff --git a/pkgs/development/libraries/webkitgtk/libc++.patch b/pkgs/development/libraries/webkitgtk/libc++.patch new file mode 100644 index 00000000000..5a9df0ddae9 --- /dev/null +++ b/pkgs/development/libraries/webkitgtk/libc++.patch @@ -0,0 +1,20 @@ +--- webkitgtk-2.4.9-orig/GNUmakefile.in 2016-02-02 13:23:23.000000000 -0500 ++++ webkitgtk-2.4.9/GNUmakefile.in 2016-02-02 22:10:23.000000000 -0500 +@@ -23321,7 +23321,7 @@ + $(WINMM_LIBS) \ + -lm \ + -lpthread \ +- -lstdc++ ++ -lc++ + + Programs_minidom_LDFLAGS = \ + -no-install +@@ -23344,7 +23344,7 @@ + $(WINMM_LIBS) \ + -lm \ + -lpthread \ +- -lstdc++ ++ -lc++ + + Programs_LLIntOffsetsExtractor_LDFLAGS = \ + -no-install diff --git a/pkgs/development/libraries/webkitgtk/plugin-none.patch b/pkgs/development/libraries/webkitgtk/plugin-none.patch new file mode 100644 index 00000000000..5e2b36bf62d --- /dev/null +++ b/pkgs/development/libraries/webkitgtk/plugin-none.patch @@ -0,0 +1,38 @@ +--- webkitgtk-2.4.9-orig/GNUmakefile.in 2016-02-02 13:23:23.000000000 -0500 ++++ webkitgtk-2.4.9/GNUmakefile.in 2016-02-08 00:27:10.000000000 -0500 +@@ -4799,6 +4799,8 @@ + Source/WebCore/plugins/PluginViewBase.h \ + Source/WebCore/plugins/PluginView.cpp \ + Source/WebCore/plugins/PluginView.h \ ++ Source/WebCore/plugins/PluginViewNone.cpp \ ++ Source/WebCore/plugins/PluginPackageNone.cpp \ + Source/WebCore/plugins/npapi.h \ + Source/WebCore/plugins/npfunctions.h \ + Source/WebCore/plugins/npruntime.h \ +@@ -6375,6 +6377,8 @@ + Source/WebCore/plugins/libWebCore_la-PluginPackage.lo \ + Source/WebCore/plugins/libWebCore_la-PluginStream.lo \ + Source/WebCore/plugins/libWebCore_la-PluginView.lo \ ++ Source/WebCore/plugins/libWebCore_la-PluginViewNone.lo \ ++ Source/WebCore/plugins/libWebCore_la-PluginPackageNone.lo \ + Source/WebCore/rendering/libWebCore_la-AutoTableLayout.lo \ + Source/WebCore/rendering/libWebCore_la-BidiRun.lo \ + Source/WebCore/rendering/libWebCore_la-break_lines.lo \ +@@ -10796,6 +10800,8 @@ + Source/WebKit2/WebProcess/Plugins/libwebkit2gtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la-PluginProcessConnectionManager.lo \ + Source/WebKit2/WebProcess/Plugins/libwebkit2gtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la-PluginProxy.lo \ + Source/WebKit2/WebProcess/Plugins/libwebkit2gtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la-PluginView.lo \ ++ Source/WebKit2/WebProcess/Plugins/libwebkit2gtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la-PluginViewNone.lo \ ++ Source/WebKit2/WebProcess/Plugins/libwebkit2gtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la-PluginPackageNone.lo \ + Source/WebKit2/WebProcess/ResourceCache/libwebkit2gtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la-WebResourceCacheManager.lo \ + Source/WebKit2/WebProcess/Storage/libwebkit2gtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la-StorageAreaImpl.lo \ + Source/WebKit2/WebProcess/Storage/libwebkit2gtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la-StorageAreaMap.lo \ +@@ -19503,6 +19509,8 @@ + Source/WebCore/plugins/PluginViewBase.h \ + Source/WebCore/plugins/PluginView.cpp \ + Source/WebCore/plugins/PluginView.h \ ++ Source/WebCore/plugins/PluginViewNone.cpp \ ++ Source/WebCore/plugins/PluginPackageNone.cpp \ + Source/WebCore/plugins/npapi.h \ + Source/WebCore/plugins/npfunctions.h \ + Source/WebCore/plugins/npruntime.h \ diff --git a/pkgs/development/libraries/webkitgtk/quartz-webcore.patch b/pkgs/development/libraries/webkitgtk/quartz-webcore.patch new file mode 100644 index 00000000000..a7bf859d6c6 --- /dev/null +++ b/pkgs/development/libraries/webkitgtk/quartz-webcore.patch @@ -0,0 +1,22 @@ +--- webkitgtk-2.4.9-orig/Source/WebCore/plugins/PluginView.cpp 2016-02-02 13:23:23.000000000 -0500 ++++ webkitgtk-2.4.9/Source/WebCore/plugins/PluginView.cpp 2016-02-02 18:28:07.000000000 -0500 +@@ -839,7 +839,7 @@ + #if defined(XP_MACOSX) + , m_contextRef(0) + #endif +-#if defined(XP_UNIX) && ENABLE(NETSCAPE_PLUGIN_API) ++#if defined(X11) && ENABLE(NETSCAPE_PLUGIN_API) + , m_hasPendingGeometryChange(true) + , m_drawable(0) + , m_visual(0) +--- webkitgtk-2.4.9-orig/Source/WebCore/plugins/PluginView.h 2016-02-02 13:23:23.000000000 -0500 ++++ webkitgtk-2.4.9/Source/WebCore/plugins/PluginView.h 2016-02-02 18:26:37.000000000 -0500 +@@ -378,7 +378,7 @@ + void setNPWindowIfNeeded(); + #endif + +-#if defined(XP_UNIX) && ENABLE(NETSCAPE_PLUGIN_API) ++#if PLATFORM(X11) && ENABLE(NETSCAPE_PLUGIN_API) + bool m_hasPendingGeometryChange; + Pixmap m_drawable; + Visual* m_visual;