diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index d85d9e481f2b..981ed156b343 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -1,3 +1,6 @@
+###### Motivation for this change
+
+
###### Things done
- [ ] Tested using sandboxing
diff --git a/doc/configuration.xml b/doc/configuration.xml
index ffeb7cf554bd..caff1e510cdd 100644
--- a/doc/configuration.xml
+++ b/doc/configuration.xml
@@ -46,10 +46,10 @@ $ export NIXPKGS_ALLOW_UNFREE=1
allowUnfreePredicate = (pkg: ...);
- Example to allow flash player only:
+ Example to allow flash player and visual studio code only:
-allowUnfreePredicate = (pkg: pkgs.lib.hasPrefix "flashplayer-" pkg.name);
+allowUnfreePredicate = with builtins; (pkg: elem (parseDrvName pkg.name).name [ "flashplayer" "vscode" ]);
diff --git a/lib/lists.nix b/lib/lists.nix
index deb7dcfde428..40475e7655d3 100644
--- a/lib/lists.nix
+++ b/lib/lists.nix
@@ -24,7 +24,7 @@ rec {
Example:
concat = fold (a: b: a + b) "z"
concat [ "a" "b" "c" ]
- => "abcnul"
+ => "abcz"
*/
fold = op: nul: list:
let
diff --git a/lib/sources.nix b/lib/sources.nix
index 4ed16d65d2b7..6b19b192dfd6 100644
--- a/lib/sources.nix
+++ b/lib/sources.nix
@@ -29,4 +29,30 @@ rec {
in type == "directory" || lib.any (ext: lib.hasSuffix ext base) exts;
in builtins.filterSource filter path;
+ # Get the commit id of a git repo
+ # Example: commitIdFromGitRepo
+ commitIdFromGitRepo =
+ let readCommitFromFile = path: file:
+ with builtins;
+ let fileName = toString path + "/" + file;
+ packedRefsName = toString path + "/packed-refs";
+ in if lib.pathExists fileName
+ then
+ let fileContent = readFile fileName;
+ # Sometimes git stores the commitId directly in the file but
+ # sometimes it stores something like: «ref: refs/heads/branch-name»
+ matchRef = match "^ref: (.*)\n$" fileContent;
+ in if isNull matchRef
+ then lib.removeSuffix "\n" fileContent
+ else readCommitFromFile path (lib.head matchRef)
+ # Sometimes, the file isn't there at all and has been packed away in the
+ # packed-refs file, so we have to grep through it:
+ else if lib.pathExists packedRefsName
+ then
+ let packedRefs = lib.splitString "\n" (readFile packedRefsName);
+ matchRule = match ("^(.*) " + file + "$");
+ matchedRefs = lib.flatten (lib.filter (m: ! (isNull m)) (map matchRule packedRefs));
+ in lib.head matchedRefs
+ else throw ("Not a .git directory: " + path);
+ in lib.flip readCommitFromFile "HEAD";
}
diff --git a/lib/types.nix b/lib/types.nix
index b4d29ac84d28..91b39f3a9cf8 100644
--- a/lib/types.nix
+++ b/lib/types.nix
@@ -114,13 +114,17 @@ rec {
name = "list of ${elemType.name}s";
check = isList;
merge = loc: defs:
- map (x: x.value) (filter (x: x ? value) (concatLists (imap (n: def: imap (m: def':
- (mergeDefinitions
- (loc ++ ["[definition ${toString n}-entry ${toString m}]"])
- elemType
- [{ inherit (def) file; value = def'; }]
- ).optionalValue
- ) def.value) defs)));
+ map (x: x.value) (filter (x: x ? value) (concatLists (imap (n: def:
+ if isList def.value then
+ imap (m: def':
+ (mergeDefinitions
+ (loc ++ ["[definition ${toString n}-entry ${toString m}]"])
+ elemType
+ [{ inherit (def) file; value = def'; }]
+ ).optionalValue
+ ) def.value
+ else
+ throw "The option value `${showOption loc}' in `${def.file}' is not a list.") defs)));
getSubOptions = prefix: elemType.getSubOptions (prefix ++ ["*"]);
getSubModules = elemType.getSubModules;
substSubModules = m: listOf (elemType.substSubModules m);
diff --git a/nixos/doc/manual/configuration/luks-file-systems.xml b/nixos/doc/manual/configuration/luks-file-systems.xml
index 45475dbcd446..88b506d5323d 100644
--- a/nixos/doc/manual/configuration/luks-file-systems.xml
+++ b/nixos/doc/manual/configuration/luks-file-systems.xml
@@ -9,21 +9,21 @@
NixOS supports file systems that are encrypted using
LUKS (Linux Unified Key Setup). For example,
here is how you create an encrypted Ext4 file system on the device
-/dev/sda2:
+/dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d:
-$ cryptsetup luksFormat /dev/sda2
+$ cryptsetup luksFormat /dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d
WARNING!
========
-This will overwrite data on /dev/sda2 irrevocably.
+This will overwrite data on /dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d irrevocably.
Are you sure? (Type uppercase yes): YES
Enter LUKS passphrase: ***
Verify passphrase: ***
-$ cryptsetup luksOpen /dev/sda2 crypted
-Enter passphrase for /dev/sda2: ***
+$ cryptsetup luksOpen /dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d crypted
+Enter passphrase for /dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d: ***
$ mkfs.ext4 /dev/mapper/crypted
@@ -33,7 +33,7 @@ as /, add the following to
configuration.nix:
-boot.initrd.luks.devices = [ { device = "/dev/sda2"; name = "crypted"; } ];
+boot.initrd.luks.devices.crypted.device = "/dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d";
fileSystems."/".device = "/dev/mapper/crypted";
diff --git a/nixos/doc/manual/man-nixos-generate-config.xml b/nixos/doc/manual/man-nixos-generate-config.xml
index 140642bc9c9c..993a932ddfbe 100644
--- a/nixos/doc/manual/man-nixos-generate-config.xml
+++ b/nixos/doc/manual/man-nixos-generate-config.xml
@@ -113,8 +113,8 @@
- Omit everything concerning file system information
- (which includes swap devices) from the hardware configuration.
+ Omit everything concerning file systems and swap devices
+ from the hardware configuration.
diff --git a/nixos/doc/manual/release-notes/rl-1609.xml b/nixos/doc/manual/release-notes/rl-1609.xml
index 22dea8029242..b08688a66959 100644
--- a/nixos/doc/manual/release-notes/rl-1609.xml
+++ b/nixos/doc/manual/release-notes/rl-1609.xml
@@ -30,7 +30,10 @@ following incompatible changes:
- todo
+ Shell aliases for systemd sub-commands
+ were dropped:
+ start, stop,
+ restart, status.
diff --git a/nixos/lib/test-driver/Logger.pm b/nixos/lib/test-driver/Logger.pm
index 6e62fdfd7708..3fe5ef67c144 100644
--- a/nixos/lib/test-driver/Logger.pm
+++ b/nixos/lib/test-driver/Logger.pm
@@ -3,6 +3,7 @@ package Logger;
use strict;
use Thread::Queue;
use XML::Writer;
+use Encode qw(decode encode);
sub new {
my ($class) = @_;
@@ -56,7 +57,8 @@ sub nest {
sub sanitise {
my ($s) = @_;
$s =~ s/[[:cntrl:]\xff]//g;
- return $s;
+ $s = decode('UTF-8', $s, Encode::FB_DEFAULT);
+ return encode('UTF-8', $s, Encode::FB_CROAK);
}
sub log {
diff --git a/nixos/lib/test-driver/Machine.pm b/nixos/lib/test-driver/Machine.pm
index 37d6518fd8d7..1a243918c22f 100644
--- a/nixos/lib/test-driver/Machine.pm
+++ b/nixos/lib/test-driver/Machine.pm
@@ -382,9 +382,17 @@ sub waitForUnit {
my $state = $info->{ActiveState};
die "unit ‘$unit’ reached state ‘$state’\n" if $state eq "failed";
if ($state eq "inactive") {
+ # If there are no pending jobs, then assume this unit
+ # will never reach active state.
my ($status, $jobs) = $self->execute("systemctl list-jobs --full 2>&1");
- die "unit ‘$unit’ is inactive and there are no pending jobs\n"
- if $jobs =~ /No jobs/; # FIXME: fragile
+ if ($jobs =~ /No jobs/) { # FIXME: fragile
+ # Handle the case where the unit may have started
+ # between the previous getUnitInfo() and
+ # list-jobs.
+ my $info2 = $self->getUnitInfo($unit);
+ die "unit ‘$unit’ is inactive and there are no pending jobs\n"
+ if $info2->{ActiveState} eq $state;
+ }
}
return 1 if $state eq "active";
};
diff --git a/nixos/modules/config/ldap.nix b/nixos/modules/config/ldap.nix
index a6657768e061..7064ef64b4c8 100644
--- a/nixos/modules/config/ldap.nix
+++ b/nixos/modules/config/ldap.nix
@@ -192,7 +192,7 @@ in
system.activationScripts = mkIf insertLdapPassword {
ldap = stringAfter [ "etc" "groups" "users" ] ''
if test -f "${cfg.bind.password}" ; then
- echo "bindpw "$(cat ${cfg.bind.password})"" | cat ${ldapConfig} - > /etc/ldap.conf.bindpw
+ echo "bindpw "$(cat ${cfg.bind.password})"" | cat ${ldapConfig.source} - > /etc/ldap.conf.bindpw
mv -fT /etc/ldap.conf.bindpw /etc/ldap.conf
chmod 600 /etc/ldap.conf
fi
diff --git a/nixos/modules/config/shells-environment.nix b/nixos/modules/config/shells-environment.nix
index 89b8a04b5e7c..9642981803bf 100644
--- a/nixos/modules/config/shells-environment.nix
+++ b/nixos/modules/config/shells-environment.nix
@@ -150,10 +150,6 @@ in
system.build.binsh = pkgs.bashInteractive;
- # Ensure TERMINFO is set appropriately *before* user shells are run,
- # as they may depend on it
- environment.sessionVariables.TERMINFO = "/run/current-system/sw/share/terminfo";
-
# Set session variables in the shell as well. This is usually
# unnecessary, but it allows changes to session variables to take
# effect without restarting the session (e.g. by opening a new
diff --git a/nixos/modules/installer/cd-dvd/iso-image.nix b/nixos/modules/installer/cd-dvd/iso-image.nix
index c31ded977e68..bdb3c227ecc8 100644
--- a/nixos/modules/installer/cd-dvd/iso-image.nix
+++ b/nixos/modules/installer/cd-dvd/iso-image.nix
@@ -79,7 +79,7 @@ let
echo "options init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams} nomodeset" >> $out/loader/entries/nixos-livecd-nomodeset.conf
echo "default nixos-livecd" > $out/loader/loader.conf
- echo "timeout ${builtins.toString config.boot.loader.gummiboot.timeout}" >> $out/loader/loader.conf
+ echo "timeout ${builtins.toString config.boot.loader.timeout}" >> $out/loader/loader.conf
'';
efiImg = pkgs.runCommand "efi-image_eltorito" { buildInputs = [ pkgs.mtools pkgs.libfaketime ]; }
diff --git a/nixos/modules/installer/tools/nixos-generate-config.pl b/nixos/modules/installer/tools/nixos-generate-config.pl
index 8e75f8d3c40a..ca7fb71ba9b8 100644
--- a/nixos/modules/installer/tools/nixos-generate-config.pl
+++ b/nixos/modules/installer/tools/nixos-generate-config.pl
@@ -1,5 +1,6 @@
#! @perl@
+use strict;
use Cwd 'abs_path';
use File::Spec;
use File::Path;
@@ -69,6 +70,7 @@ for (my $n = 0; $n < scalar @ARGV; $n++) {
my @attrs = ();
my @kernelModules = ();
my @initrdKernelModules = ();
+my @initrdAvailableKernelModules = ();
my @modulePackages = ();
my @imports;
@@ -379,7 +381,7 @@ EOF
# Is this a btrfs filesystem?
if ($fsType eq "btrfs") {
my ($status, @id_info) = runCommand("btrfs subvol show $rootDir$mountPoint");
- if ($status != 0 || join("", @msg) =~ /ERROR:/) {
+ if ($status != 0 || join("", @id_info) =~ /ERROR:/) {
die "Failed to retrieve subvolume info for $mountPoint\n";
}
my @ids = join("", @id_info) =~ m/Subvolume ID:[ \t\n]*([^ \t\n]*)/;
@@ -408,7 +410,7 @@ EOF
EOF
if (scalar @extraOptions > 0) {
- $fileSystems .= < 'quiet') =~ /^CRYPT-LUKS/)
+ {
+ my @slaves = glob("/sys/class/block/$deviceName/slaves/*");
+ if (scalar @slaves == 1) {
+ my $slave = "/dev/" . basename($slaves[0]);
+ if (-e $slave) {
+ my $dmName = read_file("/sys/class/block/$deviceName/dm/name");
+ chomp $dmName;
+ $fileSystems .= " boot.initrd.luks.devices.\"$dmName\".device = \"${\(findStableDevPath $slave)}\";\n\n";
+ }
+ }
+ }
+ }
}
@@ -440,7 +461,7 @@ sub toNixList {
sub multiLineList {
my $indent = shift;
return " [ ]" if !@_;
- $res = "\n${indent}[ ";
+ my $res = "\n${indent}[ ";
my $first = 1;
foreach my $s (@_) {
$res .= "$indent " if !$first;
@@ -457,7 +478,7 @@ my $modulePackages = toNixList(uniq @modulePackages);
my $fsAndSwap = "";
if (!$noFilesystems) {
- $fsAndSwap = "\n${fileSystems} ";
+ $fsAndSwap = "\n$fileSystems ";
$fsAndSwap .= "swapDevices =" . multiLineList(" ", @swapDevices) . ";\n";
}
@@ -494,7 +515,7 @@ if ($showHardwareConfig) {
if ($force || ! -e $fn) {
print STDERR "writing $fn...\n";
- my $bootloaderConfig = "";
+ my $bootLoaderConfig = "";
if (-e "/sys/firmware/efi/efivars") {
$bootLoaderConfig = <hashedPassword overrides .
+ To generate hashed password install mkpasswd
+ package and run mkpasswd -m sha-512.
+ '';
+ };
+
+ acl = mkOption {
+ type = types.listOf types.string;
+ example = [ "topic read A/B" "topic A/#" ];
+ description = ''
+ Control client access to topics on the broker.
+ '';
+ };
+ };
+ });
+ example = { john = { password = "123456"; acl = [ "topic readwrite john/#" ]; }; };
+ description = ''
+ A set of users and their passwords and ACLs.
+ '';
+ };
+
+ allowAnonymous = mkOption {
+ default = false;
+ example = true;
+ type = types.bool;
+ description = ''
+ Allow clients to connect without authentication.
+ '';
+ };
+
+ extraConf = mkOption {
+ default = "";
+ type = types.lines;
+ description = ''
+ Extra config to append to `mosquitto.conf` file.
+ '';
+ };
+
+ aclExtraConf = mkOption {
+ default = "";
+ type = types.lines;
+ description = ''
+ Extra config to prepend to the ACL file.
+ '';
+ };
+
+ };
+ };
+
+
+ ###### Implementation
+
+ config = mkIf cfg.enable {
+
+ systemd.services.mosquitto = {
+ description = "Mosquitto MQTT Broker Daemon";
+ wantedBy = [ "multi-user.target" ];
+ after = [ "network.target" ];
+ serviceConfig = {
+ Type = "forking";
+ User = "mosquitto";
+ Group = "mosquitto";
+ RuntimeDirectory = "mosquitto";
+ WorkingDirectory = cfg.dataDir;
+ Restart = "on-failure";
+ ExecStart = "${pkgs.mosquitto}/bin/mosquitto -c ${mosquittoConf} -d";
+ ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
+ PIDFile = "/run/mosquitto/pid";
+ };
+ preStart = ''
+ rm -f ${cfg.dataDir}/passwd
+ touch ${cfg.dataDir}/passwd
+ '' + concatStringsSep "\n" (
+ mapAttrsToList (n: c:
+ if c.hashedPassword != null then
+ "echo '${n}:${c.hashedPassword}' > ${cfg.dataDir}/passwd"
+ else optionalString (c.password != null)
+ "${pkgs.mosquitto}/bin/mosquitto_passwd -b ${cfg.dataDir}/passwd ${n} ${c.password}"
+ ) cfg.users);
+ };
+
+ users.extraUsers.mosquitto = {
+ description = "Mosquitto MQTT Broker Daemon owner";
+ group = "mosquitto";
+ uid = config.ids.uids.mosquitto;
+ home = cfg.dataDir;
+ createHome = true;
+ };
+
+ users.extraGroups.mosquitto.gid = config.ids.gids.mosquitto;
+
+ };
+}
diff --git a/nixos/modules/services/networking/ntpd.nix b/nixos/modules/services/networking/ntpd.nix
index 5256fc9bc071..c8a085679280 100644
--- a/nixos/modules/services/networking/ntpd.nix
+++ b/nixos/modules/services/networking/ntpd.nix
@@ -82,6 +82,8 @@ in
{ description = "NTP Daemon";
wantedBy = [ "multi-user.target" ];
+ wants = [ "time-sync.target" ];
+ before = [ "time-sync.target" ];
preStart =
''
diff --git a/nixos/modules/services/networking/openntpd.nix b/nixos/modules/services/networking/openntpd.nix
index e53fc574fbea..a8625fa2fa91 100644
--- a/nixos/modules/services/networking/openntpd.nix
+++ b/nixos/modules/services/networking/openntpd.nix
@@ -64,7 +64,8 @@ in
systemd.services.openntpd = {
description = "OpenNTP Server";
wantedBy = [ "multi-user.target" ];
- wants = [ "network-online.target" ];
+ wants = [ "network-online.target" "time-sync.target" ];
+ before = [ "time-sync.target" ];
after = [ "dnsmasq.service" "bind.service" "network-online.target" ];
serviceConfig.ExecStart = "${package}/sbin/ntpd -d -f ${cfgFile} ${cfg.extraOptions}";
};
diff --git a/nixos/modules/services/security/fail2ban.nix b/nixos/modules/services/security/fail2ban.nix
index 33c4910fc0ce..22e3bb0066cc 100644
--- a/nixos/modules/services/security/fail2ban.nix
+++ b/nixos/modules/services/security/fail2ban.nix
@@ -102,7 +102,7 @@ in
partOf = optional config.networking.firewall.enable "firewall.service";
restartTriggers = [ fail2banConf jailConf ];
- path = [ pkgs.fail2ban pkgs.iptables ];
+ path = [ pkgs.fail2ban pkgs.iptables pkgs.iproute ];
preStart =
''
diff --git a/nixos/modules/services/x11/display-managers/default.nix b/nixos/modules/services/x11/display-managers/default.nix
index 376f9f4b46b5..862ddc1d13f2 100644
--- a/nixos/modules/services/x11/display-managers/default.nix
+++ b/nixos/modules/services/x11/display-managers/default.nix
@@ -32,6 +32,12 @@ let
''
#! ${pkgs.bash}/bin/bash
+ ${optionalString cfg.displayManager.logToJournal ''
+ if [ -z "$_DID_SYSTEMD_CAT" ]; then
+ _DID_SYSTEMD_CAT=1 exec ${config.systemd.package}/bin/systemd-cat -t xsession -- "$0" "$1"
+ fi
+ ''}
+
. /etc/profile
cd "$HOME"
@@ -39,7 +45,7 @@ let
sessionType="$1"
if [ "$sessionType" = default ]; then sessionType=""; fi
- ${optionalString (!cfg.displayManager.job.logsXsession) ''
+ ${optionalString (!cfg.displayManager.job.logsXsession && !cfg.displayManager.logToJournal) ''
exec > ~/.xsession-errors 2>&1
''}
@@ -83,6 +89,8 @@ let
# .local/share doesn't exist yet.
mkdir -p $HOME/.local/share
+ unset _DID_SYSTEMD_CAT
+
${cfg.displayManager.sessionCommands}
# Allow the user to execute commands at the beginning of the X session.
@@ -278,6 +286,16 @@ in
};
+ logToJournal = mkOption {
+ type = types.bool;
+ default = true;
+ description = ''
+ By default, the stdout/stderr of sessions is written
+ to ~/.xsession-errors. When this option
+ is enabled, it will instead be written to the journal.
+ '';
+ };
+
};
};
diff --git a/nixos/modules/services/x11/display-managers/kdm.nix b/nixos/modules/services/x11/display-managers/kdm.nix
index 9b937ff7ee18..d9f7f8f0dfc4 100644
--- a/nixos/modules/services/x11/display-managers/kdm.nix
+++ b/nixos/modules/services/x11/display-managers/kdm.nix
@@ -139,7 +139,7 @@ in
mkdir -m 0755 -p /var/lib/kdm
chown kdm /var/lib/kdm
${(optionalString (config.system.boot.loader.id == "grub" && config.system.build.grub != null) "PATH=${config.system.build.grub}/sbin:$PATH ") +
- "KDEDIRS=/run/current-system/sw exec ${kdebase_workspace}/bin/kdm -config ${kdmrc} -nodaemon"}
+ "KDEDIRS=/run/current-system/sw exec ${kdebase_workspace}/bin/kdm -config ${kdmrc} -nodaemon -logfile /dev/stderr"}
'';
logsXsession = true;
};
diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix
index 4f65ed72d36e..82d3e31e2a01 100644
--- a/nixos/modules/services/x11/xserver.nix
+++ b/nixos/modules/services/x11/xserver.nix
@@ -520,6 +520,7 @@ in
serviceConfig = {
Restart = "always";
RestartSec = "200ms";
+ SyslogIdentifier = "display-manager";
};
};
@@ -527,10 +528,11 @@ in
[ "-terminate"
"-config ${configFile}"
"-xkbdir" "${cfg.xkbDir}"
+ # Log at the default verbosity level to stderr rather than /var/log/X.*.log.
+ "-verbose" "3" "-logfile" "/dev/null"
] ++ optional (cfg.display != null) ":${toString cfg.display}"
++ optional (cfg.tty != null) "vt${toString cfg.tty}"
++ optional (cfg.dpi != null) "-dpi ${toString cfg.dpi}"
- ++ optionals (cfg.display != null) [ "-logfile" "/var/log/X.${toString cfg.display}.log" ]
++ optional (!cfg.enableTCP) "-nolisten tcp";
services.xserver.modules =
diff --git a/nixos/modules/system/boot/loader/grub/grub.nix b/nixos/modules/system/boot/loader/grub/grub.nix
index 7fc467b60f7b..2e06a684f0cc 100644
--- a/nixos/modules/system/boot/loader/grub/grub.nix
+++ b/nixos/modules/system/boot/loader/grub/grub.nix
@@ -48,12 +48,13 @@ let
bootPath = args.path;
storePath = config.boot.loader.grub.storePath;
bootloaderId = if args.efiBootloaderId == null then "NixOS${efiSysMountPoint'}" else args.efiBootloaderId;
+ timeout = if config.boot.loader.timeout == null then -1 else config.boot.loader.timeout;
inherit efiSysMountPoint;
inherit (args) devices;
inherit (efi) canTouchEfiVariables;
inherit (cfg)
version extraConfig extraPerEntryConfig extraEntries
- extraEntriesBeforeNixOS extraPrepareConfig configurationLimit copyKernels timeout
+ extraEntriesBeforeNixOS extraPrepareConfig configurationLimit copyKernels
default fsIdentifier efiSupport gfxmodeEfi gfxmodeBios;
path = (makeBinPath ([
pkgs.coreutils pkgs.gnused pkgs.gnugrep pkgs.findutils pkgs.diffutils pkgs.btrfs-progs
@@ -313,14 +314,6 @@ in
'';
};
- timeout = mkOption {
- default = if (config.boot.loader.timeout != null) then config.boot.loader.timeout else -1;
- type = types.int;
- description = ''
- Timeout (in seconds) until GRUB boots the default menu item.
- '';
- };
-
default = mkOption {
default = 0;
type = types.int;
diff --git a/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix b/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix
index 69ad2c6d44f4..aec697da4a1a 100644
--- a/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix
+++ b/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix
@@ -16,7 +16,7 @@ let
nix = config.nix.package.out;
- timeout = if cfg.timeout != null then cfg.timeout else "";
+ timeout = if config.boot.loader.timeout != null then config.boot.loader.timeout else "";
inherit (efi) efiSysMountPoint canTouchEfiVariables;
};
@@ -29,20 +29,6 @@ in {
description = "Whether to enable the gummiboot UEFI boot manager";
};
-
- timeout = mkOption {
- default = if config.boot.loader.timeout == null then 10000 else config.boot.loader.timeout;
-
- example = 4;
-
- type = types.nullOr types.int;
-
- description = ''
- Timeout (in seconds) for how long to show the menu (null if none).
- Note that even with no timeout the menu can be forced if the space
- key is pressed during bootup
- '';
- };
};
config = mkIf cfg.enable {
diff --git a/nixos/modules/system/boot/luksroot.nix b/nixos/modules/system/boot/luksroot.nix
index ad53f25d61b8..8dad09c89207 100644
--- a/nixos/modules/system/boot/luksroot.nix
+++ b/nixos/modules/system/boot/luksroot.nix
@@ -5,7 +5,7 @@ with lib;
let
luks = config.boot.initrd.luks;
- openCommand = { name, device, header, keyFile, keyFileSize, allowDiscards, yubikey, ... }: ''
+ openCommand = name': { name, device, header, keyFile, keyFileSize, allowDiscards, yubikey, ... }: assert name' == name; ''
# Wait for luksRoot to appear, e.g. if on a usb drive.
# XXX: copied and adapted from stage-1-init.sh - should be
# available as a function.
@@ -192,9 +192,8 @@ let
''}
'';
- isPreLVM = f: f.preLVM;
- preLVM = filter isPreLVM luks.devices;
- postLVM = filter (f: !(isPreLVM f)) luks.devices;
+ preLVM = filterAttrs (n: v: v.preLVM) luks.devices;
+ postLVM = filterAttrs (n: v: !v.preLVM) luks.devices;
in
{
@@ -228,31 +227,31 @@ in
};
boot.initrd.luks.devices = mkOption {
- default = [ ];
- example = literalExample ''[ { name = "luksroot"; device = "/dev/sda3"; preLVM = true; } ]'';
+ default = { };
+ example = { "luksroot".device = "/dev/disk/by-uuid/430e9eff-d852-4f68-aa3b-2fa3599ebe08"; };
description = ''
- The list of devices that should be decrypted using LUKS before trying to mount the
- root partition. This works for both LVM-over-LUKS and LUKS-over-LVM setups.
-
- The devices are decrypted to the device mapper names defined.
-
- Make sure that initrd has the crypto modules needed for decryption.
+ The encrypted disk that should be opened before the root
+ filesystem is mounted. Both LVM-over-LUKS and LUKS-over-LVM
+ setups are sypported. The unencrypted devices can be accessed as
+ /dev/mapper/name.
'';
- type = types.listOf types.optionSet;
+ type = types.loaOf types.optionSet;
- options = {
+ options = { name, ... }: { options = {
name = mkOption {
+ visible = false;
+ default = name;
example = "luksroot";
type = types.str;
- description = "Named to be used for the generated device in /dev/mapper.";
+ description = "Name of the unencrypted device in /dev/mapper.";
};
device = mkOption {
- example = "/dev/sda2";
+ example = "/dev/disk/by-uuid/430e9eff-d852-4f68-aa3b-2fa3599ebe08";
type = types.str;
- description = "Path of the underlying block device.";
+ description = "Path of the underlying encrypted block device.";
};
header = mkOption {
@@ -289,6 +288,7 @@ in
'';
};
+ # FIXME: get rid of this option.
preLVM = mkOption {
default = true;
type = types.bool;
@@ -394,7 +394,7 @@ in
};
};
- };
+ }; };
};
boot.initrd.luks.yubikeySupport = mkOption {
@@ -408,7 +408,7 @@ in
};
};
- config = mkIf (luks.devices != []) {
+ config = mkIf (luks.devices != {}) {
# actually, sbp2 driver is the one enabling the DMA attack, but this needs to be tested
boot.blacklistedKernelModules = optionals luks.mitigateDMAAttacks
@@ -463,8 +463,8 @@ in
''}
'';
- boot.initrd.preLVMCommands = concatMapStrings openCommand preLVM;
- boot.initrd.postDeviceCommands = concatMapStrings openCommand postLVM;
+ boot.initrd.preLVMCommands = concatStrings (mapAttrsToList openCommand preLVM);
+ boot.initrd.postDeviceCommands = concatStrings (mapAttrsToList openCommand postLVM);
environment.systemPackages = [ pkgs.cryptsetup ];
};
diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix
index e7f892945315..076bbca850d9 100644
--- a/nixos/modules/system/boot/systemd.nix
+++ b/nixos/modules/system/boot/systemd.nix
@@ -753,13 +753,6 @@ in
"TMPFS_XATTR" "SECCOMP"
];
- environment.shellAliases =
- { start = "systemctl start";
- stop = "systemctl stop";
- restart = "systemctl restart";
- status = "systemctl status";
- };
-
users.extraGroups.systemd-journal.gid = config.ids.gids.systemd-journal;
users.extraUsers.systemd-journal-gateway.uid = config.ids.uids.systemd-journal-gateway;
users.extraGroups.systemd-journal-gateway.gid = config.ids.gids.systemd-journal-gateway;
diff --git a/nixos/modules/tasks/cpu-freq.nix b/nixos/modules/tasks/cpu-freq.nix
index 70bbee8474eb..1f4d1db33cef 100644
--- a/nixos/modules/tasks/cpu-freq.nix
+++ b/nixos/modules/tasks/cpu-freq.nix
@@ -38,7 +38,7 @@ in
description = "CPU Frequency Governor Setup";
after = [ "systemd-modules-load.service" ];
wantedBy = [ "multi-user.target" ];
- path = [ cpupower ];
+ path = [ cpupower config.system.sbin.modprobe ];
unitConfig.ConditionVirtualization = false;
serviceConfig = {
Type = "oneshot";
diff --git a/nixos/modules/testing/test-instrumentation.nix b/nixos/modules/testing/test-instrumentation.nix
index f0f56b17f20f..40a40c8a5700 100644
--- a/nixos/modules/testing/test-instrumentation.nix
+++ b/nixos/modules/testing/test-instrumentation.nix
@@ -113,6 +113,8 @@ let kernel = config.boot.kernelPackages.kernel; in
# Make it easy to log in as root when running the test interactively.
users.extraUsers.root.initialHashedPassword = mkOverride 150 "";
+ services.xserver.displayManager.logToJournal = true;
+
};
}
diff --git a/nixos/modules/virtualisation/amazon-image.nix b/nixos/modules/virtualisation/amazon-image.nix
index 5d99bccb0e93..9e8417cde1df 100644
--- a/nixos/modules/virtualisation/amazon-image.nix
+++ b/nixos/modules/virtualisation/amazon-image.nix
@@ -32,8 +32,8 @@ let cfg = config.ec2; in
# Generate a GRUB menu. Amazon's pv-grub uses this to boot our kernel/initrd.
boot.loader.grub.version = if cfg.hvm then 2 else 1;
boot.loader.grub.device = if cfg.hvm then "/dev/xvda" else "nodev";
- boot.loader.grub.timeout = 0;
boot.loader.grub.extraPerEntryConfig = mkIf (!cfg.hvm) "root (hd0)";
+ boot.loader.timeout = 0;
boot.initrd.postDeviceCommands =
''
diff --git a/nixos/modules/virtualisation/azure-common.nix b/nixos/modules/virtualisation/azure-common.nix
index eedf115ee150..70a3d752f6d1 100644
--- a/nixos/modules/virtualisation/azure-common.nix
+++ b/nixos/modules/virtualisation/azure-common.nix
@@ -10,10 +10,10 @@ with lib;
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" ];
- # Generate a GRUB menu.
+ # Generate a GRUB menu.
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.version = 2;
- boot.loader.grub.timeout = 0;
+ boot.loader.timeout = 0;
# Don't put old configurations in the GRUB menu. The user has no
# way to select them anyway.
diff --git a/nixos/modules/virtualisation/brightbox-image.nix b/nixos/modules/virtualisation/brightbox-image.nix
index bcafc06e47c0..456a19fc2512 100644
--- a/nixos/modules/virtualisation/brightbox-image.nix
+++ b/nixos/modules/virtualisation/brightbox-image.nix
@@ -94,7 +94,7 @@ in
# Generate a GRUB menu. Amazon's pv-grub uses this to boot our kernel/initrd.
boot.loader.grub.device = "/dev/vda";
- boot.loader.grub.timeout = 0;
+ boot.loader.timeout = 0;
# Don't put old configurations in the GRUB menu. The user has no
# way to select them anyway.
diff --git a/nixos/modules/virtualisation/containers.nix b/nixos/modules/virtualisation/containers.nix
index fca21a8610be..dc65e4940549 100644
--- a/nixos/modules/virtualisation/containers.nix
+++ b/nixos/modules/virtualisation/containers.nix
@@ -338,7 +338,7 @@ in
fi
''}
-
+ rm -f $root/var/lib/private/host-notify
# Run systemd-nspawn without startup notification (we'll
# wait for the container systemd to signal readiness).
diff --git a/nixos/modules/virtualisation/google-compute-image.nix b/nixos/modules/virtualisation/google-compute-image.nix
index 38417315df5b..2b522dbe2660 100644
--- a/nixos/modules/virtualisation/google-compute-image.nix
+++ b/nixos/modules/virtualisation/google-compute-image.nix
@@ -102,7 +102,7 @@ in
# Generate a GRUB menu. Amazon's pv-grub uses this to boot our kernel/initrd.
boot.loader.grub.device = "/dev/sda";
- boot.loader.grub.timeout = 0;
+ boot.loader.timeout = 0;
# Don't put old configurations in the GRUB menu. The user has no
# way to select them anyway.
diff --git a/nixos/modules/virtualisation/nova-image.nix b/nixos/modules/virtualisation/nova-image.nix
index 13e36e7888b5..7971212b47c5 100644
--- a/nixos/modules/virtualisation/nova-image.nix
+++ b/nixos/modules/virtualisation/nova-image.nix
@@ -27,7 +27,7 @@ with lib;
boot.kernelParams = [ "console=ttyS0" ];
boot.loader.grub.device = "/dev/vda";
- boot.loader.grub.timeout = 0;
+ boot.loader.timeout = 0;
# Allow root logins
services.openssh.enable = true;
diff --git a/nixos/modules/virtualisation/qemu-vm.nix b/nixos/modules/virtualisation/qemu-vm.nix
index 8aa643687557..9d9b725a805d 100644
--- a/nixos/modules/virtualisation/qemu-vm.nix
+++ b/nixos/modules/virtualisation/qemu-vm.nix
@@ -465,7 +465,7 @@ in
});
swapDevices = mkVMOverride [ ];
- boot.initrd.luks.devices = mkVMOverride [];
+ boot.initrd.luks.devices = mkVMOverride {};
# Don't run ntpd in the guest. It should get the correct time from KVM.
services.ntp.enable = false;
diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix
index c8c4df5c9138..f275291c716c 100644
--- a/nixos/release-combined.nix
+++ b/nixos/release-combined.nix
@@ -69,6 +69,7 @@ in rec {
(all nixos.tests.boot.uefiUsb)
(all nixos.tests.boot-stage1)
(all nixos.tests.ipv6)
+ (all nixos.tests.i3wm)
(all nixos.tests.kde4)
#(all nixos.tests.lightdm)
(all nixos.tests.login)
diff --git a/nixos/tests/boot.nix b/nixos/tests/boot.nix
index af7db5aa8164..3ea0df65c8b5 100644
--- a/nixos/tests/boot.nix
+++ b/nixos/tests/boot.nix
@@ -12,7 +12,6 @@ let
modules =
[ ../modules/installer/cd-dvd/installation-cd-minimal.nix
../modules/testing/test-instrumentation.nix
- { key = "serial"; }
];
}).config.system.build.isoImage;
@@ -30,20 +29,25 @@ let
'';
};
in {
+
biosCdrom = makeBootTest "bios-cdrom" ''
cdrom => glob("${iso}/iso/*.iso")
'';
+
biosUsb = makeBootTest "bios-usb" ''
usb => glob("${iso}/iso/*.iso")
'';
+
uefiCdrom = makeBootTest "uefi-cdrom" ''
cdrom => glob("${iso}/iso/*.iso"),
bios => '${pkgs.OVMF}/FV/OVMF.fd'
'';
+
uefiUsb = makeBootTest "uefi-usb" ''
usb => glob("${iso}/iso/*.iso"),
bios => '${pkgs.OVMF}/FV/OVMF.fd'
'';
+
netboot = let
config = (import ../lib/eval-config.nix {
inherit system;
diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix
index 0b0e53ee7324..3fdf6510953e 100644
--- a/nixos/tests/installer.nix
+++ b/nixos/tests/installer.nix
@@ -360,14 +360,8 @@ in {
"mount LABEL=boot /mnt/boot",
);
'';
- # XXX: Currently, generate-config doesn't detect LUKS yet.
extraConfig = ''
boot.kernelParams = lib.mkAfter [ "console=tty0" ];
- boot.initrd.luks.devices = lib.singleton {
- name = "cryptroot";
- device = "/dev/vda3";
- preLVM = true;
- };
'';
enableOCR = true;
preBootCommands = ''
@@ -403,8 +397,6 @@ in {
"mkdir /mnt/boot",
"mount LABEL=boot /mnt/boot",
"udevadm settle",
- "mdadm --verbose -W /dev/md0", # wait for sync to finish; booting off an unsynced device tends to fail
- "mdadm --verbose -W /dev/md1",
);
'';
preBootCommands = ''
diff --git a/nixos/tests/virtualbox.nix b/nixos/tests/virtualbox.nix
index da4c0bddc348..06efb034c086 100644
--- a/nixos/tests/virtualbox.nix
+++ b/nixos/tests/virtualbox.nix
@@ -326,6 +326,7 @@ let
in [ ./common/user-account.nix ./common/x11.nix ] ++ vmConfigs;
virtualisation.memorySize = 2048;
virtualisation.virtualbox.host.enable = true;
+ services.xserver.displayManager.auto.user = "alice";
users.extraUsers.alice.extraGroups = let
inherit (config.virtualisation.virtualbox.host) enableHardening;
in lib.mkIf enableHardening (lib.singleton "vboxusers");
diff --git a/pkgs/applications/audio/mp3splt/default.nix b/pkgs/applications/audio/mp3splt/default.nix
index 08d91498cc0a..0fa9022f67bc 100644
--- a/pkgs/applications/audio/mp3splt/default.nix
+++ b/pkgs/applications/audio/mp3splt/default.nix
@@ -1,20 +1,27 @@
-{ fetchurl, stdenv, libmp3splt, pkgconfig }:
+{ stdenv, fetchurl, pkgconfig, libmp3splt }:
stdenv.mkDerivation rec {
- name = "mp3splt-2.6.1";
+ pname = "mp3splt";
+ version = "2.6.2";
+ name = "${pname}-${version}";
+
src = fetchurl {
- url = "http://prdownloads.sourceforge.net/mp3splt/${name}.tar.gz";
- sha256 = "783a903fafbcf47f06673136a78b78d32a8e616a6ae06b79b459a32090dd14f7";
+ url = "mirror://sourceforge/${pname}/${name}.tar.gz";
+ sha256 = "1aiv20gypb6r84qabz8gblk8vi42cg3x333vk2pi3fyqvl82phry";
};
- buildInputs = [ libmp3splt pkgconfig ];
+ configureFlags = [ "--enable-oggsplt-symlink" "--enable-flacsplt-symlink" ];
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [ libmp3splt ];
- meta = {
- description = "utility to split mp3, ogg vorbis and FLAC files without decoding";
+ outputs = [ "out" "man" ];
+
+ meta = with stdenv.lib; {
+ description = "Utility to split mp3, ogg vorbis and FLAC files without decoding";
homepage = http://sourceforge.net/projects/mp3splt/;
- license = stdenv.lib.licenses.gpl2;
- maintainers = [ stdenv.lib.maintainers.bosu ];
- platforms = stdenv.lib.platforms.unix;
+ license = licenses.gpl2;
+ maintainers = [ maintainers.bosu ];
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix
index 0eba31375dc3..4665ea8a7818 100644
--- a/pkgs/applications/editors/neovim/default.nix
+++ b/pkgs/applications/editors/neovim/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, cmake, gettext, glib, libmsgpack, libtermkey
, libtool, libuv, lpeg, lua, luajit, luaMessagePack, luabitop, man, ncurses
-, perl, pkgconfig, unibilium, makeWrapper, vimUtils
+, perl, pkgconfig, unibilium, makeWrapper, vimUtils, xsel
, withPython ? true, pythonPackages, extraPythonPackages ? []
, withPython3 ? true, python3Packages, extraPython3Packages ? []
@@ -111,6 +111,7 @@ let
install_name_tool -change libjemalloc.1.dylib \
${jemalloc}/lib/libjemalloc.1.dylib \
$out/bin/nvim
+ sed -i -e "s|'xsel|'${xsel}/bin/xsel|" share/nvim/runtime/autoload/provider/clipboard.vim
'' + optionalString withPython ''
ln -s ${pythonEnv}/bin/python $out/bin/nvim-python
'' + optionalString withPyGUI ''
diff --git a/pkgs/applications/graphics/exrdisplay/default.nix b/pkgs/applications/graphics/exrdisplay/default.nix
index 7b415df42f5b..4aeb7a4a567e 100644
--- a/pkgs/applications/graphics/exrdisplay/default.nix
+++ b/pkgs/applications/graphics/exrdisplay/default.nix
@@ -1,27 +1,29 @@
-{ stdenv, fetchurl, pkgconfig, fltk, openexr, mesa, which, openexr_ctl }:
+{ stdenv, fetchurl, pkgconfig, fltk, openexr, mesa, openexr_ctl }:
assert fltk.glSupport;
stdenv.mkDerivation {
- name ="openexr_viewers-1.0.1";
+ name ="openexr_viewers-2.2.0";
src = fetchurl {
- url = "mirror://savannah/openexr/openexr_viewers-1.0.1.tar.gz";
- sha256 = "1w5qbcdp7sw48z1wk2v07f7p14vqqb1m2ncxyxnbkm9f4ab0ymg6";
+ url = "mirror://savannah/openexr/openexr_viewers-2.2.0.tar.gz";
+ sha256 = "1s84vnas12ybx8zz0jcmpfbk9m4ab5bg2d3cglqwk3wys7jf4gzp";
};
- configurePhase =
- ''
- # don't know why.. adding these flags it works
- #export CXXFLAGS=`fltk-config --use-gl --cxxflags --ldflags`
- ./configure --prefix=$out --with-fltk-config=${fltk}/bin/fltk-config
- '';
+ configurePhase = ''
+ ./configure --prefix=$out --with-fltk-config=${fltk}/bin/fltk-config
+ '';
- buildInputs = [ openexr fltk pkgconfig mesa which openexr_ctl ];
+ buildPahse = ''
+ make LDFLAGS="`fltk-config --ldflags` -lGL -lfltk_gl"
+ '';
+
+ buildInputs = [ openexr fltk pkgconfig mesa openexr_ctl ];
meta = {
- description = "Tool to view OpenEXR images";
- homepage = http://openexr.com;
- license = "BSD-like";
+ description = "Application for viewing OpenEXR images on a display at various exposure settings";
+ homepage = "http://openexr.com";
+ platforms = stdenv.lib.platforms.linux;
+ license = stdenv.lib.licenses.bsd3;
};
}
diff --git a/pkgs/applications/graphics/qscreenshot/default.nix b/pkgs/applications/graphics/qscreenshot/default.nix
new file mode 100644
index 000000000000..c4f4f6472ed6
--- /dev/null
+++ b/pkgs/applications/graphics/qscreenshot/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchurl, dos2unix, which, qt }:
+
+stdenv.mkDerivation rec {
+ name = "qscreenshot-1.0";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/qscreenshot/${name}-src.tar.gz";
+ sha256 = "1spj5fg2l8p5bk81xsv6hqn1kcrdiy54w19jsfb7g5i94vcb1pcx";
+ };
+
+ buildInputs = [ dos2unix which qt ];
+
+ # Remove carriage returns that cause /bin/sh to abort
+ preConfigure = ''
+ dos2unix configure
+ sed -i "s|lrelease-qt4|lrelease|" src/src.pro
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Simple creation and editing of screenshots";
+ homepage = https://sourceforge.net/projects/qscreenshot/;
+ license = licenses.gpl2;
+ platforms = platforms.all;
+ maintainers = [ maintainers.bjornfor ];
+ };
+}
diff --git a/pkgs/applications/graphics/shutter/default.nix b/pkgs/applications/graphics/shutter/default.nix
new file mode 100644
index 000000000000..59cea939bc9a
--- /dev/null
+++ b/pkgs/applications/graphics/shutter/default.nix
@@ -0,0 +1,41 @@
+{ stdenv, fetchurl, perl, perlPackages, makeWrapper, imagemagick, gdk_pixbuf, librsvg }:
+
+let
+ perlModules = with perlPackages;
+ [ Gnome2 Gnome2Canvas Gtk2 Glib Pango Gnome2VFS Gnome2Wnck Gtk2ImageView
+ Gtk2Unique FileWhich FileCopyRecursive XMLSimple NetDBus XMLTwig
+ XMLParser HTTPMessage ProcSimple SortNaturally LocaleGettext
+ ProcProcessTable URI ImageExifTool Gtk2AppIndicator LWPUserAgent JSON
+ PerlMagick WWWMechanize HTTPDate HTMLForm HTMLParser HTMLTagset JSONXS
+ CommonSense HTTPCookies NetOAuth PathClass GooCanvas X11Protocol Cairo
+ ];
+in
+stdenv.mkDerivation rec {
+ name = "shutter-0.93.1";
+
+ src = fetchurl {
+ url = "http://shutter-project.org/wp-content/uploads/releases/tars/${name}.tar.gz";
+ sha256 = "09cn3scwy98wqxkrjhnmxhpfnnynlbb41856yn5m3zwzqrxiyvak";
+ };
+
+ buildInputs = [ perl makeWrapper gdk_pixbuf librsvg ] ++ perlModules;
+
+ installPhase = ''
+ mkdir -p "$out"
+ cp -a . "$out"
+ (cd "$out" && mv CHANGES README COPYING "$out/share/doc/shutter")
+
+ wrapProgram $out/bin/shutter \
+ --set PERL5LIB "${stdenv.lib.makePerlPath perlModules}" \
+ --prefix PATH : "${imagemagick}/bin" \
+ --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Screenshot and annotation tool";
+ homepage = http://shutter-project.org/;
+ license = licenses.gpl3Plus;
+ platforms = platforms.all;
+ maintainers = [ maintainers.bjornfor ];
+ };
+}
diff --git a/pkgs/applications/misc/dunst/default.nix b/pkgs/applications/misc/dunst/default.nix
index 3e60a40ab533..0c51cb132629 100644
--- a/pkgs/applications/misc/dunst/default.nix
+++ b/pkgs/applications/misc/dunst/default.nix
@@ -1,40 +1,37 @@
-{ stdenv, fetchurl, coreutils, unzip, which, pkgconfig, dbus
-, freetype, xdg_utils, libXext, glib, pango, cairo, libX11, libnotify
-, libxdg_basedir, libXScrnSaver, xproto, libXinerama, perl, gdk_pixbuf
-, dbus_daemon, makeWrapper
+{ stdenv, fetchFromGitHub
+, pkgconfig, which, perl
+, cairo, dbus, freetype, gdk_pixbuf, glib, libX11, libXScrnSaver
+, libXext, libXinerama, libnotify, libxdg_basedir, pango, xproto
}:
stdenv.mkDerivation rec {
- name = "dunst-1.1.0";
+ name = "dunst-${version}";
version = "1.1.0";
- src = fetchurl {
- url = "https://github.com/knopwob/dunst/archive/v${version}.tar.gz";
- sha256 = "0x95f57s0a96c4lifxdpf73v706iggwmdw8742mabbjnxq55l1qs";
+ src = fetchFromGitHub {
+ owner = "knopwob";
+ repo = "dunst";
+ rev = "v${version}";
+ sha256 = "102s0rkcdz22hnacsi3dhm7kj3lsw9gnikmh3a7wk862nkvvwjmk";
};
- buildInputs =
- [ coreutils unzip which pkgconfig dbus freetype libnotify gdk_pixbuf
- xdg_utils libXext glib pango cairo libX11 libxdg_basedir
- libXScrnSaver xproto libXinerama perl dbus_daemon makeWrapper ];
+ nativeBuildInputs = [ perl pkgconfig which ];
- buildPhase = ''
- export VERSION=${version};
- export PREFIX=$out;
- make dunst;
- '';
+ buildInputs = [
+ cairo dbus freetype gdk_pixbuf glib libX11 libXScrnSaver libXext
+ libXinerama libnotify libxdg_basedir pango xproto
+ ];
- postFixup = ''
- wrapProgram "$out/bin/dunst" \
- --prefix PATH : '${dbus_daemon.out}/bin'
- '';
+ outputs = [ "out" "man" ];
- meta = {
- description = "lightweight and customizable notification daemon";
+ makeFlags = [ "PREFIX=$(out)" "VERSION=$(version)" ];
+
+ meta = with stdenv.lib; {
+ description = "Lightweight and customizable notification daemon";
homepage = http://www.knopwob.org/dunst/;
- license = stdenv.lib.licenses.bsd3;
+ license = licenses.bsd3;
# NOTE: 'unix' or even 'all' COULD work too, I'm not sure
- platforms = stdenv.lib.platforms.linux;
- maintainers = [ stdenv.lib.maintainers.domenkozar ];
+ platforms = platforms.linux;
+ maintainers = [ maintainers.domenkozar ];
};
}
diff --git a/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
index c1bf01044370..54b3214392be 100644
--- a/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
+++ b/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix
@@ -4,189 +4,189 @@
# ruby generate_sources.rb 46.0.1 > sources.nix
{
- version = "47.0b5";
+ version = "47.0b8";
sources = [
- { locale = "ach"; arch = "linux-i686"; sha512 = "98b283db66cd5d66a8fb74cab768526af7751eb3a2353791dbc8c40100be43753cf977262f5257fe55d7e42160600055209fc77b0ab5ce6893e393e273f0a961"; }
- { locale = "ach"; arch = "linux-x86_64"; sha512 = "f931442f88a1d624e194732b4e8b0ce09cae2648a70cad658fa9439f0f69f66d1303236a110e8a9bd64f0034eb6adcc89313ec116624fb3e8d557ee387d2e5ef"; }
- { locale = "af"; arch = "linux-i686"; sha512 = "f45f3644c0e6f51e5f88747e6f4c9b6123a40f112dd3768471838c68f8fdb42c729351d6eaa6768b5a7dcb30c1145545bee03c981eb7f271cd42ad7d526b7d74"; }
- { locale = "af"; arch = "linux-x86_64"; sha512 = "a48c2e8de38c0f06d51b701eeb8dd4e68973e9601acdb879bc63bf375fdd08412408abd98bface2651dd86a86812ede0fb5ae9981de484afc0657f622428d720"; }
- { locale = "an"; arch = "linux-i686"; sha512 = "d0de5de0d84f30b9b4a7e0aaf697bb543a2c0d3e7118a4f963b059a99433fe72d3497526c66102a64600585e3a97243918f91ea08f9e1c189670ac2cb5f7f695"; }
- { locale = "an"; arch = "linux-x86_64"; sha512 = "4ad8f425043259bb1ead7c5cf2bafda8d87dfb8e544e6335c9a36c9096f32919e65a28c2f33e87584d53cccaf26c22ebc45657b7e9055876bb19698fb3fe4bd2"; }
- { locale = "ar"; arch = "linux-i686"; sha512 = "b34739502ee0e18a8d2e97f4af694cb5aa71bba530915bf18a7488260163d720cb8df07197e46a75081f34a956e586e64fa7b999505a6b32c47010e2b5c6bb8b"; }
- { locale = "ar"; arch = "linux-x86_64"; sha512 = "4ded69d272fbebac790dc16b7ebec5d9ee42a71a852f069141d95b423ee3d544839b9b852ede8c2a70e1a90aaf991821f2f51107c749af14e5197aaa747d9657"; }
- { locale = "as"; arch = "linux-i686"; sha512 = "54d09a607b608fb1983ad9990a870f422d90d626f91d691a420ce691a904abda0e3539d156fa218a8d0259144a5d6c4da2b4d855f4103bde996bc887b40b6847"; }
- { locale = "as"; arch = "linux-x86_64"; sha512 = "19d425bbf52a4c621a61c2fc6dfb88693b90d0705707ae40804c93871f12b22e67dcca0400cb65565e3f4e135c29de14eb581ede6cf204cc8384381267767d56"; }
- { locale = "ast"; arch = "linux-i686"; sha512 = "bfdadb27f446b63fa5679731f188bf1a9c59d3efa5371cbc9944ee50de13e2d9ee741faf32a2d340568d6537067b394248245bc0fa426e08c5cfa91b788332fd"; }
- { locale = "ast"; arch = "linux-x86_64"; sha512 = "0a4563494a2bfee6aba79a1212c011dc223f0567c5baa106b7af057e697eddbf90fb418cbe2f42d7df6ed183481375a33604275ed256802960f81992851a6354"; }
- { locale = "az"; arch = "linux-i686"; sha512 = "d5311c69962d07fb3a2d95dcc0edefe74d59c484d5b61df5efeee46a40afa19a1f2707345f0834c7510e82e8f3f09dfda2fd1c1dad8980fbf02a177bbd58ec7a"; }
- { locale = "az"; arch = "linux-x86_64"; sha512 = "071e8a37ca66c113d152f676da4e39de17bd2d28339d036d300b31f7ff8b09f052adac376f858bfe74976c905ab685fa3fa14387359af7456738727d51efc6cb"; }
- { locale = "be"; arch = "linux-i686"; sha512 = "fc073297a8363776a6db25b9ea197d5732010c4c9d26726bb655256caae902b7fde05003c28e727cb1728282c7ba22151b554862d0c2aedc4ba483e1291159aa"; }
- { locale = "be"; arch = "linux-x86_64"; sha512 = "e2cd3d493dea9e97523dcfb3dedee7ba0c9f6fe6c21e484ac673922090a56a1725eeb278d2c5186a544af4502a74a6d26a02ecad43e39038a7bed5fa0776151a"; }
- { locale = "bg"; arch = "linux-i686"; sha512 = "02a0bb4e22d70fc6ffd26cbd1633c7834cc47e0b6b6ac48ca315440e93a8a1eea88fbce0e9f21053da2d65ea715270a84790db597857627b742134929df493c9"; }
- { locale = "bg"; arch = "linux-x86_64"; sha512 = "e7c23fca63fda9cfba5c3c70d48a39f7517e0852df213c122db0f2b9ddb5546633f0ad1d8ecf57832cd4396f7f36f0a2b95c44a53ddfa42cee9502de36a27405"; }
- { locale = "bn-BD"; arch = "linux-i686"; sha512 = "fcb750a8f297b611b5885f074285644d38a7ffd5cc44e34a9f416edcb7bfad1cb61c58947815ccc882adb349862c8de6a7c67637c257598e9aec2700c34ef4f1"; }
- { locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "8c08859d299ced430dcaf3ce2070608f0384ac2fabb42f3acb55e0015a7179906317f0fba051953207021087fb2fbef38e89d1b924d1bb8fc8a32933354353f6"; }
- { locale = "bn-IN"; arch = "linux-i686"; sha512 = "e9b0a786571711d278e94e94887b7064f5168b3e57b177d519b847014792fdaafbacf5cfde6d4340309beabede605b719b9a1a58f30ae7f1d11fefbfcd56f6d3"; }
- { locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "64e9aa733c14eb31ae8e60b01975c6605b8a01fcdfe2018ec8b395472aff13135a40fb1b664fad6a159eaa809fa56f087d81139b622e58e4d879ae1b7800cf7b"; }
- { locale = "br"; arch = "linux-i686"; sha512 = "34423736e3fd774da60984ffd9a99254bc5bb1ce49ce2f88e299e11aa8c7b7d5e8789b76222300d9e87a50cb25764f4705b1664b178149edaecd5f1d25abb3c4"; }
- { locale = "br"; arch = "linux-x86_64"; sha512 = "3ccc90fc5118aac8b89194298e376ce90013dd9b4155ef604ac0e39c6fd886dc7397eb332c8370d79a85775b5224c98edd83df2f4bd8f18d0c22e26e307a3f00"; }
- { locale = "bs"; arch = "linux-i686"; sha512 = "040c5b200f17f9f1c36b6395e99b531e6509569b8aeaaabe326813a08a19c2d7e911d8cf977eeab3c660738e45a5d56a0d16bb1f0085c72fde95984c8f965e8b"; }
- { locale = "bs"; arch = "linux-x86_64"; sha512 = "d0f808f888dd83cc9811f0a85a062fe4ed8b3ba26d2c9819fdb1c91124ad35a00425a92439a91da2b94dda253dccbcd6be51a620e8a1ad0a2b485e14a96db6b7"; }
- { locale = "ca"; arch = "linux-i686"; sha512 = "8c8bfb8b2c1c280eacc4653edbaa713c3516ea0ea02df2aefc74ac4b0b920a19e14ccfb559ecce3b9c4b744629c741e6c9a2efd6da1888fab63e545bb8534272"; }
- { locale = "ca"; arch = "linux-x86_64"; sha512 = "e68cb49fef941ffdedea5054a4c7cf223c794d261ab8c5526bb4384001a2263d6018097d737ddf6210c3e73175902fb3773f263beced13faed8f697c52dfd479"; }
- { locale = "cak"; arch = "linux-i686"; sha512 = "4cf074c30ed3360f92a523dcd54ffc6f18516452f56620d444cf1fc76a669387aa70687e2dec97a19fffeeae5cb413ed2dc62390de77bf2ef609e758521de647"; }
- { locale = "cak"; arch = "linux-x86_64"; sha512 = "c66cf417086b3faae42a089fff4847f2c925c2f1e4fa6324888faf231f909ad95c51b1ebb844598e8172bc6b3b08cba8f89b9890b722a6915e1baceda319b91c"; }
- { locale = "cs"; arch = "linux-i686"; sha512 = "627abef27cecd1d4801d1d370254f2a68560091dc337f2780ce585566b522d6c75e370177cd0dfdc9e38e96db52d5c54e201c780086fd769e53d6e24149c2988"; }
- { locale = "cs"; arch = "linux-x86_64"; sha512 = "4dd222795547eb14ad0d9f66193b9ad139f66f5a1730bbed3a4213b29cd4717a18ccd095e910071d8642602404bd2732bd377dbc3fdf931cdd8c51862fd43295"; }
- { locale = "cy"; arch = "linux-i686"; sha512 = "10eccf20af40d4f1e74d1fcd740a0be0da539a2997a7e403e3830ae6d797ae97fa17f573255a6bf414635fe48809c98f0ef2088c6dcb6e730a3d8bbf2a6e88fa"; }
- { locale = "cy"; arch = "linux-x86_64"; sha512 = "e5fefa0248b7b594dba6c7e25a069d0f73a5ba3016c557f5866923ca062fa5ba172206c6396bbc595ce76540a9dd23308db23fe1a6a5b10c81dbd4db252ff865"; }
- { locale = "da"; arch = "linux-i686"; sha512 = "909ed57b9745cd124bd16821f08aa578aaea79aa452ccd88c2f3cf5d8441ea5969b5f5bf29cce7ed9b46e0117c1ef278a9b34493a347e934a327afe3bc6a5f2a"; }
- { locale = "da"; arch = "linux-x86_64"; sha512 = "2188776b00c04c76ca754ae65e1a8c4897fb24ab1fec5afdfbda5d76e71dd68e3e98e44cedd3d4659c92f7b490b888a1e680446428c3b1bbfa6aeed092cb61eb"; }
- { locale = "de"; arch = "linux-i686"; sha512 = "67b26a3eac785f893d19f6fddc955c9aeedcd7ad8e4ec40a5f57d14dd1d3c742e3613faf5860c845aa31b9533fafed47b9342e422f1e74e94192a82490634ec7"; }
- { locale = "de"; arch = "linux-x86_64"; sha512 = "8385f21ffa8e35e8a475a1795026d4f91660c5b68a219dcfabbf06a5bf41d6d3711c23e810a2df6a8665878930d71e94a398e563caa60bd2e000dc7e74c735af"; }
- { locale = "dsb"; arch = "linux-i686"; sha512 = "4aa529f48d6a039952bcb50d91c402b8d85c5def54be9fc4e571e1065e9732c2a7d7c95ecd37963cea9735e30043207b53ec10285fc3988c91b2527dc848c1e7"; }
- { locale = "dsb"; arch = "linux-x86_64"; sha512 = "96ebcb4941137c1e07753ed20bd6a53a7ef80d191eaf7c2b949663026f03160ff30d4e085f79710766d3b937753f038f429ea8da33fea49c1472afe7e1a14d10"; }
- { locale = "el"; arch = "linux-i686"; sha512 = "df48924718d78d9c39003c65c363301f0009487c6db79f73e1121f7f1f871c43f485050d0a1fd7086ee71830c0de121a0aca8aa6c4cccebdbdbb21603ab35afc"; }
- { locale = "el"; arch = "linux-x86_64"; sha512 = "a72a4becb87932795002063809481ec3167c16995d64d18c5a0e9e9acbe094491f8e6e1f35628a1fd99d3c7fa95b541e7b87ecc9b61da46eebf41468edd9e6bb"; }
- { locale = "en-GB"; arch = "linux-i686"; sha512 = "a8a35b2420dd581ba61ea01ae1f38b6c3d0c21d26ae5cfc561aac10d7fb7ab9069ee0a488675e0910909f4179fa003800bbcddca1696fbf4d51e98a1030d9032"; }
- { locale = "en-GB"; arch = "linux-x86_64"; sha512 = "7a81e63466cfe6340553cd75794804b5f2fc53a975d4ca64be5fdba4915993cebb8b5b45c26940e669938d878627433005ef916ea16a703fc9024a776217ca51"; }
- { locale = "en-US"; arch = "linux-i686"; sha512 = "def0f98752e1ba92e3154b7275fdce2c63688369fd26d743c9157a8afb37202caed49a96ac4b580764b39e22b6b1e1dfd3c417d3ae4e8c508f24d181dbec4003"; }
- { locale = "en-US"; arch = "linux-x86_64"; sha512 = "8267845b8956245ec961d22a7538db7370e0a484adf4117ecc8824228a2035711538b9676e5673dea8f133e3bc935e9639b896a1a384650b03843233875ff872"; }
- { locale = "en-ZA"; arch = "linux-i686"; sha512 = "bea9951b6f1b3665d380f81c5777af4dc87e8616ff222d06c7018438d04c2c310652357d5fe13237f5567e8b223308746bd96dfad73e20d7869e7a7897402bdb"; }
- { locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "371d20607fb9570409bef79374485915b279be3ff93c573b4d8a6471d7f551e774839371d857079cdcdd671df384a8cba93ccde71b9ad49a5d813f9b092ac0db"; }
- { locale = "eo"; arch = "linux-i686"; sha512 = "36435cb8204873243bf2f7286d8f8a148892fc3f8d47940722214639230546fb87e941b4c449cbfb642a17bc2d12be1586444cb2146a773774b2486c424dfd6c"; }
- { locale = "eo"; arch = "linux-x86_64"; sha512 = "c1ca2aadbec3dbc46e72c05a36d01a3973a61239fd57e3493258129532c45b0a2cf76b1877f98167c836065f25071cda89e3636b6f8ca61c2925e8d359f4aef9"; }
- { locale = "es-AR"; arch = "linux-i686"; sha512 = "9bb812c5f2d623d8f9688867ac2a159e2edcbfbe9c883eba713451ebcfb7ad4716fcd10e022d988a6854921266ffeaec5a8ee7780196eed4c2ec32f424b3d423"; }
- { locale = "es-AR"; arch = "linux-x86_64"; sha512 = "1559ca934349aa4583609a64ec5ec4f9b3fc7c7ba0d55344e2853774736adc118599b48e3aea42ab376a393bc31b3f798d406fc79fd7f4acab6ed4be1ea5d649"; }
- { locale = "es-CL"; arch = "linux-i686"; sha512 = "c4b7fc14c455fcb007406ce648b329d664caca0739187600191837cafd7f835024f4636bd1622708fca8315d8808f2e0721934cc028349507454092298520315"; }
- { locale = "es-CL"; arch = "linux-x86_64"; sha512 = "c380341e32a153c504a1b72bc6ecd2a4b907b854dde42e91230d2d3679866f4c01c5a09a29373f0e580f992469e2448e8c3a1c448083c0416c7f14ebd3afabe5"; }
- { locale = "es-ES"; arch = "linux-i686"; sha512 = "c3b8dd9909cda43d4227ee2cf4a747f3d4774dab3b8e38463464843286e86e5bd25edd026943ee8ded649ec4504f3c41a2ffe70deb3f33d9c54a2bcfebc8d697"; }
- { locale = "es-ES"; arch = "linux-x86_64"; sha512 = "8e0dfc6380b71230bb4b3153bb682f71b759755e5acd8efc727f61769a701dd1e61d6895a9a82d6481335ea1fb82192febdb9e3810a61fe7d209f741e2ab3741"; }
- { locale = "es-MX"; arch = "linux-i686"; sha512 = "0491052cbd95b439537d03909459b22754717fe581f6c33aff218def471a164c3ea2c44d1db1ebbdc2be592cbb1e87a8cba8f9bcdc0360a18ebe7e3f0e559003"; }
- { locale = "es-MX"; arch = "linux-x86_64"; sha512 = "26b5d89429c5fb26fd2179f74c789ae023beb4d90cfaff47e044dd388525120a8dc42bc0d52442847249d86c6f5be88fa347f7ded1edd9485bca4df6fbd6b0c8"; }
- { locale = "et"; arch = "linux-i686"; sha512 = "0311dde01390a778f5a043ddc64654697245f60d325e0d189fb79ea50df7b5cfcfd5e72403f349cc2f92282a93dad9ad7efec23bacabd695c74e809234cfd484"; }
- { locale = "et"; arch = "linux-x86_64"; sha512 = "64ac04e96cffb54a35a9f2a2c41b55d66e0d7d4f218ea71ed590f1c62b83e4b426609473f0cae5c65bc382b298b670f5295354f5151c65eb93170607a39ab125"; }
- { locale = "eu"; arch = "linux-i686"; sha512 = "8fde0bdaea215428b77c586846b647d1ae8423ee80f35d61dd400a4c732e1cacd1c65d77f95a8584e60ed26a90d3c92d2510fee62ba20c0135cb94245136d2a2"; }
- { locale = "eu"; arch = "linux-x86_64"; sha512 = "8304ca1172dccbabcd88c39955213bf3d57b9622f3f387a748db26310974d9b82de1dee01a4b34a0abcb4d6789f7c2fd4ecc17ce4d8090a5e271729c80494736"; }
- { locale = "fa"; arch = "linux-i686"; sha512 = "d54bdbdd1bff08d7bd3f45a5a40f893f269b219fee009184f76eebcc5e9908430c57f7770f26de2ce6c343744046cca8368c2ec5a5e36e860f975ab24783ac63"; }
- { locale = "fa"; arch = "linux-x86_64"; sha512 = "5ccf346b56925f02f1261981830a40c25a33ca38d2214bb528c4df9c8f389ac97c27bba0236b80c07152978705a02485e3c8e5151d1f1ac4cd62958d2d49143d"; }
- { locale = "ff"; arch = "linux-i686"; sha512 = "b7cfc0598678ebdb2b6d5f3e555067684d4d059179ac4bf63c9852579f8153f649e356eb4d88f483f6a79b26c8788723e83f273a2de900baa99e95bacdf11202"; }
- { locale = "ff"; arch = "linux-x86_64"; sha512 = "ff1b6479190b1b784595beccfeaa842d5f66da934909cc1c92a5d34a5aa7fd448708068057e3a07f7f86c28608289ce78f754326f228bbdfc96993a81a88963c"; }
- { locale = "fi"; arch = "linux-i686"; sha512 = "09f42f06e9c9b98f250a2df5864aa3e0aecd5eacf851d55c2f005ce7420d30c0ca5c1fc0a50a64cb90cf95628cf1be1ddebfa82c37f1a128f4a122bdf581ca9c"; }
- { locale = "fi"; arch = "linux-x86_64"; sha512 = "711058109e442cca3e127dbf3a487db2aa89ca7859d6d9872d219dd21b729ad98dc4812c590689583a628e3b118a366cad9b0801b994217f2f971fad9e83ebd4"; }
- { locale = "fr"; arch = "linux-i686"; sha512 = "9ce0946cf7aa588476cb2be42020b5087e98dbd8cf8983a48b38bf9b9472756bf0cbe0295324c8d706df72f35c57266c882ce5722bbff02e59ca1b16114bf73a"; }
- { locale = "fr"; arch = "linux-x86_64"; sha512 = "304df64f3b914168f92195a7cc39e7368ba1633d75acb9cac6ebc5c90c126d40d78211458da4a2cb1eb1e9cbc3b7346e815ba36c09bb672eecc7e2805835989d"; }
- { locale = "fy-NL"; arch = "linux-i686"; sha512 = "d920a93e27e9f6bdb5d0390157f913696c5755a5a07cd15df4baa5589b93cd71e4b4fc11da9c2453ebfd453d1774d1b2238ecb56326bc8f5c7aeab77b86e6641"; }
- { locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "488d2e6d02ffc5695ad476cc835f451bcb6e42bc197da256ca0ce8ade7baec50fd818d3658269c6f2e6f372ab9b4893d90f7dbbd9e4f08c8376a59638d8c6b23"; }
- { locale = "ga-IE"; arch = "linux-i686"; sha512 = "dea5e1b24420e958f4275ea9d3d646d99c16022f8086ee8cc207b6d7ab5bf7d7ba2d715d50f8f6ebd633544bba692d34134034c0ecfd0c85a466425c97a6300a"; }
- { locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "aa6e55e3aa56aa61a13b1270e812058a513baf3d82759dfce6eb79c8ae87d18b634704a4c8aadbdcab289b2c501bddef2997e82b3872a8d5f485aef70182ac4f"; }
- { locale = "gd"; arch = "linux-i686"; sha512 = "4dc9c3a6159eed67e391c002adc8eee467bea21b7a0166132a13891134802332acb4cd11764383beeef44528a29eeaf19f30ca8985228097c79278403cd309df"; }
- { locale = "gd"; arch = "linux-x86_64"; sha512 = "fdbfdd04846e37271c4565f3e6ccf2936b5bdcce5ef92ecbe5be13c5a1ca547ad4c1fca9e8d87c14147f2fcaa815778bb4d5e17a4f04eef4be1659636f39468b"; }
- { locale = "gl"; arch = "linux-i686"; sha512 = "ee8e7ddb91856c0caaecc376e4a835ae04e1081e07341ada4d49b543796c98d07aece0837b887dc7780c935cd30c813cb22eed485dc57bb68a94aacefb368e7b"; }
- { locale = "gl"; arch = "linux-x86_64"; sha512 = "906d16f7a10f1e5f548c744d520e27f7bd9fdd4668287992d5d8af50c9b389d3af882eeed859a64c97b88e94de8fcc93dbcadf41caae36a3442eb3da131de81d"; }
- { locale = "gn"; arch = "linux-i686"; sha512 = "69167c749ecafac6b7fc610dff05122907b152f0c6c5fef2966c41252b94a3e5853264d8254a3aa5d72f2e11e07397a8b192b1d8e7e0c5654ab1ae7467e2b9bf"; }
- { locale = "gn"; arch = "linux-x86_64"; sha512 = "efb6d111e97bb49312537fd0517a8e48ffb58fede9031c90880a8ac4ae909acbd21140e56f9f82151e27b3f1ea014e9c9a3204b35a1c6fed6794dcd282c523d7"; }
- { locale = "gu-IN"; arch = "linux-i686"; sha512 = "d57f0091a765f80493e95493a2f82a408754205942109858656cab840db3573f58d48f00cb799b9f5ce6a2e5147299a1f636c9af81fe55a91624d2c8a73a4dae"; }
- { locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "96c38bf77f37fa791b04f6f63004caaae6bde4423733620bc7aa095d887f497da12414028c1ff250c5efe811ec3828e9214788bc85e7d73f885c433379da4bb9"; }
- { locale = "he"; arch = "linux-i686"; sha512 = "ca812d1008cce0b8314e5a0a50c8b2de8b0153e99eb7c493ca828159c78fd9a02e15e3926b865698fb0822b995d9a757282d32c8c13d2f9f1c42896280c0048f"; }
- { locale = "he"; arch = "linux-x86_64"; sha512 = "4bf246c12753f70c8a0d084738fd992966430bc0cc2a6d363e09715dcfd9099f5ecef5b110f5c79bdcf9eca3c029ad0b7b04574eb172421c252dd850926f3b67"; }
- { locale = "hi-IN"; arch = "linux-i686"; sha512 = "63727a991fa87d2fb675ee10d2759a42fcbbf50794af4d7d96cec26a02fb07f0c221d069ce762555595b6ad5b713379c5969273e87034a1cbeb886ceb7e68bad"; }
- { locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "d190f4d39e485bd212547b39ce72dc9f02b87436313d7a449cef6f3c8594357534867b635d21d3914faa4f6eb89668cf29a2499ad166b0feb3a7f232de3599fe"; }
- { locale = "hr"; arch = "linux-i686"; sha512 = "508e6c6f55c5ea5ed65180467e682071c0804e499392835f53c06516d09d8f40c209c6b252406599bbbbaa3300679ae1002c436a5c638c79559ac5747e69812a"; }
- { locale = "hr"; arch = "linux-x86_64"; sha512 = "0fcc0ce95c5765563a3c090087854fec969e2eb7c936fd26bdda15c39087c24eb4dbc1748cdd0eda9f4a8922b62af0f3ef51d176d44d75b00c0e8604d7d09426"; }
- { locale = "hsb"; arch = "linux-i686"; sha512 = "40c941ea0f08ef6b81ebcd001bbcf7d1d5bd6b43f67cdb9b9669148221c5157d4e9a3dbd02bd377ae23805ce20f7e8e097bb96b26be15ffb724e4636ee8f69b6"; }
- { locale = "hsb"; arch = "linux-x86_64"; sha512 = "f2452ff5d06af892f7b33fe62cadb18444e7199f956b7a9afd8f5804f59999683e80b92f8193ba99bba7677c505f6cb9cc7f5e2ab11066bad3b4c5230168c15d"; }
- { locale = "hu"; arch = "linux-i686"; sha512 = "7b33b356cc463e21fbc0eb8e79c68622f0a5c9080a077428b29664bb6a2e627f36dc19588577fde8bf0dd47b92a68c5642111d55dc4f9593d103cb59404dc94a"; }
- { locale = "hu"; arch = "linux-x86_64"; sha512 = "7d96f273f258141fcb7438f4c4a940b8351261f5b72e7c9bcad23edfa4c8bb4dbc3867264e8af9d81be926c177adc5b1e872a8b6b4796ef2e057e322f5d8f7a2"; }
- { locale = "hy-AM"; arch = "linux-i686"; sha512 = "1124c892d9e5d0f134eb02cda33aaf823c099e9fe7ed875df994af8b99abb992cab28e3de1227b71d61048285078d0c0bc9104f28a78330649d098a516e96a9e"; }
- { locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "e85c7be731bfc4ae5ae0dbfe10c611ecfb815ad3749cb0cfd0b7b9b31d24c6a949c80f5bc5f698932c4420f9819e97069667a21fd99b77e2b4c2ed1164cf861c"; }
- { locale = "id"; arch = "linux-i686"; sha512 = "5c509dc4ad9e07ec1bbd7235f9b05dd97cfac2d9d6b18897192f9863719d3b2509ed1fa6bec528ccf57a0c96414325fb9d74e3db8ef3bfb880685eb96e7a8beb"; }
- { locale = "id"; arch = "linux-x86_64"; sha512 = "6aabb3f1b0eacc7f6203c77492683f37814fcf71595c8b01d4c4304f00c17fae89c0b2a681d59612c676d889516663ecc6c12cfa8d42a804d734995a861d971e"; }
- { locale = "is"; arch = "linux-i686"; sha512 = "bd87b3c76104b1436be92ae86bc9e1040258334f7b79484a5ce94bddcd0473d8cf28ffe615cf46c0d92698e90885de66627688dd8485cf75acbdde84f5d414d1"; }
- { locale = "is"; arch = "linux-x86_64"; sha512 = "d542a1eb114f917f7f0652933f9378428e58169b91fa691d05589390a13918bd0d2109aa59ce8ade43dbfeebd49deea8feb110e24c54f1c90d0fb1314e2be8a9"; }
- { locale = "it"; arch = "linux-i686"; sha512 = "3ae512498e1bfd6ea249b7693fa4da77c209e6747745eede733528504465cc090f17524e57edac99789781e5bbe831f21c68eb34aa4f6f294cf66ba04f37d375"; }
- { locale = "it"; arch = "linux-x86_64"; sha512 = "f53816f745d6a5c6ed74bf23f0e48a0171d79719f21c262657b6402e54b416563e38c215e9fc33179ef82051747025c642757ddf650ae7cfb601af33fb46eaba"; }
- { locale = "ja"; arch = "linux-i686"; sha512 = "22d6416182f3766751e7f0aa647c0f4b658cf32321287550dda1885711ecf6725cb85c1e75f9656661b33d8ee4b3e0fe6b62399848d668b5ac3922d53922a370"; }
- { locale = "ja"; arch = "linux-x86_64"; sha512 = "70f390611d41bfd5e0eff0f2a32afa38abdc41ca3ee2d50b0242cae7b5003d0b6e4430cebb949185ba00e711b46c2bdc410aeb2180e52f2884785617da04e696"; }
- { locale = "kk"; arch = "linux-i686"; sha512 = "322032a5bfe60e135ea430596989db85df3cc1c7d39061b8606c86b01f0fa3523e197b0e0a2dd7eed6667dc01bc3df3b7b8c5c9f1254305c4afb9a247c647a9f"; }
- { locale = "kk"; arch = "linux-x86_64"; sha512 = "d92cf7c83e19733a66955a7351aff90debb6057fc7f3277ccc196e0f0f72b43dc261ad34ec600a5862784dcd6bfc71bae5c7d3f5ffdbb06c2ea8c632ab320a38"; }
- { locale = "km"; arch = "linux-i686"; sha512 = "bb482b0ea1d09e624095e5cecb7327321ac5a6895d7a522da9a1aef081d93ed090e7ee743487afbeab125f660179c7e65ad767918724f7eed84ecbaaa28ed9e9"; }
- { locale = "km"; arch = "linux-x86_64"; sha512 = "0f1ce557998ecd2fc698c091b95f8669ca32ff0a27b415bfb122f9c5e37a25abf4baf62ea3e3ac63c649c4d1510d2bd71e8bcbad399e8ac423eee7bdc240f0cd"; }
- { locale = "kn"; arch = "linux-i686"; sha512 = "68a55c9712a1eab6677ba9577326211aa4c3f6122690da540eb44dddef2d5f6b1a34fc026ddc2e3d005af41149f9e8ccc8eff2bfab952a688b25ab48464dd2e7"; }
- { locale = "kn"; arch = "linux-x86_64"; sha512 = "ed7285ea39f41820dd38677d0dda05c0193e2bfbb2149b6ac12b3611b67a154cc76a0e75a23badaf813cbc0f24dd2be78707ecf2962d5582777cfeb8fb59d042"; }
- { locale = "ko"; arch = "linux-i686"; sha512 = "c20fd881febb57ed2012e654338a24e24277b6c0ff71b86e190c80afbf5caa8bd6408b2b265ac7aebbc5233c942761beffb4252cac6a5bef41d6f18d13cf6884"; }
- { locale = "ko"; arch = "linux-x86_64"; sha512 = "27eb552c9e88088191becf75e3ab0b789a76a5423e84451ddc74ce5ded95b0f98a2fdb0a7552e95752ee4ae41ca9e83bbef3f6ebc8ab089903a63d7d9b558213"; }
- { locale = "lij"; arch = "linux-i686"; sha512 = "d0f697f29c8008344e5ebfa4325046837720e5061e309f530db3de4eb066ffa7f3bdce3e97abfc388569664af46f60e73fa9018998f8c42af0ab1b8c44a751c8"; }
- { locale = "lij"; arch = "linux-x86_64"; sha512 = "3da427ccb0a138d40af0ed0139adba64accccdc02c2d3abbed04c7ed51bd5cca675b2a39d765406a607b76050bac11fc90ded3b84491066920a8387e490ce3a1"; }
- { locale = "lt"; arch = "linux-i686"; sha512 = "c9c779d3f9902248ade70fdec78ea282e021d857a7594ee9fc52eb39c65c142c5278694f6f9621f7f98075a3e9f44e4765493b88a1bf9108bd91fe8522d73319"; }
- { locale = "lt"; arch = "linux-x86_64"; sha512 = "ac53cab92414f0c28cd1cd6a722e59889b0f8ef5d842f93c5ab775b8c857ce1c266522ab119b655c5800e1e0fa370791f4c545c00e35d64e8e6c0f6e2a7bd7d5"; }
- { locale = "lv"; arch = "linux-i686"; sha512 = "a8cc63ad51e11bb98c8b1e7d0b4673ac198eaa73083ffec491e2b4d333ad6b9908d734da53ad70306717bee4de7c48c9f7ed08cc5647b3d494eca001bf80bb22"; }
- { locale = "lv"; arch = "linux-x86_64"; sha512 = "8b229439f9ddead6b965f5e14626e159a6d94774b2f9e57898b86c39f77adc08a6e93b33be050e053bbc1a660f27da66a81f3d1e3222001e52e5463716ee370d"; }
- { locale = "mai"; arch = "linux-i686"; sha512 = "b39472c32581b9977cb5701a398d83b8d4abaf2943c99035d57404610b3ccb016b99f4d89618451701434320dd6a83ecb3d927fcbab2999c273b3e7df32e0428"; }
- { locale = "mai"; arch = "linux-x86_64"; sha512 = "d8e7f74ef1d4e70da44bfd12a2b93e66df40e7ead86f6d1f33eed0f3bafd72b39c43b4cce086c8b27d9d8d297469a5c5238ca48f46bacaf7b850c57c067702f7"; }
- { locale = "mk"; arch = "linux-i686"; sha512 = "99267203937be5687b638f44ccdd9610d0b4804035f6681aa6924f07064e6f26d6dc2900cf39bbdfc2abbb0a72e3cc3b194a20a804e0052b704032e057e469c9"; }
- { locale = "mk"; arch = "linux-x86_64"; sha512 = "e656d150a4a49d9d9f0c619450b9a1bea4a14f7f63d40684c29b247efba83de4a4238d247bb2e62fc77bf4251c5199188d1c1e8498b2e85b9c9be351e9dd3cd2"; }
- { locale = "ml"; arch = "linux-i686"; sha512 = "4a25b6677772dfe7c7e61910fe0c3edc74d42b1a87468ca9315231c983e8cd9db56ffc02d02345c6e76408c5d40ee655dc5e75d7add173a88f1f3a2b4e922c56"; }
- { locale = "ml"; arch = "linux-x86_64"; sha512 = "dec2789ab8d4ed76e642d9bbbab740fd260e8c159568bfb560623e6d774f8ff0692789e1bab26ae759bc864f8e7bd9ebae04e591589bb6fd5a9598b22d28fa52"; }
- { locale = "mr"; arch = "linux-i686"; sha512 = "ac74407da2b53417edee5e0286964d4e6ee1019d40995e7b4a2f545b4689b6eef65e46dfb59892ce27a06a79c8f6e6b73e29738544377d33b8d6ed7bb6eb0cf2"; }
- { locale = "mr"; arch = "linux-x86_64"; sha512 = "e8c492e12556421385150c3ab1387c857a2b6fdecace7277d9a71d614a12f0905662ed838824ab09aded7c7b01d3da891ac60969bcad57a130bc6bb280cc4a27"; }
- { locale = "ms"; arch = "linux-i686"; sha512 = "b0da250f5f73dd3a9ef7e0c7eec1ff4a67247f74e4b3afd12f8ff025ada35b737d3d948eb75ce1b0abf48a5553ecd4f464214e85e70b2a8e0478b2b27905ca93"; }
- { locale = "ms"; arch = "linux-x86_64"; sha512 = "88e28245914f5cdcf745e85c102e2365b017637f1b08048d74a92a5671dd99d605fea1448e6ae1b1ac19346762be63cc3786b79e0399c9966b915f4d1b2bbd51"; }
- { locale = "nb-NO"; arch = "linux-i686"; sha512 = "ec8f67a63cf22401f99c8c1724ddbf18c281780cd6b8b4b872941ec932150c532e04e39f49531e8fed05a3ef29228292b957e05abec99a348d1e91f4b30d1fc9"; }
- { locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "72cb3b2cc2da91ea8b8222f332f4115f87455913abd99fe3b8ca0a290881ad35c5d9e08e5352e380550c6f6775e6e03269f65498887e03c349ab63369101f3a2"; }
- { locale = "nl"; arch = "linux-i686"; sha512 = "0cfa7d042bc73e1027a2ac51b87d1f62730b04dad8f87dbd93252c3a11ac3082bbf837cd6b98b1b85a032f638d9d9a400599c9fbd17b565ecff5adaf8ee5b443"; }
- { locale = "nl"; arch = "linux-x86_64"; sha512 = "03456fbfb93971264e75ea2a5db9511610a26269e2d3d31bd25e57133a605d7dc12a8a779f2dd215beaea8a1c93d4f7e6642eed0968d4a99e2b6ace5a1a95b50"; }
- { locale = "nn-NO"; arch = "linux-i686"; sha512 = "97951fc2eb41eb89740bf1512db62d26e6ff7b2244e68fde834d2818dc8fea61557f12f6a18f871b509e4d3c1f4f1db2fae53b8da5b87cb0ee93ab44b9e2555e"; }
- { locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "f0b9aa2f67ddced02ebc4e90e91777799f8fa455313132d3e686c26705446321515caa0ca148f0969c1a5e0ee8b7b005630ba76d4bbd6437eacfcdf581e0c0cd"; }
- { locale = "or"; arch = "linux-i686"; sha512 = "97333fecf4097ad57c117bd7228037c7b4ef4c5e7d713801f468c951994d3c1ee65c58351ee4dcb7f3ffd193ce05e67d6502b560f8d39f92b9da185dbd322fd9"; }
- { locale = "or"; arch = "linux-x86_64"; sha512 = "4714229f654ec610d0ed3ec88f4d55f60de72e67524e6e572279bfa2dd433bf68486f0d0498ee4227bd687d55ac38914ae8b595cae676aab2508ef4790f4fbe7"; }
- { locale = "pa-IN"; arch = "linux-i686"; sha512 = "4ee507e28cc5069824a1386fd7d28b7f65a634f1ebd8f3c3387c2753c193fd8059221923504a4032ec07c3fecdcb5a15ac1b2dcdb73307fed357c0d9af8b4437"; }
- { locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "9f1cb5dc4128547bff4bdbc1dc48ca505f1b16dc3e6b42afe5685b9b3659d7e540801a1e71a46a0bdaf2c3476b75b898f6a0ac907cb0f99e425b517b08cdaab0"; }
- { locale = "pl"; arch = "linux-i686"; sha512 = "692eca157eccad4392f241d56644806abd2a183dc809480db7d5aa1482d6034b2e367ee382984fb7621cb4ed794c200b3db55c052e1a0f6f01306fd02f3efc14"; }
- { locale = "pl"; arch = "linux-x86_64"; sha512 = "635ffa536d4309da36beee2829d665a9bbef2e2ced5003632c982c0cfca776eae1b2b5be03ae6b59cdb8b22966b2866c8346acb75c49fb47e6ea39c576530817"; }
- { locale = "pt-BR"; arch = "linux-i686"; sha512 = "18b8c00f31dd3af18f9aa8ee5ebd28a533830844484ecc373c6477c7d862e8e512b52c5de80c6cfdfd70ff9942593b2d9ee13e03d17f7e2088e550e519e216a6"; }
- { locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "70e01c566b9344a51f2c893e3fa437d65a7930b571a87213fc4371af818c036612f79ad687fc6e0e52397529a5b173aedbccbcc948c7a816786d4ebdefd4438a"; }
- { locale = "pt-PT"; arch = "linux-i686"; sha512 = "e5628b348f9aa98bb831628016360b15cb265b749451017fe0e0c09b10355be80a4358442d53e4e18972ea426f8fc90350587859bdcab9c987a1a633abbbdb9d"; }
- { locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "f5ec3e50559608c77f0f96db27e7b32ed26965599489cccd8e49a15665b1d33d3628f2220e9af6d22969183a50d8c7d7cfb7cef208a277d74386bb284413ac87"; }
- { locale = "rm"; arch = "linux-i686"; sha512 = "e1c64a105a4a44e8de276cf5d4e7592f4558663981f57277702b112caf0c1f212325932d048dbaba4c593caee52b7932377bd9024bdaa1615107e8b5546d8ea1"; }
- { locale = "rm"; arch = "linux-x86_64"; sha512 = "0e06044ea7869f0e00e0a6bf99c1f2c6bd04a9d87823dbfa8387defa11d479f44e225ee839cbfaf93fa1d45680bd6803620bb7256574ed94522a319a8f1ba5e4"; }
- { locale = "ro"; arch = "linux-i686"; sha512 = "9a514be28ac95c17b6694bdcb0243ba772363d9b333420af82be70b947b200177f500e2e3ddb9f010932b9ee0b7271568a6f3ed0bbcadaa904d650e0001f1b96"; }
- { locale = "ro"; arch = "linux-x86_64"; sha512 = "06e10fbdf4ad4c9c13e62c817bc94b9b3522d8b625c65d273f77cf44658b74419ed37ec84453158f136a1597445bbbaaa7cd8d6bda3ed21ddb7c1ceb2420a17e"; }
- { locale = "ru"; arch = "linux-i686"; sha512 = "a443e644552326a85895dc6368f91365163342fca8bf6a467496c41bbc2d0934476a5b0be9ae079e7d260a1930a53595f054b1778563b20557de300db383b100"; }
- { locale = "ru"; arch = "linux-x86_64"; sha512 = "f85745244798c0eff4f603a72fdf44d20812614793b7697add27ef06f55a57eb21ec21ec8a7a6ee3228228d6d0ea52f43d6bdac8f88ea310f1561af0381b3ba1"; }
- { locale = "si"; arch = "linux-i686"; sha512 = "00d3c6f0fd87ea63ba2bd1870ad422d41a9d984674bb00b07e1c2b60dbe0c24585cc095af68f0728f2bd24af3fc00d5308aa4181d1f4b0460866b26c35b0a187"; }
- { locale = "si"; arch = "linux-x86_64"; sha512 = "aad8a7b45871e8633a85a0a40adc231d9f57315fc93b683c498699f8549c6d14d097922d7b79e96892fbe4e3454be55845994d826f2cf37d877e3445a049a578"; }
- { locale = "sk"; arch = "linux-i686"; sha512 = "c290d2d481e39a2780362b420130b5638e4fc832c09d49e0892f25dc420dea6a3f087a76ed89a5650a8efc7d82d3ec80d0ae3d3ae2e012fe5eb58c18f025bdbc"; }
- { locale = "sk"; arch = "linux-x86_64"; sha512 = "0e64a924486d8c0efb8bed4271a3ef6731f76fc0a7b7e1909215ed2b9635963659427a57342a26b825ce11aa57c2aa54fd75928d27e63dc5bffbce2bc3af75df"; }
- { locale = "sl"; arch = "linux-i686"; sha512 = "2cf452873a756785e1468eeb2f9b2e90567c22895bddfdff40b23e69025abd38e1634358a47bc943335e8516fc2f55b939dd2f3ffcbdddeacd3b1c3d39811c46"; }
- { locale = "sl"; arch = "linux-x86_64"; sha512 = "c89b76f586190b2f3d5141c066691652a193d25841e87ae0e5ff5dd938164b95032e50239354e7842960a4a4e8a3a917c0061717acd9fd36e74e739676935736"; }
- { locale = "son"; arch = "linux-i686"; sha512 = "ff56f55c9716ec5d7af6b1f22da2b3105d62c821010f95333412befed11146e95abf7952b2fa998b444d6b9ec9777e747b139bbfbf79e16c881cb55e0c49f335"; }
- { locale = "son"; arch = "linux-x86_64"; sha512 = "284585a534cb65ef2c3dfb46afd1ab3ff0d9695a553aa4c04caf9487a4f6418b461c872aba2f2e15e6c00010934a7f44424a18ffcafaa76e35d3d2a0d61a7551"; }
- { locale = "sq"; arch = "linux-i686"; sha512 = "3a2cb298bef66314afa54b94205de0c9fae75f6f063462060d3381939f2359255492adfae51f8215807723912d94ad55a99be7ec7fb023b39f79a951ffa19bdc"; }
- { locale = "sq"; arch = "linux-x86_64"; sha512 = "62cbbe10959edb18824fd22729bb7d0615441377a546b745ca287b9c2398d6b4e8c4f6f80eda48efe5e808f1f5327862e7a364f1d837901341317536f952bb69"; }
- { locale = "sr"; arch = "linux-i686"; sha512 = "c367d4b46752b0574d8842ef211e9f9bdbd68a2f14785740f4cbf785ba82b42c33d6092f3abae2c730be12345d629864b719d534a4c07d5cbec311fbf92df19b"; }
- { locale = "sr"; arch = "linux-x86_64"; sha512 = "16263f6414ecc92e4c7cd0e41457f42217c86d9d373c6f5459b4ddf4b0842d20bdf1b7446a80ba59bb9513f745ab7433c504dd0174ff516c34adbcdc4861b5a9"; }
- { locale = "sv-SE"; arch = "linux-i686"; sha512 = "fef1978d41a13c485ca24fcd1358c8421aa6be06730100e66567e6a7021424ffd2c94debd96f6e25cc8d429d7460399e10e346251223b36ee924174bb63aa9b5"; }
- { locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "1c8a7506109569c0298b20fb00f2463d4e78ff04d5b41661c5cd758a6bebf63fc2abec6f1cafa89acaab679764897dbe10e5647c3a32efe2b748a06e6d5af342"; }
- { locale = "ta"; arch = "linux-i686"; sha512 = "7060ea65a9a4556bf7b7d438de3a516ca4c20531cc5f3c97d8695f3fbbc94c37060273551a0e04382df84812e170512c143e7f835699e99ca8ef21c50fd47437"; }
- { locale = "ta"; arch = "linux-x86_64"; sha512 = "beca8cf5594e6865510c2873c6f2b8a9fcf68440d9fb75979e72ddaa994ea789e9cc5d5829982abfff5932ca4d1a491da53ccc34b7dee38c3114982fcda169b0"; }
- { locale = "te"; arch = "linux-i686"; sha512 = "e99f01f99eee95ce73af2b818ebedb05414764cf02f3928bbcde6fe3bf03c71a2043b99088af4912b4033453d6a70adee70a7ca583ab5279d9b5ea194137a156"; }
- { locale = "te"; arch = "linux-x86_64"; sha512 = "077e1246824e5ef9b08f83c4589216b9d91e79a6cd8fa7b6da0de9f35807076bf9b29d9e514c58e1437d1a39d32c2ec09eb39176461daec35734d327fddb8a90"; }
- { locale = "th"; arch = "linux-i686"; sha512 = "a1eb5970b00c0472a96fcfba4c1a30d3ea7d383b5547cd8156a547a5725e7ca7b42c45a4c3ee749221af8bec65764498cc0693f778b6fe3e186de0580f8187a1"; }
- { locale = "th"; arch = "linux-x86_64"; sha512 = "73bace49382ba38af87d77a0ec180e0bc2e9c308208dc0ef8d789ba529d7d4c4d97815924279eded4f7438f4f12bb6e7f92c6474b00d1336bd15d5b48ae87935"; }
- { locale = "tr"; arch = "linux-i686"; sha512 = "23ce428ae503c2a9a5471ae84d79b110317d17d59eadbc39aedf3c219285c7c20af7eead04a2de7cb6bd97dea3b9834bf97341f3fe68c79d31a029e547c2d7e6"; }
- { locale = "tr"; arch = "linux-x86_64"; sha512 = "e8a640a5e1dfcb2e118cc20f26ec0bdaca3fde5a9b94cb62b6170a8f0a161ed7d1492cfafd0a5ddbb7f82810c96b589979c31cb98983a9ff26a7f131fc186b99"; }
- { locale = "uk"; arch = "linux-i686"; sha512 = "6f6c3ba54d22f90869a9d045ffcec89ccfef7f80745ad89c8200e0cf3d76bd09d379680440f27aaf50ee5eb7c09d29dafb37416a5d939d6f1b44cd9dcd542b03"; }
- { locale = "uk"; arch = "linux-x86_64"; sha512 = "e41efe76cf15b1b3bb51dd3ec1c4c571ad80dac69962c604ed8b717cb442626c76a5ebb078dba5d2e94cf7381461803504c9a3e313401a1d25addba46b46810a"; }
- { locale = "uz"; arch = "linux-i686"; sha512 = "c5037d8f96f0b1c98c7e93557872f02506abf78dbec0d3041dd69baac73f6928622d4131d3387d79c5e4edc4b37a9c9f29c5c06d891e3ddd8c78ba3b1c3e8a58"; }
- { locale = "uz"; arch = "linux-x86_64"; sha512 = "ee727853b1323a12aebedaae543e18833f1167832baa76c8dc7341d1c50f48751e10c5d3d35c69cf2837cb1cf6fea6162839be045afee22c06ca25833dfc419f"; }
- { locale = "vi"; arch = "linux-i686"; sha512 = "463ef27d81df3f7d3d5cf2362e3d8d5144db2bc7c57b0ccec75bbebdae7ed5e366242bd9202adb47bf785dacf161699fbb619d6c35a8bc6eefdfb15af9c9d257"; }
- { locale = "vi"; arch = "linux-x86_64"; sha512 = "efc8bc04e117ce791d5bf491cb5feb78bd6a9c112221590073ce5a801384049e1279f5e051d8475b960c9f7149175345742dce02fd593a95f1ec83724a1b5fb9"; }
- { locale = "xh"; arch = "linux-i686"; sha512 = "0283091ad6f61f1d6ed547ec841271d6c222bd02ada832bacae0d5b75019e788043abc97ce90bb94ab30b3ec5414911ae45a86a79b4c1e17efb78ec309103fd5"; }
- { locale = "xh"; arch = "linux-x86_64"; sha512 = "1fefd81b65e80705d09612e2fa3996d0a11fbf01c1a49d4ea7769a31b6f89827e1c7acba85c7c5d109387afca5d108f2f2e3f6db36032298c260093687aaf54f"; }
- { locale = "zh-CN"; arch = "linux-i686"; sha512 = "f22c920f0959995c3b0985044e364ff3edf191227f70c339ab6a64e2c02e4d0c11064439cd8a9d04917619f0128585cd46c64d12f4109170ff8b2fec51ba8e3d"; }
- { locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "801e25e24fb66d46e650aa5af7ee95999a8410bdac5e8a067192fbef24690f1f0c273ce4836d8cabea637d165cc0a16b2c2f39f4604bf098e3d6cc8e4ea3df07"; }
- { locale = "zh-TW"; arch = "linux-i686"; sha512 = "ee2ca9b3bbae6a889d51d0922932e8bf7f523f8ad28b14647cebe19b5526580271ee87a124977089009ab1ca68d70120363bae76127c90e024567fa3cd9cbef1"; }
- { locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "6c53b22c8bf8320a397a4703e9b4568dc955e11e592b216c50e4382bb3dcfdf8810283afc7fe79039d83d5d5ce272d386ba0441472445afdd784a3da9ed61f5d"; }
+ { locale = "ach"; arch = "linux-i686"; sha512 = "f2c0f192757d7d8dddaf5d4baa7ab2697dd41f19ff9b5c191a08829ed0d835d1f68a666e086d331b34fd2c4e9eba75a516c13fd7fe8f9d3648c4624fff06292e"; }
+ { locale = "ach"; arch = "linux-x86_64"; sha512 = "d6aa9b1909ae41992a1f448a838c7f5760075c3947307b9b45e72da724ca86b0701ad686e2a93cf9d369108326b36b840eef9bd4a5ee878e17fde169ccda2d00"; }
+ { locale = "af"; arch = "linux-i686"; sha512 = "76fe510aa89f2025066dd34ebb62945bec39ad259ec2b76920f4927d65fc5ea314887fa735a36de55af3c6965b5bda88eaf93ede9021e57a44499df9160b6b64"; }
+ { locale = "af"; arch = "linux-x86_64"; sha512 = "578b6b3cf27743c2ca993f44ea67aa1cd7a28c6212618a5ce60e81146131d5bcc5b571c8005d0415cea31767f98549c04b259926001fbe5f744e61fec42e08ff"; }
+ { locale = "an"; arch = "linux-i686"; sha512 = "927a8becfe9d23c2c66bf6eacfb061eb73d17b6766fa897ec89e1426d8b2320edc76906cd5d47e60a48110cd1a261978c5bff6805f91b95bf6a9539232e4f318"; }
+ { locale = "an"; arch = "linux-x86_64"; sha512 = "8bf1300ddc2c968c5634f3104e5ac3b4b573a1eb3218ddebf2e2bf19b8232c66816df0268d77a0ac322351002bb16ab850b0ee581f24091b2a826638c9adcfaa"; }
+ { locale = "ar"; arch = "linux-i686"; sha512 = "e8fcac5e450d97ed131ed11af0acb0adbbfc490c32714a87ef3a4937824576038f99a83bcc4ddd8c2de912436f305d8ede4dbc25ad15d866c9b05ebceeafef22"; }
+ { locale = "ar"; arch = "linux-x86_64"; sha512 = "8a625fa7aea1f0f115bd5a7cd51e7a723eabcf859bc5aad03e1cc8e83835a6a89066146430462a703807151cfb9528c4bd2393a507aeb7d09ddc7f13e5c9f6d4"; }
+ { locale = "as"; arch = "linux-i686"; sha512 = "423f810f72441a42394ba7aabe2fe8931eda8c5b86783c9b366098a15c909f98b57e9da7ebaf47776692f61b6f1e8437a66bffce9760717ad10c9dc9ba5f17fe"; }
+ { locale = "as"; arch = "linux-x86_64"; sha512 = "95fb92d54b4ae5fd7ff3ad9c2877701bc1d99d85fc5f6962ad424c570d7ad621bb5bea2c06f1552a196b515c158ab3392fe6a677c33250b2ef9991568a12579c"; }
+ { locale = "ast"; arch = "linux-i686"; sha512 = "9ea9099863d130d55bdca59aba52da1aa74c5aca26ce8f1dd2f3843ca41a76839d3f3a6bf854d73cf99c2f4317770653fe241e0ab96b47c956fc0c7b9a5df9b7"; }
+ { locale = "ast"; arch = "linux-x86_64"; sha512 = "668648f760ad17ba552cd60fb1874ca196823f1441f4b1e5f8f2818c616edb7d2248f602b5cfff151ff7bdf39fa08ec1d72cdf6f75c7dc884fccb7489c2c596d"; }
+ { locale = "az"; arch = "linux-i686"; sha512 = "e7474052cb5703c2625a8ccfb95d62fde0b557b23217ba4086a2849c9f439456494b4464e2478ef22dad025eba5e42fc422dd0221426cea8600e4a9cad081628"; }
+ { locale = "az"; arch = "linux-x86_64"; sha512 = "2072ac5c93fae1d5c092d94c46698c6bf30e0d2378e3920a3c94d533b298970c885d658895f4c6d75b472f54da2903061db2e66cd01c75f4af58dffe03d8c783"; }
+ { locale = "be"; arch = "linux-i686"; sha512 = "0f6ba65f6bfa2fb56f84d1dc66bc8c3f5f49f84aeec395786dd30a53e843831a7427bd7fa9ea8b6d4dc2ea506f67ab1c619b72a9732af496e0580c3eae23f9ce"; }
+ { locale = "be"; arch = "linux-x86_64"; sha512 = "dea51d5ddc791a4b0eb35e73843a48ef0002586d3146143b4a88fe349d1d2229b37d3dc8cd1bfe27e8542feca6bd39e862fdeff564ad02d5f0f12ee6ca4f8fcc"; }
+ { locale = "bg"; arch = "linux-i686"; sha512 = "3b48d3d01f70c31a56308022323f37e9aa42636162c3841f9ddd2b660d6ae55af880b2d243ff98de4e75628bcbcba9dcdc34e342b7082032bc1ebdee3ac98e2d"; }
+ { locale = "bg"; arch = "linux-x86_64"; sha512 = "bcd3026820009724d3ccf48cdb382208537f500aadff104f7de5641985ff06cd49920626b43a642df64899aaa21b562350c3be1deec975464ab7b079e8148e8c"; }
+ { locale = "bn-BD"; arch = "linux-i686"; sha512 = "2814c443a77552bbd64cb1ff656ee22f082f298cc2befb1c3d4ac744510364b5b9e997d7e5d55ed172619b2e96d731e75ecbc554fd2ab3b5516de9646baa5e99"; }
+ { locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "cd660f2e51b177296c100a21f01e041018202191f22008d9905c7c9d393421d6b1aeea921607a527fad8e861a6e6a47d93a1705400b9447f9e5954182ee521da"; }
+ { locale = "bn-IN"; arch = "linux-i686"; sha512 = "5bb89d1940f99faf27b194b06c965f9d538770c75104eeb34702cd96ed81dfb531c1e7537544aa42479780f17cfa8c0489da8d5f6bf1050b222926f1e03bc545"; }
+ { locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "491812ad2c3e5b8d0f7744578f66171e89acaa5e6666650b35db5dc57bba124e27d90687b2d57b1167122b49ba89614be51d58ddc1e705d7b9257c5f65c28356"; }
+ { locale = "br"; arch = "linux-i686"; sha512 = "306dfda3ade5ba9f18695df80c5ae1781f407a62a3016348baf2f7aab7dc89fe5ac11aad226da328e4fad8e49fc43e98ca9cbc3e0d2b097bf133ff54d0f0431c"; }
+ { locale = "br"; arch = "linux-x86_64"; sha512 = "613f826bde6c1935144e6ca10970864a07c065c917f38e2d206d79627284bc1066f8f8859ef7fd55c5db0603093fce3c689bd490075b644fb4278bb0cb2b7259"; }
+ { locale = "bs"; arch = "linux-i686"; sha512 = "60345c10e148dc322e8ea9cfb9632df60c096aa950f44625e50c8534193d22ccd440fc95df9c2e47a0efa161ab2c214f522bd9f624f71820da315ec5ffc729c6"; }
+ { locale = "bs"; arch = "linux-x86_64"; sha512 = "70b257b9f24a5dfd92e617c37deac7174d6ed0816d430262e596af38d939a7fa929980005aaeb84588c9997dd343d3d98c7855ffa375bfb6e26877f79269e350"; }
+ { locale = "ca"; arch = "linux-i686"; sha512 = "509fe80f15514d996ac929b149e83e174513706bc9bc62e04ec42fe023e4df1a5966e19b30ae0823ff38ecb1f0f46474e68f4ce0a6a68886779544e2160f0a25"; }
+ { locale = "ca"; arch = "linux-x86_64"; sha512 = "645e0f0446c0a60cca75b553d36eb83a173b1747b36705f7b9f1ac36123ea68c98679a99118d4b922cc87412db6cc43c7dd30cf38ae3e1ac197022fbd1a7d231"; }
+ { locale = "cak"; arch = "linux-i686"; sha512 = "7fffe20115e73010da075663593e7c18241d8df32ba71ea88f54eb1946d725a098f26ad10e8f02f0c9c9717be803ccaf83a74fa848cafd01622086fbb0277870"; }
+ { locale = "cak"; arch = "linux-x86_64"; sha512 = "faf75e7be493279b86e7aeedefd738e92ce18315edd9061f73d78b2c433085def7fa58ffaaab1b4684c5a68e725d47c8082f7d00bdb8824cb451f405f8c3d009"; }
+ { locale = "cs"; arch = "linux-i686"; sha512 = "906e346f3d56bb3c4038d9fd4351d0527eb3da79b4cd19b8d6701973a8d894a5cfcdd61b0af19d62d29b532145b0519a3f42f7b4d37b39372b70d5d02db78615"; }
+ { locale = "cs"; arch = "linux-x86_64"; sha512 = "6e9d8f6a8de8e34ebf242ffc76a195e40a8872892c4a6920958e13580e79743cd99d79358834b2fdb4f468e79718f06a0b36b410a6108fa059abff84e5631c9f"; }
+ { locale = "cy"; arch = "linux-i686"; sha512 = "29201964f3f3650229571bdb01f2421928db6e6a66bf16c355115112249cb7fc87d4f8de79bf8aa511b03449fa24708a120a91dc316d824321e827ba1b94614c"; }
+ { locale = "cy"; arch = "linux-x86_64"; sha512 = "e05b015f92bb537456376fecd3712c20fbd75272938eb65cbc4efc86f89ac2282d0085cf3a694eb35132cfa33e7c6a1d9d31f6ead19775dd552d86b0094e6cac"; }
+ { locale = "da"; arch = "linux-i686"; sha512 = "0134d9a2566d5db17d74a6847cf14445c6e036e75369ae4ab79459ec9c4d3f576a85cd2f3b8a74b301a7a06d01a32acc1c1b38909e78724f1df81410c21cc9d9"; }
+ { locale = "da"; arch = "linux-x86_64"; sha512 = "adfb3bfe8461ec25d17bd307d27c90d27f6b6f13f100ae4dc0417cf7bdfa63b18be795abe9cbc8d621fc623f0d9fc31cdc86506bf708035d2e50442ade8ddcce"; }
+ { locale = "de"; arch = "linux-i686"; sha512 = "263fa508642bfd4158adde292803f99a91c8970ee220f20b4b94e02f4a8067ae08571c76a3cf16d911706d3e6b65b2e3c6a1b48f99756b814f5d2f731b42d79f"; }
+ { locale = "de"; arch = "linux-x86_64"; sha512 = "3b2ce6b7a84d749c5658553f750a7cc65d00e015d2b84862fa544921de0ccb8a77391718171a0ce9f79d949803382c27b03089c0247e2643862a8dede50f2c3f"; }
+ { locale = "dsb"; arch = "linux-i686"; sha512 = "263f3c0868e002bab2122307f40f7d2122c04963352882a115cccc258d6dba520c95012083f898006decf88e393a49c5b5944650102a7aa6c404d2e4cc2084e9"; }
+ { locale = "dsb"; arch = "linux-x86_64"; sha512 = "cf90b6bcb17d7dfe02d4ecdefcd45a694234440ac1c988bc20603b0a96cc1bda186a51c7d6d3d50ad12d9dae0cbd5ef99f9403014d6d7bf812c08e5430ab64b6"; }
+ { locale = "el"; arch = "linux-i686"; sha512 = "6cbf29fe7d578565a621468eb19315589aca02b90514b2be104cbb6f557b8d5d8db676da281fc32d3cc213fba9ae59bde2898e95e9e4b149d969b5c846434b17"; }
+ { locale = "el"; arch = "linux-x86_64"; sha512 = "65bcb7db22a394f8af91ea12c2d1b33c7c33a8f2c855a595bead81fbf6a70d6dc84f397f0a942d3db1b8c2cc0335f07fc63cdb917140b22985fa97d5fb348031"; }
+ { locale = "en-GB"; arch = "linux-i686"; sha512 = "7704a4ec2bb06113169f8dbddd94c557f489a402ba69ce529387c0bcb24a2559505dd3445e46b87f944cde3488e49f2638e2341df24d756cbd9f05035f6dea0e"; }
+ { locale = "en-GB"; arch = "linux-x86_64"; sha512 = "dc8c048597fbadf892b1376932d822b6b2b1974d4cf2b89cab295ff06f24d0c39fca9be9017f0542a54d060e34c708609757cd3b1da1e0f7ee2d26992cf21e4f"; }
+ { locale = "en-US"; arch = "linux-i686"; sha512 = "8d59d34f8bef6f1f3b9bf4767edf303a14936f635e924d2e5373d6ccae43cbadaff8e430205a26c01ace987dbed64ec11e553b06c8d0b97c9c33d85bb31ee6db"; }
+ { locale = "en-US"; arch = "linux-x86_64"; sha512 = "ab8e9bddcc85e91a679818c4bf6994d0ba00254d32df05e33e7ac2d529813830c1a67d622bbd879625b9b6c41b988afb7598456a6cb44fd878cbe655a1cf7e1a"; }
+ { locale = "en-ZA"; arch = "linux-i686"; sha512 = "e7832c3602ecb8103c5e8f2b7dceafadad1f2e3094db278477a1ec9ed5f4c38ceb47d4798ca3df5c6186ba1e85678fb055f25a373969d39351392673e001877e"; }
+ { locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "235e0105e669f6f4e68ba14174382c521dc4b23d76a054e07dc51addbe8bfaec46f4c7fa4a852490e4c879381b6f65a2a96ebd7bbfd16a40090564b224bc9790"; }
+ { locale = "eo"; arch = "linux-i686"; sha512 = "427628aa9934f7ef7989e859f90bd835a5085bc14143e462aebf5ef9c5cecd77fdc1599b13c7832c05cedf9296ecd9255c6881f1264d201aa1803dd330055ee4"; }
+ { locale = "eo"; arch = "linux-x86_64"; sha512 = "50229dd469804147fedc786a35a8032c6bcd7fb12abca6b9352aac8f6ac9cab56c8f487f88bae833907febe594956c978680ac39adb41ddf441bf56c6ca1c93d"; }
+ { locale = "es-AR"; arch = "linux-i686"; sha512 = "287049bc2b649ab9f258378371e5bcf8fdb23ef38f114b4030b6aed041c57d906b25d4984787bf382105af5e8e304001ac827882552671c91d2f67df3ebfbe5f"; }
+ { locale = "es-AR"; arch = "linux-x86_64"; sha512 = "2ff411ad6f97e65b756c201657eb73c3255c3de1b4fc72acc281915bc9b9ff8c729839d1d5089e606b338e74ac3919681f06164cb1e60d5d08326c2c080ab064"; }
+ { locale = "es-CL"; arch = "linux-i686"; sha512 = "5a66edb762b3f2be2ae77dee1fbb0b9e7e2e7a957c5bd7669792258de7c8d0fcbe2bad67cd34f30fab525412e1fd7dc02527ab764d5a296c52ff3c0911c98dc4"; }
+ { locale = "es-CL"; arch = "linux-x86_64"; sha512 = "6a38b46160385b82f7e403f589e8f1b138f5ccdeb81a21fe5a3e7289584d66471fbce7878b749cd466fb5bc4bbd6fb6a0c8d3841be31c326e2227b6fce7a59f4"; }
+ { locale = "es-ES"; arch = "linux-i686"; sha512 = "0feac37e9b6fac3a4a56a5e34ef7d2997a96c31d61f7fbac5e3a685553345809cf64fe87acddec6994159486eae14063d8b04bc741bec5b8ab3669352f1aca68"; }
+ { locale = "es-ES"; arch = "linux-x86_64"; sha512 = "b4bed3ea73c0a7b821aaebf1196bc7bd0ad7d5695d88194f995e5c17f0a3435b635fc0cd56155af48e691b99192851bb2e74528a6225fff12be464e42dcfbfec"; }
+ { locale = "es-MX"; arch = "linux-i686"; sha512 = "eb47674ff0354554a2698e2bba97f3ae99d32d15c398f17cef88b05832a9e1113da233b01522acbb80cc074f704dbee6955fa975fc96b55395d3bc36c7a6470d"; }
+ { locale = "es-MX"; arch = "linux-x86_64"; sha512 = "e258bed70c2fb88886653e7a47e8f574939a4c79d858bde3052f4bf3c140dbcc3d5971746163cfd1146ce6d045863771b41c64ed2385f6df19727d8f05596433"; }
+ { locale = "et"; arch = "linux-i686"; sha512 = "120f3f779add5348dfdb91f112df8e8abbe5e8b0370561f5f750d730bea1ef83bfb028f97ce2be77d6be2a30999371745ddc0827df2562129bf454644c5526ba"; }
+ { locale = "et"; arch = "linux-x86_64"; sha512 = "23be4694124dfcea463e119eb9729341fcda4f9a550c270ec9fa7d3d0acdf82314d94f6333bedfef4aab7c0fcc2ea81f34c9f653999d197af3138e630e37eabc"; }
+ { locale = "eu"; arch = "linux-i686"; sha512 = "714a3d9c72c79e3a55e32b16c5526aa825dd1dbcf6d8da056b4aae8fb9fa6de08ca2a8702d087cfbd538d66fa0cb7dc1b676df1abca16deed90045aa50c1f360"; }
+ { locale = "eu"; arch = "linux-x86_64"; sha512 = "bec1d92988e29a792e14775c33c95db54522a22c9db3970fbb52b683f668031c9e402d05097f0eb9f44e7b52da9374411eda0b38e6e3ff4dfbd30778f0034393"; }
+ { locale = "fa"; arch = "linux-i686"; sha512 = "4ae92ae5555ac303cbb85b32c389307927aec90f3dc8dfcdeb9c447ef7d76df850a0da2089ea3dc51bf10d71246ac7cbd53587a881dbdce93e6a67c90568cfb0"; }
+ { locale = "fa"; arch = "linux-x86_64"; sha512 = "26b9a9fb98c793630f251e2483944a4b4630dad669242359b38afa6158ba8718b87f7a3bbe743d0bafde278d7e7114cbb9a26b0bf37337101c6db1f3deea972b"; }
+ { locale = "ff"; arch = "linux-i686"; sha512 = "250425e3e008c9ec5fce82d57c743a7481c4a6291a60f200f82030feb1a5cf60079bf2add7adb0581b38195515161a8f282066918aa11c21c1a25f6bdb750c91"; }
+ { locale = "ff"; arch = "linux-x86_64"; sha512 = "b80f9b1a7d289d53f3ed101255a8539085125a8adb8053746198a66eedcc86b1ebd030cf1992d66bf9c50b7110f0c59892139cb9195065a5e219873f4e06499b"; }
+ { locale = "fi"; arch = "linux-i686"; sha512 = "f2ed582adbee8fa129586c2d3ba3f6255eabe8a1b29eac95c2af45d6196d88115695dbd9574da4dbd84befc7578aaea601b2f685a9c6369a296a3515d8fbe450"; }
+ { locale = "fi"; arch = "linux-x86_64"; sha512 = "36d9a9b27d92c2025d29894b69b50b8a9dc23d098b2bd4943ea86fc2693813e2fac96518b61918ba87b32c30e0aeeb7e0a95926aef27dc039a4c6d056b4c958c"; }
+ { locale = "fr"; arch = "linux-i686"; sha512 = "930f903853e8bbcb77e92022d42416e4d7085d8ea6688909a32fe5d3a52b466d91f83940b4d1864242984662c3d5356ed7dca22e5b38ff2f084f916708df1949"; }
+ { locale = "fr"; arch = "linux-x86_64"; sha512 = "3147e58710187b2e3973e9db45a71544bb810c125af5d42d42ff4a82658ba4decf93f29c7cf91bf66fc1f66b9015e13c2bdc473572d23d5e7bcbd2edea29f8fe"; }
+ { locale = "fy-NL"; arch = "linux-i686"; sha512 = "6827df664e6d0a40f6a20a3fdd7f6e094bcb789349cf05ab43689cae17761a5696121156ebdabf4dcee2bcf232063433e5b8194cb294c44f38a1ca19397101d0"; }
+ { locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "a3d878b27a95f1942394005f93a7e5f7bbe677454954722bc9e826eaac94528b944e11261b697dfbdeb5ee6f2dc2b0b69472092aa5b0bf7a21098be99c7aa91d"; }
+ { locale = "ga-IE"; arch = "linux-i686"; sha512 = "53540c04c36ff082665d0c662d3a57f976882e12dff31da9dcc25986a5e8b9f427c3678dcbc3ddb5c2af53ca3cede28e692a1b575b62954c395491e2a579f540"; }
+ { locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "336c86e648f3ba48c885aa2363607267df275dce67407edff24e7c5959084b7494119fec0712316104f2e062208e4d41d70c1d8d91c5d8cf75a456e3ad7f5970"; }
+ { locale = "gd"; arch = "linux-i686"; sha512 = "2e95307fd68a654926614aa82f6a9e6aa214348aebee79f24f3cb13b8723a08d6e4552700567b0ad0305f951f7a91e2a4daab9b78d7fd72ace330b5501f646e7"; }
+ { locale = "gd"; arch = "linux-x86_64"; sha512 = "31cccd686805e819cede6b5f92ad270aa534ff607f148d7efdab0be91d78e20609abed9d7e2baa12323f33490af700a4569305384a127148f36e134651bfcfdc"; }
+ { locale = "gl"; arch = "linux-i686"; sha512 = "19e770c25e0023cf405801bf1bb0f4f08083117626435feb9292e2fa236a7af8f65d5402c19b7b0b9265a4894bfd2609e3fc364c4431922a6b62804511fd1f1d"; }
+ { locale = "gl"; arch = "linux-x86_64"; sha512 = "569a2eb72f232216f379c890abe7d8cd61120f99dfd75ebb9cc610e5726876bb64d94b6aa05a4996855095ed76bf731941ef8fd3fa116b0a51ea64c739323f95"; }
+ { locale = "gn"; arch = "linux-i686"; sha512 = "b386a8bf32bb42fcd0d011a16ec4449d51a11de4fa35a715a2d08baa9a744fd219c9067e865530b2e1fcf074030b785f17231b3394fd044fb8516e8ff83f5645"; }
+ { locale = "gn"; arch = "linux-x86_64"; sha512 = "57d55e84ade8c953f7d3d738f209f1e05e7020784ea12a536713e4eca0fb85cf27560df70aa9fe6bf1253d1ec0c2a81e1169c3b72728f83004675870958f9d0c"; }
+ { locale = "gu-IN"; arch = "linux-i686"; sha512 = "94a5710cf9832d92fdd8540118427fe0ed14da27f0d9fc5f12ac28eec7f0930137f892d8344531ba010568e79cd8a8a48e2a3c52f4083cb7bfc7ce793e05e366"; }
+ { locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "59c37e95bcd2b97f641f8a637642c65c74a5d12cb5aa177e3fcff68de840db574e5e99fd14d59f379ad72d0a89b2384f242ac496ad8200c4db9240c46c61842e"; }
+ { locale = "he"; arch = "linux-i686"; sha512 = "fbbb5754f3ebe95b5ecc3c1e7a995023bca549fd07bd6d65b41b58a5bc6cd59c6ffcb46e580fe1aaf826d6aa662ba180eba3a4b911017327c02b0ffd2a757fde"; }
+ { locale = "he"; arch = "linux-x86_64"; sha512 = "2cfe531fa70db4309aa191d5112bd5cdaec35e52b7a0de72341263468a4e2f2f320bb0d8927d1a51bbb53ca607f34a16400198ee31ef42a87f7890760c7dd040"; }
+ { locale = "hi-IN"; arch = "linux-i686"; sha512 = "c4afe5a04da5f7a2c78f98491930799a808312dcde60c0e0b1d5f04ef05aedd7cf6f7a9e2e66a8ef34d6c20a16386903b07590ade1437bd5d1d69f66c2c0080e"; }
+ { locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "abe399d2326e55e5ab380d1f5af25c5a1372687380834a427df6c9ed3d8acc43e559929124d23e4a55f23691e7500aff3b43a9f4018dac5ba19ada742e9a134e"; }
+ { locale = "hr"; arch = "linux-i686"; sha512 = "699cb32761706f39342a8a118006daa34423d4e1aa159889d3c581a4393b9d299d73c2a9c8f2c47677a35252ad2bb4bf423d37187fc53f9f401bc4e2c7766c71"; }
+ { locale = "hr"; arch = "linux-x86_64"; sha512 = "9d74672634c83abedbaeb89ff931f981cc0e6abe6141a1339e39c05f26ee6d991742b8ca41cba6bdcd17134b27ea97722df2c73e9e67ee7fe1257301e8ff9e29"; }
+ { locale = "hsb"; arch = "linux-i686"; sha512 = "062f91a5090915a3cc674b3ac1fce41aa755356e6eb03aa3841a297abd56c9b62969736fae6f890d33675c813ef2e16afb989147ec254ac7d21d7a8e08e65c74"; }
+ { locale = "hsb"; arch = "linux-x86_64"; sha512 = "8e1a7652dd919748bffb90d3d738c00670609dda0f0f7fc61d0fe44645546249dbc536bc6fe0e1620641ec49534f5c547b29ec0e3e8340bb970effca183cea60"; }
+ { locale = "hu"; arch = "linux-i686"; sha512 = "1267f2548bffce97b2dea39d69bde19d2d2fb0ae34dbbfd73f84a95e018392bc44ca1c613aead56ff8088e64e4a2ba4e3d78659a4fc9d9b6b4ea83c4d7340220"; }
+ { locale = "hu"; arch = "linux-x86_64"; sha512 = "900c72bbb8d75f79f06c254270e95ca804f946b4cbed07c9d5eb4ebe35fd6caeef623deafeb1e579a4ae97da58f24416a81b1419b8107a65349b5c8496e664d4"; }
+ { locale = "hy-AM"; arch = "linux-i686"; sha512 = "43e881e3140528ed65cdc217e70e05ad4e3d4e48503e7f6c526c08684bd5307bb2b7c4b374efba8eaa57243833eff8ea48b6c385dd8e3c2edc8a570dc12b2d81"; }
+ { locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "0d38d8e2b9008b26b0adc89ea497b69011f3f5e84ec1fa55e29328a9c41be1dc063c5dd7e22e42c45b25a35a7022e82d85ddc58e15aedde627cc05f78b9f196f"; }
+ { locale = "id"; arch = "linux-i686"; sha512 = "a5cf380a49cf9a5cb018be968d28f60be0979e47c06732ce8f3254ed9988f745636b7a616a65ebc5f5d78d0e1357de83552e886d06efb92a54179a5c740a764a"; }
+ { locale = "id"; arch = "linux-x86_64"; sha512 = "4e8846f47027a2ac9b3aac4d7ea0ed774bea87f8ecd3bfa3774045050395b10b46254d4254dd40cb9a670300621b791113b38ef4c316a0339236216d7947ec81"; }
+ { locale = "is"; arch = "linux-i686"; sha512 = "071a574d070b00379512fad2fb6ef5d9e012976f4b30fc085a56c201cbc3f25931c12e9be03af3744496d73571a4de2c95a8c77ab3a343f32b70b066937f105a"; }
+ { locale = "is"; arch = "linux-x86_64"; sha512 = "a60bf26dd76c8cabe84359cfda8a002b414613c2d359ba2badb2da22a50b306465babdcfe2d63557d1d8855eb9184bdbcf8075d475c2945fce341283d1c7d415"; }
+ { locale = "it"; arch = "linux-i686"; sha512 = "a9dd2973e91662a146250d520888daa7228a9ce23470f351df2b7ada8721ea1f13c15b8c9c686b4dbbbf955ee7ff7dee704ba037373b2dc5d91e77470ec35a4a"; }
+ { locale = "it"; arch = "linux-x86_64"; sha512 = "b6d196675990053d44b7e96d4c8e1e9c6e607fc358aff605c0978f26c3bb486f84541743ea79d61e4751935c71342ac662d660b5e2990861c518895ea5218e73"; }
+ { locale = "ja"; arch = "linux-i686"; sha512 = "8a18a46e1f5dbf1d4ce2e8ba72188afaf128d96c767751ee763e77d03dbef7daa04898286a3b23308f9009535aa8dc81a5cacef01b0b222f6b59653c9bc29e01"; }
+ { locale = "ja"; arch = "linux-x86_64"; sha512 = "c5fa6648db9ff7bdaf309d80eee4fbe01c94fd97a6ead0c803bee981d44117052bffe1e424512fb5af27c3b17c055ce3e1bdeca47a28f8893dbda0d755c770a3"; }
+ { locale = "kk"; arch = "linux-i686"; sha512 = "43a61d27e32363842add7ed61daee0509b21e08a85b64479d00ce7945c07a6ef33de86d0fa8f713cf302736083bf93ecd3a0584d733c6ab523bb786d40641645"; }
+ { locale = "kk"; arch = "linux-x86_64"; sha512 = "fcb779d313db514e0d6383fa4f27bb4461f9a91be9a7bf5be28314654591ed24f32bed9aa9cff30f5faa3f2b7ba1e51fda16625791b6261fdfb9722959170c3e"; }
+ { locale = "km"; arch = "linux-i686"; sha512 = "993785268c090eb52689ed8f897614d03dd4601cab5c8cc53a5c82571da08ed9cfbd4b50813ef7b57791d0e2746e3b188590ad2f7c850883086f454c9b811657"; }
+ { locale = "km"; arch = "linux-x86_64"; sha512 = "8adaa6f0b24751bcbb858a3ee8d30e38b757d0ee3be99d05a812d56d081d729f043e3031c800c1913607a3298cd0f4de489599ed7be10fbc5aa0a18bbda265bd"; }
+ { locale = "kn"; arch = "linux-i686"; sha512 = "944e94b66c696afff4bd59467cee862b06809197993ea9585a7367665d67dc8dcdd08e7aeb745a95379dc3b05187ef020d5ceafd5ded4c1b62592485269411c5"; }
+ { locale = "kn"; arch = "linux-x86_64"; sha512 = "53e248541226bbc5405da683c424cf0309088c583ecec7e1b2d768e13e032235828973b0c3478ae0f1cdfaa26de9bcb56ff17563c6303aee0f34af83b806c69c"; }
+ { locale = "ko"; arch = "linux-i686"; sha512 = "01284a92e559e0e626426b43218623a463e1d6f1dcec40e6cd1732ddf749b76d855a55a7110003026e7cb381c97b85e0c9651c746383e154d35bf9d2348f38f1"; }
+ { locale = "ko"; arch = "linux-x86_64"; sha512 = "eb5f42ec04d9f16df4234bddbb21fa2b2c510d79483acd421c9ddc3ae2ccdd9ff306ca7679d520c91d38572bd65331a9109ea469fc5c99f748e01e42f3aadfdf"; }
+ { locale = "lij"; arch = "linux-i686"; sha512 = "31ebca9a1816f2b05bece4238ff50518b55ba838d66c80ffd06535b7bb15f467e8d722fa2cf0219a52324b9fbce1b9cf68411192d00458cccc0cb0c244ccdb5f"; }
+ { locale = "lij"; arch = "linux-x86_64"; sha512 = "d0da2f54fda85610a14772ddf79ea80e7d02a31f5ad2d4f5f5ad31b4045cf99ce72bfca8bcd0a2bbda172381275b235c0fcc2f57299b75908da927a32376662a"; }
+ { locale = "lt"; arch = "linux-i686"; sha512 = "f3acf3de208ed2be59b89cf4036884341c5847f0d688cdce2e62a4639d0fb5480eacff1a9bfa5af5b10f16b1f6e00c5ec390868bbf15d3ab00f724dfe0386c7c"; }
+ { locale = "lt"; arch = "linux-x86_64"; sha512 = "bb5b3ce914b6ddc637a469e8bd2a58aa49ed3cbfdc3e9d2c5943c93f7932e4ff1e1a55f12b4c9706229c4388acddd1bc2160d1bfcc19144ca35d842c7f88a58a"; }
+ { locale = "lv"; arch = "linux-i686"; sha512 = "f94d038ef012958a1acabc91441d8e7a8029d43f4be30e03dcac0466945a97782b7ff31ea9200c2cf474d4785bc6e17b5761f18c205d981bb5869310fd7ab1fc"; }
+ { locale = "lv"; arch = "linux-x86_64"; sha512 = "7cc8320f678f3b0db83f536e0224c3aa933f70910ad00aaab51a94d3f1ea86954ea88f97528a77bd1cbe9047d3089180f15bad047fb87add116d2ce8f4c4aafd"; }
+ { locale = "mai"; arch = "linux-i686"; sha512 = "98fedabbf9dfcdb15bf03bc805a37feda40a74ef75631d0533d3ae75492f2846025db31dee263a46e45c0bebdf593051a888a58510bc5a617c60bb2d76513d75"; }
+ { locale = "mai"; arch = "linux-x86_64"; sha512 = "3068e6b0366e0207d47e0346ced7b4051b72b384fb4d1270c10b6d7abf4f4f087e0e7b3ff4059e3760274b0665a0a278283be036aaf254769f1102a8b986041e"; }
+ { locale = "mk"; arch = "linux-i686"; sha512 = "328559fb21d441660f2d772d08de6c23d5ecf792bd1c0fa35dba8e24fa6b36dde1c205eee78c50df6c19a88c18df5521df913dd35a5fc685bb3d323ecc922043"; }
+ { locale = "mk"; arch = "linux-x86_64"; sha512 = "4f455eb0826491303c351c0b33f329e2467acac04724ad83965188e80eba320364163eb4abada1cdfd2c3ca0d4b682a588d6469fb8088f0a725075c4e7d9f274"; }
+ { locale = "ml"; arch = "linux-i686"; sha512 = "9c25afe7df32cf4887f98a45b0fa6af1d971e2ebd8cb51f9718f8801b4c15a96a579909953ceb043f62d733b5ad74dc6a24152638ef40defda416ec2c7c31847"; }
+ { locale = "ml"; arch = "linux-x86_64"; sha512 = "02db0f63c767718998a741ea873ada8bb9ae1fd0bd55ca8e41e64c613253336f599f076c0a9cc0257da8e47a90b605fd60a8d3d409e46348750d29b21d423c55"; }
+ { locale = "mr"; arch = "linux-i686"; sha512 = "d93cd2f804b34f80ae9f9c80707fe8eca7a3ccabc2eb04110adce764f87a009832b9e2459f2695540854ee0b4653c21bbcc90af1c26a58311448612ecbee6a28"; }
+ { locale = "mr"; arch = "linux-x86_64"; sha512 = "bc39b04b09b5ea90142d75c8db847c5b5b5e1e8a9162b51465bfb2e44e182cc0e6c2b895a2e2ad9a3b799a11d97342bc1979d20a4d14abed8d1eb7a6d4bf7647"; }
+ { locale = "ms"; arch = "linux-i686"; sha512 = "4078f58d1022de03b6bc24d8a4b1cb874e91ac97fd7c856d2c34153be7fdd19c1c0e43f1e3b2328359efe9d12e7944b4afd1e94765cf1a31e1a9f4a510aaf3fa"; }
+ { locale = "ms"; arch = "linux-x86_64"; sha512 = "80ea5d4d120abb1ae30d72b51262be60175962ce1295dca0d0f9c07c2c2d93cdd1c6bf323cb1f4c34830a47c9c71eec0b03ef279b7fb0076e96267efe011be4a"; }
+ { locale = "nb-NO"; arch = "linux-i686"; sha512 = "fe9cb30a545cf30e9ce8f2ccc26d5d80f3b2fe50fa394b3500ffe1682869084915cb30fc3ad773f9a167e542e3b95dd9d335c013c65ba52dcce3aa68b027990a"; }
+ { locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "ef8d30e5bf024174ca282ef85f1953fd8366163b8f7a652f1f789663fb1a558c1223189212a05f409c0847441562191c92f3fadbdefeb2f2d93377ed58c2fc83"; }
+ { locale = "nl"; arch = "linux-i686"; sha512 = "3481e2cc8918cc6e5fdcded7d7f4a33fc82d6e9765c00c995f65b3fc1144979536fd0fc4feb51fa8c1f24825d6bf7793f5608bec85ddf7906102656aa3073f56"; }
+ { locale = "nl"; arch = "linux-x86_64"; sha512 = "c438ac385683229e42d932fc7fecbfbb6a2a6eb5fc01fd47b814cd7b259f063cbd488f323333dfdff34cefbfeea0dfa840e6dc619029e1961bdee9e27a1be2d4"; }
+ { locale = "nn-NO"; arch = "linux-i686"; sha512 = "79f2a46fc1b9af4812b3e33a8f5d93d87635965b4e5d8b8d23db00c43c5ae0d76550a7ae7d0c510f09123b44c214911a43e81a2c0eee0301995cfcd933acdc33"; }
+ { locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "e269de7fe8321a223c12ab692b381c3f4e194e5ea56e9b26e07e1da68eb10c0ee5bd0a0353bd8e9cb285eb56b17f3ea2a4eaf164076f8306bf46334478774702"; }
+ { locale = "or"; arch = "linux-i686"; sha512 = "e6e5fef195033af36a41c199d45f515792c9ffffd9ee3390a04733c32d646ae93ef2f48c8810b6a247fcb19b7d41844ad95da169a4e71435569a3b3caa8f6ca9"; }
+ { locale = "or"; arch = "linux-x86_64"; sha512 = "3333dec7315a32fc98a405582af5fed327478d3fd23f7c6959a216217f08213af8fe2383f1b19d3f3bfab5b7dcc00446cc98a67581add974bd1fc20ed6f4e733"; }
+ { locale = "pa-IN"; arch = "linux-i686"; sha512 = "7aa2f5cb9e547ee7612f2408fac26e8a14114e564288f4f2a99b40394cda1a8e806b86b4669cac58aef9733c444f6c64afa1a7fd9eb7fda4e71a569ac70caa40"; }
+ { locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "826e41b7d420ac381529248da89ca68731e64244ed482f28270ce4c6306cc44841bafb044fc45e5872c78e7cf1703c7f0ce4854987de507ca2c9b293f11d6c4b"; }
+ { locale = "pl"; arch = "linux-i686"; sha512 = "d75bcb5018620480aef4ee9b3ce7ff3d9bb962a207e7481b8c5f76e19fc07c0b32413e182d4f4c1a02c346ecde7b376fbec821397f339c72bac4ae1a8d0ff173"; }
+ { locale = "pl"; arch = "linux-x86_64"; sha512 = "ac6ae69f03042155c23c4081f8231b693857ab3e3c1776fd12482e3b71a74cf9681cffbff2ab10dfd68343bd57df453d27930af6b78cdf6acd8540ac255bbe06"; }
+ { locale = "pt-BR"; arch = "linux-i686"; sha512 = "3b1fcdfaa33f9dea2025b3fe8fea5ae8f1e7a02c654ae33edf463751814d1af669ebf6c32e75972942bdf981527bed5d783566744f63e9306b3fc58bc6af662f"; }
+ { locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "aa9a737456c65c908b0a3190f1ae8ea0630af7420ffae2c5f1774fc33558068e1ee94ceef04323d896adbc106f38a272629646ce457ca1dcf80748bf307b388a"; }
+ { locale = "pt-PT"; arch = "linux-i686"; sha512 = "90214a67b5b7e145fc54dc0d6d6750b456bf624be09a02344d86bb58f9d5ad68c2c3089bd91fa26e5e0cae4e536363fbd58cff856f30973fc65900079deb3804"; }
+ { locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "af418fee283817a39095d95990b7c45b487ea48a47415a42d1f733c1a7fb08a472740cd8f03f61d87adc9cc6cb0f1d6604dec0a603f1d07a1f455d327d8e7142"; }
+ { locale = "rm"; arch = "linux-i686"; sha512 = "5170d7043e9136f3cf2b89b7176fbd5161ab0629f927c2b07619ef54f3cf3dcc9b6c05d46c959a2d28cecd11b56b7fddddc83491ea4c37fb25c1d6ea7b213b3a"; }
+ { locale = "rm"; arch = "linux-x86_64"; sha512 = "25d5495f69360f19138e9b52bee9953b63d628fc47b56bc79b82bcc82299b28d240c5d4e7c043d7b71d76b8d20b5868d7647d7b4155a4f942ec617769f2ec63c"; }
+ { locale = "ro"; arch = "linux-i686"; sha512 = "e48da280009f1441c4b065dab2728eb1fdb3e6398b80eedcb945e72b34d3bc92b3c263a5dc6a8de37bb50efee63c55ababa720540a029c97de4dfc35b63c95fb"; }
+ { locale = "ro"; arch = "linux-x86_64"; sha512 = "b6f1d50c29e343e25bf4ca816ac51b9f1dd5c8de760b718f32900462959d4b5dfca334ee1bb6dd391adb7e9a516d5675245a0893d6842a785a910de32bceb82c"; }
+ { locale = "ru"; arch = "linux-i686"; sha512 = "8e7ba939d2618e4cf40ff70897cdd27265256cef03c5c67c2acc4a87a51158ab4aaafda6e94aa0ec150a600beef08480b18884dfa21bb00fce042d8cf923eb57"; }
+ { locale = "ru"; arch = "linux-x86_64"; sha512 = "b734f1d583bf525d2324a4e0472b375cc6e4279dd2218745965387519dc6c22453a919a956f2b346b166d326323e69d739071f8c27ec8e3ec9f0d79b2c25b922"; }
+ { locale = "si"; arch = "linux-i686"; sha512 = "58904fcf03826341cbd961a22abd968f21809fd9dcaabc272df08afc5c7f54a72defd0adaea51aa2c0843a435d4055f215c6b07f9fc59820effd8cdb83cc1a12"; }
+ { locale = "si"; arch = "linux-x86_64"; sha512 = "ba902d30340ccb1f067254d3aa59460c30588e6e93270c8d66c6a1bcae157cf4317e7904526b28f642bb39e7d7fb65abd4b30d10babf666d1a56a495d805b38c"; }
+ { locale = "sk"; arch = "linux-i686"; sha512 = "074a73f61f8f54106bb1bd895ed05e7161a7267621ee3feffb00ae9e517cb42864a2a54372316520d14a1eb1570cf4c125746229f750b43b9b4feafa04f87348"; }
+ { locale = "sk"; arch = "linux-x86_64"; sha512 = "62e7298061afc6c54879881ec1b9732ed0fdfe9f84fc783870c62e94f4d199e4a6b7e6dc652fa84840c964610dc83b7d31868492ae5a97ef53c6d68b57c20653"; }
+ { locale = "sl"; arch = "linux-i686"; sha512 = "9dc22697d6c487f63e21c3cade639aae421d587947f9c5b388fe3c16f31f2f6f0427a9d78730fdcebbeef438d185bc2dcf6c23a3dcc3e2c65a4a2942387f8da0"; }
+ { locale = "sl"; arch = "linux-x86_64"; sha512 = "3c55e65d704ea31d8639eea0148bbb72e425db347493695ac2deeb278e7919396a85a5e971d491b3fe9c14bb8275e926d22a875f0f747aa4818531801c65d5cd"; }
+ { locale = "son"; arch = "linux-i686"; sha512 = "122849b7a3f59d66fc2584ad0f0efa43454b2958878253f513466836c3092e287f001e0c72f55d9e319c531138669874ba73321323c565c07dc63a64cf674115"; }
+ { locale = "son"; arch = "linux-x86_64"; sha512 = "64b9e80e286b63d59c57a91c90a02034682fdaa7a33d9c596949cebeec1a0d92ec6cc2cb16f694cd089fc24fd2540ca39386ef3abb7cdb360e985638afb5b509"; }
+ { locale = "sq"; arch = "linux-i686"; sha512 = "4fa5606b8d041cb763874642b7ea622df5b7c29cd8bd514d884ad4c4f0bcd44a85d421575a9d2c256d347087405491bf8ebf928f94647fc96d34d52ed094152b"; }
+ { locale = "sq"; arch = "linux-x86_64"; sha512 = "2488656fb2d1c52fb8221ef91b32fa8f20b72a491052faca213fbd38bb09d479f070bca875b84064390b28076d9f53c0f8ef411707e1b1ee5ad6eca7eddb3bd7"; }
+ { locale = "sr"; arch = "linux-i686"; sha512 = "4f9a1a3969a7c273cbb9cf46a9d0f09e351935b2bdb7acd36272eb321b05171c466236b63ebd11947a8708383fa3d436790e591bd8ff4f88c324d6cf4bfa199d"; }
+ { locale = "sr"; arch = "linux-x86_64"; sha512 = "5c0c0d639c0279011113cbb4ba75127bf8c1a34697b1e5478fe44f869171e43c6517fe7390e69dd6f81dcce7cd122f083d972f7c3a52d152926d04fbc61cf00f"; }
+ { locale = "sv-SE"; arch = "linux-i686"; sha512 = "49ccd39f6a832ab97523b68aac726363ae9003c11bca6cf4db529e835237f09dd316c120178e49c9af10f9f31c8b41d4b2ae97f38e41143868d4e0c89a284c6d"; }
+ { locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "fa0a2db30b3c2d0bf476f093aee5cf6067d6237b8394962dd8fabd1e9d64993a364d658cf3bc5922068ad29d780e7281f03e6cc1475f72a251cfb95128bf2a24"; }
+ { locale = "ta"; arch = "linux-i686"; sha512 = "db4d31cf4348ee1e3f7f18adc69d4103428d172e06b51aa92f3bfb5f34ee8aa8be1fe868712744b245f1bf0cf35a83cff70b4c4737dc6d36ae6791caa14309d3"; }
+ { locale = "ta"; arch = "linux-x86_64"; sha512 = "f9cdd627843d93bc6d31303eabcd53bc842a3afd9d628c03f49ff7cfc6da069d5c2a89bc9446ccfe534425d39b0f167a1e1dfe90a7e3967be2793318e3496d49"; }
+ { locale = "te"; arch = "linux-i686"; sha512 = "fea5778e244b19e3b318ad8f887634c7437b7a38a6dd8928d110d4001d9fe518273e94182fed2d4c31f04a8d230f48698f60607b5a36f006294029220dc9edab"; }
+ { locale = "te"; arch = "linux-x86_64"; sha512 = "475dd48e7911859a56aee7cd66d2266ab4d33273fac22b3c1ef4db47245dd478e05411e430d5889e5e3263dd357e0ea9214af77196c663b97a696a696f824361"; }
+ { locale = "th"; arch = "linux-i686"; sha512 = "60875cae74bbc1fa27d79fcf298f87749010335176676e750202405286576cdcbcd899bedc5a79cf5cf7cf4ee54fda2fa882b9294ffb96ff46fdb323c77083e7"; }
+ { locale = "th"; arch = "linux-x86_64"; sha512 = "6a692c69a2f290e61d20f9a114187c09ff187e662851ebc4469b4bd68743a33c4e940e5ee22c724c18fcf8d8e1e9d69321acfbda3704bf0c6c158c65a1e469c5"; }
+ { locale = "tr"; arch = "linux-i686"; sha512 = "805db5eb571f84f6f818c8d870dc18f3b119e2559464ee9428905ff18a99792349d51c5098b815cfd0248c493513ef95fd23768098809a288ce55f0c21cf4303"; }
+ { locale = "tr"; arch = "linux-x86_64"; sha512 = "331dfae960fca3e4377a341bcac6b5558a14ed824b761e1a1f7ee45995c794b47d25f0763ec6b940f5a37aa5cccfb5d836574ca7a48f5d2d03d9a51228a837e1"; }
+ { locale = "uk"; arch = "linux-i686"; sha512 = "3b81d2072f89d17c4197ec50c9f6cd97f8318a0f998548bf8ce8cee166170b71b40fd50af542d170c7aef02f8212336f425b4257f23c5caad17c9e49c0cac577"; }
+ { locale = "uk"; arch = "linux-x86_64"; sha512 = "3a43a2a5a146f2c389b9db771dc9783427bb917579d0139e921fd1f2cfe23c155337ed9b2dc124857eaf1cbc354f9e6b734a549494e03b677d51ae68f4b06164"; }
+ { locale = "uz"; arch = "linux-i686"; sha512 = "8b86c46f8b7811668d814db06a5d49e8309c970da5bb4dc45cae90c980172b2dd9438d1dbe90a615cc4f388234e605aba1c12c4c47f25e15ac9c59938b0399b0"; }
+ { locale = "uz"; arch = "linux-x86_64"; sha512 = "3280a7faac5022d100c7b4970d2065df8313b29b39667e677fe6ccbcfc2b6dc6acb3318bc8866ce11c826328425da39dafedb9b5b1693af700bcf5eba43b3abb"; }
+ { locale = "vi"; arch = "linux-i686"; sha512 = "75bedcd0535928bdc973ebf5cbeec2ab24bed2bcb1f96ba52d83cf1f29f646bec848379013380e8357299cfb0dcfc9c06e0de0ffac81ce79e9880b65a7dfb354"; }
+ { locale = "vi"; arch = "linux-x86_64"; sha512 = "9c2db35562d7f4828dddba51d51bc6d0f77b7ace3c02e0892605aeae1c0c8d462111903c8e52799e2438f548749e8cea08dbb027dd2d706e04a2b0251c1caa64"; }
+ { locale = "xh"; arch = "linux-i686"; sha512 = "9215fa230df45a7f3c8bb558f1878e2e56ba385f10fcc551dc35f6a44906ea27c6f98217b397df5d994d8d833e14549056169e8579b41348b3c32e04a52c38e0"; }
+ { locale = "xh"; arch = "linux-x86_64"; sha512 = "a506b3f162ec72f41a84a661b269efc6c7f6a7fbbe6c6e21244cc433ad1062c269c054ece9d2fca8c1a01704b65003729183367509e6979de45f989819bf4a15"; }
+ { locale = "zh-CN"; arch = "linux-i686"; sha512 = "b2cc5decb60ee74bab8f46baeb68fac6cb71e3d7454161140369d2e24cd5ee3742f8d7e3a5ac52efa5433289a04c793eac6c6bdb538ef9e20c15529d0dffc7a2"; }
+ { locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "dd2c31fca8a2a908d86639ef0c3af065be355fa0f137e6dc48c8afd97e9d717ced45068e2da034120f6de59c29db46622244c312a33f6966c8b8b11fc9fb8fd9"; }
+ { locale = "zh-TW"; arch = "linux-i686"; sha512 = "56b085b47b0201394a09fc8092611cff1fb9b11776058cddbfc06583d63c3631c87be77add470cbd9217c3861c6681b687b1db1e5436b26a022c3f5f56e8c3a1"; }
+ { locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "1192a45a6cb57c717d9481d75b8009a45bd68447440ab58f85b578c2e37e06023e19cbad087afd0b8c57d80c40e4043459caa87c8e9f624df2f8b3188e2a56fb"; }
];
}
diff --git a/pkgs/applications/networking/instant-messengers/baresip/default.nix b/pkgs/applications/networking/instant-messengers/baresip/default.nix
index 782c801356e3..acc0ddd43d36 100644
--- a/pkgs/applications/networking/instant-messengers/baresip/default.nix
+++ b/pkgs/applications/networking/instant-messengers/baresip/default.nix
@@ -4,11 +4,11 @@
, gsm, speex, portaudio, spandsp, libuuid
}:
stdenv.mkDerivation rec {
- version = "0.4.18";
+ version = "0.4.19";
name = "baresip-${version}";
src=fetchurl {
url = "http://www.creytiv.com/pub/baresip-${version}.tar.gz";
- sha256 = "1qgmw0261y89zka9dgqzvirfk3bg8p5b929vqm1418859mw9i87a";
+ sha256 = "1ldh3sc4n19vsjfc1f3kbrin7djb1z6y1rkisc5f6zjx4bd6535v";
};
buildInputs = [zlib openssl libre librem pkgconfig
cairo mpg123 gstreamer gst_ffmpeg gst_plugins_base gst_plugins_bad gst_plugins_good
diff --git a/pkgs/applications/networking/instant-messengers/hipchat/default.nix b/pkgs/applications/networking/instant-messengers/hipchat/default.nix
index 4940acfe811b..a5a6e2b688a0 100644
--- a/pkgs/applications/networking/instant-messengers/hipchat/default.nix
+++ b/pkgs/applications/networking/instant-messengers/hipchat/default.nix
@@ -4,7 +4,7 @@
let
- version = "4.0.1637";
+ version = "4.0.1641";
rpath = stdenv.lib.makeLibraryPath [
xdg_utils
@@ -43,7 +43,7 @@ let
if stdenv.system == "x86_64-linux" then
fetchurl {
url = "https://atlassian.artifactoryonline.com/atlassian/hipchat-apt-client/pool/HipChat4-${version}-Linux.deb";
- sha256 = "043qcylqzkzgmlhhxnhm5wy3gvh2cyhjmxnnrrz7y183ji6rw6nd";
+ sha256 = "15xy89qmldp1zs3f809b8sayvawc7sz24l0718iib83g5jzvivsm";
}
else
throw "HipChat is not supported on ${stdenv.system}";
diff --git a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
index 78e1b2bb62b9..5d2cc9fa155b 100644
--- a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
+++ b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
@@ -12,20 +12,20 @@ let
system-x86_64 = lib.elem stdenv.system lib.platforms.x86_64;
in stdenv.mkDerivation rec {
name = "telegram-desktop-${version}";
- version = "0.9.48";
+ version = "0.9.49";
qtVersion = lib.replaceStrings ["."] ["_"] qtbase.version;
src = fetchFromGitHub {
owner = "telegramdesktop";
repo = "tdesktop";
rev = "v${version}";
- sha256 = "1i1f7a9mikq8n08cnwcyywxj7sh1jc6yfj0zd3n7fgfhl0srzvlb";
+ sha256 = "1smz0d07xcpv7kv5v739b5a8wrgv5fx0wy15d3zzm3s69418a6nc";
};
tgaur = fetchgit {
url = "https://aur.archlinux.org/telegram-desktop.git";
rev = "f8907d1ccaf8345c06232238342921213270e3d8";
- sha256 = "1fsp098ykpf5gynn3lq3qcj3a47bkjfr0l96pymmmfd4a2s1690v";
+ sha256 = "04jh0fsrh4iwg188d20z15qkxv05wa5lpd8h21yxx3jxqljpdkws";
};
buildInputs = [
@@ -160,6 +160,6 @@ in stdenv.mkDerivation rec {
license = licenses.gpl3;
platforms = platforms.linux;
homepage = "https://desktop.telegram.org/";
- maintainers = with maintainers; [ abbradar ];
+ maintainers = with maintainers; [ abbradar garbas ];
};
}
diff --git a/pkgs/applications/networking/mailreaders/thunderbird/default.nix b/pkgs/applications/networking/mailreaders/thunderbird/default.nix
index d67bf0854810..cd919566138c 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 = "45.0"; in
+let version = "45.1.0"; in
let verName = "${version}"; in
stdenv.mkDerivation rec {
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "mirror://mozilla/thunderbird/releases/${verName}/source/thunderbird-${verName}.source.tar.xz";
- sha256 = "0rynfyxgpvfla17zniaq84slc02kg848qawkjmdbnv74y6bkhs8m";
+ sha256 = "0293cwnqj4ys629ra87577c7snv4p8x2nbs1kzcnjpc96vjypsca";
};
buildInputs = # from firefox30Pkgs.xulrunner, without gstreamer and libvpx
diff --git a/pkgs/applications/science/biology/samtools/default.nix b/pkgs/applications/science/biology/samtools/default.nix
index 7c85513bd8e9..9535609fa783 100644
--- a/pkgs/applications/science/biology/samtools/default.nix
+++ b/pkgs/applications/science/biology/samtools/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "samtools-${version}";
- version = "1.3";
+ version = "1.3.1";
src = fetchurl {
url = "https://github.com/samtools/samtools/releases/download/${version}/${name}.tar.bz2";
- sha256 = "03mnf0mhbfwhqlqfslrhfnw68s3g0fs1as354i9a584mqw1l1smy";
+ sha256 = "0znnnxc467jbf1as2dpskrjhfh8mbll760j6w6rdkwlwbqsp8gbc";
};
buildInputs = [ zlib ncurses ];
diff --git a/pkgs/applications/science/misc/yarp/default.nix b/pkgs/applications/science/robotics/yarp/default.nix
similarity index 80%
rename from pkgs/applications/science/misc/yarp/default.nix
rename to pkgs/applications/science/robotics/yarp/default.nix
index 2daf5a4b5c7d..76ba871c4a1d 100644
--- a/pkgs/applications/science/misc/yarp/default.nix
+++ b/pkgs/applications/science/robotics/yarp/default.nix
@@ -3,12 +3,12 @@
stdenv.mkDerivation rec {
name = "yarp-${version}";
- version = "2.3.64";
+ version = "2.3.65";
src = fetchFromGitHub {
owner = "robotology";
repo = "yarp";
- rev = "v2.3.64";
- sha256 = "0x9sdc8d6rppzf1kx53w0yjlnmz7h75qv62yd3ls09w3cy7nb5x7";
+ rev = "v${version}";
+ sha256 = "003n0z1qrd7l8maa98aa49gsfsyy7w8gb2pprlgj92r0drk8zm02";
};
buildInputs = [ cmake ace ];
diff --git a/pkgs/applications/version-management/mercurial/default.nix b/pkgs/applications/version-management/mercurial/default.nix
index 9459dbe50eb2..f0ffffde5fad 100644
--- a/pkgs/applications/version-management/mercurial/default.nix
+++ b/pkgs/applications/version-management/mercurial/default.nix
@@ -4,7 +4,7 @@
let
# if you bump version, update pkgs.tortoisehg too or ping maintainer
- version = "3.8.1";
+ version = "3.8.2";
name = "mercurial-${version}";
in
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "http://mercurial.selenic.com/release/${name}.tar.gz";
- sha256 = "156m6269xdqq7mpw01c6b065k29xnb8b9lyzn1b0nlz5il2izkps";
+ sha256 = "1zdz42znd6i7c3nf31j0k6frcs68qyniyvcad8k2a1hlarlv2y6b";
};
inherit python; # pass it so that the same version can be used in hg2git
diff --git a/pkgs/applications/video/gnome-mpv/default.nix b/pkgs/applications/video/gnome-mpv/default.nix
new file mode 100644
index 000000000000..c93510cb1a70
--- /dev/null
+++ b/pkgs/applications/video/gnome-mpv/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchurl
+, intltool, pkgconfig, wrapGAppsHook
+, appstream-glib, epoxy, glib, gtk3, mpv
+}:
+
+stdenv.mkDerivation rec {
+ name = "gnome-mpv-${version}";
+ version = "0.9";
+
+ src = fetchurl {
+ sha256 = "06pgxl6f3kkgxv8nlmyl7gy3pg55sqf8vgr8m6426mlpm4p3qdn0";
+ url = "https://github.com/gnome-mpv/gnome-mpv/releases/download/v${version}/${name}.tar.xz";
+ };
+
+ nativeBuildInputs = [ intltool pkgconfig wrapGAppsHook ];
+ buildInputs = [ appstream-glib epoxy glib.dev gtk3 mpv ];
+
+ NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
+
+ enableParallelBuilding = true;
+
+ doCheck = true;
+
+ meta = with stdenv.lib; {
+ description = "Simple GTK+ frontend for the mpv video player";
+ longDescription = ''
+ GNOME MPV interacts with mpv via the client API exported by libmpv,
+ allowing access to mpv's powerful playback capabilities through an
+ easy-to-use user interface.
+ '';
+ homepage = https://github.com/gnome-mpv/gnome-mpv;
+ license = licenses.gpl3Plus;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ nckx ];
+ };
+}
diff --git a/pkgs/applications/video/vlc/default.nix b/pkgs/applications/video/vlc/default.nix
index a23bb9a1a942..3f883694e088 100644
--- a/pkgs/applications/video/vlc/default.nix
+++ b/pkgs/applications/video/vlc/default.nix
@@ -20,11 +20,11 @@ assert (!withQt5 -> qt4 != null);
stdenv.mkDerivation rec {
name = "vlc-${version}";
- version = "2.2.2";
+ version = "2.2.3";
src = fetchurl {
url = "http://get.videolan.org/vlc/${version}/${name}.tar.xz";
- sha256 = "1dazxbmzx2g5570pkg519a7fsj07rdr155kjsw7b9y8npql33lls";
+ sha256 = "0nxzspnyzlm17imlggi8ypnwiizi0f5wrj3436c3qg7i6mymimxr";
};
# Comment-out the Qt 5.5 version check, as we do apply the relevant patch.
diff --git a/pkgs/applications/virtualization/docker/default.nix b/pkgs/applications/virtualization/docker/default.nix
index 9be979057dc0..6260de54594b 100644
--- a/pkgs/applications/virtualization/docker/default.nix
+++ b/pkgs/applications/virtualization/docker/default.nix
@@ -2,7 +2,6 @@
, go, sqlite, iproute, bridge-utils, devicemapper
, btrfs-progs, iptables, e2fsprogs, xz, utillinux
, systemd, pkgconfig
-, enableLxc ? false, lxc
}:
# https://github.com/docker/docker/blob/master/project/PACKAGERS.md
@@ -42,7 +41,7 @@ stdenv.mkDerivation rec {
install -Dm755 ./bundles/${version}/dynbinary/docker-${version} $out/libexec/docker/docker
install -Dm755 ./bundles/${version}/dynbinary/dockerinit-${version} $out/libexec/docker/dockerinit
makeWrapper $out/libexec/docker/docker $out/bin/docker \
- --prefix PATH : "${iproute}/sbin:sbin:${iptables}/sbin:${e2fsprogs}/sbin:${xz.bin}/bin:${utillinux}/bin:${optionalString enableLxc "${lxc}/bin"}"
+ --prefix PATH : "${iproute}/sbin:sbin:${iptables}/sbin:${e2fsprogs}/sbin:${xz.bin}/bin:${utillinux}/bin"
# systemd
install -Dm644 ./contrib/init/systemd/docker.service $out/etc/systemd/system/docker.service
diff --git a/pkgs/applications/virtualization/qemu/default.nix b/pkgs/applications/virtualization/qemu/default.nix
index 06d75a00b977..ed59f5eb5108 100644
--- a/pkgs/applications/virtualization/qemu/default.nix
+++ b/pkgs/applications/virtualization/qemu/default.nix
@@ -15,7 +15,7 @@
with stdenv.lib;
let
- version = "2.5.1";
+ version = "2.6.0";
audio = optionalString (hasSuffix "linux" stdenv.system) "alsa,"
+ optionalString pulseSupport "pa,"
+ optionalString sdlSupport "sdl,";
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "http://wiki.qemu.org/download/qemu-${version}.tar.bz2";
- sha256 = "0b2xa8604absdmzpcyjs7fix19y5blqmgflnwjzsp1mp7g1m51q2";
+ sha256 = "1v1lhhd6m59hqgmiz100g779rjq70pik5v4b3g936ci73djlmb69";
};
buildInputs =
diff --git a/pkgs/applications/window-managers/fluxbox/default.nix b/pkgs/applications/window-managers/fluxbox/default.nix
index 36e081ccfcf4..47febfa00e93 100644
--- a/pkgs/applications/window-managers/fluxbox/default.nix
+++ b/pkgs/applications/window-managers/fluxbox/default.nix
@@ -10,13 +10,22 @@ stdenv.mkDerivation rec {
name = "fluxbox-${version}";
version = "1.3.7";
- buildInputs = [ pkgconfig freetype fribidi libXext libXft libXpm libXrandr libXrender xextproto libXinerama imlib2 ];
-
src = fetchurl {
url = "mirror://sourceforge/fluxbox/${name}.tar.xz";
sha256 = "1h1f70y40qd225dqx937vzb4k2cz219agm1zvnjxakn5jkz7b37w";
};
+ nativeBuildInputs = [ pkgconfig ];
+
+ buildInputs = [ freetype fribidi libXext libXft libXpm libXrandr libXrender xextproto libXinerama imlib2 ];
+
+ enableParallelBuilding = true;
+
+ preConfigure = ''
+ substituteInPlace util/fluxbox-generate_menu.in \
+ --subst-var-by PREFIX "$out"
+ '';
+
meta = {
description = "Full-featured, light-resource X window manager";
longDescription = ''
diff --git a/pkgs/applications/window-managers/i3/lock-color.nix b/pkgs/applications/window-managers/i3/lock-color.nix
index 09be3500fecf..483c815db01b 100644
--- a/pkgs/applications/window-managers/i3/lock-color.nix
+++ b/pkgs/applications/window-managers/i3/lock-color.nix
@@ -17,6 +17,9 @@ stdenv.mkDerivation rec {
mkdir -p $out/share/man/man1
'';
installFlags = "PREFIX=\${out} SYSCONFDIR=\${out}/etc MANDIR=\${out}/share/man";
+ postInstall = ''
+ mv $out/bin/i3lock $out/bin/i3lock-color
+ '';
meta = with stdenv.lib; {
description = "A simple screen locker like slock";
homepage = http://i3wm.org/i3lock/;
diff --git a/pkgs/applications/window-managers/i3/lock-fancy.nix b/pkgs/applications/window-managers/i3/lock-fancy.nix
index ce4517fe86aa..dd7f89b2a8de 100644
--- a/pkgs/applications/window-managers/i3/lock-fancy.nix
+++ b/pkgs/applications/window-managers/i3/lock-fancy.nix
@@ -12,14 +12,15 @@ stdenv.mkDerivation rec {
sha256 = "0az43nqhmbniih3yw9kz5lnky0n7mxylvklsib76s4l2alf6i3ps";
};
patchPhase = ''
- sed -i -e "s|mktemp|${coreutils}/bin/mktemp|" lock
- sed -i -e "s|\`pwd\`|$out/share/i3lock-fancy|" lock
- sed -i -e "s|dirname|${coreutils}/bin/dirname|" lock
- sed -i -e "s|rm |${coreutils}/bin/rm |" lock
- sed -i -e "s|scrot |${scrot}/bin/scrot |" lock
+ sed -i -e "s|(mktemp)|(${coreutils}/bin/mktemp)|" lock
+ sed -i -e "s|'rm -f |'${coreutils}/bin/rm -f |" lock
+ sed -i -e "s|scrot -z |${scrot}/bin/scrot -z |" lock
sed -i -e "s|convert |${imagemagick.out}/bin/convert |" lock
- sed -i -e "s|awk |${gawk}/bin/awk|" lock
- sed -i -e "s|i3lock |${i3lock-color}/bin/i3lock-color |" lock
+ sed -i -e "s|awk -F|${gawk}/bin/awk -F|" lock
+ sed -i -e "s| awk | ${gawk}/bin/awk |" lock
+ sed -i -e "s|i3lock -n |${i3lock-color}/bin/i3lock-color -n |" lock
+ sed -i -e 's|ICON="$SCRIPTPATH/lockdark.png"|ICON="'$out'/share/i3lock-fancy/lockdark.png"|' lock
+ sed -i -e 's|ICON="$SCRIPTPATH/lock.png"|ICON="'$out'/share/i3lock-fancy/lock.png"|' lock
'';
installPhase = ''
mkdir -p $out/bin $out/share/i3lock-fancy
diff --git a/pkgs/build-support/vm/default.nix b/pkgs/build-support/vm/default.nix
index 4718e2d72f6e..7a3d816efc9e 100644
--- a/pkgs/build-support/vm/default.nix
+++ b/pkgs/build-support/vm/default.nix
@@ -1182,6 +1182,30 @@ rec {
packages = commonOpenSUSEPackages;
};
+ opensuse132i386 = {
+ name = "opensuse-13.2-i586";
+ fullName = "openSUSE 13.2 (i586)";
+ packagesList = fetchurl {
+ url = mirror://opensuse/13.2/repo/oss/suse/repodata/485e4f44e3c3ef3133accb589480933c2fe48dedfc44a7e5f9d5437cd9122a99-primary.xml.gz;
+ sha256 = "0klzmk680as4sb6h1wl0ynj0dds3m70qim66wwbiqlnnp6xkf83y";
+ };
+ urlPrefix = mirror://opensuse/13.2/repo/oss/suse/;
+ archs = ["noarch" "i586"];
+ packages = commonOpenSUSEPackages;
+ };
+
+ opensuse132x86_64 = {
+ name = "opensuse-13.2-x86_64";
+ fullName = "openSUSE 13.2 (x86_64)";
+ packagesList = fetchurl {
+ url = mirror://opensuse/13.2/repo/oss/suse/repodata/485e4f44e3c3ef3133accb589480933c2fe48dedfc44a7e5f9d5437cd9122a99-primary.xml.gz;
+ sha256 = "0klzmk680as4sb6h1wl0ynj0dds3m70qim66wwbiqlnnp6xkf83y";
+ };
+ urlPrefix = mirror://opensuse/13.2/repo/oss/suse/;
+ archs = ["noarch" "x86_64"];
+ packages = commonOpenSUSEPackages;
+ };
+
centos65i386 = {
name = "centos-6.5-i386";
fullName = "CentOS 6.5 (i386)";
@@ -1191,7 +1215,7 @@ rec {
};
urlPrefix = http://vault.centos.org/6.5/os/i386;
archs = ["noarch" "i386"];
- packages = commonCentOSPackages;
+ packages = commonCentOSPackages ++ [ "procps" ];
};
centos65x86_64 = {
@@ -1203,7 +1227,20 @@ rec {
};
urlPrefix = http://vault.centos.org/6.5/os/x86_64/;
archs = ["noarch" "x86_64"];
- packages = commonCentOSPackages;
+ packages = commonCentOSPackages ++ [ "procps" ];
+ };
+
+ # Note: no i386 release for 7.x
+ centos71x86_64 = {
+ name = "centos-7.1-x86_64";
+ fullName = "CentOS 7.1 (x86_64)";
+ packagesList = fetchurl {
+ url = http://vault.centos.org/7.1.1503/os/x86_64/repodata/1386c5af55bda40669bb5ed91e0a22796c3ed7325367506109b09ea2657f22bd-primary.xml.gz;
+ sha256 = "1g92gxjs57mh15hm0rsk6bbkwv3r4851xnaypdlhd95xanpwb1hk";
+ };
+ urlPrefix = http://vault.centos.org/7.1.1503/os/x86_64;
+ archs = ["noarch" "x86_64"];
+ packages = commonCentOSPackages ++ [ "procps-ng" ];
};
};
@@ -1795,22 +1832,22 @@ rec {
debian70x86_64 = debian7x86_64;
debian7i386 = {
- name = "debian-7.9-wheezy-i386";
- fullName = "Debian 7.9 Wheezy (i386)";
+ name = "debian-7.10-wheezy-i386";
+ fullName = "Debian 7.10 Wheezy (i386)";
packagesList = fetchurl {
url = mirror://debian/dists/wheezy/main/binary-i386/Packages.bz2;
- sha256 = "a390176680327fd52d6aada6dd8eee051c94ce49d80f0a68dc90ef51b81c3169";
+ sha256 = "02dncyhz3c02jzdxqngbhfic7acsa7p2yv76xwrhawj38yjgqzrm";
};
urlPrefix = mirror://debian;
packages = commonDebianPackages;
};
debian7x86_64 = {
- name = "debian-7.9-wheezy-amd64";
- fullName = "Debian 7.9 Wheezy (amd64)";
+ name = "debian-7.10-wheezy-amd64";
+ fullName = "Debian 7.10 Wheezy (amd64)";
packagesList = fetchurl {
url = mirror://debian/dists/wheezy/main/binary-amd64/Packages.bz2;
- sha256 = "818d78c648505f91cb99f269178d4f62b56d4209cd51bebbc9bf2bd31c8c7156";
+ sha256 = "1kir3j6y81s914njvs0sbwywq7qv28f8s615r9agg9s0h5g760fw";
};
urlPrefix = mirror://debian;
packages = commonDebianPackages;
@@ -1879,7 +1916,6 @@ rec {
"patch"
"perl"
"pkgconfig"
- "procps"
"rpm"
"rpm-build"
"tar"
diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix
index 617ad8e9099b..d3b5405c509e 100644
--- a/pkgs/data/misc/geolite-legacy/default.nix
+++ b/pkgs/data/misc/geolite-legacy/default.nix
@@ -8,7 +8,7 @@ let
in
stdenv.mkDerivation rec {
name = "geolite-legacy-${version}";
- version = "2016-05-16";
+ version = "2016-05-23";
srcGeoIP = fetchDB
"GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz"
@@ -24,10 +24,10 @@ stdenv.mkDerivation rec {
"1v8wdqh6yjicb7bdcxp7v5dimlrny1fiynf4wr6wh65vr738csy2";
srcGeoIPASNum = fetchDB
"asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz"
- "1nplklc88jn0iqla9ar5vgcq4wvkqkd5pbgvn89757466dl1igiw";
+ "0jx4rg2zxpcwhc27ph8hbbl0vdjpdd6d8c7ifxfxrz9jdjvzz6q5";
srcGeoIPASNumv6 = fetchDB
"asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz"
- "06wmjr4frc83v68abpnad8z9xy4fsjsvwild6bw7816w9rdvdqzw";
+ "0wax1z8fnldmkv0mh35ad738daqdcszs90cabzg472d1iys937av";
meta = with stdenv.lib; {
description = "GeoLite Legacy IP geolocation databases";
diff --git a/pkgs/development/compilers/emscripten-fastcomp/default.nix b/pkgs/development/compilers/emscripten-fastcomp/default.nix
index 330fa2a7939f..c33c3992e007 100644
--- a/pkgs/development/compilers/emscripten-fastcomp/default.nix
+++ b/pkgs/development/compilers/emscripten-fastcomp/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchgit, python }:
let
- tag = "1.35.4";
+ tag = "1.36.4";
in
stdenv.mkDerivation rec {
@@ -10,13 +10,13 @@ stdenv.mkDerivation rec {
srcFC = fetchgit {
url = git://github.com/kripken/emscripten-fastcomp;
rev = "refs/tags/${tag}";
- sha256 = "3bd50787d78381f684f9b3f46fc91cc3d1803c3389e19ec41ee59c2deaf727d8";
+ sha256 = "0qmrc83yrlmlb11gqixxnwychif964054lgdiycz0l10yj0q37j5";
};
srcFL = fetchgit {
url = git://github.com/kripken/emscripten-fastcomp-clang;
rev = "refs/tags/${tag}";
- sha256 = "ec0d22c04eec5f84695401e19a52704b28e8d2779b87388f399b5f63b54a9862";
+ sha256 = "1av58y9s24l32hsdgp3jh4fkc5005xbzzjd27in2r9q3p6igd5d4";
};
buildInputs = [ python ];
@@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
homepage = https://github.com/kripken/emscripten-fastcomp;
description = "emscripten llvm";
platforms = platforms.all;
- maintainers = with maintainers; [ bosu ];
+ maintainers = with maintainers; [ qknight ];
license = stdenv.lib.licenses.ncsa;
};
}
diff --git a/pkgs/development/compilers/emscripten/default.nix b/pkgs/development/compilers/emscripten/default.nix
index 0264c9d36d9b..456443ba0dd0 100644
--- a/pkgs/development/compilers/emscripten/default.nix
+++ b/pkgs/development/compilers/emscripten/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchgit, emscriptenfastcomp, python, nodejs, closurecompiler, jre }:
let
- tag = "1.35.4";
+ tag = "1.36.4";
appdir = "share/emscripten";
in
@@ -11,10 +11,10 @@ stdenv.mkDerivation rec {
src = fetchgit {
url = git://github.com/kripken/emscripten;
rev = "refs/tags/${tag}";
- sha256 = "466500356c8c0fbcee495b2dbd2ccf0bf9d7eaf303d274ebaf491122759dd233";
+ sha256 = "02m85xh9qx29kb6v11y072gk8fvyc23964wclr70c69j2gal2qpr";
};
- buildCommand = ''
+ buildCommand = ''
mkdir -p $out/${appdir}
cp -r $src/* $out/${appdir}
chmod -R +w $out/${appdir}
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
homepage = https://github.com/kripken/emscripten;
description = "An LLVM-to-JavaScript Compiler";
platforms = platforms.all;
- maintainers = with maintainers; [ bosu ];
+ maintainers = with maintainers; [ qknight ];
license = licenses.ncsa;
};
}
diff --git a/pkgs/development/compilers/ghc/8.0.1.nix b/pkgs/development/compilers/ghc/8.0.1.nix
index e0df800d1e0b..612c237735c3 100644
--- a/pkgs/development/compilers/ghc/8.0.1.nix
+++ b/pkgs/development/compilers/ghc/8.0.1.nix
@@ -5,7 +5,7 @@
let
inherit (bootPkgs) ghc;
-in
+in
stdenv.mkDerivation rec {
version = "8.0.1";
name = "ghc-${version}";
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 b7195ac60c7c..761e339cdb97 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
@@ -96,7 +96,7 @@ self: super: {
src = pkgs.fetchgit {
url = https://github.com/ekmett/linear.git;
rev = "8da21dc72714441cb34d6eabd6c224819787365c";
- sha256 = "08l0z6zrlbals2bwc2abbh31j9gf90vgp8sy3dcrp0knc98bgaa1";
+ sha256 = "0f4r7ww8aygxv0mqdsn9d7fjvrvr66f04v004kh2v5d01dp8d7f9";
};
});
@@ -161,4 +161,6 @@ self: super: {
buildDepends = [ primitive ];
license = pkgs.stdenv.lib.licenses.bsd3;
}) {};
+
+ MonadCatchIO-transformers = doJailbreak super.MonadCatchIO-transformers;
}
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix
index 4874d61d2412..e510b06f195f 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix
@@ -3558,6 +3558,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3591,6 +3593,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3637,6 +3640,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4133,6 +4137,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5133,6 +5138,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -7060,6 +7066,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7091,6 +7098,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
@@ -7257,6 +7265,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7442,6 +7451,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7663,6 +7673,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8127,6 +8138,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8187,6 +8199,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8406,6 +8419,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8418,6 +8432,7 @@ self: super: {
"text" = doDistribute super."text_1_1_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu" = doDistribute super."text-icu_0_7_0_0";
"text-icu-translit" = dontDistribute super."text-icu-translit";
@@ -8601,6 +8616,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9106,6 +9122,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9160,6 +9177,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9184,6 +9202,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9308,6 +9327,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9392,6 +9412,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix
index 4f66d9114f6c..d42231c5687b 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix
@@ -3558,6 +3558,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3591,6 +3593,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3637,6 +3640,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4133,6 +4137,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5133,6 +5138,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -7060,6 +7066,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7091,6 +7098,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
@@ -7257,6 +7265,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7442,6 +7451,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7663,6 +7673,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8127,6 +8138,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8187,6 +8199,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8406,6 +8419,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8418,6 +8432,7 @@ self: super: {
"text" = doDistribute super."text_1_1_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu" = doDistribute super."text-icu_0_7_0_0";
"text-icu-translit" = dontDistribute super."text-icu-translit";
@@ -8601,6 +8616,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9106,6 +9122,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9160,6 +9177,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9184,6 +9202,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9308,6 +9327,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9392,6 +9412,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix
index eb791378eb84..f02675f360f3 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix
@@ -3558,6 +3558,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3591,6 +3593,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3637,6 +3640,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4133,6 +4137,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5133,6 +5138,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -7060,6 +7066,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7091,6 +7098,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
@@ -7257,6 +7265,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7442,6 +7451,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7663,6 +7673,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8127,6 +8138,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8187,6 +8199,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8406,6 +8419,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8418,6 +8432,7 @@ self: super: {
"text" = doDistribute super."text_1_1_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu" = doDistribute super."text-icu_0_7_0_0";
"text-icu-translit" = dontDistribute super."text-icu-translit";
@@ -8601,6 +8616,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9106,6 +9122,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9160,6 +9177,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9184,6 +9202,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9308,6 +9327,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9392,6 +9412,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix
index 18c8a6650440..cee02bac22fa 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix
@@ -3558,6 +3558,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3591,6 +3593,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3637,6 +3640,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4133,6 +4137,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5133,6 +5138,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -7060,6 +7066,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7091,6 +7098,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
@@ -7257,6 +7265,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7442,6 +7451,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7663,6 +7673,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8127,6 +8138,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8187,6 +8199,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8406,6 +8419,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8418,6 +8432,7 @@ self: super: {
"text" = doDistribute super."text_1_1_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu" = doDistribute super."text-icu_0_7_0_0";
"text-icu-translit" = dontDistribute super."text-icu-translit";
@@ -8601,6 +8616,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9106,6 +9122,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9160,6 +9177,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9184,6 +9202,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9308,6 +9327,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9392,6 +9412,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix
index e50d8593e2a8..74ccbda2caa7 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix
@@ -3557,6 +3557,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3590,6 +3592,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3636,6 +3639,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4130,6 +4134,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5130,6 +5135,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -7057,6 +7063,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7088,6 +7095,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
@@ -7254,6 +7262,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7438,6 +7447,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7659,6 +7669,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8123,6 +8134,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8183,6 +8195,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8402,6 +8415,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8414,6 +8428,7 @@ self: super: {
"text" = doDistribute super."text_1_1_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu" = doDistribute super."text-icu_0_7_0_0";
"text-icu-translit" = dontDistribute super."text-icu-translit";
@@ -8597,6 +8612,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9102,6 +9118,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9156,6 +9173,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9180,6 +9198,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9304,6 +9323,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9388,6 +9408,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix
index e6e4330b25c4..6454037b4227 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix
@@ -3557,6 +3557,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3590,6 +3592,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3636,6 +3639,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4130,6 +4134,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5130,6 +5135,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -7057,6 +7063,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7088,6 +7095,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_9";
@@ -7254,6 +7262,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7438,6 +7447,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7659,6 +7669,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8123,6 +8134,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8183,6 +8195,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8402,6 +8415,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8414,6 +8428,7 @@ self: super: {
"text" = doDistribute super."text_1_1_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu" = doDistribute super."text-icu_0_7_0_0";
"text-icu-translit" = dontDistribute super."text-icu-translit";
@@ -8597,6 +8612,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9102,6 +9118,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9156,6 +9173,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9180,6 +9198,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9304,6 +9323,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9388,6 +9408,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix
index e16192c3cc71..4192ec9ea093 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix
@@ -3556,6 +3556,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3589,6 +3591,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3635,6 +3638,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4129,6 +4133,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5128,6 +5133,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -7055,6 +7061,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7086,6 +7093,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7252,6 +7260,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7435,6 +7444,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7656,6 +7666,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8120,6 +8131,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8180,6 +8192,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8399,6 +8412,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8411,6 +8425,7 @@ self: super: {
"text" = doDistribute super."text_1_1_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu" = doDistribute super."text-icu_0_7_0_0";
"text-icu-translit" = dontDistribute super."text-icu-translit";
@@ -8594,6 +8609,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9099,6 +9115,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9153,6 +9170,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9177,6 +9195,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9300,6 +9319,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9383,6 +9403,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix
index 48d327cb9057..5cbc6eddaebf 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix
@@ -3556,6 +3556,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3589,6 +3591,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3635,6 +3638,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4129,6 +4133,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5128,6 +5133,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -7055,6 +7061,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7086,6 +7093,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7252,6 +7260,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7435,6 +7444,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7656,6 +7666,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8120,6 +8131,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8180,6 +8192,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8399,6 +8412,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8411,6 +8425,7 @@ self: super: {
"text" = doDistribute super."text_1_1_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu" = doDistribute super."text-icu_0_7_0_0";
"text-icu-translit" = dontDistribute super."text-icu-translit";
@@ -8594,6 +8609,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9099,6 +9115,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9153,6 +9170,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9177,6 +9195,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9300,6 +9319,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9383,6 +9403,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix
index f8248d6a10c0..d786912d7ed3 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix
@@ -3548,6 +3548,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3581,6 +3583,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3627,6 +3630,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4121,6 +4125,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5119,6 +5124,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -7046,6 +7052,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7077,6 +7084,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7243,6 +7251,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7425,6 +7434,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7646,6 +7656,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8109,6 +8120,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8169,6 +8181,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8388,6 +8401,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8400,6 +8414,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_3";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu" = doDistribute super."text-icu_0_7_0_0";
"text-icu-translit" = dontDistribute super."text-icu-translit";
@@ -8583,6 +8598,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9087,6 +9103,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9141,6 +9158,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9165,6 +9183,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9288,6 +9307,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9371,6 +9391,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix
index 96d9ece7f763..dc5b496eaad1 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix
@@ -3545,6 +3545,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3578,6 +3580,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3624,6 +3627,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4117,6 +4121,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5113,6 +5118,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -7039,6 +7045,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7070,6 +7077,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7236,6 +7244,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7418,6 +7427,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7639,6 +7649,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8100,6 +8111,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8160,6 +8172,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8378,6 +8391,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8390,6 +8404,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8571,6 +8586,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9074,6 +9090,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9128,6 +9145,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9152,6 +9170,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9275,6 +9294,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9358,6 +9378,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix
index d604d9359e50..7b7afcd41e88 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix
@@ -3537,6 +3537,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3569,6 +3571,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3615,6 +3618,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4107,6 +4111,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5097,6 +5102,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -7019,6 +7025,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7050,6 +7057,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7215,6 +7223,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7397,6 +7406,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7617,6 +7627,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8077,6 +8088,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8137,6 +8149,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8353,6 +8366,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8365,6 +8379,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8545,6 +8560,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9046,6 +9062,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9100,6 +9117,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9124,6 +9142,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9245,6 +9264,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9328,6 +9348,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix
index 85ef12fbbe8d..b3eef1cd6408 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix
@@ -3536,6 +3536,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3568,6 +3570,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3614,6 +3617,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4106,6 +4110,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5095,6 +5100,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -7015,6 +7021,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7046,6 +7053,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7211,6 +7219,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7393,6 +7402,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7613,6 +7623,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8073,6 +8084,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8133,6 +8145,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8349,6 +8362,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8361,6 +8375,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8541,6 +8556,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9042,6 +9058,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9096,6 +9113,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9120,6 +9138,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9241,6 +9260,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9324,6 +9344,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix
index 57686be7bb7f..d51a2aaa3d6b 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix
@@ -3536,6 +3536,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3568,6 +3570,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3614,6 +3617,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4106,6 +4110,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5094,6 +5099,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -7014,6 +7020,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7045,6 +7052,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7210,6 +7218,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7392,6 +7401,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7612,6 +7622,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8072,6 +8083,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8132,6 +8144,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8348,6 +8361,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8360,6 +8374,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8540,6 +8555,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9041,6 +9057,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9095,6 +9112,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9119,6 +9137,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9240,6 +9259,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9323,6 +9343,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix
index cf25c96a85a9..022b32d0e8ef 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix
@@ -3536,6 +3536,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3568,6 +3570,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3614,6 +3617,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4105,6 +4109,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5093,6 +5098,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -7013,6 +7019,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7044,6 +7051,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7209,6 +7217,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7391,6 +7400,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7611,6 +7621,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8071,6 +8082,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8131,6 +8143,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8346,6 +8359,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8358,6 +8372,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8538,6 +8553,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9039,6 +9055,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9093,6 +9110,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9117,6 +9135,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9238,6 +9257,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9321,6 +9341,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix
index 7f0d52180501..18230ecb1424 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix
@@ -3533,6 +3533,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3565,6 +3567,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3611,6 +3614,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4102,6 +4106,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5090,6 +5095,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -7010,6 +7016,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7041,6 +7048,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7205,6 +7213,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7387,6 +7396,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7607,6 +7617,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8067,6 +8078,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8127,6 +8139,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8342,6 +8355,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8354,6 +8368,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8534,6 +8549,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9035,6 +9051,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9089,6 +9106,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9113,6 +9131,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9234,6 +9253,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9317,6 +9337,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix
index 2283955312ca..644c5d4ea7f7 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix
@@ -3529,6 +3529,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3561,6 +3563,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3607,6 +3610,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4098,6 +4102,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5086,6 +5091,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -7004,6 +7010,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7035,6 +7042,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
@@ -7198,6 +7206,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7380,6 +7389,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7600,6 +7610,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8059,6 +8070,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8118,6 +8130,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8333,6 +8346,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8345,6 +8359,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8525,6 +8540,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9026,6 +9042,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9080,6 +9097,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9103,6 +9121,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9224,6 +9243,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9307,6 +9327,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix
index deb78ec2c80a..5d8751bdcdba 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix
@@ -3543,6 +3543,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3575,6 +3577,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3621,6 +3624,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4114,6 +4118,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5110,6 +5115,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -7035,6 +7041,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7066,6 +7073,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7231,6 +7239,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7413,6 +7422,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7633,6 +7643,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8094,6 +8105,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8154,6 +8166,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8372,6 +8385,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8384,6 +8398,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8565,6 +8580,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9068,6 +9084,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9122,6 +9139,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9146,6 +9164,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9269,6 +9288,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9352,6 +9372,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix
index dcd76ecab9e1..3a7b0040c7e1 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix
@@ -3541,6 +3541,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3573,6 +3575,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3619,6 +3622,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4112,6 +4116,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5107,6 +5112,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -7031,6 +7037,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7062,6 +7069,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7227,6 +7235,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7409,6 +7418,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7629,6 +7639,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8090,6 +8101,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8150,6 +8162,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8367,6 +8380,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8379,6 +8393,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8560,6 +8575,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9063,6 +9079,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9117,6 +9134,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9141,6 +9159,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9264,6 +9283,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9347,6 +9367,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix
index 6d82f3c57d8e..73b2395fc547 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix
@@ -3540,6 +3540,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3572,6 +3574,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3618,6 +3621,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4111,6 +4115,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5106,6 +5111,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -7030,6 +7036,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7061,6 +7068,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7226,6 +7234,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7408,6 +7417,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7628,6 +7638,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8089,6 +8100,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8149,6 +8161,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8366,6 +8379,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8378,6 +8392,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8558,6 +8573,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9060,6 +9076,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9114,6 +9131,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9138,6 +9156,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9261,6 +9280,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9344,6 +9364,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix
index 0047f3212615..b223d0148812 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix
@@ -3540,6 +3540,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3572,6 +3574,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3618,6 +3621,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4111,6 +4115,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5101,6 +5106,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -7025,6 +7031,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7056,6 +7063,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7221,6 +7229,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7403,6 +7412,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7623,6 +7633,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8084,6 +8095,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8144,6 +8156,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8361,6 +8374,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8373,6 +8387,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8553,6 +8568,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9055,6 +9071,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9109,6 +9126,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9133,6 +9151,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9256,6 +9275,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9339,6 +9359,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix
index 8db32b7d58c3..8326bfcbe720 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix
@@ -3538,6 +3538,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3570,6 +3572,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3616,6 +3619,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4108,6 +4112,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5098,6 +5103,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -7021,6 +7027,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7052,6 +7059,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7217,6 +7225,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7399,6 +7408,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7619,6 +7629,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8080,6 +8091,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8140,6 +8152,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8357,6 +8370,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8369,6 +8383,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8549,6 +8564,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9050,6 +9066,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9104,6 +9121,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9128,6 +9146,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9251,6 +9270,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9334,6 +9354,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix
index 9e6cd4d54ca2..a53d75fac5b5 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix
@@ -3537,6 +3537,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3569,6 +3571,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3615,6 +3618,7 @@ self: super: {
"gipeda" = dontDistribute super."gipeda";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4107,6 +4111,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5097,6 +5102,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"integration" = doDistribute super."integration_0_2_0_1";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
@@ -7020,6 +7026,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -7051,6 +7058,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-assertions" = doDistribute super."quickcheck-assertions_0_1_1";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_10";
@@ -7216,6 +7224,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7398,6 +7407,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7618,6 +7628,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = dontDistribute super."servant-server";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8079,6 +8090,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8139,6 +8151,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8356,6 +8369,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8368,6 +8382,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8548,6 +8563,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -9049,6 +9065,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9103,6 +9120,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9127,6 +9145,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"word8" = doDistribute super."word8_0_1_1";
"wordcloud" = dontDistribute super."wordcloud";
@@ -9250,6 +9269,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9333,6 +9353,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix
index 612cd4179b1f..0d799e8ae5a0 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix
@@ -3311,6 +3311,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_9";
@@ -3515,6 +3516,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3547,6 +3550,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3593,6 +3597,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4082,6 +4087,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5063,6 +5069,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6964,6 +6971,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6995,6 +7003,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7158,6 +7167,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7340,6 +7350,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7559,6 +7570,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8014,6 +8026,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8073,6 +8086,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8286,6 +8300,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8298,6 +8313,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8478,6 +8494,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8976,6 +8993,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9030,6 +9048,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9053,6 +9072,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9170,6 +9190,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9253,6 +9274,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix
index a3c9f3ef1f9a..01bc7cbc6205 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix
@@ -3310,6 +3310,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_9";
@@ -3514,6 +3515,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3546,6 +3549,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3592,6 +3596,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4081,6 +4086,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5062,6 +5068,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6963,6 +6970,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6994,6 +7002,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7157,6 +7166,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7339,6 +7349,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7558,6 +7569,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8013,6 +8025,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8072,6 +8085,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8285,6 +8299,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8297,6 +8312,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8477,6 +8493,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8842,6 +8859,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8974,6 +8992,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9028,6 +9047,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9051,6 +9071,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9168,6 +9189,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9251,6 +9273,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix
index 759c907ce44c..ad2dff1697ec 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix
@@ -3293,6 +3293,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_10";
@@ -3497,6 +3498,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3529,6 +3532,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3575,6 +3579,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4062,6 +4067,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5040,6 +5046,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6936,6 +6943,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6966,6 +6974,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7129,6 +7138,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7310,6 +7320,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7528,6 +7539,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7977,6 +7989,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8036,6 +8049,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8247,6 +8261,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8259,6 +8274,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8437,6 +8453,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8802,6 +8819,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8934,6 +8952,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8988,6 +9007,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9010,6 +9030,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9126,6 +9147,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9209,6 +9231,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix
index c8bce7ee592a..78498fe3b031 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix
@@ -3292,6 +3292,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_10";
@@ -3496,6 +3497,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3527,6 +3530,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3573,6 +3577,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4060,6 +4065,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5037,6 +5043,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6931,6 +6938,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6961,6 +6969,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7124,6 +7133,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7304,6 +7314,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7522,6 +7533,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7970,6 +7982,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8029,6 +8042,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8239,6 +8253,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8251,6 +8266,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8429,6 +8445,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8794,6 +8811,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8926,6 +8944,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8980,6 +8999,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9002,6 +9022,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9118,6 +9139,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9201,6 +9223,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix
index 3e2c4ccda1e9..fe7e4bdb9935 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix
@@ -3292,6 +3292,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_10";
@@ -3496,6 +3497,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3527,6 +3530,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3573,6 +3577,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4060,6 +4065,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5037,6 +5043,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6931,6 +6938,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6961,6 +6969,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7124,6 +7133,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7304,6 +7314,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7521,6 +7532,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7969,6 +7981,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8028,6 +8041,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8238,6 +8252,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8250,6 +8265,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8428,6 +8444,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8793,6 +8810,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8925,6 +8943,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8979,6 +8998,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9001,6 +9021,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9117,6 +9138,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9200,6 +9222,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix
index 75792f5f588d..075deba88588 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix
@@ -3292,6 +3292,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_11";
@@ -3496,6 +3497,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3527,6 +3530,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3573,6 +3577,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4059,6 +4064,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5035,6 +5041,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6929,6 +6936,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6959,6 +6967,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7122,6 +7131,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7302,6 +7312,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7519,6 +7530,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7967,6 +7979,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8026,6 +8039,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8236,6 +8250,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8248,6 +8263,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8426,6 +8442,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8791,6 +8808,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8923,6 +8941,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8977,6 +8996,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8999,6 +9019,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9115,6 +9136,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9198,6 +9220,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix
index b72bbc097737..e8be3fd66e5b 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix
@@ -3291,6 +3291,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_11";
@@ -3495,6 +3496,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3526,6 +3529,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3572,6 +3576,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4058,6 +4063,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5033,6 +5039,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6927,6 +6934,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6957,6 +6965,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7120,6 +7129,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7300,6 +7310,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7517,6 +7528,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7965,6 +7977,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8024,6 +8037,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8234,6 +8248,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8246,6 +8261,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8424,6 +8440,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8789,6 +8806,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8921,6 +8939,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8975,6 +8994,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8996,6 +9016,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9112,6 +9133,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9195,6 +9217,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix
index c6d13c8036ec..aae8971f934d 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix
@@ -3290,6 +3290,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_11";
@@ -3494,6 +3495,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3525,6 +3528,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3571,6 +3575,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4057,6 +4062,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5032,6 +5038,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6925,6 +6932,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6955,6 +6963,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7118,6 +7127,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7298,6 +7308,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7515,6 +7526,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7962,6 +7974,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8021,6 +8034,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8231,6 +8245,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8243,6 +8258,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8421,6 +8437,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8786,6 +8803,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8918,6 +8936,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8972,6 +8991,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8993,6 +9013,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9109,6 +9130,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9192,6 +9214,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix
index 23a35256fd70..73ec49659702 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix
@@ -3287,6 +3287,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_11";
@@ -3491,6 +3492,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3522,6 +3525,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3568,6 +3572,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4054,6 +4059,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5029,6 +5035,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6921,6 +6928,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6951,6 +6959,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7114,6 +7123,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7294,6 +7304,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7511,6 +7522,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7958,6 +7970,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8017,6 +8030,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8227,6 +8241,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8239,6 +8254,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8417,6 +8433,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8782,6 +8799,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8914,6 +8932,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8968,6 +8987,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8989,6 +9009,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9105,6 +9126,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9188,6 +9210,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix
index f7ebcd4db4db..ea7b3316a3cc 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix
@@ -3283,6 +3283,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_11";
@@ -3487,6 +3488,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3518,6 +3521,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3564,6 +3568,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4050,6 +4055,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5025,6 +5031,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6916,6 +6923,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6946,6 +6954,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7109,6 +7118,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7289,6 +7299,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7506,6 +7517,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7953,6 +7965,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8012,6 +8025,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8222,6 +8236,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8234,6 +8249,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8412,6 +8428,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8777,6 +8794,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8909,6 +8927,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8963,6 +8982,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8984,6 +9004,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9100,6 +9121,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9183,6 +9205,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix
index 4fc4beaab559..7986d2a0c43e 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix
@@ -3281,6 +3281,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_11";
@@ -3485,6 +3486,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3516,6 +3519,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3562,6 +3566,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4048,6 +4053,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5023,6 +5029,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6913,6 +6920,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6943,6 +6951,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7106,6 +7115,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7286,6 +7296,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7503,6 +7514,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7950,6 +7962,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8008,6 +8021,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8218,6 +8232,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8230,6 +8245,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8408,6 +8424,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8773,6 +8790,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8905,6 +8923,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8959,6 +8978,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8980,6 +9000,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9095,6 +9116,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9178,6 +9200,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix
index beb37675ce31..64b46db97217 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix
@@ -3281,6 +3281,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_11";
@@ -3484,6 +3485,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3515,6 +3518,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3561,6 +3565,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4047,6 +4052,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5022,6 +5028,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6911,6 +6918,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6941,6 +6949,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7104,6 +7113,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7284,6 +7294,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7501,6 +7512,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7948,6 +7960,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8006,6 +8019,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8216,6 +8230,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8228,6 +8243,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8406,6 +8422,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8771,6 +8788,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8903,6 +8921,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8957,6 +8976,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8978,6 +8998,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9092,6 +9113,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9175,6 +9197,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix
index b92f436f1a49..e0e4bbb13b14 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix
@@ -3307,6 +3307,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_9";
@@ -3511,6 +3512,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3543,6 +3546,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3589,6 +3593,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4078,6 +4083,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5059,6 +5065,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6960,6 +6967,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6991,6 +6999,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7154,6 +7163,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7336,6 +7346,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7555,6 +7566,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8010,6 +8022,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8069,6 +8082,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8282,6 +8296,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8294,6 +8309,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8474,6 +8490,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8839,6 +8856,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8971,6 +8989,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9025,6 +9044,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9047,6 +9067,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9164,6 +9185,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9247,6 +9269,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix
index 16728724401c..6f01eacd3a6c 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix
@@ -3280,6 +3280,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_11";
@@ -3483,6 +3484,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3514,6 +3517,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3560,6 +3564,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4046,6 +4051,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5021,6 +5027,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6909,6 +6916,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6939,6 +6947,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7102,6 +7111,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7282,6 +7292,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7499,6 +7510,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7945,6 +7957,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8003,6 +8016,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8213,6 +8227,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8225,6 +8240,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8403,6 +8419,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8768,6 +8785,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8900,6 +8918,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8954,6 +8973,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8975,6 +8995,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9089,6 +9110,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9172,6 +9194,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix
index 497910db38e1..aa5514cdc83a 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix
@@ -3280,6 +3280,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_11";
@@ -3483,6 +3484,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3514,6 +3517,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3560,6 +3564,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4046,6 +4051,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5021,6 +5027,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6908,6 +6915,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6938,6 +6946,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7101,6 +7110,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7281,6 +7291,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7498,6 +7509,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7944,6 +7956,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8002,6 +8015,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8212,6 +8226,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8224,6 +8239,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8402,6 +8418,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8767,6 +8784,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8899,6 +8917,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8953,6 +8972,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8974,6 +8994,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9088,6 +9109,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9171,6 +9193,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix
index 37a0a9f4654f..0976d65611ec 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix
@@ -3280,6 +3280,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_11";
@@ -3483,6 +3484,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3514,6 +3517,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3560,6 +3564,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4046,6 +4051,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5020,6 +5026,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6907,6 +6914,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6937,6 +6945,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7100,6 +7109,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7280,6 +7290,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7497,6 +7508,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7943,6 +7955,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8001,6 +8014,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8211,6 +8225,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8223,6 +8238,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8401,6 +8417,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8766,6 +8783,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8898,6 +8916,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8952,6 +8971,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8973,6 +8993,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9087,6 +9108,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9170,6 +9192,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix
index a1b6ff86b100..3d10d578f401 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix
@@ -3306,6 +3306,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_9";
@@ -3510,6 +3511,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3542,6 +3545,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3588,6 +3592,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4077,6 +4082,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5057,6 +5063,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6958,6 +6965,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6989,6 +6997,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7152,6 +7161,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7334,6 +7344,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7553,6 +7564,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8008,6 +8020,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8067,6 +8080,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8280,6 +8294,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8292,6 +8307,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8472,6 +8488,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8837,6 +8854,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8969,6 +8987,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9023,6 +9042,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9045,6 +9065,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9162,6 +9183,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9245,6 +9267,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix
index d37e392c2b05..7fd44e3ea81b 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix
@@ -3305,6 +3305,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_9";
@@ -3509,6 +3510,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3541,6 +3544,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3587,6 +3591,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4076,6 +4081,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5056,6 +5062,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6956,6 +6963,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6987,6 +6995,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7150,6 +7159,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7331,6 +7341,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7550,6 +7561,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8005,6 +8017,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8064,6 +8077,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8277,6 +8291,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8289,6 +8304,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8469,6 +8485,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8834,6 +8851,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8966,6 +8984,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9020,6 +9039,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9042,6 +9062,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9159,6 +9180,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9242,6 +9264,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix
index 707acc3f9ca7..33b8ee13c9ad 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix
@@ -3304,6 +3304,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_9";
@@ -3508,6 +3509,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3540,6 +3543,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3586,6 +3590,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4075,6 +4080,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5055,6 +5061,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6955,6 +6962,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6986,6 +6994,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7149,6 +7158,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7330,6 +7340,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7549,6 +7560,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -8004,6 +8016,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8063,6 +8076,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8276,6 +8290,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8288,6 +8303,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8468,6 +8484,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8833,6 +8850,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8965,6 +8983,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9019,6 +9038,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9041,6 +9061,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9158,6 +9179,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9241,6 +9263,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix
index 7db196b49d62..5674cea7156e 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix
@@ -3301,6 +3301,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_9";
@@ -3505,6 +3506,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3537,6 +3540,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3583,6 +3587,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4070,6 +4075,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5050,6 +5056,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6949,6 +6956,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6980,6 +6988,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7143,6 +7152,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7324,6 +7334,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7543,6 +7554,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7998,6 +8010,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8057,6 +8070,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8270,6 +8284,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8282,6 +8297,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8460,6 +8476,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8825,6 +8842,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8957,6 +8975,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9011,6 +9030,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9033,6 +9053,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9150,6 +9171,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9233,6 +9255,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix
index 5947082d54ff..9d6628a57c8c 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix
@@ -3300,6 +3300,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_9";
@@ -3504,6 +3505,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3536,6 +3539,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3582,6 +3586,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4069,6 +4074,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5049,6 +5055,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6949,6 +6956,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6980,6 +6988,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7143,6 +7152,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7324,6 +7334,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7543,6 +7554,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7998,6 +8010,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8057,6 +8070,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8270,6 +8284,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8282,6 +8297,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8460,6 +8476,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8825,6 +8842,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8957,6 +8975,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9011,6 +9030,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9033,6 +9053,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9150,6 +9171,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9233,6 +9255,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix
index a58fe3f0a6e3..dd7d230aa11b 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix
@@ -3298,6 +3298,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_10";
@@ -3502,6 +3503,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3534,6 +3537,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3580,6 +3584,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4067,6 +4072,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5047,6 +5053,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6947,6 +6954,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6978,6 +6986,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7141,6 +7150,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7322,6 +7332,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7540,6 +7551,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7992,6 +8004,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8051,6 +8064,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8264,6 +8278,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8276,6 +8291,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_4";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8454,6 +8470,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8819,6 +8836,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8951,6 +8969,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -9005,6 +9024,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9027,6 +9047,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9144,6 +9165,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9227,6 +9249,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix
index cdcf8d53afc3..83d57b18f946 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix
@@ -3294,6 +3294,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_0_10";
@@ -3498,6 +3499,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3530,6 +3533,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3576,6 +3580,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = dontDistribute super."git-annex";
"git-checklist" = dontDistribute super."git-checklist";
@@ -4063,6 +4068,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -5041,6 +5047,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -6940,6 +6947,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6971,6 +6979,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -7134,6 +7143,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7315,6 +7325,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7533,6 +7544,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_2_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7983,6 +7995,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -8042,6 +8055,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8253,6 +8267,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8265,6 +8280,7 @@ self: super: {
"text" = doDistribute super."text_1_2_0_6";
"text-and-plots" = dontDistribute super."text-and-plots";
"text-binary" = doDistribute super."text-binary_0_1_0";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8443,6 +8459,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8808,6 +8825,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_9";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8940,6 +8958,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8994,6 +9013,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -9016,6 +9036,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -9132,6 +9153,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -9215,6 +9237,7 @@ self: super: {
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix
index fc40fef0c59b..0570da6a9392 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix
@@ -3203,6 +3203,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_1";
@@ -3405,6 +3406,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3436,6 +3439,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3482,6 +3486,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3961,6 +3966,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4317,12 +4323,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4914,6 +4923,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5770,6 +5780,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -6020,6 +6031,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6745,6 +6757,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6775,6 +6788,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -6937,6 +6951,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7119,6 +7134,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7334,6 +7350,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7768,6 +7785,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7824,6 +7842,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8033,6 +8052,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8045,6 +8065,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8216,6 +8237,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8574,6 +8596,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8704,6 +8727,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8757,6 +8781,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8777,6 +8802,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8890,6 +8916,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8966,6 +8993,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix
index 46ae50720be6..9f1d101b960d 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix
@@ -3201,6 +3201,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_1";
@@ -3403,6 +3404,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3434,6 +3437,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3480,6 +3484,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3959,6 +3964,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4315,12 +4321,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4912,6 +4921,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5767,6 +5777,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -6017,6 +6028,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6741,6 +6753,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6771,6 +6784,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-io" = doDistribute super."quickcheck-io_0_1_1";
@@ -6933,6 +6947,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7114,6 +7129,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7329,6 +7345,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7763,6 +7780,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7819,6 +7837,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8028,6 +8047,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8040,6 +8060,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8211,6 +8232,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8568,6 +8590,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8698,6 +8721,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8751,6 +8775,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8771,6 +8796,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8884,6 +8910,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8960,6 +8987,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix
index acebcd7cb9fb..01cc9c230d31 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix
@@ -3186,6 +3186,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3388,6 +3389,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3418,6 +3421,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3464,6 +3468,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3941,6 +3946,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4295,12 +4301,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4888,6 +4897,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5738,6 +5748,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5985,6 +5996,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6562,6 +6574,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6702,6 +6715,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6732,6 +6746,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6893,6 +6908,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7074,6 +7090,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7289,6 +7306,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7719,6 +7737,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7775,6 +7794,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7980,6 +8000,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7992,6 +8013,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8163,6 +8185,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8517,6 +8540,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8645,6 +8669,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8697,6 +8722,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8717,6 +8743,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8827,6 +8854,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8903,6 +8931,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix
index 794facdfce30..f539ba6f6cd6 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix
@@ -3184,6 +3184,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3386,6 +3387,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3416,6 +3419,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3462,6 +3466,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3939,6 +3944,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4293,12 +4299,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4886,6 +4895,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5736,6 +5746,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5983,6 +5994,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6559,6 +6571,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6699,6 +6712,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6729,6 +6743,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6890,6 +6905,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7071,6 +7087,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7286,6 +7303,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7716,6 +7734,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7772,6 +7791,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7977,6 +7997,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7989,6 +8010,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8160,6 +8182,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8514,6 +8537,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8642,6 +8666,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8694,6 +8719,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8714,6 +8740,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8824,6 +8851,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8900,6 +8928,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix
index d54bb374abea..973b779e7822 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix
@@ -3183,6 +3183,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3385,6 +3386,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3415,6 +3418,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3461,6 +3465,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3937,6 +3942,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4291,12 +4297,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4884,6 +4893,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5734,6 +5744,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5981,6 +5992,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6556,6 +6568,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6696,6 +6709,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6726,6 +6740,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6887,6 +6902,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7068,6 +7084,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7283,6 +7300,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7713,6 +7731,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7769,6 +7788,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7973,6 +7993,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7985,6 +8006,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8155,6 +8177,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8509,6 +8532,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8637,6 +8661,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8689,6 +8714,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8709,6 +8735,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8819,6 +8846,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8895,6 +8923,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix
index 0b3f152c82fe..a312e098f726 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix
@@ -3183,6 +3183,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3385,6 +3386,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3415,6 +3418,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3461,6 +3465,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3937,6 +3942,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4290,12 +4296,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4883,6 +4892,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5732,6 +5742,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5979,6 +5990,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6553,6 +6565,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6693,6 +6706,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6723,6 +6737,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6884,6 +6899,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7065,6 +7081,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7280,6 +7297,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7710,6 +7728,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7766,6 +7785,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7970,6 +7990,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7982,6 +8003,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8152,6 +8174,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8506,6 +8529,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8633,6 +8657,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8685,6 +8710,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8705,6 +8731,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8815,6 +8842,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8891,6 +8919,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix
index 2885540628af..ea5f74d187d4 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix
@@ -1043,6 +1043,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -3180,6 +3181,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3382,6 +3384,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3412,6 +3416,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3458,6 +3463,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3934,6 +3940,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4287,12 +4294,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4879,6 +4889,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5728,6 +5739,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5975,6 +5987,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6549,6 +6562,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6689,6 +6703,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6719,6 +6734,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6880,6 +6896,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7061,6 +7078,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7276,6 +7294,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7706,6 +7725,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7762,6 +7782,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7966,6 +7987,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7978,6 +8000,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8148,6 +8171,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8502,6 +8526,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8629,6 +8654,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8680,6 +8706,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8700,6 +8727,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8810,6 +8838,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8886,6 +8915,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix
index d494bb868fa6..af06a3ce0b4f 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix
@@ -1043,6 +1043,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -3180,6 +3181,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3382,6 +3384,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3412,6 +3416,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3458,6 +3463,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3934,6 +3940,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4286,12 +4293,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4876,6 +4886,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5725,6 +5736,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5972,6 +5984,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6546,6 +6559,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6686,6 +6700,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6716,6 +6731,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6877,6 +6893,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7058,6 +7075,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7272,6 +7290,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7702,6 +7721,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7758,6 +7778,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7962,6 +7983,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7974,6 +7996,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8144,6 +8167,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8498,6 +8522,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8625,6 +8650,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8676,6 +8702,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8696,6 +8723,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8806,6 +8834,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8882,6 +8911,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix
index 25a09a03375a..2afef4539ee3 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix
@@ -1042,6 +1042,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -3178,6 +3179,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3380,6 +3382,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3410,6 +3414,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3456,6 +3461,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3931,6 +3937,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4283,12 +4290,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4873,6 +4883,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5720,6 +5731,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5967,6 +5979,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6540,6 +6553,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6680,6 +6694,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6710,6 +6725,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6870,6 +6886,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7051,6 +7068,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7265,6 +7283,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7695,6 +7714,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7751,6 +7771,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7953,6 +7974,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7965,6 +7987,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8134,6 +8157,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8488,6 +8512,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8615,6 +8640,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8666,6 +8692,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8686,6 +8713,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8796,6 +8824,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8872,6 +8901,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix
index fea8a4e97cee..fcd5b4c24e0e 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix
@@ -1042,6 +1042,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -3177,6 +3178,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3379,6 +3381,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3409,6 +3413,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3455,6 +3460,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3929,6 +3935,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4281,12 +4288,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4870,6 +4880,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5716,6 +5727,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5962,6 +5974,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6535,6 +6548,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6675,6 +6689,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6705,6 +6720,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6865,6 +6881,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7046,6 +7063,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7260,6 +7278,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7690,6 +7709,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7746,6 +7766,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7948,6 +7969,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7960,6 +7982,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8129,6 +8152,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8483,6 +8507,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8610,6 +8635,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8661,6 +8687,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8681,6 +8708,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8791,6 +8819,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8867,6 +8896,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix
index 908bf7591a0f..fdff43e53371 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix
@@ -1042,6 +1042,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -3176,6 +3177,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3378,6 +3380,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3408,6 +3412,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3453,6 +3458,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3925,6 +3931,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4277,12 +4284,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4865,6 +4875,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5711,6 +5722,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5957,6 +5969,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6529,6 +6542,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6669,6 +6683,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6699,6 +6714,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6859,6 +6875,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7040,6 +7057,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7254,6 +7272,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7684,6 +7703,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7740,6 +7760,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7942,6 +7963,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7954,6 +7976,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8123,6 +8146,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8477,6 +8501,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8604,6 +8629,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8655,6 +8681,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8675,6 +8702,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8785,6 +8813,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8861,6 +8890,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix
index ce1af0ad6818..4ad408e7819a 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix
@@ -1042,6 +1042,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -3173,6 +3174,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3375,6 +3377,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3405,6 +3409,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3450,6 +3455,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3922,6 +3928,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4274,12 +4281,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4860,6 +4870,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5704,6 +5715,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5949,6 +5961,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6521,6 +6534,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6661,6 +6675,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6691,6 +6706,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6851,6 +6867,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7032,6 +7049,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7246,6 +7264,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7675,6 +7694,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7731,6 +7751,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7933,6 +7954,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7945,6 +7967,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8114,6 +8137,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8468,6 +8492,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8595,6 +8620,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8646,6 +8672,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8666,6 +8693,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8775,6 +8803,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8851,6 +8880,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix
index ba7867f1101e..43cbd21a44eb 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix
@@ -3198,6 +3198,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_1";
@@ -3400,6 +3401,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3430,6 +3433,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3476,6 +3480,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3955,6 +3960,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4311,12 +4317,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4908,6 +4917,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5762,6 +5772,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -6012,6 +6023,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6736,6 +6748,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6766,6 +6779,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6927,6 +6941,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7108,6 +7123,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7323,6 +7339,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_1";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7756,6 +7773,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7812,6 +7830,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8021,6 +8040,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8033,6 +8053,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8204,6 +8225,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8561,6 +8583,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8691,6 +8714,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8744,6 +8768,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8764,6 +8789,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8877,6 +8903,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8953,6 +8980,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix
index 20dde1cb7983..ea72256fc471 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix
@@ -1041,6 +1041,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -3172,6 +3173,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3374,6 +3376,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3404,6 +3408,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3449,6 +3454,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3921,6 +3927,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4273,12 +4280,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4859,6 +4869,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5703,6 +5714,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5948,6 +5960,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6520,6 +6533,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6660,6 +6674,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6690,6 +6705,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6850,6 +6866,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7030,6 +7047,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7244,6 +7262,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_5";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7672,6 +7691,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7728,6 +7748,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7930,6 +7951,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7942,6 +7964,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8111,6 +8134,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8465,6 +8489,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8592,6 +8617,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8643,6 +8669,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8663,6 +8690,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8771,6 +8799,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8847,6 +8876,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix
index 3d21e531cee0..f353ba797497 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix
@@ -1041,6 +1041,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -3169,6 +3170,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3371,6 +3373,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3401,6 +3405,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3446,6 +3451,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3918,6 +3924,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4270,12 +4277,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4854,6 +4864,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5698,6 +5709,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5942,6 +5954,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6512,6 +6525,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6652,6 +6666,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6682,6 +6697,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6842,6 +6858,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7021,6 +7038,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7234,6 +7252,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7658,6 +7677,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7714,6 +7734,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7916,6 +7937,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7928,6 +7950,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8097,6 +8120,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8451,6 +8475,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8576,6 +8601,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8627,6 +8653,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8647,6 +8674,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8755,6 +8783,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8831,6 +8860,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix
index 28cc821235f6..a58da47a392a 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix
@@ -1041,6 +1041,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -3168,6 +3169,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3370,6 +3372,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3400,6 +3404,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3445,6 +3450,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3917,6 +3923,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4268,12 +4275,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4827,6 +4837,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4850,6 +4861,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5693,6 +5705,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5937,6 +5950,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6507,6 +6521,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6647,6 +6662,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6677,6 +6693,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6837,6 +6854,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7016,6 +7034,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7229,6 +7248,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7653,6 +7673,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7709,6 +7730,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7911,6 +7933,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7923,6 +7946,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8092,6 +8116,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8446,6 +8471,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8571,6 +8597,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8622,6 +8649,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8642,6 +8670,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8750,6 +8779,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8826,6 +8856,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix
index 6136c76adb29..64b928a93312 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix
@@ -3197,6 +3197,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_1";
@@ -3399,6 +3400,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3429,6 +3432,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3475,6 +3479,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3954,6 +3959,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4310,12 +4316,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4906,6 +4915,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5760,6 +5770,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -6010,6 +6021,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6734,6 +6746,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6764,6 +6777,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6925,6 +6939,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7106,6 +7121,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7321,6 +7337,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_2";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7753,6 +7770,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7809,6 +7827,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8018,6 +8037,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8030,6 +8050,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8201,6 +8222,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8557,6 +8579,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8687,6 +8710,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8740,6 +8764,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8760,6 +8785,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8873,6 +8899,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8949,6 +8976,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix
index 294a0c0fc3fd..8e2a0782bc65 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix
@@ -3197,6 +3197,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_1";
@@ -3399,6 +3400,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3429,6 +3432,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3475,6 +3479,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3954,6 +3959,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4310,12 +4316,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4906,6 +4915,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5760,6 +5770,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -6010,6 +6021,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6734,6 +6746,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6764,6 +6777,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6925,6 +6939,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7106,6 +7121,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7321,6 +7337,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_2";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7752,6 +7769,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7808,6 +7826,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8017,6 +8036,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8029,6 +8049,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8200,6 +8221,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8556,6 +8578,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8685,6 +8708,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8738,6 +8762,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8758,6 +8783,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8871,6 +8897,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8947,6 +8974,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix
index 6b69cb435cf9..d74a7092a754 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix
@@ -3195,6 +3195,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_1";
@@ -3397,6 +3398,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3427,6 +3430,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3473,6 +3477,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3952,6 +3957,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4307,12 +4313,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4900,6 +4909,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5754,6 +5764,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -6003,6 +6014,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6725,6 +6737,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6755,6 +6768,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6916,6 +6930,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7097,6 +7112,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7312,6 +7328,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_2";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7743,6 +7760,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7799,6 +7817,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8005,6 +8024,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8017,6 +8037,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8188,6 +8209,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8544,6 +8566,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8673,6 +8696,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8726,6 +8750,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8746,6 +8771,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8858,6 +8884,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8934,6 +8961,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix
index 7bc5b4f15028..50a57c953ae0 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix
@@ -3195,6 +3195,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_1";
@@ -3397,6 +3398,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3427,6 +3430,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3473,6 +3477,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3950,6 +3955,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4305,12 +4311,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4898,6 +4907,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5749,6 +5759,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5998,6 +6009,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6720,6 +6732,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6750,6 +6763,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6911,6 +6925,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7092,6 +7107,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7307,6 +7323,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_2";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7738,6 +7755,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7794,6 +7812,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -8000,6 +8019,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8012,6 +8032,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8183,6 +8204,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8538,6 +8560,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8666,6 +8689,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8719,6 +8743,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8739,6 +8764,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8851,6 +8877,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8927,6 +8954,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix
index aeea7a13b84e..3fda40066c71 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix
@@ -3192,6 +3192,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3394,6 +3395,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3424,6 +3427,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3470,6 +3474,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3947,6 +3952,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4301,12 +4307,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4894,6 +4903,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5745,6 +5755,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5994,6 +6005,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6714,6 +6726,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6744,6 +6757,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6905,6 +6919,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7086,6 +7101,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7301,6 +7317,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7731,6 +7748,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7787,6 +7805,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7993,6 +8012,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -8005,6 +8025,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8176,6 +8197,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8531,6 +8553,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8659,6 +8682,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8712,6 +8736,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8732,6 +8757,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8842,6 +8868,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8918,6 +8945,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix
index bfe31f27ce4c..adc5fd60c7aa 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix
@@ -3189,6 +3189,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3391,6 +3392,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3421,6 +3424,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3467,6 +3471,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3944,6 +3949,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4298,12 +4304,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4891,6 +4900,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5741,6 +5751,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5990,6 +6001,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6568,6 +6580,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6709,6 +6722,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6739,6 +6753,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6900,6 +6915,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7081,6 +7097,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7296,6 +7313,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7726,6 +7744,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7782,6 +7801,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7987,6 +8007,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7999,6 +8020,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8170,6 +8192,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8525,6 +8548,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8653,6 +8677,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8706,6 +8731,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8726,6 +8752,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8836,6 +8863,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8912,6 +8940,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix
index 32398b4f58e5..7109847fb94c 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix
@@ -3186,6 +3186,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = dontDistribute super."fn";
"fn-extra" = dontDistribute super."fn-extra";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3388,6 +3389,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3418,6 +3421,7 @@ self: super: {
"ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3464,6 +3468,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_1_2_1";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20150727";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3941,6 +3946,7 @@ self: super: {
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harp" = dontDistribute super."harp";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4295,12 +4301,15 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_26";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-interest" = dontDistribute super."hledger-interest";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4888,6 +4897,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5738,6 +5748,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_1_4";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5987,6 +5998,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6564,6 +6576,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6705,6 +6718,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6735,6 +6749,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6896,6 +6911,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform";
@@ -7077,6 +7093,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7292,6 +7309,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_4";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7722,6 +7740,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7778,6 +7797,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = dontDistribute super."success";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7983,6 +8003,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7995,6 +8016,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_1_3";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -8166,6 +8188,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = dontDistribute super."tracy";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8521,6 +8544,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2";
@@ -8649,6 +8673,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-plugins" = dontDistribute super."web-plugins";
@@ -8702,6 +8727,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8722,6 +8748,7 @@ self: super: {
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
"word-trie" = dontDistribute super."word-trie";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8832,6 +8859,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8908,6 +8936,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix
index 12f5e7e8620a..d74f552a34f6 100644
--- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix
@@ -1022,6 +1022,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -2608,6 +2609,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -3107,6 +3109,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_1";
"fn-extra" = doDistribute super."fn-extra_0_2_0_0";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3304,6 +3307,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3332,6 +3337,7 @@ self: super: {
"ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3377,6 +3383,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20151218";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3835,6 +3842,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4183,14 +4191,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4585,6 +4590,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4745,6 +4751,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5568,6 +5575,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5804,6 +5812,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6351,6 +6360,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6488,6 +6498,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6516,6 +6527,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6672,6 +6684,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0";
@@ -6839,6 +6852,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7050,6 +7064,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7312,6 +7327,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7464,6 +7480,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7518,6 +7535,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = doDistribute super."success_0_2_4";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7712,6 +7730,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7724,6 +7743,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7888,6 +7908,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = doDistribute super."tracy_0_1_2_0";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8226,6 +8247,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8344,6 +8366,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -8388,6 +8411,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8406,6 +8430,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8510,6 +8535,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8583,6 +8609,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix
index 1828851ca0b2..71a2b8a0752d 100644
--- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix
@@ -1022,6 +1022,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -2606,6 +2607,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -3102,6 +3104,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_1";
"fn-extra" = doDistribute super."fn-extra_0_2_0_0";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_2";
@@ -3299,6 +3302,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3327,6 +3332,7 @@ self: super: {
"ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3372,6 +3378,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20151218";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3830,6 +3837,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4177,14 +4185,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4579,6 +4584,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4713,6 +4719,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4735,6 +4742,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5555,6 +5563,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-products" = doDistribute super."monad-products_4_0_0_1";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
@@ -5791,6 +5800,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6337,6 +6347,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6474,6 +6485,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6502,6 +6514,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6658,6 +6671,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0";
@@ -6825,6 +6839,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7036,6 +7051,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7298,6 +7314,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7450,6 +7467,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7504,6 +7522,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = doDistribute super."success_0_2_4";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7698,6 +7717,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7710,6 +7730,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7874,6 +7895,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = doDistribute super."tracy_0_1_2_0";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8212,6 +8234,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8330,6 +8353,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -8374,6 +8398,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8392,6 +8417,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8496,6 +8522,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8569,6 +8596,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix
index 1770be9559ba..9ff899a8553d 100644
--- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix
@@ -1022,6 +1022,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -2601,6 +2602,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -3094,6 +3096,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_1";
"fn-extra" = doDistribute super."fn-extra_0_2_0_0";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_3";
@@ -3290,6 +3293,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3318,6 +3323,7 @@ self: super: {
"ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3363,6 +3369,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_5_20151218";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3818,6 +3825,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4162,14 +4170,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4563,6 +4568,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4696,6 +4702,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4717,6 +4724,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5536,6 +5544,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5769,6 +5778,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6313,6 +6323,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6449,6 +6460,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = dontDistribute super."pusher-http-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6477,6 +6489,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6632,6 +6645,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0";
@@ -6797,6 +6811,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -7007,6 +7022,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = dontDistribute super."servant-swagger";
@@ -7265,6 +7281,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7416,6 +7433,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7470,6 +7488,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = doDistribute super."success_0_2_4";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7664,6 +7683,7 @@ self: super: {
"test-shouldbe" = dontDistribute super."test-shouldbe";
"test-simple" = dontDistribute super."test-simple";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7676,6 +7696,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7840,6 +7861,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = doDistribute super."tracy_0_1_2_0";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8178,6 +8200,7 @@ self: super: {
"vector-space" = doDistribute super."vector-space_0_10_2";
"vector-space-map" = dontDistribute super."vector-space-map";
"vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = doDistribute super."vector-space-points_0_2_1_1";
"vector-static" = dontDistribute super."vector-static";
"vector-strategies" = dontDistribute super."vector-strategies";
"vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_3";
@@ -8295,6 +8318,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -8339,6 +8363,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8357,6 +8382,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8461,6 +8487,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8534,6 +8561,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix
index 8953456ce09b..cbad62943db4 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix
@@ -1014,6 +1014,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -2573,6 +2574,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -3058,6 +3060,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_5";
@@ -3252,6 +3255,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3277,6 +3282,7 @@ self: super: {
"ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3322,6 +3328,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_6_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3772,6 +3779,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4116,14 +4124,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4516,6 +4521,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4649,6 +4655,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4669,6 +4676,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5084,6 +5092,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5482,6 +5491,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5713,6 +5723,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6251,6 +6262,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6384,6 +6396,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = doDistribute super."pusher-http-haskell_0_3_0_1";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6412,6 +6425,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6565,6 +6579,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0";
@@ -6729,6 +6744,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6936,6 +6952,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = doDistribute super."servant-swagger_0_1_1";
@@ -7191,6 +7208,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7339,6 +7357,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7393,6 +7412,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = doDistribute super."success_0_2_4";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7583,6 +7603,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7595,6 +7616,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7757,6 +7779,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = doDistribute super."tracy_0_1_2_0";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8210,6 +8233,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -8253,6 +8277,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8271,6 +8296,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8375,6 +8401,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8448,6 +8475,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix
index 2b79bdb19324..413f61b72dab 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix
@@ -1013,6 +1013,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -2568,6 +2569,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -3053,6 +3055,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_5";
@@ -3247,6 +3250,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3272,6 +3277,7 @@ self: super: {
"ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3317,6 +3323,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_6_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3767,6 +3774,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4111,14 +4119,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4511,6 +4516,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4643,6 +4649,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4663,6 +4670,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5078,6 +5086,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5475,6 +5484,7 @@ self: super: {
"monad-parallel" = doDistribute super."monad-parallel_0_7_2_0";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5706,6 +5716,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6244,6 +6255,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6377,6 +6389,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = doDistribute super."pusher-http-haskell_0_3_0_1";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6405,6 +6418,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-instances" = doDistribute super."quickcheck-instances_0_3_11";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
@@ -6557,6 +6571,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0";
@@ -6721,6 +6736,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6927,6 +6943,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -7182,6 +7199,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7330,6 +7348,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7384,6 +7403,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"success" = doDistribute super."success_0_2_5";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
@@ -7574,6 +7594,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7586,6 +7607,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7748,6 +7770,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = doDistribute super."tracy_0_1_2_0";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8200,6 +8223,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -8243,6 +8267,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8261,6 +8286,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8365,6 +8391,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8438,6 +8465,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix
index d11a3fd3d5ae..ffbe906c581b 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix
@@ -1005,6 +1005,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1985,6 +1986,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2536,6 +2538,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -3009,6 +3012,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_6";
@@ -3200,6 +3204,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3223,6 +3229,7 @@ self: super: {
"ghc-syb" = dontDistribute super."ghc-syb";
"ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3267,6 +3274,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_6_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3713,6 +3721,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4053,14 +4062,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4446,6 +4452,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4575,6 +4582,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4595,6 +4603,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5006,6 +5015,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5061,6 +5071,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5389,6 +5400,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5616,6 +5628,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6136,6 +6149,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6268,6 +6282,7 @@ self: super: {
"push-notify-ccs" = dontDistribute super."push-notify-ccs";
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6296,6 +6311,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
@@ -6445,6 +6461,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-deriv" = dontDistribute super."regex-deriv";
@@ -6607,6 +6624,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6811,6 +6829,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_7";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -7061,6 +7080,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7209,6 +7229,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7261,6 +7282,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
"sugarhaskell" = dontDistribute super."sugarhaskell";
@@ -7449,6 +7471,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7460,6 +7483,7 @@ self: super: {
"texmath" = doDistribute super."texmath_0_8_5_1";
"texrunner" = dontDistribute super."texrunner";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7621,6 +7645,7 @@ self: super: {
"tracer" = dontDistribute super."tracer";
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8061,6 +8086,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -8103,6 +8129,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8120,6 +8147,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8224,6 +8252,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8296,6 +8325,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix
index ca3b84d94e13..8f59fcc4f309 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix
@@ -1004,6 +1004,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1981,6 +1982,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2530,6 +2532,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -3001,6 +3004,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_6";
@@ -3192,6 +3196,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3215,6 +3221,7 @@ self: super: {
"ghc-syb" = dontDistribute super."ghc-syb";
"ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3259,6 +3266,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_6_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3705,6 +3713,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4045,14 +4054,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4434,6 +4440,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4562,6 +4569,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4582,6 +4590,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -4993,6 +5002,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5048,6 +5058,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5376,6 +5387,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5603,6 +5615,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6122,6 +6135,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6254,6 +6268,7 @@ self: super: {
"push-notify-ccs" = dontDistribute super."push-notify-ccs";
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6282,6 +6297,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
@@ -6431,6 +6447,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-deriv" = dontDistribute super."regex-deriv";
@@ -6593,6 +6610,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6797,6 +6815,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_7";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -7047,6 +7066,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7195,6 +7215,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7246,6 +7267,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
"sugarhaskell" = dontDistribute super."sugarhaskell";
@@ -7433,6 +7455,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7444,6 +7467,7 @@ self: super: {
"texmath" = doDistribute super."texmath_0_8_6_1";
"texrunner" = dontDistribute super."texrunner";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7605,6 +7629,7 @@ self: super: {
"tracer" = dontDistribute super."tracer";
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8042,6 +8067,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -8084,6 +8110,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8101,6 +8128,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8205,6 +8233,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8277,6 +8306,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix
index 4397093ea490..5ec01e2d2342 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix
@@ -1003,6 +1003,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1976,6 +1977,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2525,6 +2527,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2994,6 +2997,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_6";
@@ -3185,6 +3189,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3208,6 +3214,7 @@ self: super: {
"ghc-syb" = dontDistribute super."ghc-syb";
"ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3252,6 +3259,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_6_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3698,6 +3706,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -3884,6 +3893,7 @@ self: super: {
"hdis86" = dontDistribute super."hdis86";
"hdiscount" = dontDistribute super."hdiscount";
"hdm" = dontDistribute super."hdm";
+ "hdocs" = doDistribute super."hdocs_0_4_4_2";
"hdph" = dontDistribute super."hdph";
"hdph-closure" = dontDistribute super."hdph-closure";
"hdr-histogram" = dontDistribute super."hdr-histogram";
@@ -4037,14 +4047,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4425,6 +4432,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4553,6 +4561,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4573,6 +4582,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -4694,6 +4704,7 @@ self: super: {
"jose" = dontDistribute super."jose";
"jpeg" = dontDistribute super."jpeg";
"js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_12_3";
"jsaddle" = dontDistribute super."jsaddle";
"jsaddle-hello" = dontDistribute super."jsaddle-hello";
"jsc" = dontDistribute super."jsc";
@@ -4983,6 +4994,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5038,6 +5050,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5360,6 +5373,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5587,6 +5601,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6104,6 +6119,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6236,6 +6252,7 @@ self: super: {
"push-notify-ccs" = dontDistribute super."push-notify-ccs";
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6264,6 +6281,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
@@ -6413,6 +6431,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-deriv" = dontDistribute super."regex-deriv";
@@ -6575,6 +6594,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6778,6 +6798,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_7";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -7027,6 +7048,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7175,6 +7197,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7224,6 +7247,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
"sugarhaskell" = dontDistribute super."sugarhaskell";
@@ -7410,6 +7434,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7421,6 +7446,7 @@ self: super: {
"texmath" = doDistribute super."texmath_0_8_6_1";
"texrunner" = dontDistribute super."texrunner";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7582,6 +7608,7 @@ self: super: {
"tracer" = dontDistribute super."tracer";
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8019,6 +8046,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -8061,6 +8089,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8078,6 +8107,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8182,6 +8212,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8254,6 +8285,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix
index 50f7e74e7dd4..f722a30bf511 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.13.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix
@@ -1002,6 +1002,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1968,6 +1969,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2517,6 +2519,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2985,6 +2988,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_6";
@@ -3176,6 +3180,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3199,6 +3205,7 @@ self: super: {
"ghc-syb" = dontDistribute super."ghc-syb";
"ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3243,6 +3250,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_6_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3689,6 +3697,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -3875,6 +3884,7 @@ self: super: {
"hdis86" = dontDistribute super."hdis86";
"hdiscount" = dontDistribute super."hdiscount";
"hdm" = dontDistribute super."hdm";
+ "hdocs" = doDistribute super."hdocs_0_4_4_2";
"hdph" = dontDistribute super."hdph";
"hdph-closure" = dontDistribute super."hdph-closure";
"hdr-histogram" = dontDistribute super."hdr-histogram";
@@ -4028,14 +4038,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4413,6 +4420,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4541,6 +4549,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4561,6 +4570,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -4680,6 +4690,7 @@ self: super: {
"jose" = dontDistribute super."jose";
"jpeg" = dontDistribute super."jpeg";
"js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_12_3";
"jsaddle" = dontDistribute super."jsaddle";
"jsaddle-hello" = dontDistribute super."jsaddle-hello";
"jsc" = dontDistribute super."jsc";
@@ -4969,6 +4980,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5024,6 +5036,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5345,6 +5358,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5571,6 +5585,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6085,6 +6100,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6217,6 +6233,7 @@ self: super: {
"push-notify-ccs" = dontDistribute super."push-notify-ccs";
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6245,6 +6262,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
@@ -6394,6 +6412,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-deriv" = dontDistribute super."regex-deriv";
@@ -6556,6 +6575,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6759,6 +6779,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_7";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -7008,6 +7029,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7156,6 +7178,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7205,6 +7228,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
"sugarhaskell" = dontDistribute super."sugarhaskell";
@@ -7391,6 +7415,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7402,6 +7427,7 @@ self: super: {
"texmath" = doDistribute super."texmath_0_8_6_1";
"texrunner" = dontDistribute super."texrunner";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7563,6 +7589,7 @@ self: super: {
"tracer" = dontDistribute super."tracer";
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -7997,6 +8024,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -8039,6 +8067,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8056,6 +8085,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8160,6 +8190,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8230,6 +8261,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.14.nix b/pkgs/development/haskell-modules/configuration-lts-5.14.nix
index a58646d73d7e..d1a5d43a4855 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.14.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.14.nix
@@ -1000,6 +1000,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1962,6 +1963,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2507,6 +2509,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2974,6 +2977,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_6";
@@ -3164,6 +3168,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3187,6 +3193,7 @@ self: super: {
"ghc-syb" = dontDistribute super."ghc-syb";
"ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3231,6 +3238,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_6_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3677,6 +3685,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -3863,6 +3872,7 @@ self: super: {
"hdis86" = dontDistribute super."hdis86";
"hdiscount" = dontDistribute super."hdiscount";
"hdm" = dontDistribute super."hdm";
+ "hdocs" = doDistribute super."hdocs_0_4_4_2";
"hdph" = dontDistribute super."hdph";
"hdph-closure" = dontDistribute super."hdph-closure";
"hdr-histogram" = dontDistribute super."hdr-histogram";
@@ -4015,14 +4025,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4400,6 +4407,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4528,6 +4536,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4548,6 +4557,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -4667,6 +4677,7 @@ self: super: {
"jose" = dontDistribute super."jose";
"jpeg" = dontDistribute super."jpeg";
"js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_12_3";
"jsaddle" = dontDistribute super."jsaddle";
"jsaddle-hello" = dontDistribute super."jsaddle-hello";
"jsc" = dontDistribute super."jsc";
@@ -4955,6 +4966,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5010,6 +5022,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5330,6 +5343,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5555,6 +5569,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6068,6 +6083,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6199,6 +6215,7 @@ self: super: {
"push-notify-ccs" = dontDistribute super."push-notify-ccs";
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6227,6 +6244,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
@@ -6376,6 +6394,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-deriv" = dontDistribute super."regex-deriv";
@@ -6537,6 +6556,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6740,6 +6760,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_7";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -6985,6 +7006,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7132,6 +7154,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7181,6 +7204,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
"sugarhaskell" = dontDistribute super."sugarhaskell";
@@ -7366,6 +7390,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
"testpack" = dontDistribute super."testpack";
@@ -7375,6 +7400,7 @@ self: super: {
"tex2txt" = dontDistribute super."tex2txt";
"texrunner" = dontDistribute super."texrunner";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7536,6 +7562,7 @@ self: super: {
"tracer" = dontDistribute super."tracer";
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -7964,6 +7991,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -8006,6 +8034,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8023,6 +8052,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8126,6 +8156,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8191,6 +8222,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.15.nix b/pkgs/development/haskell-modules/configuration-lts-5.15.nix
index ce130cf810cd..6f3045f04253 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.15.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.15.nix
@@ -999,6 +999,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1961,6 +1962,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2504,6 +2506,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2969,6 +2972,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_6";
@@ -3159,6 +3163,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3182,6 +3188,7 @@ self: super: {
"ghc-syb" = dontDistribute super."ghc-syb";
"ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3226,6 +3233,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_6_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3672,6 +3680,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -3857,6 +3866,7 @@ self: super: {
"hdis86" = dontDistribute super."hdis86";
"hdiscount" = dontDistribute super."hdiscount";
"hdm" = dontDistribute super."hdm";
+ "hdocs" = doDistribute super."hdocs_0_4_4_2";
"hdph" = dontDistribute super."hdph";
"hdph-closure" = dontDistribute super."hdph-closure";
"hdr-histogram" = dontDistribute super."hdr-histogram";
@@ -4008,14 +4018,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4393,6 +4400,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4521,6 +4529,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4541,6 +4550,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -4660,6 +4670,7 @@ self: super: {
"jose" = dontDistribute super."jose";
"jpeg" = dontDistribute super."jpeg";
"js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_12_3";
"jsaddle" = dontDistribute super."jsaddle";
"jsaddle-hello" = dontDistribute super."jsaddle-hello";
"jsc" = dontDistribute super."jsc";
@@ -4947,6 +4958,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5002,6 +5014,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5322,6 +5335,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5547,6 +5561,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6059,6 +6074,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6188,6 +6204,7 @@ self: super: {
"push-notify-ccs" = dontDistribute super."push-notify-ccs";
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6216,6 +6233,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
@@ -6365,6 +6383,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-deriv" = dontDistribute super."regex-deriv";
@@ -6526,6 +6545,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6729,6 +6749,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_7";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -6974,6 +6995,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7121,6 +7143,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7170,6 +7193,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
"sugarhaskell" = dontDistribute super."sugarhaskell";
@@ -7354,6 +7378,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
"testpack" = dontDistribute super."testpack";
@@ -7363,6 +7388,7 @@ self: super: {
"tex2txt" = dontDistribute super."tex2txt";
"texrunner" = dontDistribute super."texrunner";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7524,6 +7550,7 @@ self: super: {
"tracer" = dontDistribute super."tracer";
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -7951,6 +7978,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -7993,6 +8021,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8010,6 +8039,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8113,6 +8143,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8177,6 +8208,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.16.nix b/pkgs/development/haskell-modules/configuration-lts-5.16.nix
index 2ce1f84fb4a7..c1eca86682d0 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.16.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.16.nix
@@ -998,6 +998,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1953,6 +1954,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2484,6 +2486,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2948,6 +2951,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_6";
@@ -3137,6 +3141,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3160,6 +3166,7 @@ self: super: {
"ghc-syb" = dontDistribute super."ghc-syb";
"ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3204,6 +3211,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_6_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3650,6 +3658,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -3833,6 +3842,7 @@ self: super: {
"hdis86" = dontDistribute super."hdis86";
"hdiscount" = dontDistribute super."hdiscount";
"hdm" = dontDistribute super."hdm";
+ "hdocs" = doDistribute super."hdocs_0_4_4_2";
"hdph" = dontDistribute super."hdph";
"hdph-closure" = dontDistribute super."hdph-closure";
"hdr-histogram" = dontDistribute super."hdr-histogram";
@@ -3984,14 +3994,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4368,6 +4375,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4496,6 +4504,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4516,6 +4525,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -4635,6 +4645,7 @@ self: super: {
"jose" = dontDistribute super."jose";
"jpeg" = dontDistribute super."jpeg";
"js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_12_3";
"jsaddle" = dontDistribute super."jsaddle";
"jsaddle-hello" = dontDistribute super."jsaddle-hello";
"jsc" = dontDistribute super."jsc";
@@ -4920,6 +4931,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -4975,6 +4987,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5294,6 +5307,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5517,6 +5531,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6027,6 +6042,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6154,6 +6170,7 @@ self: super: {
"push-notify-ccs" = dontDistribute super."push-notify-ccs";
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6182,6 +6199,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
@@ -6331,6 +6349,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-deriv" = dontDistribute super."regex-deriv";
@@ -6487,6 +6506,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6690,6 +6710,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_7";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -6932,6 +6953,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7077,6 +7099,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7126,6 +7149,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
"sugarhaskell" = dontDistribute super."sugarhaskell";
@@ -7308,6 +7332,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
"testpack" = dontDistribute super."testpack";
@@ -7317,6 +7342,7 @@ self: super: {
"tex2txt" = dontDistribute super."tex2txt";
"texrunner" = dontDistribute super."texrunner";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7477,6 +7503,7 @@ self: super: {
"tracer" = dontDistribute super."tracer";
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -7902,6 +7929,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -7944,6 +7972,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -7961,6 +7990,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8064,6 +8094,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8128,6 +8159,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.17.nix b/pkgs/development/haskell-modules/configuration-lts-5.17.nix
index a01bfe713f1f..aa82643c72cf 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.17.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.17.nix
@@ -994,6 +994,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -1947,6 +1948,7 @@ self: super: {
"clustertools" = dontDistribute super."clustertools";
"clutterhs" = dontDistribute super."clutterhs";
"cmaes" = dontDistribute super."cmaes";
+ "cmark" = doDistribute super."cmark_0_5_2";
"cmath" = dontDistribute super."cmath";
"cmathml3" = dontDistribute super."cmathml3";
"cmd-item" = dontDistribute super."cmd-item";
@@ -2478,6 +2480,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -2801,6 +2804,7 @@ self: super: {
"extensible" = dontDistribute super."extensible";
"extensible-data" = dontDistribute super."extensible-data";
"external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_4_6";
"extractelf" = dontDistribute super."extractelf";
"ez-couch" = dontDistribute super."ez-couch";
"faceted" = dontDistribute super."faceted";
@@ -2941,6 +2945,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_6";
@@ -3130,6 +3135,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3153,6 +3160,7 @@ self: super: {
"ghc-syb" = dontDistribute super."ghc-syb";
"ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3197,6 +3205,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_6_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3643,6 +3652,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -3824,6 +3834,7 @@ self: super: {
"hdis86" = dontDistribute super."hdis86";
"hdiscount" = dontDistribute super."hdiscount";
"hdm" = dontDistribute super."hdm";
+ "hdocs" = doDistribute super."hdocs_0_4_4_2";
"hdph" = dontDistribute super."hdph";
"hdph-closure" = dontDistribute super."hdph-closure";
"hdr-histogram" = dontDistribute super."hdr-histogram";
@@ -3975,14 +3986,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4359,6 +4367,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4487,6 +4496,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4507,6 +4517,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -4626,6 +4637,7 @@ self: super: {
"jose" = dontDistribute super."jose";
"jpeg" = dontDistribute super."jpeg";
"js-good-parts" = dontDistribute super."js-good-parts";
+ "js-jquery" = doDistribute super."js-jquery_1_12_3";
"jsaddle" = dontDistribute super."jsaddle";
"jsaddle-hello" = dontDistribute super."jsaddle-hello";
"jsc" = dontDistribute super."jsc";
@@ -4911,6 +4923,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -4966,6 +4979,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5284,6 +5298,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5506,6 +5521,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6014,6 +6030,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6141,6 +6158,7 @@ self: super: {
"push-notify-ccs" = dontDistribute super."push-notify-ccs";
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6169,6 +6187,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
@@ -6317,6 +6336,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-deriv" = dontDistribute super."regex-deriv";
@@ -6473,6 +6493,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6676,6 +6697,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_7";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -6918,6 +6940,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7062,6 +7085,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7110,6 +7134,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
"sugarhaskell" = dontDistribute super."sugarhaskell";
@@ -7292,6 +7317,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
"testpack" = dontDistribute super."testpack";
@@ -7301,6 +7327,7 @@ self: super: {
"tex2txt" = dontDistribute super."tex2txt";
"texrunner" = dontDistribute super."texrunner";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7460,6 +7487,7 @@ self: super: {
"tracer" = dontDistribute super."tracer";
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -7591,6 +7619,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_1_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7831,6 +7860,7 @@ self: super: {
"wai-graceful" = dontDistribute super."wai-graceful";
"wai-handler-devel" = dontDistribute super."wai-handler-devel";
"wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-launch" = doDistribute super."wai-handler-launch_3_0_2";
"wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
"wai-handler-snap" = dontDistribute super."wai-handler-snap";
"wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
@@ -7882,6 +7912,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -7924,6 +7955,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -7941,6 +7973,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8043,6 +8076,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8107,6 +8141,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.18.nix b/pkgs/development/haskell-modules/configuration-lts-5.18.nix
new file mode 100644
index 000000000000..4b25949f41f2
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-5.18.nix
@@ -0,0 +1,8209 @@
+{ 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.18 packages
+ "3d-graphics-examples" = dontDistribute super."3d-graphics-examples";
+ "3dmodels" = dontDistribute super."3dmodels";
+ "4Blocks" = dontDistribute super."4Blocks";
+ "AAI" = dontDistribute super."AAI";
+ "ABList" = dontDistribute super."ABList";
+ "AC-Angle" = dontDistribute super."AC-Angle";
+ "AC-Boolean" = dontDistribute super."AC-Boolean";
+ "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform";
+ "AC-Colour" = dontDistribute super."AC-Colour";
+ "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK";
+ "AC-HalfInteger" = dontDistribute super."AC-HalfInteger";
+ "AC-MiniTest" = dontDistribute super."AC-MiniTest";
+ "AC-PPM" = dontDistribute super."AC-PPM";
+ "AC-Random" = dontDistribute super."AC-Random";
+ "AC-Terminal" = dontDistribute super."AC-Terminal";
+ "AC-VanillaArray" = dontDistribute super."AC-VanillaArray";
+ "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy";
+ "ACME" = dontDistribute super."ACME";
+ "ADPfusion" = dontDistribute super."ADPfusion";
+ "AERN-Basics" = dontDistribute super."AERN-Basics";
+ "AERN-Net" = dontDistribute super."AERN-Net";
+ "AERN-Real" = dontDistribute super."AERN-Real";
+ "AERN-Real-Double" = dontDistribute super."AERN-Real-Double";
+ "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval";
+ "AERN-RnToRm" = dontDistribute super."AERN-RnToRm";
+ "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot";
+ "AES" = dontDistribute super."AES";
+ "AFSM" = dontDistribute super."AFSM";
+ "AGI" = dontDistribute super."AGI";
+ "ALUT" = dontDistribute super."ALUT";
+ "AMI" = dontDistribute super."AMI";
+ "ANum" = dontDistribute super."ANum";
+ "ASN1" = dontDistribute super."ASN1";
+ "AVar" = dontDistribute super."AVar";
+ "AWin32Console" = dontDistribute super."AWin32Console";
+ "AbortT-monadstf" = dontDistribute super."AbortT-monadstf";
+ "AbortT-mtl" = dontDistribute super."AbortT-mtl";
+ "AbortT-transformers" = dontDistribute super."AbortT-transformers";
+ "ActionKid" = dontDistribute super."ActionKid";
+ "Adaptive" = dontDistribute super."Adaptive";
+ "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade";
+ "Advgame" = dontDistribute super."Advgame";
+ "AesonBson" = dontDistribute super."AesonBson";
+ "Agata" = dontDistribute super."Agata";
+ "Agda" = doDistribute super."Agda_2_4_2_5";
+ "Agda-executable" = dontDistribute super."Agda-executable";
+ "AhoCorasick" = dontDistribute super."AhoCorasick";
+ "AlgorithmW" = dontDistribute super."AlgorithmW";
+ "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms";
+ "Allure" = dontDistribute super."Allure";
+ "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter";
+ "Animas" = dontDistribute super."Animas";
+ "Annotations" = dontDistribute super."Annotations";
+ "Ansi2Html" = dontDistribute super."Ansi2Html";
+ "ApplePush" = dontDistribute super."ApplePush";
+ "AppleScript" = dontDistribute super."AppleScript";
+ "ApproxFun-hs" = dontDistribute super."ApproxFun-hs";
+ "ArrayRef" = dontDistribute super."ArrayRef";
+ "ArrowVHDL" = dontDistribute super."ArrowVHDL";
+ "AspectAG" = dontDistribute super."AspectAG";
+ "AttoBencode" = dontDistribute super."AttoBencode";
+ "AttoJson" = dontDistribute super."AttoJson";
+ "Attrac" = dontDistribute super."Attrac";
+ "Aurochs" = dontDistribute super."Aurochs";
+ "AutoForms" = dontDistribute super."AutoForms";
+ "AvlTree" = dontDistribute super."AvlTree";
+ "BASIC" = dontDistribute super."BASIC";
+ "BCMtools" = dontDistribute super."BCMtools";
+ "BNFC" = dontDistribute super."BNFC";
+ "BNFC-meta" = dontDistribute super."BNFC-meta";
+ "Baggins" = dontDistribute super."Baggins";
+ "Bang" = dontDistribute super."Bang";
+ "Barracuda" = dontDistribute super."Barracuda";
+ "Befunge93" = dontDistribute super."Befunge93";
+ "BenchmarkHistory" = dontDistribute super."BenchmarkHistory";
+ "BerkeleyDB" = dontDistribute super."BerkeleyDB";
+ "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML";
+ "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm";
+ "BiGUL" = dontDistribute super."BiGUL";
+ "BigPixel" = dontDistribute super."BigPixel";
+ "Binpack" = dontDistribute super."Binpack";
+ "Biobase" = dontDistribute super."Biobase";
+ "BiobaseBlast" = dontDistribute super."BiobaseBlast";
+ "BiobaseDotP" = dontDistribute super."BiobaseDotP";
+ "BiobaseFR3D" = dontDistribute super."BiobaseFR3D";
+ "BiobaseFasta" = dontDistribute super."BiobaseFasta";
+ "BiobaseInfernal" = dontDistribute super."BiobaseInfernal";
+ "BiobaseMAF" = dontDistribute super."BiobaseMAF";
+ "BiobaseNewick" = dontDistribute super."BiobaseNewick";
+ "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData";
+ "BiobaseTurner" = dontDistribute super."BiobaseTurner";
+ "BiobaseTypes" = dontDistribute super."BiobaseTypes";
+ "BiobaseVienna" = dontDistribute super."BiobaseVienna";
+ "BiobaseXNA" = dontDistribute super."BiobaseXNA";
+ "BirdPP" = dontDistribute super."BirdPP";
+ "BitSyntax" = dontDistribute super."BitSyntax";
+ "Bitly" = dontDistribute super."Bitly";
+ "Blobs" = dontDistribute super."Blobs";
+ "BluePrintCSS" = dontDistribute super."BluePrintCSS";
+ "Blueprint" = dontDistribute super."Blueprint";
+ "Bookshelf" = dontDistribute super."Bookshelf";
+ "Bravo" = dontDistribute super."Bravo";
+ "BufferedSocket" = dontDistribute super."BufferedSocket";
+ "Buster" = dontDistribute super."Buster";
+ "CBOR" = dontDistribute super."CBOR";
+ "CC-delcont" = dontDistribute super."CC-delcont";
+ "CC-delcont-alt" = dontDistribute super."CC-delcont-alt";
+ "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe";
+ "CC-delcont-exc" = dontDistribute super."CC-delcont-exc";
+ "CC-delcont-ref" = dontDistribute super."CC-delcont-ref";
+ "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf";
+ "CCA" = dontDistribute super."CCA";
+ "CHXHtml" = dontDistribute super."CHXHtml";
+ "CLASE" = dontDistribute super."CLASE";
+ "CLI" = dontDistribute super."CLI";
+ "CMCompare" = dontDistribute super."CMCompare";
+ "CMQ" = dontDistribute super."CMQ";
+ "COrdering" = dontDistribute super."COrdering";
+ "CPBrainfuck" = dontDistribute super."CPBrainfuck";
+ "CPL" = dontDistribute super."CPL";
+ "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage";
+ "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules";
+ "CSPM-Frontend" = dontDistribute super."CSPM-Frontend";
+ "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter";
+ "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog";
+ "CSPM-cspm" = dontDistribute super."CSPM-cspm";
+ "CTRex" = dontDistribute super."CTRex";
+ "CV" = dontDistribute super."CV";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cartesian" = dontDistribute super."Cartesian";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "ChannelT" = dontDistribute super."ChannelT";
+ "Chart" = doDistribute super."Chart_1_5_4";
+ "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4";
+ "Chart-diagrams" = dontDistribute super."Chart-diagrams";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "CheatSheet" = dontDistribute super."CheatSheet";
+ "Checked" = dontDistribute super."Checked";
+ "Chitra" = dontDistribute super."Chitra";
+ "ChristmasTree" = dontDistribute super."ChristmasTree";
+ "CirruParser" = dontDistribute super."CirruParser";
+ "ClassLaws" = dontDistribute super."ClassLaws";
+ "ClassyPrelude" = dontDistribute super."ClassyPrelude";
+ "Clean" = dontDistribute super."Clean";
+ "Clipboard" = dontDistribute super."Clipboard";
+ "Coadjute" = dontDistribute super."Coadjute";
+ "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF";
+ "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL";
+ "Combinatorrent" = dontDistribute super."Combinatorrent";
+ "Command" = dontDistribute super."Command";
+ "Commando" = dontDistribute super."Commando";
+ "ComonadSheet" = dontDistribute super."ComonadSheet";
+ "ConcurrentUtils" = dontDistribute super."ConcurrentUtils";
+ "Concurrential" = dontDistribute super."Concurrential";
+ "Condor" = dontDistribute super."Condor";
+ "ConfigFileTH" = dontDistribute super."ConfigFileTH";
+ "Configger" = dontDistribute super."Configger";
+ "Configurable" = dontDistribute super."Configurable";
+ "ConsStream" = dontDistribute super."ConsStream";
+ "Conscript" = dontDistribute super."Conscript";
+ "ConstraintKinds" = dontDistribute super."ConstraintKinds";
+ "Consumer" = dontDistribute super."Consumer";
+ "ContArrow" = dontDistribute super."ContArrow";
+ "ContextAlgebra" = dontDistribute super."ContextAlgebra";
+ "Contract" = dontDistribute super."Contract";
+ "Control-Engine" = dontDistribute super."Control-Engine";
+ "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass";
+ "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2";
+ "CoreDump" = dontDistribute super."CoreDump";
+ "CoreErlang" = dontDistribute super."CoreErlang";
+ "CoreFoundation" = dontDistribute super."CoreFoundation";
+ "Coroutine" = dontDistribute super."Coroutine";
+ "CouchDB" = dontDistribute super."CouchDB";
+ "Craft3e" = dontDistribute super."Craft3e";
+ "Crypto" = dontDistribute super."Crypto";
+ "CurryDB" = dontDistribute super."CurryDB";
+ "DAG-Tournament" = dontDistribute super."DAG-Tournament";
+ "DBlimited" = dontDistribute super."DBlimited";
+ "DBus" = dontDistribute super."DBus";
+ "DCFL" = dontDistribute super."DCFL";
+ "DMuCheck" = dontDistribute super."DMuCheck";
+ "DOM" = dontDistribute super."DOM";
+ "DP" = dontDistribute super."DP";
+ "DPM" = dontDistribute super."DPM";
+ "DSA" = dontDistribute super."DSA";
+ "DSH" = dontDistribute super."DSH";
+ "DSTM" = dontDistribute super."DSTM";
+ "DTC" = dontDistribute super."DTC";
+ "Dangerous" = dontDistribute super."Dangerous";
+ "Dao" = dontDistribute super."Dao";
+ "DarcsHelpers" = dontDistribute super."DarcsHelpers";
+ "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent";
+ "Data-Rope" = dontDistribute super."Data-Rope";
+ "DataTreeView" = dontDistribute super."DataTreeView";
+ "Deadpan-DDP" = dontDistribute super."Deadpan-DDP";
+ "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers";
+ "DecisionTree" = dontDistribute super."DecisionTree";
+ "DeepArrow" = dontDistribute super."DeepArrow";
+ "DefendTheKing" = dontDistribute super."DefendTheKing";
+ "DescriptiveKeys" = dontDistribute super."DescriptiveKeys";
+ "Dflow" = dontDistribute super."Dflow";
+ "DifferenceLogic" = dontDistribute super."DifferenceLogic";
+ "DifferentialEvolution" = dontDistribute super."DifferentialEvolution";
+ "Digit" = dontDistribute super."Digit";
+ "DigitalOcean" = dontDistribute super."DigitalOcean";
+ "DimensionalHash" = dontDistribute super."DimensionalHash";
+ "DirectSound" = dontDistribute super."DirectSound";
+ "DisTract" = dontDistribute super."DisTract";
+ "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem";
+ "Dish" = dontDistribute super."Dish";
+ "Dist" = dontDistribute super."Dist";
+ "DistanceTransform" = dontDistribute super."DistanceTransform";
+ "DistanceUnits" = dontDistribute super."DistanceUnits";
+ "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment";
+ "DocTest" = dontDistribute super."DocTest";
+ "Docs" = dontDistribute super."Docs";
+ "DrHylo" = dontDistribute super."DrHylo";
+ "DrIFT" = dontDistribute super."DrIFT";
+ "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized";
+ "Dung" = dontDistribute super."Dung";
+ "Dust" = dontDistribute super."Dust";
+ "Dust-crypto" = dontDistribute super."Dust-crypto";
+ "Dust-tools" = dontDistribute super."Dust-tools";
+ "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap";
+ "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp";
+ "DysFRP" = dontDistribute super."DysFRP";
+ "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo";
+ "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk";
+ "EEConfig" = dontDistribute super."EEConfig";
+ "Earley" = doDistribute super."Earley_0_10_1_0";
+ "EdisonAPI" = dontDistribute super."EdisonAPI";
+ "EdisonCore" = dontDistribute super."EdisonCore";
+ "EditTimeReport" = dontDistribute super."EditTimeReport";
+ "EitherT" = dontDistribute super."EitherT";
+ "Elm" = dontDistribute super."Elm";
+ "Emping" = dontDistribute super."Emping";
+ "Encode" = dontDistribute super."Encode";
+ "EnumContainers" = dontDistribute super."EnumContainers";
+ "EnumMap" = dontDistribute super."EnumMap";
+ "Eq" = dontDistribute super."Eq";
+ "EqualitySolver" = dontDistribute super."EqualitySolver";
+ "EsounD" = dontDistribute super."EsounD";
+ "EstProgress" = dontDistribute super."EstProgress";
+ "EtaMOO" = dontDistribute super."EtaMOO";
+ "Etage" = dontDistribute super."Etage";
+ "Etage-Graph" = dontDistribute super."Etage-Graph";
+ "Eternal10Seconds" = dontDistribute super."Eternal10Seconds";
+ "Etherbunny" = dontDistribute super."Etherbunny";
+ "EuroIT" = dontDistribute super."EuroIT";
+ "Euterpea" = dontDistribute super."Euterpea";
+ "EventSocket" = dontDistribute super."EventSocket";
+ "Extra" = dontDistribute super."Extra";
+ "FComp" = dontDistribute super."FComp";
+ "FM-SBLEX" = dontDistribute super."FM-SBLEX";
+ "FModExRaw" = dontDistribute super."FModExRaw";
+ "FPretty" = dontDistribute super."FPretty";
+ "FTGL" = dontDistribute super."FTGL";
+ "FTGL-bytestring" = dontDistribute super."FTGL-bytestring";
+ "FTPLine" = dontDistribute super."FTPLine";
+ "Facts" = dontDistribute super."Facts";
+ "FailureT" = dontDistribute super."FailureT";
+ "FastxPipe" = dontDistribute super."FastxPipe";
+ "FermatsLastMargin" = dontDistribute super."FermatsLastMargin";
+ "FerryCore" = dontDistribute super."FerryCore";
+ "Feval" = dontDistribute super."Feval";
+ "FieldTrip" = dontDistribute super."FieldTrip";
+ "FileManip" = dontDistribute super."FileManip";
+ "FileManipCompat" = dontDistribute super."FileManipCompat";
+ "FilePather" = dontDistribute super."FilePather";
+ "FileSystem" = dontDistribute super."FileSystem";
+ "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo";
+ "Finance-Treasury" = dontDistribute super."Finance-Treasury";
+ "FiniteMap" = dontDistribute super."FiniteMap";
+ "FirstOrderTheory" = dontDistribute super."FirstOrderTheory";
+ "FixedPoint-simple" = dontDistribute super."FixedPoint-simple";
+ "Flippi" = dontDistribute super."Flippi";
+ "Focus" = dontDistribute super."Focus";
+ "Folly" = dontDistribute super."Folly";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForestStructures" = dontDistribute super."ForestStructures";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
+ "Fractaler" = dontDistribute super."Fractaler";
+ "Frank" = dontDistribute super."Frank";
+ "FreeTypeGL" = dontDistribute super."FreeTypeGL";
+ "FunGEn" = dontDistribute super."FunGEn";
+ "Fungi" = dontDistribute super."Fungi";
+ "GA" = dontDistribute super."GA";
+ "GGg" = dontDistribute super."GGg";
+ "GHood" = dontDistribute super."GHood";
+ "GLFW" = dontDistribute super."GLFW";
+ "GLFW-OGL" = dontDistribute super."GLFW-OGL";
+ "GLFW-b-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLM" = dontDistribute super."GLM";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad";
+ "GTALib" = dontDistribute super."GTALib";
+ "Gamgine" = dontDistribute super."Gamgine";
+ "Ganymede" = dontDistribute super."Ganymede";
+ "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration";
+ "GeBoP" = dontDistribute super."GeBoP";
+ "GenI" = dontDistribute super."GenI";
+ "GenSmsPdu" = dontDistribute super."GenSmsPdu";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "Gifcurry" = dontDistribute super."Gifcurry";
+ "GiveYouAHead" = dontDistribute super."GiveYouAHead";
+ "GlomeTrace" = dontDistribute super."GlomeTrace";
+ "GlomeVec" = dontDistribute super."GlomeVec";
+ "GlomeView" = dontDistribute super."GlomeView";
+ "GoogleChart" = dontDistribute super."GoogleChart";
+ "GoogleDirections" = dontDistribute super."GoogleDirections";
+ "GoogleSB" = dontDistribute super."GoogleSB";
+ "GoogleSuggest" = dontDistribute super."GoogleSuggest";
+ "GoogleTranslate" = dontDistribute super."GoogleTranslate";
+ "GotoT-transformers" = dontDistribute super."GotoT-transformers";
+ "GrammarProducts" = dontDistribute super."GrammarProducts";
+ "Graph500" = dontDistribute super."Graph500";
+ "GraphHammer" = dontDistribute super."GraphHammer";
+ "GraphHammer-examples" = dontDistribute super."GraphHammer-examples";
+ "Graphalyze" = dontDistribute super."Graphalyze";
+ "Grempa" = dontDistribute super."Grempa";
+ "GroteTrap" = dontDistribute super."GroteTrap";
+ "Grow" = dontDistribute super."Grow";
+ "GrowlNotify" = dontDistribute super."GrowlNotify";
+ "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics";
+ "GtkGLTV" = dontDistribute super."GtkGLTV";
+ "GtkTV" = dontDistribute super."GtkTV";
+ "GuiHaskell" = dontDistribute super."GuiHaskell";
+ "GuiTV" = dontDistribute super."GuiTV";
+ "HARM" = dontDistribute super."HARM";
+ "HAppS-Data" = dontDistribute super."HAppS-Data";
+ "HAppS-IxSet" = dontDistribute super."HAppS-IxSet";
+ "HAppS-Server" = dontDistribute super."HAppS-Server";
+ "HAppS-State" = dontDistribute super."HAppS-State";
+ "HAppS-Util" = dontDistribute super."HAppS-Util";
+ "HAppSHelpers" = dontDistribute super."HAppSHelpers";
+ "HCL" = dontDistribute super."HCL";
+ "HCard" = dontDistribute super."HCard";
+ "HDBC-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "HDRUtils" = dontDistribute super."HDRUtils";
+ "HERA" = dontDistribute super."HERA";
+ "HFrequencyQueue" = dontDistribute super."HFrequencyQueue";
+ "HFuse" = dontDistribute super."HFuse";
+ "HGL" = dontDistribute super."HGL";
+ "HGamer3D" = dontDistribute super."HGamer3D";
+ "HGamer3D-API" = dontDistribute super."HGamer3D-API";
+ "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio";
+ "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding";
+ "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding";
+ "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding";
+ "HGamer3D-Common" = dontDistribute super."HGamer3D-Common";
+ "HGamer3D-Data" = dontDistribute super."HGamer3D-Data";
+ "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding";
+ "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI";
+ "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D";
+ "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem";
+ "HGamer3D-Network" = dontDistribute super."HGamer3D-Network";
+ "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding";
+ "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding";
+ "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding";
+ "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding";
+ "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent";
+ "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire";
+ "HGraphStorage" = dontDistribute super."HGraphStorage";
+ "HHDL" = dontDistribute super."HHDL";
+ "HJScript" = dontDistribute super."HJScript";
+ "HJVM" = dontDistribute super."HJVM";
+ "HJavaScript" = dontDistribute super."HJavaScript";
+ "HLearn-algebra" = dontDistribute super."HLearn-algebra";
+ "HLearn-approximation" = dontDistribute super."HLearn-approximation";
+ "HLearn-classification" = dontDistribute super."HLearn-classification";
+ "HLearn-datastructures" = dontDistribute super."HLearn-datastructures";
+ "HLearn-distributions" = dontDistribute super."HLearn-distributions";
+ "HListPP" = dontDistribute super."HListPP";
+ "HLogger" = dontDistribute super."HLogger";
+ "HMM" = dontDistribute super."HMM";
+ "HMap" = dontDistribute super."HMap";
+ "HNM" = dontDistribute super."HNM";
+ "HODE" = dontDistribute super."HODE";
+ "HOpenCV" = dontDistribute super."HOpenCV";
+ "HPath" = dontDistribute super."HPath";
+ "HPi" = dontDistribute super."HPi";
+ "HPlot" = dontDistribute super."HPlot";
+ "HPong" = dontDistribute super."HPong";
+ "HROOT" = dontDistribute super."HROOT";
+ "HROOT-core" = dontDistribute super."HROOT-core";
+ "HROOT-graf" = dontDistribute super."HROOT-graf";
+ "HROOT-hist" = dontDistribute super."HROOT-hist";
+ "HROOT-io" = dontDistribute super."HROOT-io";
+ "HROOT-math" = dontDistribute super."HROOT-math";
+ "HRay" = dontDistribute super."HRay";
+ "HSFFIG" = dontDistribute super."HSFFIG";
+ "HSGEP" = dontDistribute super."HSGEP";
+ "HSH" = dontDistribute super."HSH";
+ "HSHHelpers" = dontDistribute super."HSHHelpers";
+ "HSlippyMap" = dontDistribute super."HSlippyMap";
+ "HSmarty" = dontDistribute super."HSmarty";
+ "HSoundFile" = dontDistribute super."HSoundFile";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "HTTP-Simple" = dontDistribute super."HTTP-Simple";
+ "HTab" = dontDistribute super."HTab";
+ "HTicTacToe" = dontDistribute super."HTicTacToe";
+ "HUnit-Diff" = dontDistribute super."HUnit-Diff";
+ "HUnit-Plus" = dontDistribute super."HUnit-Plus";
+ "HUnit-approx" = dontDistribute super."HUnit-approx";
+ "HXMPP" = dontDistribute super."HXMPP";
+ "HXQ" = dontDistribute super."HXQ";
+ "HaLeX" = dontDistribute super."HaLeX";
+ "HaMinitel" = dontDistribute super."HaMinitel";
+ "HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
+ "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";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
+ "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";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
+ "OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
+ "OpenSCAD" = dontDistribute super."OpenSCAD";
+ "OpenVG" = dontDistribute super."OpenVG";
+ "OpenVGRaw" = dontDistribute super."OpenVGRaw";
+ "Operads" = dontDistribute super."Operads";
+ "OptDir" = dontDistribute super."OptDir";
+ "OrPatterns" = dontDistribute super."OrPatterns";
+ "OrchestrateDB" = dontDistribute super."OrchestrateDB";
+ "OrderedBits" = dontDistribute super."OrderedBits";
+ "Ordinals" = dontDistribute super."Ordinals";
+ "PArrows" = dontDistribute super."PArrows";
+ "PBKDF2" = dontDistribute super."PBKDF2";
+ "PCLT" = dontDistribute super."PCLT";
+ "PCLT-DB" = dontDistribute super."PCLT-DB";
+ "PDBtools" = dontDistribute super."PDBtools";
+ "PTQ" = dontDistribute super."PTQ";
+ "PUH-Project" = dontDistribute super."PUH-Project";
+ "PageIO" = dontDistribute super."PageIO";
+ "Paillier" = dontDistribute super."Paillier";
+ "PandocAgda" = dontDistribute super."PandocAgda";
+ "Paraiso" = dontDistribute super."Paraiso";
+ "Parry" = dontDistribute super."Parry";
+ "ParsecTools" = dontDistribute super."ParsecTools";
+ "ParserFunction" = dontDistribute super."ParserFunction";
+ "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures";
+ "PasswordGenerator" = dontDistribute super."PasswordGenerator";
+ "PastePipe" = dontDistribute super."PastePipe";
+ "Pathfinder" = dontDistribute super."Pathfinder";
+ "Peano" = dontDistribute super."Peano";
+ "PeanoWitnesses" = dontDistribute super."PeanoWitnesses";
+ "PerfectHash" = dontDistribute super."PerfectHash";
+ "PermuteEffects" = dontDistribute super."PermuteEffects";
+ "Phsu" = dontDistribute super."Phsu";
+ "Pipe" = dontDistribute super."Pipe";
+ "Piso" = dontDistribute super."Piso";
+ "PlayHangmanGame" = dontDistribute super."PlayHangmanGame";
+ "PlayingCards" = dontDistribute super."PlayingCards";
+ "Plot-ho-matic" = dontDistribute super."Plot-ho-matic";
+ "PlslTools" = dontDistribute super."PlslTools";
+ "Plural" = dontDistribute super."Plural";
+ "Pollutocracy" = dontDistribute super."Pollutocracy";
+ "PortFusion" = dontDistribute super."PortFusion";
+ "PortMidi" = dontDistribute super."PortMidi";
+ "PostgreSQL" = dontDistribute super."PostgreSQL";
+ "PrimitiveArray" = dontDistribute super."PrimitiveArray";
+ "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty";
+ "Printf-TH" = dontDistribute super."Printf-TH";
+ "PriorityChansConverger" = dontDistribute super."PriorityChansConverger";
+ "ProbabilityMonads" = dontDistribute super."ProbabilityMonads";
+ "PropLogic" = dontDistribute super."PropLogic";
+ "Proper" = dontDistribute super."Proper";
+ "ProxN" = dontDistribute super."ProxN";
+ "Pugs" = dontDistribute super."Pugs";
+ "Pup-Events" = dontDistribute super."Pup-Events";
+ "Pup-Events-Client" = dontDistribute super."Pup-Events-Client";
+ "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo";
+ "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue";
+ "Pup-Events-Server" = dontDistribute super."Pup-Events-Server";
+ "QIO" = dontDistribute super."QIO";
+ "QLearn" = dontDistribute super."QLearn";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "Quelea" = dontDistribute super."Quelea";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_8_1";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "QuickPlot" = dontDistribute super."QuickPlot";
+ "Quickson" = dontDistribute super."Quickson";
+ "R-pandoc" = dontDistribute super."R-pandoc";
+ "RANSAC" = dontDistribute super."RANSAC";
+ "RBTree" = dontDistribute super."RBTree";
+ "RESTng" = dontDistribute super."RESTng";
+ "RFC1751" = dontDistribute super."RFC1751";
+ "RJson" = dontDistribute super."RJson";
+ "RMP" = dontDistribute super."RMP";
+ "RNAFold" = dontDistribute super."RNAFold";
+ "RNAFoldProgs" = dontDistribute super."RNAFoldProgs";
+ "RNAdesign" = dontDistribute super."RNAdesign";
+ "RNAdraw" = dontDistribute super."RNAdraw";
+ "RNAlien" = doDistribute super."RNAlien_1_0_0";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "Raincat" = dontDistribute super."Raincat";
+ "Random123" = dontDistribute super."Random123";
+ "RandomDotOrg" = dontDistribute super."RandomDotOrg";
+ "Randometer" = dontDistribute super."Randometer";
+ "Range" = dontDistribute super."Range";
+ "Ranged-sets" = dontDistribute super."Ranged-sets";
+ "Ranka" = dontDistribute super."Ranka";
+ "Rasenschach" = dontDistribute super."Rasenschach";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RoyalMonad" = dontDistribute super."RoyalMonad";
+ "RxHaskell" = dontDistribute super."RxHaskell";
+ "SBench" = dontDistribute super."SBench";
+ "SConfig" = dontDistribute super."SConfig";
+ "SDL" = dontDistribute super."SDL";
+ "SDL-gfx" = dontDistribute super."SDL-gfx";
+ "SDL-image" = dontDistribute super."SDL-image";
+ "SDL-mixer" = dontDistribute super."SDL-mixer";
+ "SDL-mpeg" = dontDistribute super."SDL-mpeg";
+ "SDL-ttf" = dontDistribute super."SDL-ttf";
+ "SDL2-ttf" = dontDistribute super."SDL2-ttf";
+ "SFML" = dontDistribute super."SFML";
+ "SFML-control" = dontDistribute super."SFML-control";
+ "SFont" = dontDistribute super."SFont";
+ "SG" = dontDistribute super."SG";
+ "SGdemo" = dontDistribute super."SGdemo";
+ "SHA2" = dontDistribute super."SHA2";
+ "SMTPClient" = dontDistribute super."SMTPClient";
+ "SNet" = dontDistribute super."SNet";
+ "SQLDeps" = dontDistribute super."SQLDeps";
+ "STL" = dontDistribute super."STL";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = dontDistribute super."SVGFonts";
+ "SVGPath" = dontDistribute super."SVGPath";
+ "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB";
+ "SableCC2Hs" = dontDistribute super."SableCC2Hs";
+ "Safe" = dontDistribute super."Safe";
+ "Salsa" = dontDistribute super."Salsa";
+ "Saturnin" = dontDistribute super."Saturnin";
+ "SciFlow" = dontDistribute super."SciFlow";
+ "ScratchFs" = dontDistribute super."ScratchFs";
+ "Scurry" = dontDistribute super."Scurry";
+ "Semantique" = dontDistribute super."Semantique";
+ "Semigroup" = dontDistribute super."Semigroup";
+ "SeqAlign" = dontDistribute super."SeqAlign";
+ "SessionLogger" = dontDistribute super."SessionLogger";
+ "ShellCheck" = dontDistribute super."ShellCheck";
+ "Shellac" = dontDistribute super."Shellac";
+ "Shellac-compatline" = dontDistribute super."Shellac-compatline";
+ "Shellac-editline" = dontDistribute super."Shellac-editline";
+ "Shellac-haskeline" = dontDistribute super."Shellac-haskeline";
+ "Shellac-readline" = dontDistribute super."Shellac-readline";
+ "ShowF" = dontDistribute super."ShowF";
+ "Shrub" = dontDistribute super."Shrub";
+ "Shu-thing" = dontDistribute super."Shu-thing";
+ "SimpleAES" = dontDistribute super."SimpleAES";
+ "SimpleEA" = dontDistribute super."SimpleEA";
+ "SimpleGL" = dontDistribute super."SimpleGL";
+ "SimpleH" = dontDistribute super."SimpleH";
+ "SimpleLog" = dontDistribute super."SimpleLog";
+ "SimpleServer" = dontDistribute super."SimpleServer";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Slides" = dontDistribute super."Slides";
+ "Smooth" = dontDistribute super."Smooth";
+ "SmtLib" = dontDistribute super."SmtLib";
+ "Snusmumrik" = dontDistribute super."Snusmumrik";
+ "SoOSiM" = dontDistribute super."SoOSiM";
+ "SoccerFun" = dontDistribute super."SoccerFun";
+ "SoccerFunGL" = dontDistribute super."SoccerFunGL";
+ "Sonnex" = dontDistribute super."Sonnex";
+ "SourceGraph" = dontDistribute super."SourceGraph";
+ "Southpaw" = dontDistribute super."Southpaw";
+ "SpaceInvaders" = dontDistribute super."SpaceInvaders";
+ "SpacePrivateers" = dontDistribute super."SpacePrivateers";
+ "SpinCounter" = dontDistribute super."SpinCounter";
+ "Spock-auth" = dontDistribute super."Spock-auth";
+ "Spock-lucid" = dontDistribute super."Spock-lucid";
+ "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "StateVar-transformer" = dontDistribute super."StateVar-transformer";
+ "StatisticalMethods" = dontDistribute super."StatisticalMethods";
+ "Stomp" = dontDistribute super."Stomp";
+ "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib";
+ "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell";
+ "StrappedTemplates" = dontDistribute super."StrappedTemplates";
+ "StrategyLib" = dontDistribute super."StrategyLib";
+ "Stream" = dontDistribute super."Stream";
+ "StrictBench" = dontDistribute super."StrictBench";
+ "SuffixStructures" = dontDistribute super."SuffixStructures";
+ "SybWidget" = dontDistribute super."SybWidget";
+ "SyntaxMacros" = dontDistribute super."SyntaxMacros";
+ "Sysmon" = dontDistribute super."Sysmon";
+ "TBC" = dontDistribute super."TBC";
+ "TBit" = dontDistribute super."TBit";
+ "THEff" = dontDistribute super."THEff";
+ "TTTAS" = dontDistribute super."TTTAS";
+ "TV" = dontDistribute super."TV";
+ "TYB" = dontDistribute super."TYB";
+ "TableAlgebra" = dontDistribute super."TableAlgebra";
+ "Tables" = dontDistribute super."Tables";
+ "Tablify" = dontDistribute super."Tablify";
+ "Tahin" = dontDistribute super."Tahin";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "TeaHS" = dontDistribute super."TeaHS";
+ "Tensor" = dontDistribute super."Tensor";
+ "TernaryTrees" = dontDistribute super."TernaryTrees";
+ "TestExplode" = dontDistribute super."TestExplode";
+ "Theora" = dontDistribute super."Theora";
+ "Thingie" = dontDistribute super."Thingie";
+ "ThreadObjects" = dontDistribute super."ThreadObjects";
+ "Thrift" = dontDistribute super."Thrift";
+ "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe";
+ "TicTacToe" = dontDistribute super."TicTacToe";
+ "TigerHash" = dontDistribute super."TigerHash";
+ "TimePiece" = dontDistribute super."TimePiece";
+ "TinyLaunchbury" = dontDistribute super."TinyLaunchbury";
+ "TinyURL" = dontDistribute super."TinyURL";
+ "Titim" = dontDistribute super."Titim";
+ "Top" = dontDistribute super."Top";
+ "Tournament" = dontDistribute super."Tournament";
+ "TraceUtils" = dontDistribute super."TraceUtils";
+ "TransformersStepByStep" = dontDistribute super."TransformersStepByStep";
+ "Transhare" = dontDistribute super."Transhare";
+ "TreeCounter" = dontDistribute super."TreeCounter";
+ "TreeStructures" = dontDistribute super."TreeStructures";
+ "TreeT" = dontDistribute super."TreeT";
+ "Treiber" = dontDistribute super."Treiber";
+ "TrendGraph" = dontDistribute super."TrendGraph";
+ "TrieMap" = dontDistribute super."TrieMap";
+ "Twofish" = dontDistribute super."Twofish";
+ "TypeClass" = dontDistribute super."TypeClass";
+ "TypeCompose" = dontDistribute super."TypeCompose";
+ "TypeIlluminator" = dontDistribute super."TypeIlluminator";
+ "TypeNat" = dontDistribute super."TypeNat";
+ "TypingTester" = dontDistribute super."TypingTester";
+ "UISF" = dontDistribute super."UISF";
+ "UMM" = dontDistribute super."UMM";
+ "URLT" = dontDistribute super."URLT";
+ "URLb" = dontDistribute super."URLb";
+ "UTFTConverter" = dontDistribute super."UTFTConverter";
+ "Unique" = dontDistribute super."Unique";
+ "Unixutils-shadow" = dontDistribute super."Unixutils-shadow";
+ "Updater" = dontDistribute super."Updater";
+ "UrlDisp" = dontDistribute super."UrlDisp";
+ "Useful" = dontDistribute super."Useful";
+ "UtilityTM" = dontDistribute super."UtilityTM";
+ "VKHS" = dontDistribute super."VKHS";
+ "Validation" = dontDistribute super."Validation";
+ "Vec" = dontDistribute super."Vec";
+ "Vec-Boolean" = dontDistribute super."Vec-Boolean";
+ "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw";
+ "Vec-Transform" = dontDistribute super."Vec-Transform";
+ "VecN" = dontDistribute super."VecN";
+ "Verba" = dontDistribute super."Verba";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "Vulkan" = dontDistribute super."Vulkan";
+ "WAVE" = dontDistribute super."WAVE";
+ "WL500gPControl" = dontDistribute super."WL500gPControl";
+ "WL500gPLib" = dontDistribute super."WL500gPLib";
+ "WMSigner" = dontDistribute super."WMSigner";
+ "WURFL" = dontDistribute super."WURFL";
+ "WXDiffCtrl" = dontDistribute super."WXDiffCtrl";
+ "WashNGo" = dontDistribute super."WashNGo";
+ "WaveFront" = dontDistribute super."WaveFront";
+ "Weather" = dontDistribute super."Weather";
+ "WebBits" = dontDistribute super."WebBits";
+ "WebBits-Html" = dontDistribute super."WebBits-Html";
+ "WebBits-multiplate" = dontDistribute super."WebBits-multiplate";
+ "WebCont" = dontDistribute super."WebCont";
+ "WeberLogic" = dontDistribute super."WeberLogic";
+ "Webrexp" = dontDistribute super."Webrexp";
+ "Wheb" = dontDistribute super."Wheb";
+ "WikimediaParser" = dontDistribute super."WikimediaParser";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordAlignment" = dontDistribute super."WordAlignment";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "WxGeneric" = dontDistribute super."WxGeneric";
+ "X11-extras" = dontDistribute super."X11-extras";
+ "X11-rm" = dontDistribute super."X11-rm";
+ "X11-xdamage" = dontDistribute super."X11-xdamage";
+ "X11-xfixes" = dontDistribute super."X11-xfixes";
+ "X11-xft" = dontDistribute super."X11-xft";
+ "X11-xshape" = dontDistribute super."X11-xshape";
+ "XAttr" = dontDistribute super."XAttr";
+ "XInput" = dontDistribute super."XInput";
+ "XMMS" = dontDistribute super."XMMS";
+ "XMPP" = dontDistribute super."XMPP";
+ "XSaiga" = dontDistribute super."XSaiga";
+ "Xec" = dontDistribute super."Xec";
+ "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter";
+ "Xorshift128Plus" = dontDistribute super."Xorshift128Plus";
+ "YACPong" = dontDistribute super."YACPong";
+ "YFrob" = dontDistribute super."YFrob";
+ "Yablog" = dontDistribute super."Yablog";
+ "YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
+ "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-typelits" = dontDistribute super."accelerate-typelits";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "acid-state-dist" = dontDistribute super."acid-state-dist";
+ "acid-state-tls" = dontDistribute super."acid-state-tls";
+ "acl2" = dontDistribute super."acl2";
+ "acme-all-monad" = dontDistribute super."acme-all-monad";
+ "acme-box" = dontDistribute super."acme-box";
+ "acme-cadre" = dontDistribute super."acme-cadre";
+ "acme-cofunctor" = dontDistribute super."acme-cofunctor";
+ "acme-colosson" = dontDistribute super."acme-colosson";
+ "acme-comonad" = dontDistribute super."acme-comonad";
+ "acme-cutegirl" = dontDistribute super."acme-cutegirl";
+ "acme-dont" = dontDistribute super."acme-dont";
+ "acme-flipping-tables" = dontDistribute super."acme-flipping-tables";
+ "acme-grawlix" = dontDistribute super."acme-grawlix";
+ "acme-hq9plus" = dontDistribute super."acme-hq9plus";
+ "acme-http" = dontDistribute super."acme-http";
+ "acme-inator" = dontDistribute super."acme-inator";
+ "acme-io" = dontDistribute super."acme-io";
+ "acme-left-pad" = dontDistribute super."acme-left-pad";
+ "acme-lolcat" = dontDistribute super."acme-lolcat";
+ "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval";
+ "acme-memorandom" = dontDistribute super."acme-memorandom";
+ "acme-microwave" = dontDistribute super."acme-microwave";
+ "acme-miscorder" = dontDistribute super."acme-miscorder";
+ "acme-missiles" = dontDistribute super."acme-missiles";
+ "acme-now" = dontDistribute super."acme-now";
+ "acme-numbersystem" = dontDistribute super."acme-numbersystem";
+ "acme-omitted" = dontDistribute super."acme-omitted";
+ "acme-one" = dontDistribute super."acme-one";
+ "acme-operators" = dontDistribute super."acme-operators";
+ "acme-php" = dontDistribute super."acme-php";
+ "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers";
+ "acme-realworld" = dontDistribute super."acme-realworld";
+ "acme-safe" = dontDistribute super."acme-safe";
+ "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel";
+ "acme-strfry" = dontDistribute super."acme-strfry";
+ "acme-stringly-typed" = dontDistribute super."acme-stringly-typed";
+ "acme-strtok" = dontDistribute super."acme-strtok";
+ "acme-timemachine" = dontDistribute super."acme-timemachine";
+ "acme-year" = dontDistribute super."acme-year";
+ "acme-zero" = dontDistribute super."acme-zero";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "adaptive-containers" = dontDistribute super."adaptive-containers";
+ "adaptive-tuple" = dontDistribute super."adaptive-tuple";
+ "adb" = dontDistribute super."adb";
+ "adblock2privoxy" = dontDistribute super."adblock2privoxy";
+ "addLicenseInfo" = dontDistribute super."addLicenseInfo";
+ "adhoc-network" = dontDistribute super."adhoc-network";
+ "adict" = dontDistribute super."adict";
+ "adler32" = dontDistribute super."adler32";
+ "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange";
+ "adp-multi" = dontDistribute super."adp-multi";
+ "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp";
+ "aeson" = doDistribute super."aeson_0_9_0_1";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-filthy" = dontDistribute super."aeson-filthy";
+ "aeson-flatten" = dontDistribute super."aeson-flatten";
+ "aeson-iproute" = dontDistribute super."aeson-iproute";
+ "aeson-json-ast" = dontDistribute super."aeson-json-ast";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
+ "aeson-prefix" = dontDistribute super."aeson-prefix";
+ "aeson-schema" = dontDistribute super."aeson-schema";
+ "aeson-serialize" = dontDistribute super."aeson-serialize";
+ "aeson-smart" = dontDistribute super."aeson-smart";
+ "aeson-streams" = dontDistribute super."aeson-streams";
+ "aeson-t" = dontDistribute super."aeson-t";
+ "aeson-toolkit" = dontDistribute super."aeson-toolkit";
+ "aeson-value-parser" = dontDistribute super."aeson-value-parser";
+ "aeson-yak" = dontDistribute super."aeson-yak";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "ag-pictgen" = dontDistribute super."ag-pictgen";
+ "agda-server" = dontDistribute super."agda-server";
+ "agda-snippets" = dontDistribute super."agda-snippets";
+ "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
+ "agum" = dontDistribute super."agum";
+ "aig" = dontDistribute super."aig";
+ "air" = dontDistribute super."air";
+ "air-extra" = dontDistribute super."air-extra";
+ "air-spec" = dontDistribute super."air-spec";
+ "air-th" = dontDistribute super."air-th";
+ "airbrake" = dontDistribute super."airbrake";
+ "airship" = doDistribute super."airship_0_4_3_0";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-branches" = dontDistribute super."aivika-branches";
+ "aivika-distributed" = dontDistribute super."aivika-distributed";
+ "aivika-experiment" = dontDistribute super."aivika-experiment";
+ "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo";
+ "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart";
+ "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams";
+ "aivika-transformers" = dontDistribute super."aivika-transformers";
+ "ajhc" = dontDistribute super."ajhc";
+ "al" = dontDistribute super."al";
+ "alea" = dontDistribute super."alea";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "alga" = dontDistribute super."alga";
+ "algebra" = dontDistribute super."algebra";
+ "algebra-dag" = dontDistribute super."algebra-dag";
+ "algebra-sql" = dontDistribute super."algebra-sql";
+ "algebraic" = dontDistribute super."algebraic";
+ "algebraic-classes" = dontDistribute super."algebraic-classes";
+ "align" = dontDistribute super."align";
+ "align-text" = dontDistribute super."align-text";
+ "aligned-foreignptr" = dontDistribute super."aligned-foreignptr";
+ "allocated-processor" = dontDistribute super."allocated-processor";
+ "alloy" = dontDistribute super."alloy";
+ "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd";
+ "almost-fix" = dontDistribute super."almost-fix";
+ "alms" = dontDistribute super."alms";
+ "alpha" = dontDistribute super."alpha";
+ "alpino-tools" = dontDistribute super."alpino-tools";
+ "alsa" = dontDistribute super."alsa";
+ "alsa-core" = dontDistribute super."alsa-core";
+ "alsa-gui" = dontDistribute super."alsa-gui";
+ "alsa-midi" = dontDistribute super."alsa-midi";
+ "alsa-mixer" = dontDistribute super."alsa-mixer";
+ "alsa-pcm" = dontDistribute super."alsa-pcm";
+ "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests";
+ "alsa-seq" = dontDistribute super."alsa-seq";
+ "alsa-seq-tests" = dontDistribute super."alsa-seq-tests";
+ "altcomposition" = dontDistribute super."altcomposition";
+ "alternative-io" = dontDistribute super."alternative-io";
+ "altfloat" = dontDistribute super."altfloat";
+ "alure" = dontDistribute super."alure";
+ "amazon-emailer" = dontDistribute super."amazon-emailer";
+ "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap";
+ "amazon-products" = dontDistribute super."amazon-products";
+ "amazonka" = doDistribute super."amazonka_1_3_7";
+ "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7";
+ "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7";
+ "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager";
+ "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7";
+ "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7";
+ "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7";
+ "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7";
+ "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7";
+ "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7";
+ "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7";
+ "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events";
+ "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7";
+ "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7";
+ "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7";
+ "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7";
+ "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7";
+ "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp";
+ "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7";
+ "amazonka-config" = doDistribute super."amazonka-config_1_3_7";
+ "amazonka-core" = doDistribute super."amazonka-core_1_3_7";
+ "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7";
+ "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7";
+ "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7";
+ "amazonka-dms" = dontDistribute super."amazonka-dms";
+ "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7";
+ "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7";
+ "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7";
+ "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7";
+ "amazonka-ecr" = dontDistribute super."amazonka-ecr";
+ "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7";
+ "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7";
+ "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7";
+ "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7";
+ "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7";
+ "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7";
+ "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7";
+ "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7";
+ "amazonka-gamelift" = dontDistribute super."amazonka-gamelift";
+ "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7";
+ "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7";
+ "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7";
+ "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7";
+ "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7";
+ "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7";
+ "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7";
+ "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7";
+ "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7";
+ "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7";
+ "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7";
+ "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering";
+ "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7";
+ "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7";
+ "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7";
+ "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7";
+ "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7";
+ "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7";
+ "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7";
+ "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7";
+ "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7";
+ "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7";
+ "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7";
+ "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7";
+ "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7";
+ "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7";
+ "amazonka-support" = doDistribute super."amazonka-support_1_3_7";
+ "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7";
+ "amazonka-test" = doDistribute super."amazonka-test_1_3_7";
+ "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7";
+ "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7";
+ "ampersand" = dontDistribute super."ampersand";
+ "amqp-conduit" = dontDistribute super."amqp-conduit";
+ "amrun" = dontDistribute super."amrun";
+ "analyze-client" = dontDistribute super."analyze-client";
+ "anansi" = dontDistribute super."anansi";
+ "anansi-hscolour" = dontDistribute super."anansi-hscolour";
+ "anansi-pandoc" = dontDistribute super."anansi-pandoc";
+ "anatomy" = dontDistribute super."anatomy";
+ "android" = dontDistribute super."android";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "animalcase" = dontDistribute super."animalcase";
+ "annah" = dontDistribute super."annah";
+ "annihilator" = dontDistribute super."annihilator";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansigraph" = dontDistribute super."ansigraph";
+ "antagonist" = dontDistribute super."antagonist";
+ "antfarm" = dontDistribute super."antfarm";
+ "anticiv" = dontDistribute super."anticiv";
+ "antigate" = dontDistribute super."antigate";
+ "antimirov" = dontDistribute super."antimirov";
+ "antiquoter" = dontDistribute super."antiquoter";
+ "antisplice" = dontDistribute super."antisplice";
+ "antlrc" = dontDistribute super."antlrc";
+ "anydbm" = dontDistribute super."anydbm";
+ "aosd" = dontDistribute super."aosd";
+ "ap-reflect" = dontDistribute super."ap-reflect";
+ "apache-md5" = dontDistribute super."apache-md5";
+ "apelsin" = dontDistribute super."apelsin";
+ "api-builder" = dontDistribute super."api-builder";
+ "api-field-json-th" = dontDistribute super."api-field-json-th";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = doDistribute super."apiary_1_4_5";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-http-client" = dontDistribute super."apiary-http-client";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "appc" = dontDistribute super."appc";
+ "applicative-extras" = dontDistribute super."applicative-extras";
+ "applicative-fail" = dontDistribute super."applicative-fail";
+ "applicative-numbers" = dontDistribute super."applicative-numbers";
+ "applicative-parsec" = dontDistribute super."applicative-parsec";
+ "applicative-quoters" = dontDistribute super."applicative-quoters";
+ "applicative-splice" = dontDistribute super."applicative-splice";
+ "apply-refact" = doDistribute super."apply-refact_0_1_0_0";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "approximate-equality" = dontDistribute super."approximate-equality";
+ "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper";
+ "arb-fft" = dontDistribute super."arb-fft";
+ "arbb-vm" = dontDistribute super."arbb-vm";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arena" = dontDistribute super."arena";
+ "arff" = dontDistribute super."arff";
+ "arghwxhaskell" = dontDistribute super."arghwxhaskell";
+ "argon" = doDistribute super."argon_0_4_0_0";
+ "argon2" = dontDistribute super."argon2";
+ "argparser" = dontDistribute super."argparser";
+ "arguedit" = dontDistribute super."arguedit";
+ "ariadne" = dontDistribute super."ariadne";
+ "arion" = dontDistribute super."arion";
+ "arith-encode" = dontDistribute super."arith-encode";
+ "arithmatic" = dontDistribute super."arithmatic";
+ "arithmetic" = dontDistribute super."arithmetic";
+ "arithmoi" = dontDistribute super."arithmoi";
+ "armada" = dontDistribute super."armada";
+ "arpa" = dontDistribute super."arpa";
+ "array-forth" = dontDistribute super."array-forth";
+ "array-memoize" = dontDistribute super."array-memoize";
+ "array-primops" = dontDistribute super."array-primops";
+ "array-utils" = dontDistribute super."array-utils";
+ "arrow-improve" = dontDistribute super."arrow-improve";
+ "arrowapply-utils" = dontDistribute super."arrowapply-utils";
+ "arrowp" = dontDistribute super."arrowp";
+ "arrows" = dontDistribute super."arrows";
+ "artery" = dontDistribute super."artery";
+ "arx" = dontDistribute super."arx";
+ "arxiv" = dontDistribute super."arxiv";
+ "ascetic" = dontDistribute super."ascetic";
+ "ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = dontDistribute super."asn1-data";
+ "asn1dump" = dontDistribute super."asn1dump";
+ "assembler" = dontDistribute super."assembler";
+ "assert" = dontDistribute super."assert";
+ "assert-failure" = dontDistribute super."assert-failure";
+ "assertions" = dontDistribute super."assertions";
+ "assimp" = dontDistribute super."assimp";
+ "astar" = dontDistribute super."astar";
+ "astrds" = dontDistribute super."astrds";
+ "astview" = dontDistribute super."astview";
+ "astview-utils" = dontDistribute super."astview-utils";
+ "async-dejafu" = doDistribute super."async-dejafu_0_1_0_0";
+ "async-extras" = dontDistribute super."async-extras";
+ "async-manager" = dontDistribute super."async-manager";
+ "async-pool" = dontDistribute super."async-pool";
+ "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions";
+ "aterm" = dontDistribute super."aterm";
+ "aterm-utils" = dontDistribute super."aterm-utils";
+ "atl" = dontDistribute super."atl";
+ "atlassian-connect-core" = dontDistribute super."atlassian-connect-core";
+ "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor";
+ "atmos" = dontDistribute super."atmos";
+ "atmos-dimensional" = dontDistribute super."atmos-dimensional";
+ "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf";
+ "atndapi" = dontDistribute super."atndapi";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
+ "atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
+ "atomic-write" = dontDistribute super."atomic-write";
+ "atomo" = dontDistribute super."atomo";
+ "atp-haskell" = dontDistribute super."atp-haskell";
+ "atrans" = dontDistribute super."atrans";
+ "attempt" = dontDistribute super."attempt";
+ "atto-lisp" = dontDistribute super."atto-lisp";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-conduit" = dontDistribute super."attoparsec-conduit";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee";
+ "attoparsec-parsec" = dontDistribute super."attoparsec-parsec";
+ "attoparsec-text" = dontDistribute super."attoparsec-text";
+ "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator";
+ "attosplit" = dontDistribute super."attosplit";
+ "atuin" = dontDistribute super."atuin";
+ "audacity" = dontDistribute super."audacity";
+ "audiovisual" = dontDistribute super."audiovisual";
+ "augeas" = dontDistribute super."augeas";
+ "augur" = dontDistribute super."augur";
+ "aur" = dontDistribute super."aur";
+ "authenticate-kerberos" = dontDistribute super."authenticate-kerberos";
+ "authenticate-ldap" = dontDistribute super."authenticate-ldap";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "autoexporter" = dontDistribute super."autoexporter";
+ "automitive-cse" = dontDistribute super."automitive-cse";
+ "automotive-cse" = dontDistribute super."automotive-cse";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "avatar-generator" = dontDistribute super."avatar-generator";
+ "average" = dontDistribute super."average";
+ "avers-server" = doDistribute super."avers-server_0_0_3";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesome-prelude" = dontDistribute super."awesome-prelude";
+ "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";
+ "bento" = dontDistribute super."bento";
+ "berkeleydb" = dontDistribute super."berkeleydb";
+ "berp" = dontDistribute super."berp";
+ "bert" = dontDistribute super."bert";
+ "besout" = dontDistribute super."besout";
+ "bet" = dontDistribute super."bet";
+ "betacode" = dontDistribute super."betacode";
+ "between" = dontDistribute super."between";
+ "bf-cata" = dontDistribute super."bf-cata";
+ "bff" = dontDistribute super."bff";
+ "bff-mono" = dontDistribute super."bff-mono";
+ "bgmax" = dontDistribute super."bgmax";
+ "bgzf" = dontDistribute super."bgzf";
+ "bibdb" = dontDistribute super."bibdb";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bighugethesaurus" = dontDistribute super."bighugethesaurus";
+ "billboard-parser" = dontDistribute super."billboard-parser";
+ "billeksah-forms" = dontDistribute super."billeksah-forms";
+ "billeksah-main" = dontDistribute super."billeksah-main";
+ "billeksah-main-static" = dontDistribute super."billeksah-main-static";
+ "billeksah-pane" = dontDistribute super."billeksah-pane";
+ "billeksah-services" = dontDistribute super."billeksah-services";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-enum" = dontDistribute super."binary-enum";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "binary-shared" = dontDistribute super."binary-shared";
+ "binary-state" = dontDistribute super."binary-state";
+ "binary-store" = dontDistribute super."binary-store";
+ "binary-streams" = dontDistribute super."binary-streams";
+ "binary-strict" = dontDistribute super."binary-strict";
+ "binarydefer" = dontDistribute super."binarydefer";
+ "bind-marshal" = dontDistribute super."bind-marshal";
+ "binding-core" = dontDistribute super."binding-core";
+ "binding-gtk" = dontDistribute super."binding-gtk";
+ "binding-wx" = dontDistribute super."binding-wx";
+ "bindings" = dontDistribute super."bindings";
+ "bindings-EsounD" = dontDistribute super."bindings-EsounD";
+ "bindings-K8055" = dontDistribute super."bindings-K8055";
+ "bindings-apr" = dontDistribute super."bindings-apr";
+ "bindings-apr-util" = dontDistribute super."bindings-apr-util";
+ "bindings-audiofile" = dontDistribute super."bindings-audiofile";
+ "bindings-bfd" = dontDistribute super."bindings-bfd";
+ "bindings-cctools" = dontDistribute super."bindings-cctools";
+ "bindings-codec2" = dontDistribute super."bindings-codec2";
+ "bindings-common" = dontDistribute super."bindings-common";
+ "bindings-dc1394" = dontDistribute super."bindings-dc1394";
+ "bindings-directfb" = dontDistribute super."bindings-directfb";
+ "bindings-eskit" = dontDistribute super."bindings-eskit";
+ "bindings-fann" = dontDistribute super."bindings-fann";
+ "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth";
+ "bindings-friso" = dontDistribute super."bindings-friso";
+ "bindings-glib" = dontDistribute super."bindings-glib";
+ "bindings-gobject" = dontDistribute super."bindings-gobject";
+ "bindings-gpgme" = dontDistribute super."bindings-gpgme";
+ "bindings-gsl" = dontDistribute super."bindings-gsl";
+ "bindings-gts" = dontDistribute super."bindings-gts";
+ "bindings-hamlib" = dontDistribute super."bindings-hamlib";
+ "bindings-hdf5" = dontDistribute super."bindings-hdf5";
+ "bindings-levmar" = dontDistribute super."bindings-levmar";
+ "bindings-libcddb" = dontDistribute super."bindings-libcddb";
+ "bindings-libffi" = dontDistribute super."bindings-libffi";
+ "bindings-libftdi" = dontDistribute super."bindings-libftdi";
+ "bindings-librrd" = dontDistribute super."bindings-librrd";
+ "bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
+ "bindings-libusb" = dontDistribute super."bindings-libusb";
+ "bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
+ "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
+ "bindings-lxc" = dontDistribute super."bindings-lxc";
+ "bindings-mmap" = dontDistribute super."bindings-mmap";
+ "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal";
+ "bindings-nettle" = dontDistribute super."bindings-nettle";
+ "bindings-parport" = dontDistribute super."bindings-parport";
+ "bindings-portaudio" = dontDistribute super."bindings-portaudio";
+ "bindings-potrace" = dontDistribute super."bindings-potrace";
+ "bindings-ppdev" = dontDistribute super."bindings-ppdev";
+ "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd";
+ "bindings-sane" = dontDistribute super."bindings-sane";
+ "bindings-sc3" = dontDistribute super."bindings-sc3";
+ "bindings-sipc" = dontDistribute super."bindings-sipc";
+ "bindings-sophia" = dontDistribute super."bindings-sophia";
+ "bindings-sqlite3" = dontDistribute super."bindings-sqlite3";
+ "bindings-svm" = dontDistribute super."bindings-svm";
+ "bindings-uname" = dontDistribute super."bindings-uname";
+ "bindings-wlc" = dontDistribute super."bindings-wlc";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "bindynamic" = dontDistribute super."bindynamic";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bini" = dontDistribute super."bini";
+ "bio" = dontDistribute super."bio";
+ "biohazard" = dontDistribute super."biohazard";
+ "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit";
+ "biosff" = dontDistribute super."biosff";
+ "biostockholm" = dontDistribute super."biostockholm";
+ "bird" = dontDistribute super."bird";
+ "bit-array" = dontDistribute super."bit-array";
+ "bit-vector" = dontDistribute super."bit-vector";
+ "bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "bitly-cli" = dontDistribute super."bitly-cli";
+ "bitmap" = dontDistribute super."bitmap";
+ "bitmap-opengl" = dontDistribute super."bitmap-opengl";
+ "bitmaps" = dontDistribute super."bitmaps";
+ "bits-atomic" = dontDistribute super."bits-atomic";
+ "bits-bytestring" = dontDistribute super."bits-bytestring";
+ "bits-conduit" = dontDistribute super."bits-conduit";
+ "bits-extras" = dontDistribute super."bits-extras";
+ "bitset" = dontDistribute super."bitset";
+ "bitspeak" = dontDistribute super."bitspeak";
+ "bitstream" = dontDistribute super."bitstream";
+ "bitstring" = dontDistribute super."bitstring";
+ "bittorrent" = dontDistribute super."bittorrent";
+ "bitvec" = dontDistribute super."bitvec";
+ "bitx-bitcoin" = dontDistribute super."bitx-bitcoin";
+ "bk-tree" = dontDistribute super."bk-tree";
+ "bkr" = dontDistribute super."bkr";
+ "bktrees" = dontDistribute super."bktrees";
+ "bla" = dontDistribute super."bla";
+ "black-jewel" = dontDistribute super."black-jewel";
+ "blacktip" = dontDistribute super."blacktip";
+ "blakesum" = dontDistribute super."blakesum";
+ "blakesum-demo" = dontDistribute super."blakesum-demo";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blatex" = dontDistribute super."blatex";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
+ "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat";
+ "blaze-html-truncate" = dontDistribute super."blaze-html-truncate";
+ "blaze-json" = dontDistribute super."blaze-json";
+ "blaze-shields" = dontDistribute super."blaze-shields";
+ "blaze-textual-native" = dontDistribute super."blaze-textual-native";
+ "blazeMarker" = dontDistribute super."blazeMarker";
+ "blink1" = dontDistribute super."blink1";
+ "blip" = dontDistribute super."blip";
+ "bliplib" = dontDistribute super."bliplib";
+ "blocking-transactions" = dontDistribute super."blocking-transactions";
+ "blogination" = dontDistribute super."blogination";
+ "bloodhound" = dontDistribute super."bloodhound";
+ "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
+ "bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
+ "bloxorz" = dontDistribute super."bloxorz";
+ "blubber" = dontDistribute super."blubber";
+ "blubber-server" = dontDistribute super."blubber-server";
+ "bluetile" = dontDistribute super."bluetile";
+ "bluetileutils" = dontDistribute super."bluetileutils";
+ "blunt" = dontDistribute super."blunt";
+ "board-games" = dontDistribute super."board-games";
+ "bogre-banana" = dontDistribute super."bogre-banana";
+ "bond" = dontDistribute super."bond";
+ "bond-haskell" = dontDistribute super."bond-haskell";
+ "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler";
+ "boolean-list" = dontDistribute super."boolean-list";
+ "boolean-normal-forms" = dontDistribute super."boolean-normal-forms";
+ "boolexpr" = dontDistribute super."boolexpr";
+ "bools" = dontDistribute super."bools";
+ "boolsimplifier" = dontDistribute super."boolsimplifier";
+ "boomange" = dontDistribute super."boomange";
+ "boombox" = dontDistribute super."boombox";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "botpp" = dontDistribute super."botpp";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = doDistribute super."bower-json_0_7_0_0";
+ "bowntz" = dontDistribute super."bowntz";
+ "bpann" = dontDistribute super."bpann";
+ "braid" = dontDistribute super."braid";
+ "brainfuck" = dontDistribute super."brainfuck";
+ "brainfuck-monad" = dontDistribute super."brainfuck-monad";
+ "brainfuck-tut" = dontDistribute super."brainfuck-tut";
+ "break" = dontDistribute super."break";
+ "breakout" = dontDistribute super."breakout";
+ "breve" = dontDistribute super."breve";
+ "brians-brain" = dontDistribute super."brians-brain";
+ "brillig" = dontDistribute super."brillig";
+ "broccoli" = dontDistribute super."broccoli";
+ "broker-haskell" = dontDistribute super."broker-haskell";
+ "bsd-sysctl" = dontDistribute super."bsd-sysctl";
+ "bson-generic" = dontDistribute super."bson-generic";
+ "bson-generics" = dontDistribute super."bson-generics";
+ "bson-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "buffer-pipe" = dontDistribute super."buffer-pipe";
+ "buffon" = dontDistribute super."buffon";
+ "bugzilla" = dontDistribute super."bugzilla";
+ "buildable" = dontDistribute super."buildable";
+ "buildbox" = dontDistribute super."buildbox";
+ "buildbox-tools" = dontDistribute super."buildbox-tools";
+ "buildwrapper" = dontDistribute super."buildwrapper";
+ "bullet" = dontDistribute super."bullet";
+ "burst-detection" = dontDistribute super."burst-detection";
+ "bus-pirate" = dontDistribute super."bus-pirate";
+ "buster" = dontDistribute super."buster";
+ "buster-gtk" = dontDistribute super."buster-gtk";
+ "buster-network" = dontDistribute super."buster-network";
+ "butterflies" = dontDistribute super."butterflies";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-show" = dontDistribute super."bytestring-show";
+ "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder";
+ "bytestringparser" = dontDistribute super."bytestringparser";
+ "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary";
+ "bytestringreadp" = dontDistribute super."bytestringreadp";
+ "c-dsl" = dontDistribute super."c-dsl";
+ "c-io" = dontDistribute super."c-io";
+ "c-storable-deriving" = dontDistribute super."c-storable-deriving";
+ "c0check" = dontDistribute super."c0check";
+ "c0parser" = dontDistribute super."c0parser";
+ "c10k" = dontDistribute super."c10k";
+ "c2hs" = doDistribute super."c2hs_0_27_1";
+ "c2hsc" = dontDistribute super."c2hsc";
+ "cab" = dontDistribute super."cab";
+ "cabal-audit" = dontDistribute super."cabal-audit";
+ "cabal-bounds" = dontDistribute super."cabal-bounds";
+ "cabal-cargs" = dontDistribute super."cabal-cargs";
+ "cabal-constraints" = dontDistribute super."cabal-constraints";
+ "cabal-db" = dontDistribute super."cabal-db";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-info" = dontDistribute super."cabal-info";
+ "cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
+ "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
+ "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74";
+ "cabal-lenses" = dontDistribute super."cabal-lenses";
+ "cabal-macosx" = dontDistribute super."cabal-macosx";
+ "cabal-meta" = dontDistribute super."cabal-meta";
+ "cabal-mon" = dontDistribute super."cabal-mon";
+ "cabal-nirvana" = dontDistribute super."cabal-nirvana";
+ "cabal-progdeps" = dontDistribute super."cabal-progdeps";
+ "cabal-query" = dontDistribute super."cabal-query";
+ "cabal-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "cabal-test" = dontDistribute super."cabal-test";
+ "cabal-test-bin" = dontDistribute super."cabal-test-bin";
+ "cabal-test-compat" = dontDistribute super."cabal-test-compat";
+ "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck";
+ "cabal-uninstall" = dontDistribute super."cabal-uninstall";
+ "cabal-upload" = dontDistribute super."cabal-upload";
+ "cabal2arch" = dontDistribute super."cabal2arch";
+ "cabal2doap" = dontDistribute super."cabal2doap";
+ "cabal2ebuild" = dontDistribute super."cabal2ebuild";
+ "cabal2ghci" = dontDistribute super."cabal2ghci";
+ "cabal2nix" = dontDistribute super."cabal2nix";
+ "cabal2spec" = dontDistribute super."cabal2spec";
+ "cabalQuery" = dontDistribute super."cabalQuery";
+ "cabalg" = dontDistribute super."cabalg";
+ "cabalgraph" = dontDistribute super."cabalgraph";
+ "cabalmdvrpm" = dontDistribute super."cabalmdvrpm";
+ "cabalrpmdeps" = dontDistribute super."cabalrpmdeps";
+ "cabalvchk" = dontDistribute super."cabalvchk";
+ "cabin" = dontDistribute super."cabin";
+ "cabocha" = dontDistribute super."cabocha";
+ "cached-io" = dontDistribute super."cached-io";
+ "cached-traversable" = dontDistribute super."cached-traversable";
+ "cacophony" = doDistribute super."cacophony_0_4_0";
+ "caf" = dontDistribute super."caf";
+ "cafeteria-prelude" = dontDistribute super."cafeteria-prelude";
+ "caffegraph" = dontDistribute super."caffegraph";
+ "cairo-appbase" = dontDistribute super."cairo-appbase";
+ "cake" = dontDistribute super."cake";
+ "cake3" = dontDistribute super."cake3";
+ "cakyrespa" = dontDistribute super."cakyrespa";
+ "cal3d" = dontDistribute super."cal3d";
+ "cal3d-examples" = dontDistribute super."cal3d-examples";
+ "cal3d-opengl" = dontDistribute super."cal3d-opengl";
+ "calc" = dontDistribute super."calc";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camfort" = dontDistribute super."camfort";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-listen-http" = dontDistribute super."canteven-listen-http";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "canteven-template" = dontDistribute super."canteven-template";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "car-pool" = dontDistribute super."car-pool";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "cartel" = doDistribute super."cartel_0_14_2_8";
+ "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
+ "casadi-bindings" = dontDistribute super."casadi-bindings";
+ "casadi-bindings-control" = dontDistribute super."casadi-bindings-control";
+ "casadi-bindings-core" = dontDistribute super."casadi-bindings-core";
+ "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal";
+ "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface";
+ "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface";
+ "cascading" = dontDistribute super."cascading";
+ "case-conversion" = dontDistribute super."case-conversion";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "casr-logbook" = dontDistribute super."casr-logbook";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "cassava-conduit" = dontDistribute super."cassava-conduit";
+ "cassava-streams" = dontDistribute super."cassava-streams";
+ "cassette" = dontDistribute super."cassette";
+ "cassy" = dontDistribute super."cassy";
+ "castle" = dontDistribute super."castle";
+ "casui" = dontDistribute super."casui";
+ "catamorphism" = dontDistribute super."catamorphism";
+ "catch-fd" = dontDistribute super."catch-fd";
+ "categorical-algebra" = dontDistribute super."categorical-algebra";
+ "categories" = dontDistribute super."categories";
+ "category-extras" = dontDistribute super."category-extras";
+ "category-printf" = dontDistribute super."category-printf";
+ "category-traced" = dontDistribute super."category-traced";
+ "cayley-dickson" = dontDistribute super."cayley-dickson";
+ "cblrepo" = dontDistribute super."cblrepo";
+ "cci" = dontDistribute super."cci";
+ "ccnx" = dontDistribute super."ccnx";
+ "cctools-workqueue" = dontDistribute super."cctools-workqueue";
+ "cedict" = dontDistribute super."cedict";
+ "cef" = dontDistribute super."cef";
+ "ceilometer-common" = dontDistribute super."ceilometer-common";
+ "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo";
+ "cerberus" = dontDistribute super."cerberus";
+ "cereal-derive" = dontDistribute super."cereal-derive";
+ "cereal-enumerator" = dontDistribute super."cereal-enumerator";
+ "cereal-ieee754" = dontDistribute super."cereal-ieee754";
+ "cereal-plus" = dontDistribute super."cereal-plus";
+ "cereal-text" = dontDistribute super."cereal-text";
+ "certificate" = dontDistribute super."certificate";
+ "cf" = dontDistribute super."cf";
+ "cfipu" = dontDistribute super."cfipu";
+ "cflp" = dontDistribute super."cflp";
+ "cfopu" = dontDistribute super."cfopu";
+ "cg" = dontDistribute super."cg";
+ "cgen" = dontDistribute super."cgen";
+ "cgi" = doDistribute super."cgi_3001_2_2_3";
+ "cgi-undecidable" = dontDistribute super."cgi-undecidable";
+ "cgi-utils" = dontDistribute super."cgi-utils";
+ "cgrep" = dontDistribute super."cgrep";
+ "chain-codes" = dontDistribute super."chain-codes";
+ "chalk" = dontDistribute super."chalk";
+ "chalkboard" = dontDistribute super."chalkboard";
+ "chalkboard-viewer" = dontDistribute super."chalkboard-viewer";
+ "chalmers-lava2000" = dontDistribute super."chalmers-lava2000";
+ "chan-split" = dontDistribute super."chan-split";
+ "change-monger" = dontDistribute super."change-monger";
+ "charade" = dontDistribute super."charade";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "chart-histogram" = dontDistribute super."chart-histogram";
+ "chaselev-deque" = dontDistribute super."chaselev-deque";
+ "chatter" = dontDistribute super."chatter";
+ "chatty" = dontDistribute super."chatty";
+ "chatty-text" = dontDistribute super."chatty-text";
+ "chatty-utils" = dontDistribute super."chatty-utils";
+ "cheapskate-highlight" = dontDistribute super."cheapskate-highlight";
+ "cheapskate-lucid" = dontDistribute super."cheapskate-lucid";
+ "cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chorale" = dontDistribute super."chorale";
+ "chp" = dontDistribute super."chp";
+ "chp-mtl" = dontDistribute super."chp-mtl";
+ "chp-plus" = dontDistribute super."chp-plus";
+ "chp-spec" = dontDistribute super."chp-spec";
+ "chp-transformers" = dontDistribute super."chp-transformers";
+ "chronograph" = dontDistribute super."chronograph";
+ "chu2" = dontDistribute super."chu2";
+ "chuchu" = dontDistribute super."chuchu";
+ "chunks" = dontDistribute super."chunks";
+ "chunky" = dontDistribute super."chunky";
+ "church-list" = dontDistribute super."church-list";
+ "cil" = dontDistribute super."cil";
+ "cinvoke" = dontDistribute super."cinvoke";
+ "cio" = dontDistribute super."cio";
+ "cipher-rc5" = dontDistribute super."cipher-rc5";
+ "ciphersaber2" = dontDistribute super."ciphersaber2";
+ "circ" = dontDistribute super."circ";
+ "circlehs" = dontDistribute super."circlehs";
+ "cirru-parser" = dontDistribute super."cirru-parser";
+ "citation-resolve" = dontDistribute super."citation-resolve";
+ "citeproc-hs" = dontDistribute super."citeproc-hs";
+ "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter";
+ "cityhash" = dontDistribute super."cityhash";
+ "cjk" = dontDistribute super."cjk";
+ "clac" = dontDistribute super."clac";
+ "clafer" = dontDistribute super."clafer";
+ "claferIG" = dontDistribute super."claferIG";
+ "claferwiki" = dontDistribute super."claferwiki";
+ "clang-pure" = dontDistribute super."clang-pure";
+ "clanki" = dontDistribute super."clanki";
+ "clarifai" = dontDistribute super."clarifai";
+ "clash" = dontDistribute super."clash";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com";
+ "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs";
+ "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot";
+ "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks";
+ "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap";
+ "cld2" = dontDistribute super."cld2";
+ "clean-home" = dontDistribute super."clean-home";
+ "clean-unions" = dontDistribute super."clean-unions";
+ "cless" = dontDistribute super."cless";
+ "clevercss" = dontDistribute super."clevercss";
+ "cli" = dontDistribute super."cli";
+ "click-clack" = dontDistribute super."click-clack";
+ "clifford" = dontDistribute super."clifford";
+ "clippard" = dontDistribute super."clippard";
+ "clipper" = dontDistribute super."clipper";
+ "clippings" = dontDistribute super."clippings";
+ "clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
+ "clock" = doDistribute super."clock_0_6_0_1";
+ "clocked" = dontDistribute super."clocked";
+ "clogparse" = dontDistribute super."clogparse";
+ "clone-all" = dontDistribute super."clone-all";
+ "closure" = dontDistribute super."closure";
+ "cloud-haskell" = dontDistribute super."cloud-haskell";
+ "cloudfront-signer" = dontDistribute super."cloudfront-signer";
+ "cloudyfs" = dontDistribute super."cloudyfs";
+ "cltw" = dontDistribute super."cltw";
+ "clua" = dontDistribute super."clua";
+ "clumpiness" = dontDistribute super."clumpiness";
+ "cluss" = dontDistribute super."cluss";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmph" = dontDistribute super."cmph";
+ "cmu" = dontDistribute super."cmu";
+ "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler";
+ "cndict" = dontDistribute super."cndict";
+ "codec" = dontDistribute super."codec";
+ "codec-libevent" = dontDistribute super."codec-libevent";
+ "codec-mbox" = dontDistribute super."codec-mbox";
+ "codecov-haskell" = dontDistribute super."codecov-haskell";
+ "codemonitor" = dontDistribute super."codemonitor";
+ "codepad" = dontDistribute super."codepad";
+ "codo-notation" = dontDistribute super."codo-notation";
+ "cofunctor" = dontDistribute super."cofunctor";
+ "cognimeta-utils" = dontDistribute super."cognimeta-utils";
+ "coinbase-exchange" = dontDistribute super."coinbase-exchange";
+ "colada" = dontDistribute super."colada";
+ "colchis" = dontDistribute super."colchis";
+ "collada-output" = dontDistribute super."collada-output";
+ "collada-types" = dontDistribute super."collada-types";
+ "collapse-util" = dontDistribute super."collapse-util";
+ "collection-json" = dontDistribute super."collection-json";
+ "collections" = dontDistribute super."collections";
+ "collections-api" = dontDistribute super."collections-api";
+ "collections-base-instances" = dontDistribute super."collections-base-instances";
+ "colock" = dontDistribute super."colock";
+ "color-counter" = dontDistribute super."color-counter";
+ "colorize-haskell" = dontDistribute super."colorize-haskell";
+ "colors" = dontDistribute super."colors";
+ "coltrane" = dontDistribute super."coltrane";
+ "com" = dontDistribute super."com";
+ "combinat" = dontDistribute super."combinat";
+ "combinat-diagrams" = dontDistribute super."combinat-diagrams";
+ "combinator-interactive" = dontDistribute super."combinator-interactive";
+ "combinatorial-problems" = dontDistribute super."combinatorial-problems";
+ "combinatorics" = dontDistribute super."combinatorics";
+ "combobuffer" = dontDistribute super."combobuffer";
+ "comfort-graph" = dontDistribute super."comfort-graph";
+ "command" = dontDistribute super."command";
+ "command-qq" = dontDistribute super."command-qq";
+ "commander" = dontDistribute super."commander";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "comonad-extras" = dontDistribute super."comonad-extras";
+ "comonad-random" = dontDistribute super."comonad-random";
+ "compact-map" = dontDistribute super."compact-map";
+ "compact-socket" = dontDistribute super."compact-socket";
+ "compact-string" = dontDistribute super."compact-string";
+ "compact-string-fix" = dontDistribute super."compact-string-fix";
+ "compare-type" = dontDistribute super."compare-type";
+ "compdata-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "compensated" = dontDistribute super."compensated";
+ "competition" = dontDistribute super."competition";
+ "compilation" = dontDistribute super."compilation";
+ "complex-generic" = dontDistribute super."complex-generic";
+ "complex-integrate" = dontDistribute super."complex-integrate";
+ "complexity" = dontDistribute super."complexity";
+ "compose-ltr" = dontDistribute super."compose-ltr";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "compression" = dontDistribute super."compression";
+ "compstrat" = dontDistribute super."compstrat";
+ "comptrans" = dontDistribute super."comptrans";
+ "computational-algebra" = dontDistribute super."computational-algebra";
+ "computations" = dontDistribute super."computations";
+ "conceit" = dontDistribute super."conceit";
+ "concorde" = dontDistribute super."concorde";
+ "concraft" = dontDistribute super."concraft";
+ "concraft-hr" = dontDistribute super."concraft-hr";
+ "concraft-pl" = dontDistribute super."concraft-pl";
+ "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser";
+ "concrete-typerep" = dontDistribute super."concrete-typerep";
+ "concurrent-barrier" = dontDistribute super."concurrent-barrier";
+ "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache";
+ "concurrent-extra" = dontDistribute super."concurrent-extra";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-rpc" = dontDistribute super."concurrent-rpc";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-utilities" = dontDistribute super."concurrent-utilities";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "cond" = dontDistribute super."cond";
+ "condor" = dontDistribute super."condor";
+ "condorcet" = dontDistribute super."condorcet";
+ "conductive-base" = dontDistribute super."conductive-base";
+ "conductive-clock" = dontDistribute super."conductive-clock";
+ "conductive-hsc3" = dontDistribute super."conductive-hsc3";
+ "conductive-song" = dontDistribute super."conductive-song";
+ "conduit-audio" = dontDistribute super."conduit-audio";
+ "conduit-audio-lame" = dontDistribute super."conduit-audio-lame";
+ "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate";
+ "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile";
+ "conduit-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec";
+ "conf" = dontDistribute super."conf";
+ "config-manager" = dontDistribute super."config-manager";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
+ "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-builder" = dontDistribute super."container-builder";
+ "container-classes" = dontDistribute super."container-classes";
+ "containers-benchmark" = dontDistribute super."containers-benchmark";
+ "containers-deepseq" = dontDistribute super."containers-deepseq";
+ "context-free-grammar" = dontDistribute super."context-free-grammar";
+ "context-stack" = dontDistribute super."context-stack";
+ "continue" = dontDistribute super."continue";
+ "continued-fractions" = dontDistribute super."continued-fractions";
+ "continuum" = dontDistribute super."continuum";
+ "continuum-client" = dontDistribute super."continuum-client";
+ "control-event" = dontDistribute super."control-event";
+ "control-monad-attempt" = dontDistribute super."control-monad-attempt";
+ "control-monad-exception" = dontDistribute super."control-monad-exception";
+ "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd";
+ "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf";
+ "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl";
+ "control-monad-failure" = dontDistribute super."control-monad-failure";
+ "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl";
+ "control-monad-omega" = dontDistribute super."control-monad-omega";
+ "control-monad-queue" = dontDistribute super."control-monad-queue";
+ "control-timeout" = dontDistribute super."control-timeout";
+ "contstuff" = dontDistribute super."contstuff";
+ "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf";
+ "contstuff-transformers" = dontDistribute super."contstuff-transformers";
+ "converge" = dontDistribute super."converge";
+ "conversion" = dontDistribute super."conversion";
+ "conversion-bytestring" = dontDistribute super."conversion-bytestring";
+ "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive";
+ "conversion-text" = dontDistribute super."conversion-text";
+ "convert" = dontDistribute super."convert";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "coordinate" = dontDistribute super."coordinate";
+ "copilot" = dontDistribute super."copilot";
+ "copilot-c99" = dontDistribute super."copilot-c99";
+ "copilot-cbmc" = dontDistribute super."copilot-cbmc";
+ "copilot-core" = dontDistribute super."copilot-core";
+ "copilot-language" = dontDistribute super."copilot-language";
+ "copilot-libraries" = dontDistribute super."copilot-libraries";
+ "copilot-sbv" = dontDistribute super."copilot-sbv";
+ "copilot-theorem" = dontDistribute super."copilot-theorem";
+ "copr" = dontDistribute super."copr";
+ "core" = dontDistribute super."core";
+ "core-haskell" = dontDistribute super."core-haskell";
+ "corebot-bliki" = dontDistribute super."corebot-bliki";
+ "coroutine-enumerator" = dontDistribute super."coroutine-enumerator";
+ "coroutine-iteratee" = dontDistribute super."coroutine-iteratee";
+ "coroutine-object" = dontDistribute super."coroutine-object";
+ "couch-hs" = dontDistribute super."couch-hs";
+ "couch-simple" = dontDistribute super."couch-simple";
+ "couchdb-conduit" = dontDistribute super."couchdb-conduit";
+ "couchdb-enumerator" = dontDistribute super."couchdb-enumerator";
+ "count" = dontDistribute super."count";
+ "countable" = dontDistribute super."countable";
+ "counter" = dontDistribute super."counter";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplex-hs" = dontDistribute super."cplex-hs";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_19_3";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "cqrs" = dontDistribute super."cqrs";
+ "cqrs-core" = dontDistribute super."cqrs-core";
+ "cqrs-example" = dontDistribute super."cqrs-example";
+ "cqrs-memory" = dontDistribute super."cqrs-memory";
+ "cqrs-postgresql" = dontDistribute super."cqrs-postgresql";
+ "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3";
+ "cqrs-test" = dontDistribute super."cqrs-test";
+ "cqrs-testkit" = dontDistribute super."cqrs-testkit";
+ "cqrs-types" = dontDistribute super."cqrs-types";
+ "cr" = dontDistribute super."cr";
+ "crack" = dontDistribute super."crack";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "craze" = dontDistribute super."craze";
+ "crc" = dontDistribute super."crc";
+ "crc16" = dontDistribute super."crc16";
+ "crc16-table" = dontDistribute super."crc16-table";
+ "creatur" = dontDistribute super."creatur";
+ "crf-chain1" = dontDistribute super."crf-chain1";
+ "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained";
+ "crf-chain2-generic" = dontDistribute super."crf-chain2-generic";
+ "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers";
+ "critbit" = dontDistribute super."critbit";
+ "criterion-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = doDistribute super."cron_0_3_2";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-enigma" = dontDistribute super."crypto-enigma";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptohash" = doDistribute super."cryptohash_0_11_6";
+ "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
+ "cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
+ "cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
+ "cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
+ "cryptonite-openssl" = dontDistribute super."cryptonite-openssl";
+ "cryptsy-api" = dontDistribute super."cryptsy-api";
+ "crystalfontz" = dontDistribute super."crystalfontz";
+ "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin";
+ "csound-catalog" = dontDistribute super."csound-catalog";
+ "csound-expression" = dontDistribute super."csound-expression";
+ "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic";
+ "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes";
+ "csound-expression-typed" = dontDistribute super."csound-expression-typed";
+ "csound-sampler" = dontDistribute super."csound-sampler";
+ "csp" = dontDistribute super."csp";
+ "cspmchecker" = dontDistribute super."cspmchecker";
+ "css" = dontDistribute super."css";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-table" = dontDistribute super."csv-table";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "cublas" = dontDistribute super."cublas";
+ "cuboid" = dontDistribute super."cuboid";
+ "cuda" = dontDistribute super."cuda";
+ "cudd" = dontDistribute super."cudd";
+ "cufft" = dontDistribute super."cufft";
+ "curl-aeson" = dontDistribute super."curl-aeson";
+ "curlhs" = dontDistribute super."curlhs";
+ "currency" = dontDistribute super."currency";
+ "current-locale" = dontDistribute super."current-locale";
+ "curry-base" = dontDistribute super."curry-base";
+ "curry-frontend" = dontDistribute super."curry-frontend";
+ "cursedcsv" = dontDistribute super."cursedcsv";
+ "curve25519" = dontDistribute super."curve25519";
+ "curves" = dontDistribute super."curves";
+ "custom-prelude" = dontDistribute super."custom-prelude";
+ "cv-combinators" = dontDistribute super."cv-combinators";
+ "cyclotomic" = dontDistribute super."cyclotomic";
+ "cypher" = dontDistribute super."cypher";
+ "d-bus" = dontDistribute super."d-bus";
+ "d3d11binding" = dontDistribute super."d3d11binding";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "danibot" = dontDistribute super."danibot";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = doDistribute super."darcs_2_10_3";
+ "darcs-benchmark" = dontDistribute super."darcs-benchmark";
+ "darcs-beta" = dontDistribute super."darcs-beta";
+ "darcs-buildpackage" = dontDistribute super."darcs-buildpackage";
+ "darcs-cabalized" = dontDistribute super."darcs-cabalized";
+ "darcs-fastconvert" = dontDistribute super."darcs-fastconvert";
+ "darcs-graph" = dontDistribute super."darcs-graph";
+ "darcs-monitor" = dontDistribute super."darcs-monitor";
+ "darcs-scripts" = dontDistribute super."darcs-scripts";
+ "darcs2dot" = dontDistribute super."darcs2dot";
+ "darcsden" = dontDistribute super."darcsden";
+ "darcswatch" = dontDistribute super."darcswatch";
+ "darkplaces-demo" = dontDistribute super."darkplaces-demo";
+ "darkplaces-rcon" = dontDistribute super."darkplaces-rcon";
+ "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util";
+ "darkplaces-text" = dontDistribute super."darkplaces-text";
+ "dash-haskell" = dontDistribute super."dash-haskell";
+ "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib";
+ "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd";
+ "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf";
+ "data-accessor-template" = dontDistribute super."data-accessor-template";
+ "data-accessor-transformers" = dontDistribute super."data-accessor-transformers";
+ "data-aviary" = dontDistribute super."data-aviary";
+ "data-base" = dontDistribute super."data-base";
+ "data-bword" = dontDistribute super."data-bword";
+ "data-carousel" = dontDistribute super."data-carousel";
+ "data-category" = dontDistribute super."data-category";
+ "data-cell" = dontDistribute super."data-cell";
+ "data-checked" = dontDistribute super."data-checked";
+ "data-clist" = dontDistribute super."data-clist";
+ "data-concurrent-queue" = dontDistribute super."data-concurrent-queue";
+ "data-construction" = dontDistribute super."data-construction";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-extra" = dontDistribute super."data-default-extra";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
+ "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
+ "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
+ "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
+ "data-default-instances-text" = dontDistribute super."data-default-instances-text";
+ "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
+ "data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-embed" = dontDistribute super."data-embed";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extend-generic" = dontDistribute super."data-extend-generic";
+ "data-extra" = dontDistribute super."data-extra";
+ "data-filepath" = dontDistribute super."data-filepath";
+ "data-fin" = dontDistribute super."data-fin";
+ "data-fin-simple" = dontDistribute super."data-fin-simple";
+ "data-fix" = dontDistribute super."data-fix";
+ "data-fix-cse" = dontDistribute super."data-fix-cse";
+ "data-flags" = dontDistribute super."data-flags";
+ "data-flagset" = dontDistribute super."data-flagset";
+ "data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-json-token" = dontDistribute super."data-json-token";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layer" = dontDistribute super."data-layer";
+ "data-layout" = dontDistribute super."data-layout";
+ "data-lens" = dontDistribute super."data-lens";
+ "data-lens-fd" = dontDistribute super."data-lens-fd";
+ "data-lens-ixset" = dontDistribute super."data-lens-ixset";
+ "data-lens-template" = dontDistribute super."data-lens-template";
+ "data-list-sequences" = dontDistribute super."data-list-sequences";
+ "data-map-multikey" = dontDistribute super."data-map-multikey";
+ "data-named" = dontDistribute super."data-named";
+ "data-nat" = dontDistribute super."data-nat";
+ "data-object" = dontDistribute super."data-object";
+ "data-object-json" = dontDistribute super."data-object-json";
+ "data-object-yaml" = dontDistribute super."data-object-yaml";
+ "data-or" = dontDistribute super."data-or";
+ "data-partition" = dontDistribute super."data-partition";
+ "data-pprint" = dontDistribute super."data-pprint";
+ "data-quotientref" = dontDistribute super."data-quotientref";
+ "data-r-tree" = dontDistribute super."data-r-tree";
+ "data-ref" = dontDistribute super."data-ref";
+ "data-reify-cse" = dontDistribute super."data-reify-cse";
+ "data-repr" = dontDistribute super."data-repr";
+ "data-result" = dontDistribute super."data-result";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-rtuple" = dontDistribute super."data-rtuple";
+ "data-size" = dontDistribute super."data-size";
+ "data-spacepart" = dontDistribute super."data-spacepart";
+ "data-store" = dontDistribute super."data-store";
+ "data-stringmap" = dontDistribute super."data-stringmap";
+ "data-structure-inferrer" = dontDistribute super."data-structure-inferrer";
+ "data-tensor" = dontDistribute super."data-tensor";
+ "data-textual" = dontDistribute super."data-textual";
+ "data-timeout" = dontDistribute super."data-timeout";
+ "data-transform" = dontDistribute super."data-transform";
+ "data-treify" = dontDistribute super."data-treify";
+ "data-type" = dontDistribute super."data-type";
+ "data-util" = dontDistribute super."data-util";
+ "data-variant" = dontDistribute super."data-variant";
+ "database-migrate" = dontDistribute super."database-migrate";
+ "database-study" = dontDistribute super."database-study";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "dataurl" = dontDistribute super."dataurl";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawdle" = dontDistribute super."dawdle";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = doDistribute super."dbmigrations_1_0";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
+ "dclabel" = dontDistribute super."dclabel";
+ "dclabel-eci11" = dontDistribute super."dclabel-eci11";
+ "ddc-base" = dontDistribute super."ddc-base";
+ "ddc-build" = dontDistribute super."ddc-build";
+ "ddc-code" = dontDistribute super."ddc-code";
+ "ddc-core" = dontDistribute super."ddc-core";
+ "ddc-core-babel" = dontDistribute super."ddc-core-babel";
+ "ddc-core-eval" = dontDistribute super."ddc-core-eval";
+ "ddc-core-flow" = dontDistribute super."ddc-core-flow";
+ "ddc-core-llvm" = dontDistribute super."ddc-core-llvm";
+ "ddc-core-salt" = dontDistribute super."ddc-core-salt";
+ "ddc-core-simpl" = dontDistribute super."ddc-core-simpl";
+ "ddc-core-tetra" = dontDistribute super."ddc-core-tetra";
+ "ddc-driver" = dontDistribute super."ddc-driver";
+ "ddc-interface" = dontDistribute super."ddc-interface";
+ "ddc-source-tetra" = dontDistribute super."ddc-source-tetra";
+ "ddc-tools" = dontDistribute super."ddc-tools";
+ "ddc-war" = dontDistribute super."ddc-war";
+ "ddci-core" = dontDistribute super."ddci-core";
+ "dead-code-detection" = dontDistribute super."dead-code-detection";
+ "dead-simple-json" = dontDistribute super."dead-simple-json";
+ "debian-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "debug-time" = dontDistribute super."debug-time";
+ "decepticons" = dontDistribute super."decepticons";
+ "decimal-arithmetic" = dontDistribute super."decimal-arithmetic";
+ "declarative" = doDistribute super."declarative_0_1_0_1";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deepcontrol" = dontDistribute super."deepcontrol";
+ "deeplearning-hs" = dontDistribute super."deeplearning-hs";
+ "deepseq-bounded" = dontDistribute super."deepseq-bounded";
+ "deepseq-magic" = dontDistribute super."deepseq-magic";
+ "deepseq-th" = dontDistribute super."deepseq-th";
+ "deepzoom" = dontDistribute super."deepzoom";
+ "defargs" = dontDistribute super."defargs";
+ "definitive-base" = dontDistribute super."definitive-base";
+ "definitive-filesystem" = dontDistribute super."definitive-filesystem";
+ "definitive-graphics" = dontDistribute super."definitive-graphics";
+ "definitive-parser" = dontDistribute super."definitive-parser";
+ "definitive-reactive" = dontDistribute super."definitive-reactive";
+ "definitive-sound" = dontDistribute super."definitive-sound";
+ "deiko-config" = dontDistribute super."deiko-config";
+ "dejafu" = doDistribute super."dejafu_0_2_0_0";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delay" = dontDistribute super."delay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delimiter-separated" = dontDistribute super."delimiter-separated";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-state" = dontDistribute super."dependent-state";
+ "depends" = dontDistribute super."depends";
+ "dephd" = dontDistribute super."dephd";
+ "dequeue" = dontDistribute super."dequeue";
+ "derangement" = dontDistribute super."derangement";
+ "derivation-trees" = dontDistribute super."derivation-trees";
+ "derive-IG" = dontDistribute super."derive-IG";
+ "derive-enumerable" = dontDistribute super."derive-enumerable";
+ "derive-gadt" = dontDistribute super."derive-gadt";
+ "derive-monoid" = dontDistribute super."derive-monoid";
+ "derive-topdown" = dontDistribute super."derive-topdown";
+ "derive-trie" = dontDistribute super."derive-trie";
+ "deriving-compat" = dontDistribute super."deriving-compat";
+ "derp" = dontDistribute super."derp";
+ "derp-lib" = dontDistribute super."derp-lib";
+ "descrilo" = dontDistribute super."descrilo";
+ "despair" = dontDistribute super."despair";
+ "deterministic-game-engine" = dontDistribute super."deterministic-game-engine";
+ "detrospector" = dontDistribute super."detrospector";
+ "deunicode" = dontDistribute super."deunicode";
+ "devil" = dontDistribute super."devil";
+ "dewdrop" = dontDistribute super."dewdrop";
+ "dfrac" = dontDistribute super."dfrac";
+ "dfsbuild" = dontDistribute super."dfsbuild";
+ "dgim" = dontDistribute super."dgim";
+ "dgs" = dontDistribute super."dgs";
+ "dia-base" = dontDistribute super."dia-base";
+ "dia-functions" = dontDistribute super."dia-functions";
+ "diagrams-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";
+ "diagrams-wx" = dontDistribute super."diagrams-wx";
+ "dialog" = dontDistribute super."dialog";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-gestalt" = dontDistribute super."diff-gestalt";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack";
+ "digestive-functors-heist" = dontDistribute super."digestive-functors-heist";
+ "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp";
+ "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional-codata" = dontDistribute super."dimensional-codata";
+ "dimensional-tf" = dontDistribute super."dimensional-tf";
+ "dingo-core" = dontDistribute super."dingo-core";
+ "dingo-example" = dontDistribute super."dingo-example";
+ "dingo-widgets" = dontDistribute super."dingo-widgets";
+ "diophantine" = dontDistribute super."diophantine";
+ "diplomacy" = dontDistribute super."diplomacy";
+ "diplomacy-server" = dontDistribute super."diplomacy-server";
+ "direct-binary-files" = dontDistribute super."direct-binary-files";
+ "direct-daemonize" = dontDistribute super."direct-daemonize";
+ "direct-fastcgi" = dontDistribute super."direct-fastcgi";
+ "direct-http" = dontDistribute super."direct-http";
+ "direct-murmur-hash" = dontDistribute super."direct-murmur-hash";
+ "direct-plugins" = dontDistribute super."direct-plugins";
+ "directed-cubical" = dontDistribute super."directed-cubical";
+ "directory-layout" = dontDistribute super."directory-layout";
+ "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discogs-haskell" = dontDistribute super."discogs-haskell";
+ "discordian-calendar" = dontDistribute super."discordian-calendar";
+ "discount" = dontDistribute super."discount";
+ "discrete-space-map" = dontDistribute super."discrete-space-map";
+ "discrimination" = dontDistribute super."discrimination";
+ "disjoint-set" = dontDistribute super."disjoint-set";
+ "disjoint-sets-st" = dontDistribute super."disjoint-sets-st";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-closure" = dontDistribute super."distributed-closure";
+ "distributed-process" = doDistribute super."distributed-process_0_5_5_1";
+ "distributed-process-async" = dontDistribute super."distributed-process-async";
+ "distributed-process-azure" = dontDistribute super."distributed-process-azure";
+ "distributed-process-client-server" = dontDistribute super."distributed-process-client-server";
+ "distributed-process-ekg" = dontDistribute super."distributed-process-ekg";
+ "distributed-process-execution" = dontDistribute super."distributed-process-execution";
+ "distributed-process-extras" = dontDistribute super."distributed-process-extras";
+ "distributed-process-lifted" = dontDistribute super."distributed-process-lifted";
+ "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control";
+ "distributed-process-p2p" = dontDistribute super."distributed-process-p2p";
+ "distributed-process-platform" = dontDistribute super."distributed-process-platform";
+ "distributed-process-registry" = dontDistribute super."distributed-process-registry";
+ "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet";
+ "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor";
+ "distributed-process-task" = dontDistribute super."distributed-process-task";
+ "distributed-process-tests" = dontDistribute super."distributed-process-tests";
+ "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "dixi" = doDistribute super."dixi_0_6_0_5";
+ "djembe" = dontDistribute super."djembe";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "dnscache" = dontDistribute super."dnscache";
+ "dnsrbl" = dontDistribute super."dnsrbl";
+ "dnssd" = dontDistribute super."dnssd";
+ "doc-review" = dontDistribute super."doc-review";
+ "doccheck" = dontDistribute super."doccheck";
+ "docidx" = dontDistribute super."docidx";
+ "docker" = dontDistribute super."docker";
+ "dockercook" = dontDistribute super."dockercook";
+ "doctest" = doDistribute super."doctest_0_10_1";
+ "doctest-discover" = dontDistribute super."doctest-discover";
+ "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
+ "doctest-prop" = dontDistribute super."doctest-prop";
+ "dom-lt" = dontDistribute super."dom-lt";
+ "dom-parser" = dontDistribute super."dom-parser";
+ "dom-selector" = dontDistribute super."dom-selector";
+ "domain-auth" = dontDistribute super."domain-auth";
+ "dominion" = dontDistribute super."dominion";
+ "domplate" = dontDistribute super."domplate";
+ "dot2graphml" = dontDistribute super."dot2graphml";
+ "dotenv" = doDistribute super."dotenv_0_1_0_9";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dotnet-timespan" = dontDistribute super."dotnet-timespan";
+ "double-metaphone" = dontDistribute super."double-metaphone";
+ "dove" = dontDistribute super."dove";
+ "dow" = dontDistribute super."dow";
+ "download" = dontDistribute super."download";
+ "download-curl" = dontDistribute super."download-curl";
+ "download-media-content" = dontDistribute super."download-media-content";
+ "dozenal" = dontDistribute super."dozenal";
+ "dozens" = dontDistribute super."dozens";
+ "dph-base" = dontDistribute super."dph-base";
+ "dph-examples" = dontDistribute super."dph-examples";
+ "dph-lifted-base" = dontDistribute super."dph-lifted-base";
+ "dph-lifted-copy" = dontDistribute super."dph-lifted-copy";
+ "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg";
+ "dph-par" = dontDistribute super."dph-par";
+ "dph-prim-interface" = dontDistribute super."dph-prim-interface";
+ "dph-prim-par" = dontDistribute super."dph-prim-par";
+ "dph-prim-seq" = dontDistribute super."dph-prim-seq";
+ "dph-seq" = dontDistribute super."dph-seq";
+ "dpkg" = dontDistribute super."dpkg";
+ "dpor" = dontDistribute super."dpor";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe";
+ "dropbox-sdk" = dontDistribute super."dropbox-sdk";
+ "dropsolve" = dontDistribute super."dropsolve";
+ "ds-kanren" = dontDistribute super."ds-kanren";
+ "dsh-sql" = dontDistribute super."dsh-sql";
+ "dsmc" = dontDistribute super."dsmc";
+ "dsmc-tools" = dontDistribute super."dsmc-tools";
+ "dson" = dontDistribute super."dson";
+ "dson-parsec" = dontDistribute super."dson-parsec";
+ "dsp" = dontDistribute super."dsp";
+ "dstring" = dontDistribute super."dstring";
+ "dtab" = dontDistribute super."dtab";
+ "dtd" = dontDistribute super."dtd";
+ "dtd-text" = dontDistribute super."dtd-text";
+ "dtd-types" = dontDistribute super."dtd-types";
+ "dtrace" = dontDistribute super."dtrace";
+ "dtw" = dontDistribute super."dtw";
+ "dump" = dontDistribute super."dump";
+ "duplo" = dontDistribute super."duplo";
+ "dvda" = dontDistribute super."dvda";
+ "dvdread" = dontDistribute super."dvdread";
+ "dvi-processing" = dontDistribute super."dvi-processing";
+ "dvorak" = dontDistribute super."dvorak";
+ "dwarf" = dontDistribute super."dwarf";
+ "dwarf-el" = dontDistribute super."dwarf-el";
+ "dwarfadt" = dontDistribute super."dwarfadt";
+ "dx9base" = dontDistribute super."dx9base";
+ "dx9d3d" = dontDistribute super."dx9d3d";
+ "dx9d3dx" = dontDistribute super."dx9d3dx";
+ "dynamic-cabal" = dontDistribute super."dynamic-cabal";
+ "dynamic-graph" = dontDistribute super."dynamic-graph";
+ "dynamic-linker-template" = dontDistribute super."dynamic-linker-template";
+ "dynamic-loader" = dontDistribute super."dynamic-loader";
+ "dynamic-mvector" = dontDistribute super."dynamic-mvector";
+ "dynamic-object" = dontDistribute super."dynamic-object";
+ "dynamic-plot" = dontDistribute super."dynamic-plot";
+ "dynamic-pp" = dontDistribute super."dynamic-pp";
+ "dynobud" = dontDistribute super."dynobud";
+ "dywapitchtrack" = dontDistribute super."dywapitchtrack";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-bitcoin" = dontDistribute super."easy-bitcoin";
+ "easyjson" = dontDistribute super."easyjson";
+ "easyplot" = dontDistribute super."easyplot";
+ "easyrender" = dontDistribute super."easyrender";
+ "ebeats" = dontDistribute super."ebeats";
+ "ebnf-bff" = dontDistribute super."ebnf-bff";
+ "ec2-signature" = dontDistribute super."ec2-signature";
+ "ecdsa" = dontDistribute super."ecdsa";
+ "ecma262" = dontDistribute super."ecma262";
+ "ecu" = dontDistribute super."ecu";
+ "ed25519" = dontDistribute super."ed25519";
+ "ed25519-donna" = dontDistribute super."ed25519-donna";
+ "eddie" = dontDistribute super."eddie";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editpipe" = dontDistribute super."editpipe";
+ "effect-monad" = dontDistribute super."effect-monad";
+ "effective-aspects" = dontDistribute super."effective-aspects";
+ "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv";
+ "effects" = dontDistribute super."effects";
+ "effects-parser" = dontDistribute super."effects-parser";
+ "effin" = dontDistribute super."effin";
+ "egison" = dontDistribute super."egison";
+ "egison-quote" = dontDistribute super."egison-quote";
+ "egison-tutorial" = dontDistribute super."egison-tutorial";
+ "ehaskell" = dontDistribute super."ehaskell";
+ "ehs" = dontDistribute super."ehs";
+ "eibd-client-simple" = dontDistribute super."eibd-client-simple";
+ "eigen" = dontDistribute super."eigen";
+ "eithers" = dontDistribute super."eithers";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "ekg-log" = dontDistribute super."ekg-log";
+ "ekg-push" = dontDistribute super."ekg-push";
+ "ekg-rrd" = dontDistribute super."ekg-rrd";
+ "ekg-statsd" = dontDistribute super."ekg-statsd";
+ "electrum-mnemonic" = dontDistribute super."electrum-mnemonic";
+ "elerea" = dontDistribute super."elerea";
+ "elerea-examples" = dontDistribute super."elerea-examples";
+ "elerea-sdl" = dontDistribute super."elerea-sdl";
+ "elevator" = dontDistribute super."elevator";
+ "elf" = dontDistribute super."elf";
+ "elision" = dontDistribute super."elision";
+ "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
+ "elm-build-lib" = dontDistribute super."elm-build-lib";
+ "elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
+ "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-validate-json" = dontDistribute super."email-validate-json";
+ "email-validator" = dontDistribute super."email-validator";
+ "embeddock" = dontDistribute super."embeddock";
+ "embeddock-example" = dontDistribute super."embeddock-example";
+ "embroidery" = dontDistribute super."embroidery";
+ "emgm" = dontDistribute super."emgm";
+ "empty" = dontDistribute super."empty";
+ "encoding" = dontDistribute super."encoding";
+ "endo" = dontDistribute super."endo";
+ "engine-io-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumerate" = dontDistribute super."enumerate";
+ "enumeration" = dontDistribute super."enumeration";
+ "enumerator-fd" = dontDistribute super."enumerator-fd";
+ "enumerator-tf" = dontDistribute super."enumerator-tf";
+ "enumfun" = dontDistribute super."enumfun";
+ "enummapmap" = dontDistribute super."enummapmap";
+ "enummapset" = dontDistribute super."enummapset";
+ "enummapset-th" = dontDistribute super."enummapset-th";
+ "enumset" = dontDistribute super."enumset";
+ "env-parser" = dontDistribute super."env-parser";
+ "envelope" = dontDistribute super."envelope";
+ "envparse" = dontDistribute super."envparse";
+ "epanet-haskell" = dontDistribute super."epanet-haskell";
+ "epass" = dontDistribute super."epass";
+ "epic" = dontDistribute super."epic";
+ "epoll" = dontDistribute super."epoll";
+ "eprocess" = dontDistribute super."eprocess";
+ "epub" = dontDistribute super."epub";
+ "epub-metadata" = dontDistribute super."epub-metadata";
+ "epub-tools" = dontDistribute super."epub-tools";
+ "epubname" = dontDistribute super."epubname";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "erd" = dontDistribute super."erd";
+ "erf-native" = dontDistribute super."erf-native";
+ "erlang" = dontDistribute super."erlang";
+ "eros" = dontDistribute super."eros";
+ "eros-client" = dontDistribute super."eros-client";
+ "eros-http" = dontDistribute super."eros-http";
+ "errno" = dontDistribute super."errno";
+ "error-analyze" = dontDistribute super."error-analyze";
+ "error-continuations" = dontDistribute super."error-continuations";
+ "error-list" = dontDistribute super."error-list";
+ "error-loc" = dontDistribute super."error-loc";
+ "error-location" = dontDistribute super."error-location";
+ "error-message" = dontDistribute super."error-message";
+ "error-util" = dontDistribute super."error-util";
+ "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance";
+ "ersatz" = dontDistribute super."ersatz";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = doDistribute super."ether_0_3_1_1";
+ "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell";
+ "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db";
+ "ethereum-rlp" = dontDistribute super."ethereum-rlp";
+ "ety" = dontDistribute super."ety";
+ "euler" = dontDistribute super."euler";
+ "euphoria" = dontDistribute super."euphoria";
+ "eurofxref" = dontDistribute super."eurofxref";
+ "event-driven" = dontDistribute super."event-driven";
+ "event-handlers" = dontDistribute super."event-handlers";
+ "event-list" = dontDistribute super."event-list";
+ "event-monad" = dontDistribute super."event-monad";
+ "eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
+ "eventstore" = doDistribute super."eventstore_0_10_0_2";
+ "every-bit-counts" = dontDistribute super."every-bit-counts";
+ "ewe" = dontDistribute super."ewe";
+ "ex-pool" = dontDistribute super."ex-pool";
+ "exact-combinatorics" = dontDistribute super."exact-combinatorics";
+ "exception-hierarchy" = dontDistribute super."exception-hierarchy";
+ "exception-mailer" = dontDistribute super."exception-mailer";
+ "exception-monads-fd" = dontDistribute super."exception-monads-fd";
+ "exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = dontDistribute super."exception-mtl";
+ "exherbo-cabal" = dontDistribute super."exherbo-cabal";
+ "exif" = dontDistribute super."exif";
+ "exinst" = dontDistribute super."exinst";
+ "exinst-aeson" = dontDistribute super."exinst-aeson";
+ "exinst-bytes" = dontDistribute super."exinst-bytes";
+ "exinst-deepseq" = dontDistribute super."exinst-deepseq";
+ "exinst-hashable" = dontDistribute super."exinst-hashable";
+ "existential" = dontDistribute super."existential";
+ "exists" = dontDistribute super."exists";
+ "exit-codes" = dontDistribute super."exit-codes";
+ "exp-extended" = dontDistribute super."exp-extended";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "explicit-iomodes" = dontDistribute super."explicit-iomodes";
+ "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring";
+ "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text";
+ "explicit-sharing" = dontDistribute super."explicit-sharing";
+ "explore" = dontDistribute super."explore";
+ "exposed-containers" = dontDistribute super."exposed-containers";
+ "expression-parser" = dontDistribute super."expression-parser";
+ "extcore" = dontDistribute super."extcore";
+ "extemp" = dontDistribute super."extemp";
+ "extended-categories" = dontDistribute super."extended-categories";
+ "extended-reals" = dontDistribute super."extended-reals";
+ "extensible" = dontDistribute super."extensible";
+ "extensible-data" = dontDistribute super."extensible-data";
+ "external-sort" = dontDistribute super."external-sort";
+ "extractelf" = dontDistribute super."extractelf";
+ "ez-couch" = dontDistribute super."ez-couch";
+ "faceted" = dontDistribute super."faceted";
+ "factory" = dontDistribute super."factory";
+ "factual-api" = dontDistribute super."factual-api";
+ "fad" = dontDistribute super."fad";
+ "fadno-braids" = dontDistribute super."fadno-braids";
+ "failable-list" = dontDistribute super."failable-list";
+ "failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "fast-math" = dontDistribute super."fast-math";
+ "fast-tags" = dontDistribute super."fast-tags";
+ "fast-tagsoup" = dontDistribute super."fast-tagsoup";
+ "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fca" = dontDistribute super."fca";
+ "fcache" = dontDistribute super."fcache";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "feed-cli" = dontDistribute super."feed-cli";
+ "feed-collect" = dontDistribute super."feed-collect";
+ "feed-crawl" = dontDistribute super."feed-crawl";
+ "feed-translator" = dontDistribute super."feed-translator";
+ "feed2lj" = dontDistribute super."feed2lj";
+ "feed2twitter" = dontDistribute super."feed2twitter";
+ "feldspar-compiler" = dontDistribute super."feldspar-compiler";
+ "feldspar-language" = dontDistribute super."feldspar-language";
+ "feldspar-signal" = dontDistribute super."feldspar-signal";
+ "fen2s" = dontDistribute super."fen2s";
+ "fences" = dontDistribute super."fences";
+ "fenfire" = dontDistribute super."fenfire";
+ "fez-conf" = dontDistribute super."fez-conf";
+ "ffeed" = dontDistribute super."ffeed";
+ "fficxx" = dontDistribute super."fficxx";
+ "fficxx-runtime" = dontDistribute super."fficxx-runtime";
+ "ffmpeg-light" = dontDistribute super."ffmpeg-light";
+ "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions";
+ "fgl-visualize" = dontDistribute super."fgl-visualize";
+ "fibon" = dontDistribute super."fibon";
+ "fibonacci" = dontDistribute super."fibonacci";
+ "fields" = dontDistribute super."fields";
+ "fields-json" = dontDistribute super."fields-json";
+ "fieldwise" = dontDistribute super."fieldwise";
+ "fig" = dontDistribute super."fig";
+ "file-collection" = dontDistribute super."file-collection";
+ "file-command-qq" = dontDistribute super."file-command-qq";
+ "filediff" = dontDistribute super."filediff";
+ "filepath-io-access" = dontDistribute super."filepath-io-access";
+ "filepather" = dontDistribute super."filepather";
+ "filestore" = dontDistribute super."filestore";
+ "filesystem-conduit" = dontDistribute super."filesystem-conduit";
+ "filesystem-enumerator" = dontDistribute super."filesystem-enumerator";
+ "filesystem-trees" = dontDistribute super."filesystem-trees";
+ "filtrable" = dontDistribute super."filtrable";
+ "final" = dontDistribute super."final";
+ "find-clumpiness" = dontDistribute super."find-clumpiness";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "finite-typelits" = dontDistribute super."finite-typelits";
+ "first-and-last" = dontDistribute super."first-and-last";
+ "first-class-patterns" = dontDistribute super."first-class-patterns";
+ "firstify" = dontDistribute super."firstify";
+ "fishfood" = dontDistribute super."fishfood";
+ "fit" = dontDistribute super."fit";
+ "fitsio" = dontDistribute super."fitsio";
+ "fix-imports" = dontDistribute super."fix-imports";
+ "fix-parser-simple" = dontDistribute super."fix-parser-simple";
+ "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit";
+ "fixed-length" = dontDistribute super."fixed-length";
+ "fixed-point" = dontDistribute super."fixed-point";
+ "fixed-point-vector" = dontDistribute super."fixed-point-vector";
+ "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space";
+ "fixed-precision" = dontDistribute super."fixed-precision";
+ "fixed-storable-array" = dontDistribute super."fixed-storable-array";
+ "fixed-vector-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixfile" = dontDistribute super."fixfile";
+ "fixhs" = dontDistribute super."fixhs";
+ "fixplate" = dontDistribute super."fixplate";
+ "fixpoint" = dontDistribute super."fixpoint";
+ "fixtime" = dontDistribute super."fixtime";
+ "fizz-buzz" = dontDistribute super."fizz-buzz";
+ "flaccuraterip" = dontDistribute super."flaccuraterip";
+ "flamethrower" = dontDistribute super."flamethrower";
+ "flamingra" = dontDistribute super."flamingra";
+ "flat-maybe" = dontDistribute super."flat-maybe";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flat-tex" = dontDistribute super."flat-tex";
+ "flexible-time" = dontDistribute super."flexible-time";
+ "flexible-unlit" = dontDistribute super."flexible-unlit";
+ "flexiwrap" = dontDistribute super."flexiwrap";
+ "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck";
+ "flickr" = dontDistribute super."flickr";
+ "flippers" = dontDistribute super."flippers";
+ "flite" = dontDistribute super."flite";
+ "flo" = dontDistribute super."flo";
+ "float-binstring" = dontDistribute super."float-binstring";
+ "floating-bits" = dontDistribute super."floating-bits";
+ "floatshow" = dontDistribute super."floatshow";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "flowdock-api" = dontDistribute super."flowdock-api";
+ "flowdock-rest" = dontDistribute super."flowdock-rest";
+ "flower" = dontDistribute super."flower";
+ "flowlocks-framework" = dontDistribute super."flowlocks-framework";
+ "flowsim" = dontDistribute super."flowsim";
+ "fltkhs" = dontDistribute super."fltkhs";
+ "fltkhs-demos" = dontDistribute super."fltkhs-demos";
+ "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos";
+ "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples";
+ "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fn" = doDistribute super."fn_0_2_0_2";
+ "fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_1_6";
+ "foldl-incremental" = dontDistribute super."foldl-incremental";
+ "foldl-transduce" = dontDistribute super."foldl-transduce";
+ "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec";
+ "folds" = dontDistribute super."folds";
+ "folds-common" = dontDistribute super."folds-common";
+ "follower" = dontDistribute super."follower";
+ "foma" = dontDistribute super."foma";
+ "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6";
+ "foo" = dontDistribute super."foo";
+ "for-free" = dontDistribute super."for-free";
+ "forbidden-fruit" = dontDistribute super."forbidden-fruit";
+ "fordo" = dontDistribute super."fordo";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "foreign-var" = dontDistribute super."foreign-var";
+ "forger" = dontDistribute super."forger";
+ "forkable-monad" = dontDistribute super."forkable-monad";
+ "formal" = dontDistribute super."formal";
+ "format" = dontDistribute super."format";
+ "format-status" = dontDistribute super."format-status";
+ "formattable" = dontDistribute super."formattable";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "formura" = dontDistribute super."formura";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "foscam-directory" = dontDistribute super."foscam-directory";
+ "foscam-filename" = dontDistribute super."foscam-filename";
+ "foscam-sort" = dontDistribute super."foscam-sort";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = dontDistribute super."fpco-api";
+ "fpipe" = dontDistribute super."fpipe";
+ "fpnla" = dontDistribute super."fpnla";
+ "fpnla-examples" = dontDistribute super."fpnla-examples";
+ "fptest" = dontDistribute super."fptest";
+ "fquery" = dontDistribute super."fquery";
+ "fractal" = dontDistribute super."fractal";
+ "fractals" = dontDistribute super."fractals";
+ "fraction" = dontDistribute super."fraction";
+ "frag" = dontDistribute super."frag";
+ "frame" = dontDistribute super."frame";
+ "frame-markdown" = dontDistribute super."frame-markdown";
+ "franchise" = dontDistribute super."franchise";
+ "freddy" = dontDistribute super."freddy";
+ "free-concurrent" = dontDistribute super."free-concurrent";
+ "free-functors" = dontDistribute super."free-functors";
+ "free-game" = dontDistribute super."free-game";
+ "free-http" = dontDistribute super."free-http";
+ "free-operational" = dontDistribute super."free-operational";
+ "free-theorems" = dontDistribute super."free-theorems";
+ "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples";
+ "free-theorems-seq" = dontDistribute super."free-theorems-seq";
+ "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui";
+ "free-theorems-webui" = dontDistribute super."free-theorems-webui";
+ "free-vl" = dontDistribute super."free-vl";
+ "freekick2" = dontDistribute super."freekick2";
+ "freer" = dontDistribute super."freer";
+ "freesect" = dontDistribute super."freesect";
+ "freesound" = dontDistribute super."freesound";
+ "freetype-simple" = dontDistribute super."freetype-simple";
+ "freetype2" = dontDistribute super."freetype2";
+ "fresco-binding" = dontDistribute super."fresco-binding";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friday-scale-dct" = dontDistribute super."friday-scale-dct";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frown" = dontDistribute super."frown";
+ "frp-arduino" = dontDistribute super."frp-arduino";
+ "frpnow" = dontDistribute super."frpnow";
+ "frpnow-gloss" = dontDistribute super."frpnow-gloss";
+ "frpnow-gtk" = dontDistribute super."frpnow-gtk";
+ "frquotes" = dontDistribute super."frquotes";
+ "fs-events" = dontDistribute super."fs-events";
+ "fsharp" = dontDistribute super."fsharp";
+ "fsmActions" = dontDistribute super."fsmActions";
+ "fst" = dontDistribute super."fst";
+ "fsutils" = dontDistribute super."fsutils";
+ "fswatcher" = dontDistribute super."fswatcher";
+ "ftdi" = dontDistribute super."ftdi";
+ "ftp-conduit" = dontDistribute super."ftp-conduit";
+ "ftphs" = dontDistribute super."ftphs";
+ "ftree" = dontDistribute super."ftree";
+ "ftshell" = dontDistribute super."ftshell";
+ "fugue" = dontDistribute super."fugue";
+ "full-sessions" = dontDistribute super."full-sessions";
+ "full-text-search" = dontDistribute super."full-text-search";
+ "fullstop" = dontDistribute super."fullstop";
+ "funbot" = dontDistribute super."funbot";
+ "funbot-client" = dontDistribute super."funbot-client";
+ "funbot-ext-events" = dontDistribute super."funbot-ext-events";
+ "funbot-git-hook" = dontDistribute super."funbot-git-hook";
+ "funcons-tools" = dontDistribute super."funcons-tools";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functional-kmp" = dontDistribute super."functional-kmp";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functor-utils" = dontDistribute super."functor-utils";
+ "functorm" = dontDistribute super."functorm";
+ "functors" = dontDistribute super."functors";
+ "funion" = dontDistribute super."funion";
+ "funpat" = dontDistribute super."funpat";
+ "funsat" = dontDistribute super."funsat";
+ "fusion" = dontDistribute super."fusion";
+ "futun" = dontDistribute super."futun";
+ "future" = dontDistribute super."future";
+ "future-resource" = dontDistribute super."future-resource";
+ "fuzzy" = dontDistribute super."fuzzy";
+ "fuzzy-timings" = dontDistribute super."fuzzy-timings";
+ "fuzzytime" = dontDistribute super."fuzzytime";
+ "fwgl" = dontDistribute super."fwgl";
+ "fwgl-glfw" = dontDistribute super."fwgl-glfw";
+ "fwgl-javascript" = dontDistribute super."fwgl-javascript";
+ "g-npm" = dontDistribute super."g-npm";
+ "gact" = dontDistribute super."gact";
+ "game-of-life" = dontDistribute super."game-of-life";
+ "game-probability" = dontDistribute super."game-probability";
+ "game-tree" = dontDistribute super."game-tree";
+ "gameclock" = dontDistribute super."gameclock";
+ "gamma" = dontDistribute super."gamma";
+ "gang-of-threads" = dontDistribute super."gang-of-threads";
+ "garepinoh" = dontDistribute super."garepinoh";
+ "garsia-wachs" = dontDistribute super."garsia-wachs";
+ "gbu" = dontDistribute super."gbu";
+ "gc" = dontDistribute super."gc";
+ "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai";
+ "gconf" = dontDistribute super."gconf";
+ "gdiff" = dontDistribute super."gdiff";
+ "gdiff-ig" = dontDistribute super."gdiff-ig";
+ "gdiff-th" = dontDistribute super."gdiff-th";
+ "gdo" = dontDistribute super."gdo";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gelatin" = dontDistribute super."gelatin";
+ "gemstone" = dontDistribute super."gemstone";
+ "gencheck" = dontDistribute super."gencheck";
+ "gender" = dontDistribute super."gender";
+ "genders" = dontDistribute super."genders";
+ "general-prelude" = dontDistribute super."general-prelude";
+ "generator" = dontDistribute super."generator";
+ "generators" = dontDistribute super."generators";
+ "generic-accessors" = dontDistribute super."generic-accessors";
+ "generic-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_9_0";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generics-sop-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";
+ "geojson-types" = dontDistribute super."geojson-types";
+ "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-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
+ "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" = dontDistribute super."ghci";
+ "ghci-diagrams" = dontDistribute super."ghci-diagrams";
+ "ghci-haskeline" = dontDistribute super."ghci-haskeline";
+ "ghci-lib" = dontDistribute super."ghci-lib";
+ "ghci-ng" = dontDistribute super."ghci-ng";
+ "ghci-pretty" = dontDistribute super."ghci-pretty";
+ "ghcid" = doDistribute super."ghcid_0_5_1";
+ "ghcjs-ajax" = dontDistribute super."ghcjs-ajax";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-hplay" = dontDistribute super."ghcjs-hplay";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gi-atk" = dontDistribute super."gi-atk";
+ "gi-cairo" = dontDistribute super."gi-cairo";
+ "gi-gdk" = dontDistribute super."gi-gdk";
+ "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf";
+ "gi-gio" = dontDistribute super."gi-gio";
+ "gi-girepository" = dontDistribute super."gi-girepository";
+ "gi-glib" = dontDistribute super."gi-glib";
+ "gi-gobject" = dontDistribute super."gi-gobject";
+ "gi-gst" = dontDistribute super."gi-gst";
+ "gi-gstaudio" = dontDistribute super."gi-gstaudio";
+ "gi-gstbase" = dontDistribute super."gi-gstbase";
+ "gi-gstvideo" = dontDistribute super."gi-gstvideo";
+ "gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
+ "gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
+ "gi-notify" = dontDistribute super."gi-notify";
+ "gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
+ "gi-poppler" = dontDistribute super."gi-poppler";
+ "gi-soup" = dontDistribute super."gi-soup";
+ "gi-vte" = dontDistribute super."gi-vte";
+ "gi-webkit" = dontDistribute super."gi-webkit";
+ "gi-webkit2" = dontDistribute super."gi-webkit2";
+ "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "giphy-api" = dontDistribute super."giphy-api";
+ "gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
+ "git-all" = dontDistribute super."git-all";
+ "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-release" = dontDistribute super."github-release";
+ "github-utils" = dontDistribute super."github-utils";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
+ "givegif" = dontDistribute super."givegif";
+ "gl-capture" = dontDistribute super."gl-capture";
+ "glade" = dontDistribute super."glade";
+ "gladexml-accessor" = dontDistribute super."gladexml-accessor";
+ "glambda" = dontDistribute super."glambda";
+ "glapp" = dontDistribute super."glapp";
+ "glasso" = dontDistribute super."glasso";
+ "glicko" = dontDistribute super."glicko";
+ "glider-nlp" = dontDistribute super."glider-nlp";
+ "glintcollider" = dontDistribute super."glintcollider";
+ "gll" = dontDistribute super."gll";
+ "global" = dontDistribute super."global";
+ "global-config" = dontDistribute super."global-config";
+ "global-lock" = dontDistribute super."global-lock";
+ "global-variables" = dontDistribute super."global-variables";
+ "glome-hs" = dontDistribute super."glome-hs";
+ "gloss" = dontDistribute super."gloss";
+ "gloss-accelerate" = dontDistribute super."gloss-accelerate";
+ "gloss-algorithms" = dontDistribute super."gloss-algorithms";
+ "gloss-banana" = dontDistribute super."gloss-banana";
+ "gloss-devil" = dontDistribute super."gloss-devil";
+ "gloss-examples" = dontDistribute super."gloss-examples";
+ "gloss-game" = dontDistribute super."gloss-game";
+ "gloss-juicy" = dontDistribute super."gloss-juicy";
+ "gloss-raster" = dontDistribute super."gloss-raster";
+ "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate";
+ "gloss-rendering" = dontDistribute super."gloss-rendering";
+ "gloss-sodium" = dontDistribute super."gloss-sodium";
+ "glpk-hs" = dontDistribute super."glpk-hs";
+ "glue" = dontDistribute super."glue";
+ "glue-common" = dontDistribute super."glue-common";
+ "glue-core" = dontDistribute super."glue-core";
+ "glue-ekg" = dontDistribute super."glue-ekg";
+ "glue-example" = dontDistribute super."glue-example";
+ "gluturtle" = dontDistribute super."gluturtle";
+ "gmap" = dontDistribute super."gmap";
+ "gmndl" = dontDistribute super."gmndl";
+ "gnome-desktop" = dontDistribute super."gnome-desktop";
+ "gnome-keyring" = dontDistribute super."gnome-keyring";
+ "gnomevfs" = dontDistribute super."gnomevfs";
+ "gnss-converters" = dontDistribute super."gnss-converters";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "goa" = dontDistribute super."goa";
+ "goal-core" = dontDistribute super."goal-core";
+ "goal-geometry" = dontDistribute super."goal-geometry";
+ "goal-probability" = dontDistribute super."goal-probability";
+ "goal-simulation" = dontDistribute super."goal-simulation";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "gogol" = dontDistribute super."gogol";
+ "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer";
+ "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller";
+ "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer";
+ "gogol-admin-directory" = dontDistribute super."gogol-admin-directory";
+ "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration";
+ "gogol-admin-reports" = dontDistribute super."gogol-admin-reports";
+ "gogol-adsense" = dontDistribute super."gogol-adsense";
+ "gogol-adsense-host" = dontDistribute super."gogol-adsense-host";
+ "gogol-affiliates" = dontDistribute super."gogol-affiliates";
+ "gogol-analytics" = dontDistribute super."gogol-analytics";
+ "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise";
+ "gogol-android-publisher" = dontDistribute super."gogol-android-publisher";
+ "gogol-appengine" = dontDistribute super."gogol-appengine";
+ "gogol-apps-activity" = dontDistribute super."gogol-apps-activity";
+ "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar";
+ "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing";
+ "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller";
+ "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks";
+ "gogol-appstate" = dontDistribute super."gogol-appstate";
+ "gogol-autoscaler" = dontDistribute super."gogol-autoscaler";
+ "gogol-bigquery" = dontDistribute super."gogol-bigquery";
+ "gogol-billing" = dontDistribute super."gogol-billing";
+ "gogol-blogger" = dontDistribute super."gogol-blogger";
+ "gogol-books" = dontDistribute super."gogol-books";
+ "gogol-civicinfo" = dontDistribute super."gogol-civicinfo";
+ "gogol-classroom" = dontDistribute super."gogol-classroom";
+ "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace";
+ "gogol-compute" = dontDistribute super."gogol-compute";
+ "gogol-container" = dontDistribute super."gogol-container";
+ "gogol-core" = dontDistribute super."gogol-core";
+ "gogol-customsearch" = dontDistribute super."gogol-customsearch";
+ "gogol-dataflow" = dontDistribute super."gogol-dataflow";
+ "gogol-datastore" = dontDistribute super."gogol-datastore";
+ "gogol-debugger" = dontDistribute super."gogol-debugger";
+ "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager";
+ "gogol-dfareporting" = dontDistribute super."gogol-dfareporting";
+ "gogol-discovery" = dontDistribute super."gogol-discovery";
+ "gogol-dns" = dontDistribute super."gogol-dns";
+ "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids";
+ "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search";
+ "gogol-drive" = dontDistribute super."gogol-drive";
+ "gogol-fitness" = dontDistribute super."gogol-fitness";
+ "gogol-fonts" = dontDistribute super."gogol-fonts";
+ "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch";
+ "gogol-fusiontables" = dontDistribute super."gogol-fusiontables";
+ "gogol-games" = dontDistribute super."gogol-games";
+ "gogol-games-configuration" = dontDistribute super."gogol-games-configuration";
+ "gogol-games-management" = dontDistribute super."gogol-games-management";
+ "gogol-genomics" = dontDistribute super."gogol-genomics";
+ "gogol-gmail" = dontDistribute super."gogol-gmail";
+ "gogol-groups-migration" = dontDistribute super."gogol-groups-migration";
+ "gogol-groups-settings" = dontDistribute super."gogol-groups-settings";
+ "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit";
+ "gogol-latencytest" = dontDistribute super."gogol-latencytest";
+ "gogol-logging" = dontDistribute super."gogol-logging";
+ "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate";
+ "gogol-maps-engine" = dontDistribute super."gogol-maps-engine";
+ "gogol-mirror" = dontDistribute super."gogol-mirror";
+ "gogol-monitoring" = dontDistribute super."gogol-monitoring";
+ "gogol-oauth2" = dontDistribute super."gogol-oauth2";
+ "gogol-pagespeed" = dontDistribute super."gogol-pagespeed";
+ "gogol-partners" = dontDistribute super."gogol-partners";
+ "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner";
+ "gogol-plus" = dontDistribute super."gogol-plus";
+ "gogol-plus-domains" = dontDistribute super."gogol-plus-domains";
+ "gogol-prediction" = dontDistribute super."gogol-prediction";
+ "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon";
+ "gogol-pubsub" = dontDistribute super."gogol-pubsub";
+ "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress";
+ "gogol-replicapool" = dontDistribute super."gogol-replicapool";
+ "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater";
+ "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager";
+ "gogol-resourceviews" = dontDistribute super."gogol-resourceviews";
+ "gogol-shopping-content" = dontDistribute super."gogol-shopping-content";
+ "gogol-siteverification" = dontDistribute super."gogol-siteverification";
+ "gogol-spectrum" = dontDistribute super."gogol-spectrum";
+ "gogol-sqladmin" = dontDistribute super."gogol-sqladmin";
+ "gogol-storage" = dontDistribute super."gogol-storage";
+ "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer";
+ "gogol-tagmanager" = dontDistribute super."gogol-tagmanager";
+ "gogol-taskqueue" = dontDistribute super."gogol-taskqueue";
+ "gogol-translate" = dontDistribute super."gogol-translate";
+ "gogol-urlshortener" = dontDistribute super."gogol-urlshortener";
+ "gogol-useraccounts" = dontDistribute super."gogol-useraccounts";
+ "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools";
+ "gogol-youtube" = dontDistribute super."gogol-youtube";
+ "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics";
+ "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting";
+ "gooey" = dontDistribute super."gooey";
+ "google-dictionary" = dontDistribute super."google-dictionary";
+ "google-drive" = dontDistribute super."google-drive";
+ "google-html5-slide" = dontDistribute super."google-html5-slide";
+ "google-mail-filters" = dontDistribute super."google-mail-filters";
+ "google-oauth2" = dontDistribute super."google-oauth2";
+ "google-search" = dontDistribute super."google-search";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gore-and-ash" = dontDistribute super."gore-and-ash";
+ "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor";
+ "gore-and-ash-async" = dontDistribute super."gore-and-ash-async";
+ "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo";
+ "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw";
+ "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging";
+ "gore-and-ash-network" = dontDistribute super."gore-and-ash-network";
+ "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl";
+ "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpio" = dontDistribute super."gpio";
+ "gpolyline" = dontDistribute super."gpolyline";
+ "gps" = dontDistribute super."gps";
+ "gps2htmlReport" = dontDistribute super."gps2htmlReport";
+ "gpx-conduit" = dontDistribute super."gpx-conduit";
+ "graceful" = dontDistribute super."graceful";
+ "grammar-combinators" = dontDistribute super."grammar-combinators";
+ "grapefruit-examples" = dontDistribute super."grapefruit-examples";
+ "grapefruit-frp" = dontDistribute super."grapefruit-frp";
+ "grapefruit-records" = dontDistribute super."grapefruit-records";
+ "grapefruit-ui" = dontDistribute super."grapefruit-ui";
+ "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
+ "graph-core" = doDistribute super."graph-core_0_2_2_0";
+ "graph-generators" = dontDistribute super."graph-generators";
+ "graph-matchings" = dontDistribute super."graph-matchings";
+ "graph-rewriting" = dontDistribute super."graph-rewriting";
+ "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl";
+ "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl";
+ "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope";
+ "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout";
+ "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski";
+ "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies";
+ "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs";
+ "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww";
+ "graph-serialize" = dontDistribute super."graph-serialize";
+ "graph-utils" = dontDistribute super."graph-utils";
+ "graph-visit" = dontDistribute super."graph-visit";
+ "graphbuilder" = dontDistribute super."graphbuilder";
+ "graphene" = dontDistribute super."graphene";
+ "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators";
+ "graphics-formats-collada" = dontDistribute super."graphics-formats-collada";
+ "graphicsFormats" = dontDistribute super."graphicsFormats";
+ "graphicstools" = dontDistribute super."graphicstools";
+ "graphmod" = dontDistribute super."graphmod";
+ "graphql" = dontDistribute super."graphql";
+ "graphtype" = dontDistribute super."graphtype";
+ "grasp" = dontDistribute super."grasp";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "graylog" = dontDistribute super."graylog";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "gremlin-haskell" = dontDistribute super."gremlin-haskell";
+ "greplicate" = dontDistribute super."greplicate";
+ "grid" = dontDistribute super."grid";
+ "gridfs" = dontDistribute super."gridfs";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groundhog-converters" = dontDistribute super."groundhog-converters";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "gsc-weighting" = dontDistribute super."gsc-weighting";
+ "gsl-random" = dontDistribute super."gsl-random";
+ "gsl-random-fu" = dontDistribute super."gsl-random-fu";
+ "gsmenu" = dontDistribute super."gsmenu";
+ "gstreamer" = dontDistribute super."gstreamer";
+ "gt-tools" = dontDistribute super."gt-tools";
+ "gtfs" = dontDistribute super."gtfs";
+ "gtk-helpers" = dontDistribute super."gtk-helpers";
+ "gtk-jsinput" = dontDistribute super."gtk-jsinput";
+ "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore";
+ "gtk-mac-integration" = dontDistribute super."gtk-mac-integration";
+ "gtk-serialized-event" = dontDistribute super."gtk-serialized-event";
+ "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view";
+ "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list";
+ "gtk-toy" = dontDistribute super."gtk-toy";
+ "gtk-traymanager" = dontDistribute super."gtk-traymanager";
+ "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade";
+ "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib";
+ "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs";
+ "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk";
+ "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext";
+ "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2";
+ "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th";
+ "gtk2hs-hello" = dontDistribute super."gtk2hs-hello";
+ "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn";
+ "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration";
+ "gtkglext" = dontDistribute super."gtkglext";
+ "gtkimageview" = dontDistribute super."gtkimageview";
+ "gtkrsync" = dontDistribute super."gtkrsync";
+ "gtksourceview2" = dontDistribute super."gtksourceview2";
+ "gtksourceview3" = dontDistribute super."gtksourceview3";
+ "guarded-rewriting" = dontDistribute super."guarded-rewriting";
+ "guess-combinator" = dontDistribute super."guess-combinator";
+ "guid" = dontDistribute super."guid";
+ "gulcii" = dontDistribute super."gulcii";
+ "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis";
+ "gyah-bin" = dontDistribute super."gyah-bin";
+ "h-booru" = dontDistribute super."h-booru";
+ "h-gpgme" = dontDistribute super."h-gpgme";
+ "h2048" = dontDistribute super."h2048";
+ "hArduino" = dontDistribute super."hArduino";
+ "hBDD" = dontDistribute super."hBDD";
+ "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD";
+ "hBDD-CUDD" = dontDistribute super."hBDD-CUDD";
+ "hCsound" = dontDistribute super."hCsound";
+ "hDFA" = dontDistribute super."hDFA";
+ "hF2" = dontDistribute super."hF2";
+ "hGelf" = dontDistribute super."hGelf";
+ "hLLVM" = dontDistribute super."hLLVM";
+ "hMollom" = dontDistribute super."hMollom";
+ "hPDB-examples" = dontDistribute super."hPDB-examples";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hScraper" = dontDistribute super."hScraper";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
+ "hacanon-light" = dontDistribute super."hacanon-light";
+ "hack" = dontDistribute super."hack";
+ "hack-contrib" = dontDistribute super."hack-contrib";
+ "hack-contrib-press" = dontDistribute super."hack-contrib-press";
+ "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack";
+ "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi";
+ "hack-handler-cgi" = dontDistribute super."hack-handler-cgi";
+ "hack-handler-epoll" = dontDistribute super."hack-handler-epoll";
+ "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp";
+ "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi";
+ "hack-handler-happstack" = dontDistribute super."hack-handler-happstack";
+ "hack-handler-hyena" = dontDistribute super."hack-handler-hyena";
+ "hack-handler-kibro" = dontDistribute super."hack-handler-kibro";
+ "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver";
+ "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath";
+ "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession";
+ "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip";
+ "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp";
+ "hack2" = dontDistribute super."hack2";
+ "hack2-contrib" = dontDistribute super."hack2-contrib";
+ "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra";
+ "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server";
+ "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http";
+ "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server";
+ "hack2-handler-warp" = dontDistribute super."hack2-handler-warp";
+ "hack2-interface-wai" = dontDistribute super."hack2-interface-wai";
+ "hackage-diff" = dontDistribute super."hackage-diff";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-processing" = dontDistribute super."hackage-processing";
+ "hackage-proxy" = dontDistribute super."hackage-proxy";
+ "hackage-repo-tool" = dontDistribute super."hackage-repo-tool";
+ "hackage-security" = dontDistribute super."hackage-security";
+ "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP";
+ "hackage-server" = dontDistribute super."hackage-server";
+ "hackage-sparks" = dontDistribute super."hackage-sparks";
+ "hackage2hwn" = dontDistribute super."hackage2hwn";
+ "hackage2twitter" = dontDistribute super."hackage2twitter";
+ "hackager" = dontDistribute super."hackager";
+ "hackernews" = dontDistribute super."hackernews";
+ "hackertyper" = dontDistribute super."hackertyper";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "hadoop-formats" = dontDistribute super."hadoop-formats";
+ "hadoop-rpc" = dontDistribute super."hadoop-rpc";
+ "hadoop-tools" = dontDistribute super."hadoop-tools";
+ "haeredes" = dontDistribute super."haeredes";
+ "haggis" = dontDistribute super."haggis";
+ "haha" = dontDistribute super."haha";
+ "hahp" = dontDistribute super."hahp";
+ "haiji" = dontDistribute super."haiji";
+ "hailgun" = dontDistribute super."hailgun";
+ "hailgun-send" = dontDistribute super."hailgun-send";
+ "hails" = dontDistribute super."hails";
+ "hails-bin" = dontDistribute super."hails-bin";
+ "hairy" = dontDistribute super."hairy";
+ "hakaru" = dontDistribute super."hakaru";
+ "hake" = dontDistribute super."hake";
+ "hakismet" = dontDistribute super."hakismet";
+ "hako" = dontDistribute super."hako";
+ "hakyll" = doDistribute super."hakyll_4_7_5_2";
+ "hakyll-R" = dontDistribute super."hakyll-R";
+ "hakyll-agda" = dontDistribute super."hakyll-agda";
+ "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
+ "hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
+ "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
+ "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
+ "hakyll-convert" = dontDistribute super."hakyll-convert";
+ "hakyll-elm" = dontDistribute super."hakyll-elm";
+ "hakyll-filestore" = dontDistribute super."hakyll-filestore";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "halfs" = dontDistribute super."halfs";
+ "halipeto" = dontDistribute super."halipeto";
+ "halive" = dontDistribute super."halive";
+ "halma" = dontDistribute super."halma";
+ "haltavista" = dontDistribute super."haltavista";
+ "hamid" = dontDistribute super."hamid";
+ "hampp" = dontDistribute super."hampp";
+ "hamtmap" = dontDistribute super."hamtmap";
+ "hamusic" = dontDistribute super."hamusic";
+ "handa-gdata" = dontDistribute super."handa-gdata";
+ "handa-geodata" = dontDistribute super."handa-geodata";
+ "handa-opengl" = dontDistribute super."handa-opengl";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "handwriting" = dontDistribute super."handwriting";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "haphviz" = dontDistribute super."haphviz";
+ "happindicator" = dontDistribute super."happindicator";
+ "happindicator3" = dontDistribute super."happindicator3";
+ "happraise" = dontDistribute super."happraise";
+ "happs-hsp" = dontDistribute super."happs-hsp";
+ "happs-hsp-template" = dontDistribute super."happs-hsp-template";
+ "happs-tutorial" = dontDistribute super."happs-tutorial";
+ "happstack" = dontDistribute super."happstack";
+ "happstack-auth" = dontDistribute super."happstack-auth";
+ "happstack-contrib" = dontDistribute super."happstack-contrib";
+ "happstack-data" = dontDistribute super."happstack-data";
+ "happstack-dlg" = dontDistribute super."happstack-dlg";
+ "happstack-facebook" = dontDistribute super."happstack-facebook";
+ "happstack-fastcgi" = dontDistribute super."happstack-fastcgi";
+ "happstack-fay" = dontDistribute super."happstack-fay";
+ "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax";
+ "happstack-foundation" = dontDistribute super."happstack-foundation";
+ "happstack-hamlet" = dontDistribute super."happstack-hamlet";
+ "happstack-heist" = dontDistribute super."happstack-heist";
+ "happstack-helpers" = dontDistribute super."happstack-helpers";
+ "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite";
+ "happstack-state" = dontDistribute super."happstack-state";
+ "happstack-static-routing" = dontDistribute super."happstack-static-routing";
+ "happstack-util" = dontDistribute super."happstack-util";
+ "happstack-yui" = dontDistribute super."happstack-yui";
+ "happy-meta" = dontDistribute super."happy-meta";
+ "happybara" = dontDistribute super."happybara";
+ "happybara-webkit" = dontDistribute super."happybara-webkit";
+ "happybara-webkit-server" = dontDistribute super."happybara-webkit-server";
+ "hapstone" = dontDistribute super."hapstone";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hardware-edsl" = dontDistribute super."hardware-edsl";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
+ "has" = dontDistribute super."has";
+ "has-th" = dontDistribute super."has-th";
+ "hascal" = dontDistribute super."hascal";
+ "hascat" = dontDistribute super."hascat";
+ "hascat-lib" = dontDistribute super."hascat-lib";
+ "hascat-setup" = dontDistribute super."hascat-setup";
+ "hascat-system" = dontDistribute super."hascat-system";
+ "hash" = dontDistribute super."hash";
+ "hashable-generics" = dontDistribute super."hashable-generics";
+ "hashabler" = dontDistribute super."hashabler";
+ "hashed-storage" = dontDistribute super."hashed-storage";
+ "hashids" = dontDistribute super."hashids";
+ "hashring" = dontDistribute super."hashring";
+ "hashtables-plus" = dontDistribute super."hashtables-plus";
+ "hasim" = dontDistribute super."hasim";
+ "hask" = dontDistribute super."hask";
+ "hask-home" = dontDistribute super."hask-home";
+ "haskades" = dontDistribute super."haskades";
+ "haskakafka" = dontDistribute super."haskakafka";
+ "haskanoid" = dontDistribute super."haskanoid";
+ "haskarrow" = dontDistribute super."haskarrow";
+ "haskbot-core" = dontDistribute super."haskbot-core";
+ "haskdeep" = dontDistribute super."haskdeep";
+ "haskdogs" = dontDistribute super."haskdogs";
+ "haskeem" = dontDistribute super."haskeem";
+ "haskeline" = doDistribute super."haskeline_0_7_2_3";
+ "haskeline-class" = dontDistribute super."haskeline-class";
+ "haskell-aliyun" = dontDistribute super."haskell-aliyun";
+ "haskell-awk" = dontDistribute super."haskell-awk";
+ "haskell-bcrypt" = dontDistribute super."haskell-bcrypt";
+ "haskell-brainfuck" = dontDistribute super."haskell-brainfuck";
+ "haskell-cnc" = dontDistribute super."haskell-cnc";
+ "haskell-coffee" = dontDistribute super."haskell-coffee";
+ "haskell-compression" = dontDistribute super."haskell-compression";
+ "haskell-course-preludes" = dontDistribute super."haskell-course-preludes";
+ "haskell-docs" = dontDistribute super."haskell-docs";
+ "haskell-exp-parser" = dontDistribute super."haskell-exp-parser";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-gi" = dontDistribute super."haskell-gi";
+ "haskell-gi-base" = dontDistribute super."haskell-gi-base";
+ "haskell-import-graph" = dontDistribute super."haskell-import-graph";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-kubernetes" = dontDistribute super."haskell-kubernetes";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpfr" = dontDistribute super."haskell-mpfr";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = dontDistribute super."haskell-names";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter";
+ "haskell-platform-test" = dontDistribute super."haskell-platform-test";
+ "haskell-plot" = dontDistribute super."haskell-plot";
+ "haskell-qrencode" = dontDistribute super."haskell-qrencode";
+ "haskell-read-editor" = dontDistribute super."haskell-read-editor";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-tor" = dontDistribute super."haskell-tor";
+ "haskell-type-exts" = dontDistribute super."haskell-type-exts";
+ "haskell-typescript" = dontDistribute super."haskell-typescript";
+ "haskell-tyrant" = dontDistribute super."haskell-tyrant";
+ "haskell-updater" = dontDistribute super."haskell-updater";
+ "haskell-xmpp" = dontDistribute super."haskell-xmpp";
+ "haskell2010" = dontDistribute super."haskell2010";
+ "haskell98" = dontDistribute super."haskell98";
+ "haskell98libraries" = dontDistribute super."haskell98libraries";
+ "haskelldb" = dontDistribute super."haskelldb";
+ "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc";
+ "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl";
+ "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf";
+ "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers";
+ "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted";
+ "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic";
+ "haskelldb-flat" = dontDistribute super."haskelldb-flat";
+ "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc";
+ "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql";
+ "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc";
+ "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql";
+ "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3";
+ "haskelldb-hsql" = dontDistribute super."haskelldb-hsql";
+ "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql";
+ "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc";
+ "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle";
+ "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql";
+ "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite";
+ "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3";
+ "haskelldb-th" = dontDistribute super."haskelldb-th";
+ "haskelldb-wx" = dontDistribute super."haskelldb-wx";
+ "haskellscrabble" = dontDistribute super."haskellscrabble";
+ "haskellscript" = dontDistribute super."haskellscript";
+ "haskelm" = dontDistribute super."haskelm";
+ "haskgame" = dontDistribute super."haskgame";
+ "haskheap" = dontDistribute super."haskheap";
+ "haskhol-core" = dontDistribute super."haskhol-core";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-core" = dontDistribute super."haskoin-core";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-node" = dontDistribute super."haskoin-node";
+ "haskoin-protocol" = dontDistribute super."haskoin-protocol";
+ "haskoin-script" = dontDistribute super."haskoin-script";
+ "haskoin-util" = dontDistribute super."haskoin-util";
+ "haskoin-wallet" = dontDistribute super."haskoin-wallet";
+ "haskoon" = dontDistribute super."haskoon";
+ "haskoon-httpspec" = dontDistribute super."haskoon-httpspec";
+ "haskoon-salvia" = dontDistribute super."haskoon-salvia";
+ "haskore" = dontDistribute super."haskore";
+ "haskore-realtime" = dontDistribute super."haskore-realtime";
+ "haskore-supercollider" = dontDistribute super."haskore-supercollider";
+ "haskore-synthesizer" = dontDistribute super."haskore-synthesizer";
+ "haskore-vintage" = dontDistribute super."haskore-vintage";
+ "hasktags" = dontDistribute super."hasktags";
+ "haslo" = dontDistribute super."haslo";
+ "hasloGUI" = dontDistribute super."hasloGUI";
+ "hasparql-client" = dontDistribute super."hasparql-client";
+ "haspell" = dontDistribute super."haspell";
+ "hasql" = doDistribute super."hasql_0_19_6";
+ "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative";
+ "hasql-pool" = dontDistribute super."hasql-pool";
+ "hasql-postgres" = dontDistribute super."hasql-postgres";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hasql-th" = dontDistribute super."hasql-th";
+ "hasql-transaction" = dontDistribute super."hasql-transaction";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-gapi" = dontDistribute super."haste-gapi";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hastily" = dontDistribute super."hastily";
+ "hat" = dontDistribute super."hat";
+ "hatex-guide" = dontDistribute super."hatex-guide";
+ "hath" = dontDistribute super."hath";
+ "hatt" = dontDistribute super."hatt";
+ "haverer" = dontDistribute super."haverer";
+ "hawitter" = dontDistribute super."hawitter";
+ "haxl-amazonka" = dontDistribute super."haxl-amazonka";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr-th" = dontDistribute super."haxr-th";
+ "haxy" = dontDistribute super."haxy";
+ "hayland" = dontDistribute super."hayland";
+ "hayoo-cli" = dontDistribute super."hayoo-cli";
+ "hback" = dontDistribute super."hback";
+ "hbayes" = dontDistribute super."hbayes";
+ "hbb" = dontDistribute super."hbb";
+ "hbcd" = dontDistribute super."hbcd";
+ "hbeat" = dontDistribute super."hbeat";
+ "hblas" = dontDistribute super."hblas";
+ "hblock" = dontDistribute super."hblock";
+ "hbro" = dontDistribute super."hbro";
+ "hbro-contrib" = dontDistribute super."hbro-contrib";
+ "hburg" = dontDistribute super."hburg";
+ "hcc" = dontDistribute super."hcc";
+ "hcg-minus" = dontDistribute super."hcg-minus";
+ "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo";
+ "hcheat" = dontDistribute super."hcheat";
+ "hchesslib" = dontDistribute super."hchesslib";
+ "hcltest" = dontDistribute super."hcltest";
+ "hcoap" = dontDistribute super."hcoap";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix";
+ "hdbc-aeson" = dontDistribute super."hdbc-aeson";
+ "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore";
+ "hdbc-tuple" = dontDistribute super."hdbc-tuple";
+ "hdbi" = dontDistribute super."hdbi";
+ "hdbi-conduit" = dontDistribute super."hdbi-conduit";
+ "hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
+ "hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
+ "hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdocs" = doDistribute super."hdocs_0_4_4_2";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "hdr-histogram" = dontDistribute super."hdr-histogram";
+ "headergen" = dontDistribute super."headergen";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "hedis-config" = dontDistribute super."hedis-config";
+ "hedis-monadic" = dontDistribute super."hedis-monadic";
+ "hedis-pile" = dontDistribute super."hedis-pile";
+ "hedis-simple" = dontDistribute super."hedis-simple";
+ "hedis-tags" = dontDistribute super."hedis-tags";
+ "hedn" = dontDistribute super."hedn";
+ "hein" = dontDistribute super."hein";
+ "heist-aeson" = dontDistribute super."heist-aeson";
+ "heist-async" = dontDistribute super."heist-async";
+ "helics" = dontDistribute super."helics";
+ "helics-wai" = dontDistribute super."helics-wai";
+ "helisp" = dontDistribute super."helisp";
+ "helium" = dontDistribute super."helium";
+ "helix" = dontDistribute super."helix";
+ "hell" = dontDistribute super."hell";
+ "hellage" = dontDistribute super."hellage";
+ "hellnet" = dontDistribute super."hellnet";
+ "hello" = dontDistribute super."hello";
+ "helm" = dontDistribute super."helm";
+ "help-esb" = dontDistribute super."help-esb";
+ "hemkay" = dontDistribute super."hemkay";
+ "hemkay-core" = dontDistribute super."hemkay-core";
+ "hemokit" = dontDistribute super."hemokit";
+ "hen" = dontDistribute super."hen";
+ "henet" = dontDistribute super."henet";
+ "hepevt" = dontDistribute super."hepevt";
+ "her-lexer" = dontDistribute super."her-lexer";
+ "her-lexer-parsec" = dontDistribute super."her-lexer-parsec";
+ "herbalizer" = dontDistribute super."herbalizer";
+ "heredocs" = dontDistribute super."heredocs";
+ "herf-time" = dontDistribute super."herf-time";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets";
+ "heroku" = dontDistribute super."heroku";
+ "heroku-persistent" = dontDistribute super."heroku-persistent";
+ "herringbone" = dontDistribute super."herringbone";
+ "herringbone-embed" = dontDistribute super."herringbone-embed";
+ "herringbone-wai" = dontDistribute super."herringbone-wai";
+ "hesh" = dontDistribute super."hesh";
+ "hesql" = dontDistribute super."hesql";
+ "hetero-map" = dontDistribute super."hetero-map";
+ "hetris" = dontDistribute super."hetris";
+ "heukarya" = dontDistribute super."heukarya";
+ "hevolisa" = dontDistribute super."hevolisa";
+ "hevolisa-dph" = dontDistribute super."hevolisa-dph";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "hexpat-iteratee" = dontDistribute super."hexpat-iteratee";
+ "hexpat-lens" = dontDistribute super."hexpat-lens";
+ "hexpat-pickle" = dontDistribute super."hexpat-pickle";
+ "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic";
+ "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup";
+ "hexpr" = dontDistribute super."hexpr";
+ "hexquote" = dontDistribute super."hexquote";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hfmt" = dontDistribute super."hfmt";
+ "hfoil" = dontDistribute super."hfoil";
+ "hformat" = dontDistribute super."hformat";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "hfusion" = dontDistribute super."hfusion";
+ "hg-buildpackage" = dontDistribute super."hg-buildpackage";
+ "hgal" = dontDistribute super."hgal";
+ "hgalib" = dontDistribute super."hgalib";
+ "hgdbmi" = dontDistribute super."hgdbmi";
+ "hgearman" = dontDistribute super."hgearman";
+ "hgen" = dontDistribute super."hgen";
+ "hgeometric" = dontDistribute super."hgeometric";
+ "hgeometry" = dontDistribute super."hgeometry";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrev" = dontDistribute super."hgrev";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hi3status" = dontDistribute super."hi3status";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
+ "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
+ "hierarchy" = dontDistribute super."hierarchy";
+ "hiernotify" = dontDistribute super."hiernotify";
+ "highWaterMark" = dontDistribute super."highWaterMark";
+ "higher-leveldb" = dontDistribute super."higher-leveldb";
+ "higherorder" = dontDistribute super."higherorder";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindley-milner" = dontDistribute super."hindley-milner";
+ "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori";
+ "hinduce-classifier" = dontDistribute super."hinduce-classifier";
+ "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree";
+ "hinduce-examples" = dontDistribute super."hinduce-examples";
+ "hinduce-missingh" = dontDistribute super."hinduce-missingh";
+ "hinotify-bytestring" = dontDistribute super."hinotify-bytestring";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_3";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hip" = dontDistribute super."hip";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipchat-hs" = dontDistribute super."hipchat-hs";
+ "hipe" = dontDistribute super."hipe";
+ "hips" = dontDistribute super."hips";
+ "hircules" = dontDistribute super."hircules";
+ "hirt" = dontDistribute super."hirt";
+ "hissmetrics" = dontDistribute super."hissmetrics";
+ "hist-pl" = dontDistribute super."hist-pl";
+ "hist-pl-dawg" = dontDistribute super."hist-pl-dawg";
+ "hist-pl-fusion" = dontDistribute super."hist-pl-fusion";
+ "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon";
+ "hist-pl-lmf" = dontDistribute super."hist-pl-lmf";
+ "hist-pl-transliter" = dontDistribute super."hist-pl-transliter";
+ "hist-pl-types" = dontDistribute super."hist-pl-types";
+ "histogram-fill-binary" = dontDistribute super."histogram-fill-binary";
+ "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal";
+ "historian" = dontDistribute super."historian";
+ "hit-graph" = dontDistribute super."hit-graph";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_5_3";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hkdf" = dontDistribute super."hkdf";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hleap" = dontDistribute super."hleap";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlint" = doDistribute super."hlint_1_9_31";
+ "hlogger" = dontDistribute super."hlogger";
+ "hlongurl" = dontDistribute super."hlongurl";
+ "hls" = dontDistribute super."hls";
+ "hlwm" = dontDistribute super."hlwm";
+ "hly" = dontDistribute super."hly";
+ "hmark" = dontDistribute super."hmark";
+ "hmarkup" = dontDistribute super."hmarkup";
+ "hmatrix-banded" = dontDistribute super."hmatrix-banded";
+ "hmatrix-csv" = dontDistribute super."hmatrix-csv";
+ "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
+ "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
+ "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
+ "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp";
+ "hmatrix-repa" = dontDistribute super."hmatrix-repa";
+ "hmatrix-special" = dontDistribute super."hmatrix-special";
+ "hmatrix-static" = dontDistribute super."hmatrix-static";
+ "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc";
+ "hmatrix-syntax" = dontDistribute super."hmatrix-syntax";
+ "hmatrix-tests" = dontDistribute super."hmatrix-tests";
+ "hmeap" = dontDistribute super."hmeap";
+ "hmeap-utils" = dontDistribute super."hmeap-utils";
+ "hmemdb" = dontDistribute super."hmemdb";
+ "hmenu" = dontDistribute super."hmenu";
+ "hmidi" = dontDistribute super."hmidi";
+ "hmk" = dontDistribute super."hmk";
+ "hmm" = dontDistribute super."hmm";
+ "hmm-hmatrix" = dontDistribute super."hmm-hmatrix";
+ "hmp3" = dontDistribute super."hmp3";
+ "hmpfr" = dontDistribute super."hmpfr";
+ "hmt" = dontDistribute super."hmt";
+ "hmt-diagrams" = dontDistribute super."hmt-diagrams";
+ "hmumps" = dontDistribute super."hmumps";
+ "hnetcdf" = dontDistribute super."hnetcdf";
+ "hnix" = dontDistribute super."hnix";
+ "hnn" = dontDistribute super."hnn";
+ "hnop" = dontDistribute super."hnop";
+ "ho-rewriting" = dontDistribute super."ho-rewriting";
+ "hoauth" = dontDistribute super."hoauth";
+ "hob" = dontDistribute super."hob";
+ "hobbes" = dontDistribute super."hobbes";
+ "hobbits" = dontDistribute super."hobbits";
+ "hoe" = dontDistribute super."hoe";
+ "hofix-mtl" = dontDistribute super."hofix-mtl";
+ "hog" = dontDistribute super."hog";
+ "hogg" = dontDistribute super."hogg";
+ "hogre" = dontDistribute super."hogre";
+ "hogre-examples" = dontDistribute super."hogre-examples";
+ "hois" = dontDistribute super."hois";
+ "hoist-error" = dontDistribute super."hoist-error";
+ "hold-em" = dontDistribute super."hold-em";
+ "hole" = dontDistribute super."hole";
+ "holey-format" = dontDistribute super."holey-format";
+ "homeomorphic" = dontDistribute super."homeomorphic";
+ "hommage" = dontDistribute super."hommage";
+ "hommage-ds" = dontDistribute super."hommage-ds";
+ "homplexity" = dontDistribute super."homplexity";
+ "honi" = dontDistribute super."honi";
+ "honk" = dontDistribute super."honk";
+ "hoobuddy" = dontDistribute super."hoobuddy";
+ "hood" = dontDistribute super."hood";
+ "hood-off" = dontDistribute super."hood-off";
+ "hood2" = dontDistribute super."hood2";
+ "hoodie" = dontDistribute super."hoodie";
+ "hoodle" = dontDistribute super."hoodle";
+ "hoodle-builder" = dontDistribute super."hoodle-builder";
+ "hoodle-core" = dontDistribute super."hoodle-core";
+ "hoodle-extra" = dontDistribute super."hoodle-extra";
+ "hoodle-parser" = dontDistribute super."hoodle-parser";
+ "hoodle-publish" = dontDistribute super."hoodle-publish";
+ "hoodle-render" = dontDistribute super."hoodle-render";
+ "hoodle-types" = dontDistribute super."hoodle-types";
+ "hoogle-index" = dontDistribute super."hoogle-index";
+ "hooks-dir" = dontDistribute super."hooks-dir";
+ "hoovie" = dontDistribute super."hoovie";
+ "hopencc" = dontDistribute super."hopencc";
+ "hopencl" = dontDistribute super."hopencl";
+ "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17_1";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hoppy-generator" = dontDistribute super."hoppy-generator";
+ "hoppy-runtime" = dontDistribute super."hoppy-runtime";
+ "hoppy-std" = dontDistribute super."hoppy-std";
+ "hops" = dontDistribute super."hops";
+ "hoq" = dontDistribute super."hoq";
+ "horizon" = dontDistribute super."horizon";
+ "hosc" = dontDistribute super."hosc";
+ "hosc-json" = dontDistribute super."hosc-json";
+ "hosc-utils" = dontDistribute super."hosc-utils";
+ "hosts-server" = dontDistribute super."hosts-server";
+ "hothasktags" = dontDistribute super."hothasktags";
+ "hotswap" = dontDistribute super."hotswap";
+ "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "houseman" = dontDistribute super."houseman";
+ "hp2any-core" = dontDistribute super."hp2any-core";
+ "hp2any-graph" = dontDistribute super."hp2any-graph";
+ "hp2any-manager" = dontDistribute super."hp2any-manager";
+ "hp2html" = dontDistribute super."hp2html";
+ "hp2pretty" = dontDistribute super."hp2pretty";
+ "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";
+ "hpath" = dontDistribute super."hpath";
+ "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";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_1_0";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "hsfacter" = dontDistribute super."hsfacter";
+ "hsfcsh" = dontDistribute super."hsfcsh";
+ "hsfilt" = dontDistribute super."hsfilt";
+ "hsgnutls" = dontDistribute super."hsgnutls";
+ "hsgnutls-yj" = dontDistribute super."hsgnutls-yj";
+ "hsgsom" = dontDistribute super."hsgsom";
+ "hsgtd" = dontDistribute super."hsgtd";
+ "hsharc" = dontDistribute super."hsharc";
+ "hsilop" = dontDistribute super."hsilop";
+ "hsimport" = dontDistribute super."hsimport";
+ "hsini" = dontDistribute super."hsini";
+ "hskeleton" = dontDistribute super."hskeleton";
+ "hslackbuilder" = dontDistribute super."hslackbuilder";
+ "hslibsvm" = dontDistribute super."hslibsvm";
+ "hslinks" = dontDistribute super."hslinks";
+ "hslogger-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "hsnock" = dontDistribute super."hsnock";
+ "hsnoise" = dontDistribute super."hsnoise";
+ "hsns" = dontDistribute super."hsns";
+ "hsnsq" = dontDistribute super."hsnsq";
+ "hsntp" = dontDistribute super."hsntp";
+ "hsoptions" = dontDistribute super."hsoptions";
+ "hsp-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens";
+ "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted";
+ "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty";
+ "hspec-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-slow" = dontDistribute super."hspec-slow";
+ "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter";
+ "hspec-test-framework" = dontDistribute super."hspec-test-framework";
+ "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th";
+ "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox";
+ "hspec-wai" = doDistribute super."hspec-wai_0_6_5";
+ "hspec2" = dontDistribute super."hspec2";
+ "hspr-sh" = dontDistribute super."hspr-sh";
+ "hspread" = dontDistribute super."hspread";
+ "hspresent" = dontDistribute super."hspresent";
+ "hsprocess" = dontDistribute super."hsprocess";
+ "hsql" = dontDistribute super."hsql";
+ "hsql-mysql" = dontDistribute super."hsql-mysql";
+ "hsql-odbc" = dontDistribute super."hsql-odbc";
+ "hsql-postgresql" = dontDistribute super."hsql-postgresql";
+ "hsql-sqlite3" = dontDistribute super."hsql-sqlite3";
+ "hsqml" = dontDistribute super."hsqml";
+ "hsqml-datamodel" = dontDistribute super."hsqml-datamodel";
+ "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl";
+ "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris";
+ "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes";
+ "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples";
+ "hsqml-morris" = dontDistribute super."hsqml-morris";
+ "hsreadability" = dontDistribute super."hsreadability";
+ "hsseccomp" = dontDistribute super."hsseccomp";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hssqlppp-th" = dontDistribute super."hssqlppp-th";
+ "hstats" = dontDistribute super."hstats";
+ "hstest" = dontDistribute super."hstest";
+ "hstidy" = dontDistribute super."hstidy";
+ "hstorchat" = dontDistribute super."hstorchat";
+ "hstradeking" = dontDistribute super."hstradeking";
+ "hstyle" = dontDistribute super."hstyle";
+ "hstzaar" = dontDistribute super."hstzaar";
+ "hsubconvert" = dontDistribute super."hsubconvert";
+ "hsverilog" = dontDistribute super."hsverilog";
+ "hswip" = dontDistribute super."hswip";
+ "hsx" = dontDistribute super."hsx";
+ "hsx-xhtml" = dontDistribute super."hsx-xhtml";
+ "hsyscall" = dontDistribute super."hsyscall";
+ "hszephyr" = dontDistribute super."hszephyr";
+ "htags" = dontDistribute super."htags";
+ "htar" = dontDistribute super."htar";
+ "htiled" = dontDistribute super."htiled";
+ "htime" = dontDistribute super."htime";
+ "html-email-validate" = dontDistribute super."html-email-validate";
+ "html-entities" = dontDistribute super."html-entities";
+ "html-kure" = dontDistribute super."html-kure";
+ "html-minimalist" = dontDistribute super."html-minimalist";
+ "html-parse" = dontDistribute super."html-parse";
+ "html-rules" = dontDistribute super."html-rules";
+ "html-tokenizer" = dontDistribute super."html-tokenizer";
+ "html-truncate" = dontDistribute super."html-truncate";
+ "html2hamlet" = dontDistribute super."html2hamlet";
+ "html5-entity" = dontDistribute super."html5-entity";
+ "htodo" = dontDistribute super."htodo";
+ "htoml" = dontDistribute super."htoml";
+ "htrace" = dontDistribute super."htrace";
+ "hts" = dontDistribute super."hts";
+ "htsn" = dontDistribute super."htsn";
+ "htsn-common" = dontDistribute super."htsn-common";
+ "htsn-import" = dontDistribute super."htsn-import";
+ "http-attoparsec" = dontDistribute super."http-attoparsec";
+ "http-client-auth" = dontDistribute super."http-client-auth";
+ "http-client-conduit" = dontDistribute super."http-client-conduit";
+ "http-client-lens" = dontDistribute super."http-client-lens";
+ "http-client-multipart" = dontDistribute super."http-client-multipart";
+ "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-session" = dontDistribute super."http-client-session";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-dispatch" = dontDistribute super."http-dispatch";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kinder" = dontDistribute super."http-kinder";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-response-decoder" = dontDistribute super."http-response-decoder";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-test" = dontDistribute super."http-test";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = doDistribute super."http2_1_4_5";
+ "https-everywhere-rules" = dontDistribute super."https-everywhere-rules";
+ "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw";
+ "httpspec" = dontDistribute super."httpspec";
+ "htune" = dontDistribute super."htune";
+ "htzaar" = dontDistribute super."htzaar";
+ "hub" = dontDistribute super."hub";
+ "hubigraph" = dontDistribute super."hubigraph";
+ "hubris" = dontDistribute super."hubris";
+ "huckleberry" = dontDistribute super."huckleberry";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
+ "hunit-gui" = dontDistribute super."hunit-gui";
+ "hunit-parsec" = dontDistribute super."hunit-parsec";
+ "hunit-rematch" = dontDistribute super."hunit-rematch";
+ "hunp" = dontDistribute super."hunp";
+ "hunt-searchengine" = dontDistribute super."hunt-searchengine";
+ "hunt-server" = dontDistribute super."hunt-server";
+ "hunt-server-cli" = dontDistribute super."hunt-server-cli";
+ "hurdle" = dontDistribute super."hurdle";
+ "husk-scheme" = dontDistribute super."husk-scheme";
+ "husk-scheme-libs" = dontDistribute super."husk-scheme-libs";
+ "husky" = dontDistribute super."husky";
+ "hutton" = dontDistribute super."hutton";
+ "huttons-razor" = dontDistribute super."huttons-razor";
+ "huzzy" = dontDistribute super."huzzy";
+ "hw-bits" = dontDistribute super."hw-bits";
+ "hw-conduit" = dontDistribute super."hw-conduit";
+ "hw-diagnostics" = dontDistribute super."hw-diagnostics";
+ "hw-json" = dontDistribute super."hw-json";
+ "hw-parser" = dontDistribute super."hw-parser";
+ "hw-prim" = dontDistribute super."hw-prim";
+ "hw-rankselect" = dontDistribute super."hw-rankselect";
+ "hw-succinct" = dontDistribute super."hw-succinct";
+ "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
+ "hws" = dontDistribute super."hws";
+ "hwsl2" = dontDistribute super."hwsl2";
+ "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector";
+ "hwsl2-reducers" = dontDistribute super."hwsl2-reducers";
+ "hx" = dontDistribute super."hx";
+ "hxmppc" = dontDistribute super."hxmppc";
+ "hxournal" = dontDistribute super."hxournal";
+ "hxt-binary" = dontDistribute super."hxt-binary";
+ "hxt-cache" = dontDistribute super."hxt-cache";
+ "hxt-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "hxt-xpath" = dontDistribute super."hxt-xpath";
+ "hxt-xslt" = dontDistribute super."hxt-xslt";
+ "hxthelper" = dontDistribute super."hxthelper";
+ "hxweb" = dontDistribute super."hxweb";
+ "hyahtzee" = dontDistribute super."hyahtzee";
+ "hyakko" = dontDistribute super."hyakko";
+ "hybrid" = dontDistribute super."hybrid";
+ "hydra-hs" = dontDistribute super."hydra-hs";
+ "hydra-print" = dontDistribute super."hydra-print";
+ "hydrogen" = dontDistribute super."hydrogen";
+ "hydrogen-cli" = dontDistribute super."hydrogen-cli";
+ "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args";
+ "hydrogen-data" = dontDistribute super."hydrogen-data";
+ "hydrogen-multimap" = dontDistribute super."hydrogen-multimap";
+ "hydrogen-parsing" = dontDistribute super."hydrogen-parsing";
+ "hydrogen-prelude" = dontDistribute super."hydrogen-prelude";
+ "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec";
+ "hydrogen-syntax" = dontDistribute super."hydrogen-syntax";
+ "hydrogen-util" = dontDistribute super."hydrogen-util";
+ "hydrogen-version" = dontDistribute super."hydrogen-version";
+ "hyena" = dontDistribute super."hyena";
+ "hylogen" = dontDistribute super."hylogen";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hypher" = dontDistribute super."hypher";
+ "hzaif" = dontDistribute super."hzaif";
+ "hzk" = dontDistribute super."hzk";
+ "i18n" = dontDistribute super."i18n";
+ "iCalendar" = dontDistribute super."iCalendar";
+ "iException" = dontDistribute super."iException";
+ "iap-verifier" = dontDistribute super."iap-verifier";
+ "ib-api" = dontDistribute super."ib-api";
+ "iban" = dontDistribute super."iban";
+ "ibus-hs" = dontDistribute super."ibus-hs";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna" = dontDistribute super."idna";
+ "idna2008" = dontDistribute super."idna2008";
+ "idris" = dontDistribute super."idris";
+ "ieee" = dontDistribute super."ieee";
+ "ieee-utils" = dontDistribute super."ieee-utils";
+ "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix";
+ "ieee754-parser" = dontDistribute super."ieee754-parser";
+ "ifcxt" = dontDistribute super."ifcxt";
+ "iff" = dontDistribute super."iff";
+ "ifscs" = dontDistribute super."ifscs";
+ "ig" = doDistribute super."ig_0_6_1";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imap" = dontDistribute super."imap";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
+ "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-logging" = dontDistribute super."implicit-logging";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "impossible" = dontDistribute super."impossible";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "incremental-computing" = dontDistribute super."incremental-computing";
+ "incremental-sat-solver" = dontDistribute super."incremental-sat-solver";
+ "increments" = dontDistribute super."increments";
+ "indentation" = dontDistribute super."indentation";
+ "indentparser" = dontDistribute super."indentparser";
+ "index-core" = dontDistribute super."index-core";
+ "indexed" = dontDistribute super."indexed";
+ "indexed-do-notation" = dontDistribute super."indexed-do-notation";
+ "indexed-extras" = dontDistribute super."indexed-extras";
+ "indexed-free" = dontDistribute super."indexed-free";
+ "indian-language-font-converter" = dontDistribute super."indian-language-font-converter";
+ "indices" = dontDistribute super."indices";
+ "indieweb-algorithms" = dontDistribute super."indieweb-algorithms";
+ "inf-interval" = dontDistribute super."inf-interval";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-java" = dontDistribute super."inline-java";
+ "inquire" = dontDistribute super."inquire";
+ "insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
+ "instant-aeson" = dontDistribute super."instant-aeson";
+ "instant-bytes" = dontDistribute super."instant-bytes";
+ "instant-deepseq" = dontDistribute super."instant-deepseq";
+ "instant-generics" = dontDistribute super."instant-generics";
+ "instant-hashable" = dontDistribute super."instant-hashable";
+ "instant-zipper" = dontDistribute super."instant-zipper";
+ "instinct" = dontDistribute super."instinct";
+ "instrument-chord" = dontDistribute super."instrument-chord";
+ "int-cast" = dontDistribute super."int-cast";
+ "integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
+ "intel-aes" = dontDistribute super."intel-aes";
+ "interchangeable" = dontDistribute super."interchangeable";
+ "interleavableGen" = dontDistribute super."interleavableGen";
+ "interleavableIO" = dontDistribute super."interleavableIO";
+ "interleave" = dontDistribute super."interleave";
+ "interlude" = dontDistribute super."interlude";
+ "interlude-l" = dontDistribute super."interlude-l";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "interruptible" = dontDistribute super."interruptible";
+ "interspersed" = dontDistribute super."interspersed";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invertible" = dontDistribute super."invertible";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-machine" = dontDistribute super."io-machine";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "io-streams-http" = dontDistribute super."io-streams-http";
+ "io-throttle" = dontDistribute super."io-throttle";
+ "ioctl" = dontDistribute super."ioctl";
+ "ioref-stable" = dontDistribute super."ioref-stable";
+ "iothread" = dontDistribute super."iothread";
+ "iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = doDistribute super."irc-client_0_2_6_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";
+ "irc-fun-messages" = dontDistribute super."irc-fun-messages";
+ "irc-fun-types" = dontDistribute super."irc-fun-types";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iridium" = dontDistribute super."iridium";
+ "iron-mq" = dontDistribute super."iron-mq";
+ "ironforge" = dontDistribute super."ironforge";
+ "is" = dontDistribute super."is";
+ "isdicom" = dontDistribute super."isdicom";
+ "isevaluated" = dontDistribute super."isevaluated";
+ "isiz" = dontDistribute super."isiz";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "isohunt" = dontDistribute super."isohunt";
+ "ispositive" = dontDistribute super."ispositive";
+ "itanium-abi" = dontDistribute super."itanium-abi";
+ "iter-stats" = dontDistribute super."iter-stats";
+ "iterIO" = dontDistribute super."iterIO";
+ "iteratee" = dontDistribute super."iteratee";
+ "iteratee-compress" = dontDistribute super."iteratee-compress";
+ "iteratee-mtl" = dontDistribute super."iteratee-mtl";
+ "iteratee-parsec" = dontDistribute super."iteratee-parsec";
+ "iteratee-stm" = dontDistribute super."iteratee-stm";
+ "iterio-server" = dontDistribute super."iterio-server";
+ "ivar-simple" = dontDistribute super."ivar-simple";
+ "ivor" = dontDistribute super."ivor";
+ "ivory" = dontDistribute super."ivory";
+ "ivory-artifact" = dontDistribute super."ivory-artifact";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-eval" = dontDistribute super."ivory-eval";
+ "ivory-examples" = dontDistribute super."ivory-examples";
+ "ivory-hw" = dontDistribute super."ivory-hw";
+ "ivory-opts" = dontDistribute super."ivory-opts";
+ "ivory-quickcheck" = dontDistribute super."ivory-quickcheck";
+ "ivory-serialize" = dontDistribute super."ivory-serialize";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "iyql" = dontDistribute super."iyql";
+ "j2hs" = dontDistribute super."j2hs";
+ "ja-base-extra" = dontDistribute super."ja-base-extra";
+ "jack" = dontDistribute super."jack";
+ "jack-bindings" = dontDistribute super."jack-bindings";
+ "jackminimix" = dontDistribute super."jackminimix";
+ "jacobi-roots" = dontDistribute super."jacobi-roots";
+ "jail" = dontDistribute super."jail";
+ "jailbreak-cabal" = dontDistribute super."jailbreak-cabal";
+ "jalaali" = dontDistribute super."jalaali";
+ "jalla" = dontDistribute super."jalla";
+ "jammittools" = dontDistribute super."jammittools";
+ "jarfind" = dontDistribute super."jarfind";
+ "java-bridge" = dontDistribute super."java-bridge";
+ "java-bridge-extras" = dontDistribute super."java-bridge-extras";
+ "java-character" = dontDistribute super."java-character";
+ "java-poker" = dontDistribute super."java-poker";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javaclass" = dontDistribute super."javaclass";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-ast" = dontDistribute super."json-ast";
+ "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder";
+ "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck";
+ "json-b" = dontDistribute super."json-b";
+ "json-encoder" = dontDistribute super."json-encoder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
+ "json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
+ "json-python" = dontDistribute super."json-python";
+ "json-qq" = dontDistribute super."json-qq";
+ "json-rpc" = dontDistribute super."json-rpc";
+ "json-rpc-client" = dontDistribute super."json-rpc-client";
+ "json-rpc-server" = dontDistribute super."json-rpc-server";
+ "json-sop" = dontDistribute super."json-sop";
+ "json-state" = dontDistribute super."json-state";
+ "json-stream" = dontDistribute super."json-stream";
+ "json-togo" = dontDistribute super."json-togo";
+ "json-tools" = dontDistribute super."json-tools";
+ "json-types" = dontDistribute super."json-types";
+ "json2" = dontDistribute super."json2";
+ "json2-hdbc" = dontDistribute super."json2-hdbc";
+ "json2-types" = dontDistribute super."json2-types";
+ "json2yaml" = dontDistribute super."json2yaml";
+ "jsonresume" = dontDistribute super."jsonresume";
+ "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit";
+ "jsonschema-gen" = dontDistribute super."jsonschema-gen";
+ "jsonsql" = dontDistribute super."jsonsql";
+ "jsontsv" = dontDistribute super."jsontsv";
+ "jspath" = dontDistribute super."jspath";
+ "juandelacosa" = dontDistribute super."juandelacosa";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jump" = dontDistribute super."jump";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = doDistribute super."jwt_0_6_0";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kanji" = dontDistribute super."kanji";
+ "kansas-lava" = dontDistribute super."kansas-lava";
+ "kansas-lava-cores" = dontDistribute super."kansas-lava-cores";
+ "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio";
+ "kansas-lava-shake" = dontDistribute super."kansas-lava-shake";
+ "karakuri" = dontDistribute super."karakuri";
+ "karver" = dontDistribute super."karver";
+ "katip" = dontDistribute super."katip";
+ "katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
+ "katt" = dontDistribute super."katt";
+ "kazura-queue" = dontDistribute super."kazura-queue";
+ "kbq-gu" = dontDistribute super."kbq-gu";
+ "kd-tree" = dontDistribute super."kd-tree";
+ "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra";
+ "keera-callbacks" = dontDistribute super."keera-callbacks";
+ "keera-hails-i18n" = dontDistribute super."keera-hails-i18n";
+ "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller";
+ "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk";
+ "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel";
+ "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel";
+ "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config";
+ "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk";
+ "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view";
+ "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk";
+ "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs";
+ "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk";
+ "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network";
+ "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling";
+ "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx";
+ "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa";
+ "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = doDistribute super."keycode_0_1_1";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "keystore" = dontDistribute super."keystore";
+ "keyvaluehash" = dontDistribute super."keyvaluehash";
+ "keyword-args" = dontDistribute super."keyword-args";
+ "kibro" = dontDistribute super."kibro";
+ "kicad-data" = dontDistribute super."kicad-data";
+ "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser";
+ "kickchan" = dontDistribute super."kickchan";
+ "kif-parser" = dontDistribute super."kif-parser";
+ "kinds" = dontDistribute super."kinds";
+ "kit" = dontDistribute super."kit";
+ "kmeans-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate";
+ "kyotocabinet" = dontDistribute super."kyotocabinet";
+ "l-bfgs-b" = dontDistribute super."l-bfgs-b";
+ "labeled-graph" = dontDistribute super."labeled-graph";
+ "labeled-tree" = dontDistribute super."labeled-tree";
+ "laborantin-hs" = dontDistribute super."laborantin-hs";
+ "labyrinth" = dontDistribute super."labyrinth";
+ "labyrinth-server" = dontDistribute super."labyrinth-server";
+ "lackey" = dontDistribute super."lackey";
+ "lagrangian" = dontDistribute super."lagrangian";
+ "laika" = dontDistribute super."laika";
+ "lambda-ast" = dontDistribute super."lambda-ast";
+ "lambda-bridge" = dontDistribute super."lambda-bridge";
+ "lambda-canvas" = dontDistribute super."lambda-canvas";
+ "lambda-devs" = dontDistribute super."lambda-devs";
+ "lambda-options" = dontDistribute super."lambda-options";
+ "lambda-placeholders" = dontDistribute super."lambda-placeholders";
+ "lambda-toolbox" = dontDistribute super."lambda-toolbox";
+ "lambda2js" = dontDistribute super."lambda2js";
+ "lambdaBase" = dontDistribute super."lambdaBase";
+ "lambdaFeed" = dontDistribute super."lambdaFeed";
+ "lambdaLit" = dontDistribute super."lambdaLit";
+ "lambdabot" = dontDistribute super."lambdabot";
+ "lambdabot-core" = dontDistribute super."lambdabot-core";
+ "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins";
+ "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins";
+ "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins";
+ "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins";
+ "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins";
+ "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins";
+ "lambdabot-trusted" = dontDistribute super."lambdabot-trusted";
+ "lambdabot-utils" = dontDistribute super."lambdabot-utils";
+ "lambdacat" = dontDistribute super."lambdacat";
+ "lambdacms-core" = dontDistribute super."lambdacms-core";
+ "lambdacms-media" = dontDistribute super."lambdacms-media";
+ "lambdacube" = dontDistribute super."lambdacube";
+ "lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
+ "lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
+ "lambdacube-core" = dontDistribute super."lambdacube-core";
+ "lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
+ "lambdacube-engine" = dontDistribute super."lambdacube-engine";
+ "lambdacube-examples" = dontDistribute super."lambdacube-examples";
+ "lambdacube-gl" = dontDistribute super."lambdacube-gl";
+ "lambdacube-ir" = dontDistribute super."lambdacube-ir";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdaya-bus" = dontDistribute super."lambdaya-bus";
+ "lambdiff" = dontDistribute super."lambdiff";
+ "lame-tester" = dontDistribute super."lame-tester";
+ "language-asn1" = dontDistribute super."language-asn1";
+ "language-bash" = dontDistribute super."language-bash";
+ "language-boogie" = dontDistribute super."language-boogie";
+ "language-c" = doDistribute super."language-c_0_4_7";
+ "language-c-comments" = dontDistribute super."language-c-comments";
+ "language-c-inline" = dontDistribute super."language-c-inline";
+ "language-c-quote" = dontDistribute super."language-c-quote";
+ "language-cil" = dontDistribute super."language-cil";
+ "language-css" = dontDistribute super."language-css";
+ "language-dot" = dontDistribute super."language-dot";
+ "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis";
+ "language-eiffel" = dontDistribute super."language-eiffel";
+ "language-fortran" = dontDistribute super."language-fortran";
+ "language-gcl" = dontDistribute super."language-gcl";
+ "language-go" = dontDistribute super."language-go";
+ "language-guess" = dontDistribute super."language-guess";
+ "language-java-classfile" = dontDistribute super."language-java-classfile";
+ "language-javascript" = doDistribute super."language-javascript_0_5_14_7";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "language-objc" = dontDistribute super."language-objc";
+ "language-openscad" = dontDistribute super."language-openscad";
+ "language-pig" = dontDistribute super."language-pig";
+ "language-puppet" = dontDistribute super."language-puppet";
+ "language-python" = dontDistribute super."language-python";
+ "language-python-colour" = dontDistribute super."language-python-colour";
+ "language-python-test" = dontDistribute super."language-python-test";
+ "language-qux" = dontDistribute super."language-qux";
+ "language-sh" = dontDistribute super."language-sh";
+ "language-slice" = dontDistribute super."language-slice";
+ "language-spelling" = dontDistribute super."language-spelling";
+ "language-sqlite" = dontDistribute super."language-sqlite";
+ "language-thrift" = doDistribute super."language-thrift_0_7_0_1";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "language-webidl" = dontDistribute super."language-webidl";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "launchpad-control" = dontDistribute super."launchpad-control";
+ "lax" = dontDistribute super."lax";
+ "layers" = dontDistribute super."layers";
+ "layers-game" = dontDistribute super."layers-game";
+ "layout" = dontDistribute super."layout";
+ "layout-bootstrap" = dontDistribute super."layout-bootstrap";
+ "lazy-io" = dontDistribute super."lazy-io";
+ "lazyarray" = dontDistribute super."lazyarray";
+ "lazyio" = dontDistribute super."lazyio";
+ "lazysmallcheck" = dontDistribute super."lazysmallcheck";
+ "lazysplines" = dontDistribute super."lazysplines";
+ "lbfgs" = dontDistribute super."lbfgs";
+ "lcs" = dontDistribute super."lcs";
+ "lda" = dontDistribute super."lda";
+ "ldap-client" = dontDistribute super."ldap-client";
+ "ldif" = dontDistribute super."ldif";
+ "leaf" = dontDistribute super."leaf";
+ "leaky" = dontDistribute super."leaky";
+ "leancheck" = dontDistribute super."leancheck";
+ "leankit-api" = dontDistribute super."leankit-api";
+ "leapseconds-announced" = dontDistribute super."leapseconds-announced";
+ "learn" = dontDistribute super."learn";
+ "learn-physics" = dontDistribute super."learn-physics";
+ "learn-physics-examples" = dontDistribute super."learn-physics-examples";
+ "learning-hmm" = dontDistribute super."learning-hmm";
+ "leetify" = dontDistribute super."leetify";
+ "leksah" = dontDistribute super."leksah";
+ "leksah-server" = dontDistribute super."leksah-server";
+ "lendingclub" = dontDistribute super."lendingclub";
+ "lens-datetime" = dontDistribute super."lens-datetime";
+ "lens-prelude" = dontDistribute super."lens-prelude";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "lens-sop" = dontDistribute super."lens-sop";
+ "lens-text-encoding" = dontDistribute super."lens-text-encoding";
+ "lens-time" = dontDistribute super."lens-time";
+ "lens-tutorial" = dontDistribute super."lens-tutorial";
+ "lens-utils" = dontDistribute super."lens-utils";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lenz" = dontDistribute super."lenz";
+ "lenz-template" = dontDistribute super."lenz-template";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lfst" = dontDistribute super."lfst";
+ "lgtk" = dontDistribute super."lgtk";
+ "lha" = dontDistribute super."lha";
+ "lhae" = dontDistribute super."lhae";
+ "lhc" = dontDistribute super."lhc";
+ "lhe" = dontDistribute super."lhe";
+ "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl";
+ "lhs2html" = dontDistribute super."lhs2html";
+ "lhslatex" = dontDistribute super."lhslatex";
+ "libGenI" = dontDistribute super."libGenI";
+ "libarchive-conduit" = dontDistribute super."libarchive-conduit";
+ "libconfig" = dontDistribute super."libconfig";
+ "libcspm" = dontDistribute super."libcspm";
+ "libexpect" = dontDistribute super."libexpect";
+ "libffi" = dontDistribute super."libffi";
+ "libgraph" = dontDistribute super."libgraph";
+ "libhbb" = dontDistribute super."libhbb";
+ "libjenkins" = dontDistribute super."libjenkins";
+ "liblastfm" = dontDistribute super."liblastfm";
+ "liblinear-enumerator" = dontDistribute super."liblinear-enumerator";
+ "libltdl" = dontDistribute super."libltdl";
+ "libmpd" = dontDistribute super."libmpd";
+ "libnvvm" = dontDistribute super."libnvvm";
+ "liboleg" = dontDistribute super."liboleg";
+ "libpafe" = dontDistribute super."libpafe";
+ "libpq" = dontDistribute super."libpq";
+ "librandomorg" = dontDistribute super."librandomorg";
+ "libravatar" = dontDistribute super."libravatar";
+ "libroman" = dontDistribute super."libroman";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxls" = dontDistribute super."libxls";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
+ "lifted-threads" = dontDistribute super."lifted-threads";
+ "lifter" = dontDistribute super."lifter";
+ "ligature" = dontDistribute super."ligature";
+ "ligd" = dontDistribute super."ligd";
+ "lighttpd-conf" = dontDistribute super."lighttpd-conf";
+ "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq";
+ "lilypond" = dontDistribute super."lilypond";
+ "limp" = dontDistribute super."limp";
+ "limp-cbc" = dontDistribute super."limp-cbc";
+ "lin-alg" = dontDistribute super."lin-alg";
+ "linda" = dontDistribute super."linda";
+ "lindenmayer" = dontDistribute super."lindenmayer";
+ "line-break" = dontDistribute super."line-break";
+ "line2pdf" = dontDistribute super."line2pdf";
+ "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas";
+ "linear-circuit" = dontDistribute super."linear-circuit";
+ "linear-grammar" = dontDistribute super."linear-grammar";
+ "linear-maps" = dontDistribute super."linear-maps";
+ "linear-opengl" = dontDistribute super."linear-opengl";
+ "linear-vect" = dontDistribute super."linear-vect";
+ "linearEqSolver" = dontDistribute super."linearEqSolver";
+ "linearscan" = dontDistribute super."linearscan";
+ "linearscan-hoopl" = dontDistribute super."linearscan-hoopl";
+ "linebreak" = dontDistribute super."linebreak";
+ "linguistic-ordinals" = dontDistribute super."linguistic-ordinals";
+ "link-relations" = dontDistribute super."link-relations";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linode" = dontDistribute super."linode";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "linux-perf" = dontDistribute super."linux-perf";
+ "linux-ptrace" = dontDistribute super."linux-ptrace";
+ "linux-xattr" = dontDistribute super."linux-xattr";
+ "linx-gateway" = dontDistribute super."linx-gateway";
+ "lio" = dontDistribute super."lio";
+ "lio-eci11" = dontDistribute super."lio-eci11";
+ "lio-fs" = dontDistribute super."lio-fs";
+ "lio-simple" = dontDistribute super."lio-simple";
+ "lipsum-gen" = dontDistribute super."lipsum-gen";
+ "liquid-fixpoint" = dontDistribute super."liquid-fixpoint";
+ "liquidhaskell" = dontDistribute super."liquidhaskell";
+ "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
+ "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
+ "list-t-attoparsec" = dontDistribute super."list-t-attoparsec";
+ "list-t-html-parser" = dontDistribute super."list-t-html-parser";
+ "list-t-http-client" = dontDistribute super."list-t-http-client";
+ "list-t-libcurl" = dontDistribute super."list-t-libcurl";
+ "list-t-text" = dontDistribute super."list-t-text";
+ "list-tries" = dontDistribute super."list-tries";
+ "list-zip-def" = dontDistribute super."list-zip-def";
+ "listlike-instances" = dontDistribute super."listlike-instances";
+ "lists" = dontDistribute super."lists";
+ "listsafe" = dontDistribute super."listsafe";
+ "lit" = dontDistribute super."lit";
+ "literals" = dontDistribute super."literals";
+ "live-sequencer" = dontDistribute super."live-sequencer";
+ "ll-picosat" = dontDistribute super."ll-picosat";
+ "llrbtree" = dontDistribute super."llrbtree";
+ "llsd" = dontDistribute super."llsd";
+ "llvm" = dontDistribute super."llvm";
+ "llvm-analysis" = dontDistribute super."llvm-analysis";
+ "llvm-base" = dontDistribute super."llvm-base";
+ "llvm-base-types" = dontDistribute super."llvm-base-types";
+ "llvm-base-util" = dontDistribute super."llvm-base-util";
+ "llvm-data-interop" = dontDistribute super."llvm-data-interop";
+ "llvm-extra" = dontDistribute super."llvm-extra";
+ "llvm-ffi" = dontDistribute super."llvm-ffi";
+ "llvm-general" = dontDistribute super."llvm-general";
+ "llvm-general-pure" = dontDistribute super."llvm-general-pure";
+ "llvm-general-quote" = dontDistribute super."llvm-general-quote";
+ "llvm-ht" = dontDistribute super."llvm-ht";
+ "llvm-pkg-config" = dontDistribute super."llvm-pkg-config";
+ "llvm-pretty" = dontDistribute super."llvm-pretty";
+ "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser";
+ "llvm-tf" = dontDistribute super."llvm-tf";
+ "llvm-tools" = dontDistribute super."llvm-tools";
+ "lmdb" = dontDistribute super."lmdb";
+ "lmonad" = dontDistribute super."lmonad";
+ "lmonad-yesod" = dontDistribute super."lmonad-yesod";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located" = dontDistribute super."located";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "locked-poll" = dontDistribute super."locked-poll";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = dontDistribute super."logfloat";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-effect" = dontDistribute super."logging-effect";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logict-state" = dontDistribute super."logict-state";
+ "logplex-parse" = dontDistribute super."logplex-parse";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "lol" = dontDistribute super."lol";
+ "lol-apps" = dontDistribute super."lol-apps";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "loop-effin" = dontDistribute super."loop-effin";
+ "loop-while" = dontDistribute super."loop-while";
+ "loops" = dontDistribute super."loops";
+ "loopy" = dontDistribute super."loopy";
+ "lord" = dontDistribute super."lord";
+ "lorem" = dontDistribute super."lorem";
+ "loris" = dontDistribute super."loris";
+ "loshadka" = dontDistribute super."loshadka";
+ "lostcities" = dontDistribute super."lostcities";
+ "lowgl" = dontDistribute super."lowgl";
+ "lp-diagrams" = dontDistribute super."lp-diagrams";
+ "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luis-client" = dontDistribute super."luis-client";
+ "luka" = dontDistribute super."luka";
+ "luminance" = doDistribute super."luminance_0_9_1_2";
+ "luminance-samples" = doDistribute super."luminance-samples_0_9_1";
+ "lushtags" = dontDistribute super."lushtags";
+ "luthor" = dontDistribute super."luthor";
+ "lvish" = dontDistribute super."lvish";
+ "lvmlib" = dontDistribute super."lvmlib";
+ "lvmrun" = dontDistribute super."lvmrun";
+ "lxc" = dontDistribute super."lxc";
+ "lye" = dontDistribute super."lye";
+ "lz4" = dontDistribute super."lz4";
+ "lzma" = dontDistribute super."lzma";
+ "lzma-clib" = dontDistribute super."lzma-clib";
+ "lzma-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "macbeth-lib" = dontDistribute super."macbeth-lib";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines-binary" = dontDistribute super."machines-binary";
+ "machines-zlib" = dontDistribute super."machines-zlib";
+ "macho" = dontDistribute super."macho";
+ "maclight" = dontDistribute super."maclight";
+ "macosx-make-standalone" = dontDistribute super."macosx-make-standalone";
+ "mage" = dontDistribute super."mage";
+ "magico" = dontDistribute super."magico";
+ "magma" = dontDistribute super."magma";
+ "mahoro" = dontDistribute super."mahoro";
+ "maid" = dontDistribute super."maid";
+ "mailbox-count" = dontDistribute super."mailbox-count";
+ "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe";
+ "mailgun" = dontDistribute super."mailgun";
+ "mainland-pretty" = dontDistribute super."mainland-pretty";
+ "majordomo" = dontDistribute super."majordomo";
+ "majority" = dontDistribute super."majority";
+ "make-hard-links" = dontDistribute super."make-hard-links";
+ "make-package" = dontDistribute super."make-package";
+ "makedo" = dontDistribute super."makedo";
+ "manatee" = dontDistribute super."manatee";
+ "manatee-all" = dontDistribute super."manatee-all";
+ "manatee-anything" = dontDistribute super."manatee-anything";
+ "manatee-browser" = dontDistribute super."manatee-browser";
+ "manatee-core" = dontDistribute super."manatee-core";
+ "manatee-curl" = dontDistribute super."manatee-curl";
+ "manatee-editor" = dontDistribute super."manatee-editor";
+ "manatee-filemanager" = dontDistribute super."manatee-filemanager";
+ "manatee-imageviewer" = dontDistribute super."manatee-imageviewer";
+ "manatee-ircclient" = dontDistribute super."manatee-ircclient";
+ "manatee-mplayer" = dontDistribute super."manatee-mplayer";
+ "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer";
+ "manatee-processmanager" = dontDistribute super."manatee-processmanager";
+ "manatee-reader" = dontDistribute super."manatee-reader";
+ "manatee-template" = dontDistribute super."manatee-template";
+ "manatee-terminal" = dontDistribute super."manatee-terminal";
+ "manatee-welcome" = dontDistribute super."manatee-welcome";
+ "mancala" = dontDistribute super."mancala";
+ "mandulia" = dontDistribute super."mandulia";
+ "manifold-random" = dontDistribute super."manifold-random";
+ "manifolds" = dontDistribute super."manifolds";
+ "map-exts" = dontDistribute super."map-exts";
+ "mappy" = dontDistribute super."mappy";
+ "marionetta" = dontDistribute super."marionetta";
+ "markdown-kate" = dontDistribute super."markdown-kate";
+ "markdown-pap" = dontDistribute super."markdown-pap";
+ "markdown2svg" = dontDistribute super."markdown2svg";
+ "marked-pretty" = dontDistribute super."marked-pretty";
+ "markov" = dontDistribute super."markov";
+ "markov-chain" = dontDistribute super."markov-chain";
+ "markov-processes" = dontDistribute super."markov-processes";
+ "markup-preview" = dontDistribute super."markup-preview";
+ "marmalade-upload" = dontDistribute super."marmalade-upload";
+ "marquise" = dontDistribute super."marquise";
+ "marxup" = dontDistribute super."marxup";
+ "masakazu-bot" = dontDistribute super."masakazu-bot";
+ "mastermind" = dontDistribute super."mastermind";
+ "matcher" = dontDistribute super."matcher";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathista" = dontDistribute super."mathista";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "matrix-market" = dontDistribute super."matrix-market";
+ "matrix-market-pure" = dontDistribute super."matrix-market-pure";
+ "matsuri" = dontDistribute super."matsuri";
+ "maude" = dontDistribute super."maude";
+ "maxent" = dontDistribute super."maxent";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "mbox-tools" = dontDistribute super."mbox-tools";
+ "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples";
+ "mcmc-samplers" = dontDistribute super."mcmc-samplers";
+ "mcmc-synthesis" = dontDistribute super."mcmc-synthesis";
+ "mcpi" = dontDistribute super."mcpi";
+ "mdapi" = dontDistribute super."mdapi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mdp" = dontDistribute super."mdp";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "megaparsec" = doDistribute super."megaparsec_4_3_0";
+ "meldable-heap" = dontDistribute super."meldable-heap";
+ "melody" = dontDistribute super."melody";
+ "memcache" = dontDistribute super."memcache";
+ "memcache-conduit" = dontDistribute super."memcache-conduit";
+ "memcache-haskell" = dontDistribute super."memcache-haskell";
+ "memcached" = dontDistribute super."memcached";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memory" = doDistribute super."memory_0_11";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "messente" = dontDistribute super."messente";
+ "meta-misc" = dontDistribute super."meta-misc";
+ "meta-par" = dontDistribute super."meta-par";
+ "meta-par-accelerate" = dontDistribute super."meta-par-accelerate";
+ "metadata" = dontDistribute super."metadata";
+ "metamorphic" = dontDistribute super."metamorphic";
+ "metaplug" = dontDistribute super."metaplug";
+ "metric" = dontDistribute super."metric";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mezzolens" = dontDistribute super."mezzolens";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = doDistribute super."microlens_0_4_2_1";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = doDistribute super."microlens-ghc_0_4_2_1";
+ "microlens-platform" = doDistribute super."microlens-platform_0_2_3_1";
+ "microlens-th" = doDistribute super."microlens-th_0_3_0_2";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midair" = dontDistribute super."midair";
+ "midi" = dontDistribute super."midi";
+ "midi-alsa" = dontDistribute super."midi-alsa";
+ "midi-music-box" = dontDistribute super."midi-music-box";
+ "midi-util" = dontDistribute super."midi-util";
+ "midimory" = dontDistribute super."midimory";
+ "midisurface" = dontDistribute super."midisurface";
+ "mighttpd" = dontDistribute super."mighttpd";
+ "mighttpd2" = dontDistribute super."mighttpd2";
+ "mikmod" = dontDistribute super."mikmod";
+ "miku" = dontDistribute super."miku";
+ "milena" = dontDistribute super."milena";
+ "mime" = dontDistribute super."mime";
+ "mime-directory" = dontDistribute super."mime-directory";
+ "mime-string" = dontDistribute super."mime-string";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minilens" = dontDistribute super."minilens";
+ "minimal-configuration" = dontDistribute super."minimal-configuration";
+ "minimorph" = dontDistribute super."minimorph";
+ "minimung" = dontDistribute super."minimung";
+ "minions" = dontDistribute super."minions";
+ "minioperational" = dontDistribute super."minioperational";
+ "miniplex" = dontDistribute super."miniplex";
+ "minirotate" = dontDistribute super."minirotate";
+ "minisat" = dontDistribute super."minisat";
+ "ministg" = dontDistribute super."ministg";
+ "miniutter" = dontDistribute super."miniutter";
+ "minst-idx" = dontDistribute super."minst-idx";
+ "mirror-tweet" = dontDistribute super."mirror-tweet";
+ "missing-py2" = dontDistribute super."missing-py2";
+ "mix-arrows" = dontDistribute super."mix-arrows";
+ "mixed-strategies" = dontDistribute super."mixed-strategies";
+ "mkbndl" = dontDistribute super."mkbndl";
+ "mkcabal" = dontDistribute super."mkcabal";
+ "ml-w" = dontDistribute super."ml-w";
+ "mlist" = dontDistribute super."mlist";
+ "mmtl" = dontDistribute super."mmtl";
+ "mmtl-base" = dontDistribute super."mmtl-base";
+ "mnist-idx" = dontDistribute super."mnist-idx";
+ "moan" = dontDistribute super."moan";
+ "modbus-tcp" = dontDistribute super."modbus-tcp";
+ "modelicaparser" = dontDistribute super."modelicaparser";
+ "modsplit" = dontDistribute super."modsplit";
+ "modular-arithmetic" = dontDistribute super."modular-arithmetic";
+ "modular-prelude" = dontDistribute super."modular-prelude";
+ "modular-prelude-classy" = dontDistribute super."modular-prelude-classy";
+ "module-management" = dontDistribute super."module-management";
+ "modulespection" = dontDistribute super."modulespection";
+ "modulo" = dontDistribute super."modulo";
+ "moe" = dontDistribute super."moe";
+ "mohws" = dontDistribute super."mohws";
+ "monad-abort-fd" = dontDistribute super."monad-abort-fd";
+ "monad-atom" = dontDistribute super."monad-atom";
+ "monad-atom-simple" = dontDistribute super."monad-atom-simple";
+ "monad-bool" = dontDistribute super."monad-bool";
+ "monad-classes" = dontDistribute super."monad-classes";
+ "monad-codec" = dontDistribute super."monad-codec";
+ "monad-connect" = dontDistribute super."monad-connect";
+ "monad-dijkstra" = dontDistribute super."monad-dijkstra";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-hash" = dontDistribute super."monad-hash";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-log" = dontDistribute super."monad-log";
+ "monad-loops-stm" = dontDistribute super."monad-loops-stm";
+ "monad-lrs" = dontDistribute super."monad-lrs";
+ "monad-memo" = dontDistribute super."monad-memo";
+ "monad-mersenne-random" = dontDistribute super."monad-mersenne-random";
+ "monad-open" = dontDistribute super."monad-open";
+ "monad-ox" = dontDistribute super."monad-ox";
+ "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
+ "monad-param" = dontDistribute super."monad-param";
+ "monad-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-ste" = dontDistribute super."monad-ste";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = doDistribute super."monad-time_0_1";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = doDistribute super."monad-unlift_0_1_2_0";
+ "monad-unlift-ref" = dontDistribute super."monad-unlift-ref";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "monadLib-compose" = dontDistribute super."monadLib-compose";
+ "monadacme" = dontDistribute super."monadacme";
+ "monadbi" = dontDistribute super."monadbi";
+ "monadfibre" = dontDistribute super."monadfibre";
+ "monadiccp" = dontDistribute super."monadiccp";
+ "monadiccp-gecode" = dontDistribute super."monadiccp-gecode";
+ "monadio-unwrappable" = dontDistribute super."monadio-unwrappable";
+ "monadlist" = dontDistribute super."monadlist";
+ "monadloc-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mondo" = dontDistribute super."mondo";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "monoid-absorbing" = dontDistribute super."monoid-absorbing";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "monoidplus" = dontDistribute super."monoidplus";
+ "monoids" = dontDistribute super."monoids";
+ "monomorphic" = dontDistribute super."monomorphic";
+ "montage" = dontDistribute super."montage";
+ "montage-client" = dontDistribute super."montage-client";
+ "monte-carlo" = dontDistribute super."monte-carlo";
+ "moo" = dontDistribute super."moo";
+ "moonshine" = dontDistribute super."moonshine";
+ "morfette" = dontDistribute super."morfette";
+ "morfeusz" = dontDistribute super."morfeusz";
+ "morte" = doDistribute super."morte_1_4_2";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mpris" = dontDistribute super."mpris";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "mrm" = dontDistribute super."mrm";
+ "ms" = dontDistribute super."ms";
+ "msgpack" = dontDistribute super."msgpack";
+ "msgpack-aeson" = dontDistribute super."msgpack-aeson";
+ "msgpack-idl" = dontDistribute super."msgpack-idl";
+ "msgpack-rpc" = dontDistribute super."msgpack-rpc";
+ "msh" = dontDistribute super."msh";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlparse" = dontDistribute super."mtlparse";
+ "mtlx" = dontDistribute super."mtlx";
+ "mtp" = dontDistribute super."mtp";
+ "mtree" = dontDistribute super."mtree";
+ "mucipher" = dontDistribute super."mucipher";
+ "mudbath" = dontDistribute super."mudbath";
+ "muesli" = dontDistribute super."muesli";
+ "mueval" = dontDistribute super."mueval";
+ "mulang" = dontDistribute super."mulang";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiaddr" = dontDistribute super."multiaddr";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "multiplate-simplified" = dontDistribute super."multiplate-simplified";
+ "multiplicity" = dontDistribute super."multiplicity";
+ "multirec" = dontDistribute super."multirec";
+ "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver";
+ "multirec-binary" = dontDistribute super."multirec-binary";
+ "multiset-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur" = dontDistribute super."murmur";
+ "murmur3" = dontDistribute super."murmur3";
+ "murmurhash3" = dontDistribute super."murmurhash3";
+ "music-articulation" = dontDistribute super."music-articulation";
+ "music-diatonic" = dontDistribute super."music-diatonic";
+ "music-dynamics" = dontDistribute super."music-dynamics";
+ "music-dynamics-literal" = dontDistribute super."music-dynamics-literal";
+ "music-graphics" = dontDistribute super."music-graphics";
+ "music-parts" = dontDistribute super."music-parts";
+ "music-pitch" = dontDistribute super."music-pitch";
+ "music-pitch-literal" = dontDistribute super."music-pitch-literal";
+ "music-preludes" = dontDistribute super."music-preludes";
+ "music-score" = dontDistribute super."music-score";
+ "music-sibelius" = dontDistribute super."music-sibelius";
+ "music-suite" = dontDistribute super."music-suite";
+ "music-util" = dontDistribute super."music-util";
+ "musicbrainz-email" = dontDistribute super."musicbrainz-email";
+ "musicxml" = dontDistribute super."musicxml";
+ "musicxml2" = dontDistribute super."musicxml2";
+ "mustache-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "mutable-iter" = dontDistribute super."mutable-iter";
+ "mute-unmute" = dontDistribute super."mute-unmute";
+ "mvc" = dontDistribute super."mvc";
+ "mvc-updates" = dontDistribute super."mvc-updates";
+ "mvclient" = dontDistribute super."mvclient";
+ "mwc-probability" = doDistribute super."mwc-probability_1_0_3";
+ "mwc-random-monad" = dontDistribute super."mwc-random-monad";
+ "myTestlll" = dontDistribute super."myTestlll";
+ "mybitcoin-sci" = dontDistribute super."mybitcoin-sci";
+ "myo" = dontDistribute super."myo";
+ "mysnapsession" = dontDistribute super."mysnapsession";
+ "mysnapsession-example" = dontDistribute super."mysnapsession-example";
+ "mysql-effect" = dontDistribute super."mysql-effect";
+ "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi";
+ "mysql-simple-typed" = dontDistribute super."mysql-simple-typed";
+ "mzv" = dontDistribute super."mzv";
+ "n-m" = dontDistribute super."n-m";
+ "nagios-perfdata" = dontDistribute super."nagios-perfdata";
+ "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg";
+ "named-formlet" = dontDistribute super."named-formlet";
+ "named-lock" = dontDistribute super."named-lock";
+ "named-records" = dontDistribute super."named-records";
+ "namelist" = dontDistribute super."namelist";
+ "names" = dontDistribute super."names";
+ "names-th" = dontDistribute super."names-th";
+ "nano-cryptr" = dontDistribute super."nano-cryptr";
+ "nano-erl" = dontDistribute super."nano-erl";
+ "nano-hmac" = dontDistribute super."nano-hmac";
+ "nano-md5" = dontDistribute super."nano-md5";
+ "nanoAgda" = dontDistribute super."nanoAgda";
+ "nanocurses" = dontDistribute super."nanocurses";
+ "nanomsg" = dontDistribute super."nanomsg";
+ "nanomsg-haskell" = dontDistribute super."nanomsg-haskell";
+ "nanoparsec" = dontDistribute super."nanoparsec";
+ "nanovg" = dontDistribute super."nanovg";
+ "nanq" = dontDistribute super."nanq";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "native" = dontDistribute super."native";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "natural-transformation" = dontDistribute super."natural-transformation";
+ "naturalcomp" = dontDistribute super."naturalcomp";
+ "naturals" = dontDistribute super."naturals";
+ "naver-translate" = dontDistribute super."naver-translate";
+ "nbt" = dontDistribute super."nbt";
+ "nc-indicators" = dontDistribute super."nc-indicators";
+ "ncurses" = dontDistribute super."ncurses";
+ "neat" = dontDistribute super."neat";
+ "needle" = dontDistribute super."needle";
+ "neet" = dontDistribute super."neet";
+ "nehe-tuts" = dontDistribute super."nehe-tuts";
+ "neil" = dontDistribute super."neil";
+ "neither" = dontDistribute super."neither";
+ "nemesis" = dontDistribute super."nemesis";
+ "nemesis-titan" = dontDistribute super."nemesis-titan";
+ "nerf" = dontDistribute super."nerf";
+ "nero" = dontDistribute super."nero";
+ "nero-wai" = dontDistribute super."nero-wai";
+ "nero-warp" = dontDistribute super."nero-warp";
+ "nested-routes" = dontDistribute super."nested-routes";
+ "nested-sets" = dontDistribute super."nested-sets";
+ "nestedmap" = dontDistribute super."nestedmap";
+ "net-concurrent" = dontDistribute super."net-concurrent";
+ "netclock" = dontDistribute super."netclock";
+ "netcore" = dontDistribute super."netcore";
+ "netlines" = dontDistribute super."netlines";
+ "netlink" = dontDistribute super."netlink";
+ "netlist" = dontDistribute super."netlist";
+ "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl";
+ "netpbm" = dontDistribute super."netpbm";
+ "netrc" = dontDistribute super."netrc";
+ "netspec" = dontDistribute super."netspec";
+ "netstring-enumerator" = dontDistribute super."netstring-enumerator";
+ "nettle-frp" = dontDistribute super."nettle-frp";
+ "nettle-netkit" = dontDistribute super."nettle-netkit";
+ "nettle-openflow" = dontDistribute super."nettle-openflow";
+ "netwire" = dontDistribute super."netwire";
+ "netwire-input" = dontDistribute super."netwire-input";
+ "netwire-input-glfw" = dontDistribute super."netwire-input-glfw";
+ "network-address" = dontDistribute super."network-address";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-connection" = dontDistribute super."network-connection";
+ "network-data" = dontDistribute super."network-data";
+ "network-dbus" = dontDistribute super."network-dbus";
+ "network-dns" = dontDistribute super."network-dns";
+ "network-enumerator" = dontDistribute super."network-enumerator";
+ "network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
+ "network-interfacerequest" = dontDistribute super."network-interfacerequest";
+ "network-ip" = dontDistribute super."network-ip";
+ "network-metrics" = dontDistribute super."network-metrics";
+ "network-minihttp" = dontDistribute super."network-minihttp";
+ "network-msg" = dontDistribute super."network-msg";
+ "network-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "network-rpca" = dontDistribute super."network-rpca";
+ "network-server" = dontDistribute super."network-server";
+ "network-service" = dontDistribute super."network-service";
+ "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr";
+ "network-simple-tls" = dontDistribute super."network-simple-tls";
+ "network-socket-options" = dontDistribute super."network-socket-options";
+ "network-stream" = dontDistribute super."network-stream";
+ "network-topic-models" = dontDistribute super."network-topic-models";
+ "network-transport-amqp" = dontDistribute super."network-transport-amqp";
+ "network-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";
+ "ngx-export" = dontDistribute super."ngx-export";
+ "niagra" = dontDistribute super."niagra";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nist-beacon" = dontDistribute super."nist-beacon";
+ "nitro" = dontDistribute super."nitro";
+ "nix-eval" = dontDistribute super."nix-eval";
+ "nixfromnpm" = dontDistribute super."nixfromnpm";
+ "nixos-types" = dontDistribute super."nixos-types";
+ "nkjp" = dontDistribute super."nkjp";
+ "nlp-scores" = dontDistribute super."nlp-scores";
+ "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts";
+ "nm" = dontDistribute super."nm";
+ "nme" = dontDistribute super."nme";
+ "nntp" = dontDistribute super."nntp";
+ "no-buffering-workaround" = dontDistribute super."no-buffering-workaround";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyse" = dontDistribute super."nofib-analyse";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonempty-alternative" = dontDistribute super."nonempty-alternative";
+ "nonfree" = dontDistribute super."nonfree";
+ "nonlinear-optimization" = dontDistribute super."nonlinear-optimization";
+ "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad";
+ "noodle" = dontDistribute super."noodle";
+ "normaldistribution" = dontDistribute super."normaldistribution";
+ "not-gloss" = dontDistribute super."not-gloss";
+ "not-gloss-examples" = dontDistribute super."not-gloss-examples";
+ "not-in-base" = dontDistribute super."not-in-base";
+ "notcpp" = dontDistribute super."notcpp";
+ "notmuch-haskell" = dontDistribute super."notmuch-haskell";
+ "notmuch-web" = dontDistribute super."notmuch-web";
+ "notzero" = dontDistribute super."notzero";
+ "np-extras" = dontDistribute super."np-extras";
+ "np-linear" = dontDistribute super."np-linear";
+ "nptools" = dontDistribute super."nptools";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
+ "number" = dontDistribute super."number";
+ "number-length" = dontDistribute super."number-length";
+ "numbering" = dontDistribute super."numbering";
+ "numerals" = dontDistribute super."numerals";
+ "numerals-base" = dontDistribute super."numerals-base";
+ "numeric-limits" = dontDistribute super."numeric-limits";
+ "numeric-prelude" = dontDistribute super."numeric-prelude";
+ "numeric-qq" = dontDistribute super."numeric-qq";
+ "numeric-quest" = dontDistribute super."numeric-quest";
+ "numeric-ranges" = dontDistribute super."numeric-ranges";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype" = dontDistribute super."numtype";
+ "numtype-tf" = dontDistribute super."numtype-tf";
+ "nurbs" = dontDistribute super."nurbs";
+ "nvim-hs" = dontDistribute super."nvim-hs";
+ "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib";
+ "nyan" = dontDistribute super."nyan";
+ "nylas" = dontDistribute super."nylas";
+ "nymphaea" = dontDistribute super."nymphaea";
+ "oanda-rest-api" = dontDistribute super."oanda-rest-api";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = doDistribute super."objective_1_0_5";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octane" = dontDistribute super."octane";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "oidc-client" = dontDistribute super."oidc-client";
+ "ois-input-manager" = dontDistribute super."ois-input-manager";
+ "old-version" = dontDistribute super."old-version";
+ "olwrapper" = dontDistribute super."olwrapper";
+ "omaketex" = dontDistribute super."omaketex";
+ "omega" = dontDistribute super."omega";
+ "omnicodec" = dontDistribute super."omnicodec";
+ "on-a-horse" = dontDistribute super."on-a-horse";
+ "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel";
+ "one-liner" = dontDistribute super."one-liner";
+ "one-time-password" = dontDistribute super."one-time-password";
+ "oneOfN" = dontDistribute super."oneOfN";
+ "oneormore" = dontDistribute super."oneormore";
+ "only" = dontDistribute super."only";
+ "onu-course" = dontDistribute super."onu-course";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "opaleye-trans" = dontDistribute super."opaleye-trans";
+ "open-haddock" = dontDistribute super."open-haddock";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-signals" = dontDistribute super."open-signals";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencog-atomspace" = dontDistribute super."opencog-atomspace";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
+ "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator";
+ "opengles" = dontDistribute super."opengles";
+ "openid" = dontDistribute super."openid";
+ "openpgp" = dontDistribute super."openpgp";
+ "openpgp-Crypto" = dontDistribute super."openpgp-Crypto";
+ "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api";
+ "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht";
+ "opensource" = dontDistribute super."opensource";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "opentheory" = dontDistribute super."opentheory";
+ "opentheory-bits" = dontDistribute super."opentheory-bits";
+ "opentheory-byte" = dontDistribute super."opentheory-byte";
+ "opentheory-char" = dontDistribute super."opentheory-char";
+ "opentheory-divides" = dontDistribute super."opentheory-divides";
+ "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci";
+ "opentheory-parser" = dontDistribute super."opentheory-parser";
+ "opentheory-prime" = dontDistribute super."opentheory-prime";
+ "opentheory-primitive" = dontDistribute super."opentheory-primitive";
+ "opentheory-probability" = dontDistribute super."opentheory-probability";
+ "opentheory-stream" = dontDistribute super."opentheory-stream";
+ "opentheory-unicode" = dontDistribute super."opentheory-unicode";
+ "operational-alacarte" = dontDistribute super."operational-alacarte";
+ "operational-extra" = dontDistribute super."operational-extra";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "option" = dontDistribute super."option";
+ "optional" = dontDistribute super."optional";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
+ "orc" = dontDistribute super."orc";
+ "orchestrate" = dontDistribute super."orchestrate";
+ "orchid" = dontDistribute super."orchid";
+ "orchid-demo" = dontDistribute super."orchid-demo";
+ "ord-adhoc" = dontDistribute super."ord-adhoc";
+ "order-maintenance" = dontDistribute super."order-maintenance";
+ "order-statistic-tree" = dontDistribute super."order-statistic-tree";
+ "order-statistics" = dontDistribute super."order-statistics";
+ "ordered" = dontDistribute super."ordered";
+ "orders" = dontDistribute super."orders";
+ "ordrea" = dontDistribute super."ordrea";
+ "organize-imports" = dontDistribute super."organize-imports";
+ "orgmode" = dontDistribute super."orgmode";
+ "orgmode-parse" = dontDistribute super."orgmode-parse";
+ "origami" = dontDistribute super."origami";
+ "os-release" = dontDistribute super."os-release";
+ "osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
+ "osm-conduit" = dontDistribute super."osm-conduit";
+ "osm-download" = dontDistribute super."osm-download";
+ "oso2pdf" = dontDistribute super."oso2pdf";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overloaded-records" = dontDistribute super."overloaded-records";
+ "overture" = dontDistribute super."overture";
+ "pack" = dontDistribute super."pack";
+ "package-o-tron" = dontDistribute super."package-o-tron";
+ "package-vt" = dontDistribute super."package-vt";
+ "packdeps" = dontDistribute super."packdeps";
+ "packed-dawg" = dontDistribute super."packed-dawg";
+ "packedstring" = dontDistribute super."packedstring";
+ "packer" = dontDistribute super."packer";
+ "packman" = dontDistribute super."packman";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_16_0_2";
+ "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-include" = dontDistribute super."pandoc-include";
+ "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "papillon" = dontDistribute super."papillon";
+ "pappy" = dontDistribute super."pappy";
+ "para" = dontDistribute super."para";
+ "paragon" = dontDistribute super."paragon";
+ "parallel-tasks" = dontDistribute super."parallel-tasks";
+ "parallel-tree-search" = dontDistribute super."parallel-tree-search";
+ "parameterized-data" = dontDistribute super."parameterized-data";
+ "paranoia" = dontDistribute super."paranoia";
+ "parco" = dontDistribute super."parco";
+ "parco-attoparsec" = dontDistribute super."parco-attoparsec";
+ "parco-parsec" = dontDistribute super."parco-parsec";
+ "parcom-lib" = dontDistribute super."parcom-lib";
+ "parconc-examples" = dontDistribute super."parconc-examples";
+ "parport" = dontDistribute super."parport";
+ "parse-dimacs" = dontDistribute super."parse-dimacs";
+ "parse-help" = dontDistribute super."parse-help";
+ "parsec-extra" = dontDistribute super."parsec-extra";
+ "parsec-numbers" = dontDistribute super."parsec-numbers";
+ "parsec-parsers" = dontDistribute super."parsec-parsers";
+ "parsec-permutation" = dontDistribute super."parsec-permutation";
+ "parsec-tagsoup" = dontDistribute super."parsec-tagsoup";
+ "parsec-trace" = dontDistribute super."parsec-trace";
+ "parsec-utils" = dontDistribute super."parsec-utils";
+ "parsec1" = dontDistribute super."parsec1";
+ "parsec2" = dontDistribute super."parsec2";
+ "parsec3" = dontDistribute super."parsec3";
+ "parsec3-numbers" = dontDistribute super."parsec3-numbers";
+ "parsedate" = dontDistribute super."parsedate";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parser241" = dontDistribute super."parser241";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partage" = dontDistribute super."partage";
+ "partial" = dontDistribute super."partial";
+ "partial-lens" = dontDistribute super."partial-lens";
+ "partial-uri" = dontDistribute super."partial-uri";
+ "partly" = dontDistribute super."partly";
+ "passage" = dontDistribute super."passage";
+ "passwords" = dontDistribute super."passwords";
+ "pastis" = dontDistribute super."pastis";
+ "pasty" = dontDistribute super."pasty";
+ "patch-combinators" = dontDistribute super."patch-combinators";
+ "patch-image" = dontDistribute super."patch-image";
+ "path-io" = doDistribute super."path-io_0_2_0";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "patterns" = dontDistribute super."patterns";
+ "paymill" = dontDistribute super."paymill";
+ "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops";
+ "paypal-api" = dontDistribute super."paypal-api";
+ "pb" = dontDistribute super."pb";
+ "pbc4hs" = dontDistribute super."pbc4hs";
+ "pbkdf" = dontDistribute super."pbkdf";
+ "pcap-conduit" = dontDistribute super."pcap-conduit";
+ "pcap-enumerator" = dontDistribute super."pcap-enumerator";
+ "pcd-loader" = dontDistribute super."pcd-loader";
+ "pcf" = dontDistribute super."pcf";
+ "pcg-random" = dontDistribute super."pcg-random";
+ "pcre-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "pdfsplit" = dontDistribute super."pdfsplit";
+ "pdynload" = dontDistribute super."pdynload";
+ "peakachu" = dontDistribute super."peakachu";
+ "peano" = dontDistribute super."peano";
+ "peano-inf" = dontDistribute super."peano-inf";
+ "pec" = dontDistribute super."pec";
+ "pecoff" = dontDistribute super."pecoff";
+ "peg" = dontDistribute super."peg";
+ "peggy" = dontDistribute super."peggy";
+ "pell" = dontDistribute super."pell";
+ "penn-treebank" = dontDistribute super."penn-treebank";
+ "penny" = dontDistribute super."penny";
+ "penny-bin" = dontDistribute super."penny-bin";
+ "penny-lib" = dontDistribute super."penny-lib";
+ "peparser" = dontDistribute super."peparser";
+ "perceptron" = dontDistribute super."perceptron";
+ "perdure" = dontDistribute super."perdure";
+ "perfecthash" = dontDistribute super."perfecthash";
+ "period" = dontDistribute super."period";
+ "perm" = dontDistribute super."perm";
+ "permutation" = dontDistribute super."permutation";
+ "permute" = dontDistribute super."permute";
+ "persist2er" = dontDistribute super."persist2er";
+ "persistable-record" = dontDistribute super."persistable-record";
+ "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
+ "persistent-audit" = dontDistribute super."persistent-audit";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-database-url" = dontDistribute super."persistent-database-url";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-iproute" = dontDistribute super."persistent-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-vector" = dontDistribute super."persistent-vector";
+ "persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
+ "persona" = dontDistribute super."persona";
+ "persona-idp" = dontDistribute super."persona-idp";
+ "pesca" = dontDistribute super."pesca";
+ "peyotls" = dontDistribute super."peyotls";
+ "peyotls-codec" = dontDistribute super."peyotls-codec";
+ "pez" = dontDistribute super."pez";
+ "pg-harness" = dontDistribute super."pg-harness";
+ "pg-harness-client" = dontDistribute super."pg-harness-client";
+ "pg-harness-server" = dontDistribute super."pg-harness-server";
+ "pg-store" = dontDistribute super."pg-store";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
+ "phoityne-vscode" = dontDistribute super."phoityne-vscode";
+ "phone-numbers" = dontDistribute super."phone-numbers";
+ "phone-push" = dontDistribute super."phone-push";
+ "phonetic-code" = dontDistribute super."phonetic-code";
+ "phooey" = dontDistribute super."phooey";
+ "photoname" = dontDistribute super."photoname";
+ "phraskell" = dontDistribute super."phraskell";
+ "phybin" = dontDistribute super."phybin";
+ "pi-calculus" = dontDistribute super."pi-calculus";
+ "pia-forward" = dontDistribute super."pia-forward";
+ "pianola" = dontDistribute super."pianola";
+ "picologic" = dontDistribute super."picologic";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pinchot" = doDistribute super."pinchot_0_6_0_0";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bzip" = dontDistribute super."pipes-bzip";
+ "pipes-cacophony" = doDistribute super."pipes-cacophony_0_1_3";
+ "pipes-cellular" = dontDistribute super."pipes-cellular";
+ "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
+ "pipes-cereal" = dontDistribute super."pipes-cereal";
+ "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus";
+ "pipes-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple";
+ "pipes-transduce" = dontDistribute super."pipes-transduce";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "pipes-websockets" = dontDistribute super."pipes-websockets";
+ "pipes-zeromq4" = dontDistribute super."pipes-zeromq4";
+ "pipes-zlib" = dontDistribute super."pipes-zlib";
+ "pisigma" = dontDistribute super."pisigma";
+ "pit" = dontDistribute super."pit";
+ "pitchtrack" = dontDistribute super."pitchtrack";
+ "pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "plan-b" = dontDistribute super."plan-b";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plist-buddy" = dontDistribute super."plist-buddy";
+ "plivo" = dontDistribute super."plivo";
+ "plot-lab" = dontDistribute super."plot-lab";
+ "plotfont" = dontDistribute super."plotfont";
+ "plotserver-api" = dontDistribute super."plotserver-api";
+ "plugins" = dontDistribute super."plugins";
+ "plugins-auto" = dontDistribute super."plugins-auto";
+ "plugins-multistage" = dontDistribute super."plugins-multistage";
+ "plumbers" = dontDistribute super."plumbers";
+ "ply-loader" = dontDistribute super."ply-loader";
+ "png-file" = dontDistribute super."png-file";
+ "pngload" = dontDistribute super."pngload";
+ "pngload-fixed" = dontDistribute super."pngload-fixed";
+ "pnm" = dontDistribute super."pnm";
+ "pocket-dns" = dontDistribute super."pocket-dns";
+ "pointfree" = dontDistribute super."pointfree";
+ "pointful" = dontDistribute super."pointful";
+ "pointless-fun" = dontDistribute super."pointless-fun";
+ "pointless-haskell" = dontDistribute super."pointless-haskell";
+ "pointless-lenses" = dontDistribute super."pointless-lenses";
+ "pointless-rewrite" = dontDistribute super."pointless-rewrite";
+ "poker-eval" = dontDistribute super."poker-eval";
+ "pokitdok" = dontDistribute super."pokitdok";
+ "polar" = dontDistribute super."polar";
+ "polar-configfile" = dontDistribute super."polar-configfile";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-control" = dontDistribute super."poly-control";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polymap" = dontDistribute super."polymap";
+ "polynom" = dontDistribute super."polynom";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pong-server" = dontDistribute super."pong-server";
+ "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
+ "pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
+ "pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
+ "pony" = dontDistribute super."pony";
+ "pool" = dontDistribute super."pool";
+ "pool-conduit" = dontDistribute super."pool-conduit";
+ "pooled-io" = dontDistribute super."pooled-io";
+ "pop3-client" = dontDistribute super."pop3-client";
+ "popenhs" = dontDistribute super."popenhs";
+ "poppler" = dontDistribute super."poppler";
+ "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache";
+ "portable-lines" = dontDistribute super."portable-lines";
+ "portaudio" = dontDistribute super."portaudio";
+ "porte" = dontDistribute super."porte";
+ "porter" = dontDistribute super."porter";
+ "ports" = dontDistribute super."ports";
+ "ports-tools" = dontDistribute super."ports-tools";
+ "positive" = dontDistribute super."positive";
+ "posix-acl" = dontDistribute super."posix-acl";
+ "posix-escape" = dontDistribute super."posix-escape";
+ "posix-filelock" = dontDistribute super."posix-filelock";
+ "posix-paths" = dontDistribute super."posix-paths";
+ "posix-pty" = dontDistribute super."posix-pty";
+ "posix-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-connector" = dontDistribute super."postgresql-connector";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-error-codes" = dontDistribute super."postgresql-error-codes";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration";
+ "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop";
+ "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed";
+ "postgresql-transactional" = dontDistribute super."postgresql-transactional";
+ "postgresql-typed" = dontDistribute super."postgresql-typed";
+ "postgrest" = dontDistribute super."postgrest";
+ "postie" = dontDistribute super."postie";
+ "postmark" = dontDistribute super."postmark";
+ "postmaster" = dontDistribute super."postmaster";
+ "potato-tool" = dontDistribute super."potato-tool";
+ "potrace" = dontDistribute super."potrace";
+ "potrace-diagrams" = dontDistribute super."potrace-diagrams";
+ "powermate" = dontDistribute super."powermate";
+ "powerpc" = dontDistribute super."powerpc";
+ "ppm" = dontDistribute super."ppm";
+ "pqc" = dontDistribute super."pqc";
+ "pqueue-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "predicates" = dontDistribute super."predicates";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-compat" = dontDistribute super."prelude-compat";
+ "prelude-edsl" = dontDistribute super."prelude-edsl";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "prelude2010" = dontDistribute super."prelude2010";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "present" = dontDistribute super."present";
+ "press" = dontDistribute super."press";
+ "presto-hdbc" = dontDistribute super."presto-hdbc";
+ "prettify" = dontDistribute super."prettify";
+ "pretty-compact" = dontDistribute super."pretty-compact";
+ "pretty-error" = dontDistribute super."pretty-error";
+ "pretty-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-spoon" = dontDistribute super."prim-spoon";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive-simd" = dontDistribute super."primitive-simd";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
+ "print-debugger" = dontDistribute super."print-debugger";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printf-safe" = dontDistribute super."printf-safe";
+ "printxosd" = dontDistribute super."printxosd";
+ "priority-queue" = dontDistribute super."priority-queue";
+ "priority-sync" = dontDistribute super."priority-sync";
+ "privileged-concurrency" = dontDistribute super."privileged-concurrency";
+ "prizm" = dontDistribute super."prizm";
+ "probability" = dontDistribute super."probability";
+ "probable" = dontDistribute super."probable";
+ "proc" = dontDistribute super."proc";
+ "process-conduit" = dontDistribute super."process-conduit";
+ "process-extras" = doDistribute super."process-extras_0_3_3_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";
+ "protobuf-simple" = dontDistribute super."protobuf-simple";
+ "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12";
+ "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "protolude" = dontDistribute super."protolude";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxied" = dontDistribute super."proxied";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = doDistribute super."psc-ide_0_5_0";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psql-helpers" = dontDistribute super."psql-helpers";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = doDistribute super."publicsuffix_0_20151212";
+ "publicsuffixlist" = dontDistribute super."publicsuffixlist";
+ "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate";
+ "pubnub" = dontDistribute super."pubnub";
+ "pubsub" = dontDistribute super."pubsub";
+ "puffytools" = dontDistribute super."puffytools";
+ "pugixml" = dontDistribute super."pugixml";
+ "pugs-DrIFT" = dontDistribute super."pugs-DrIFT";
+ "pugs-HsSyck" = dontDistribute super."pugs-HsSyck";
+ "pugs-compat" = dontDistribute super."pugs-compat";
+ "pugs-hsregex" = dontDistribute super."pugs-hsregex";
+ "pulse-simple" = dontDistribute super."pulse-simple";
+ "punkt" = dontDistribute super."punkt";
+ "punycode" = dontDistribute super."punycode";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "pure-fft" = dontDistribute super."pure-fft";
+ "pure-priority-queue" = dontDistribute super."pure-priority-queue";
+ "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
+ "pure-zlib" = dontDistribute super."pure-zlib";
+ "purescript" = doDistribute super."purescript_0_7_6_1";
+ "purescript-bridge" = dontDistribute super."purescript-bridge";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "pursuit-client" = dontDistribute super."pursuit-client";
+ "push-notify" = dontDistribute super."push-notify";
+ "push-notify-ccs" = dontDistribute super."push-notify-ccs";
+ "push-notify-general" = dontDistribute super."push-notify-general";
+ "pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
+ "pushme" = dontDistribute super."pushme";
+ "putlenses" = dontDistribute super."putlenses";
+ "puzzle-draw" = dontDistribute super."puzzle-draw";
+ "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline";
+ "pvd" = dontDistribute super."pvd";
+ "pwstore-cli" = dontDistribute super."pwstore-cli";
+ "pxsl-tools" = dontDistribute super."pxsl-tools";
+ "pyffi" = dontDistribute super."pyffi";
+ "pyfi" = dontDistribute super."pyfi";
+ "python-pickle" = dontDistribute super."python-pickle";
+ "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator";
+ "qd" = dontDistribute super."qd";
+ "qd-vec" = dontDistribute super."qd-vec";
+ "qed" = dontDistribute super."qed";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "qt" = dontDistribute super."qt";
+ "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";
+ "quickbooks" = dontDistribute super."quickbooks";
+ "quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "quickcheck-poly" = dontDistribute super."quickcheck-poly";
+ "quickcheck-properties" = dontDistribute super."quickcheck-properties";
+ "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb";
+ "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad";
+ "quickcheck-regex" = dontDistribute super."quickcheck-regex";
+ "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng";
+ "quickcheck-rematch" = dontDistribute super."quickcheck-rematch";
+ "quickcheck-script" = dontDistribute super."quickcheck-script";
+ "quickcheck-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";
+ "quickterm" = dontDistribute super."quickterm";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-binary" = dontDistribute super."quiver-binary";
+ "quiver-bytestring" = dontDistribute super."quiver-bytestring";
+ "quiver-cell" = dontDistribute super."quiver-cell";
+ "quiver-csv" = dontDistribute super."quiver-csv";
+ "quiver-enumerator" = dontDistribute super."quiver-enumerator";
+ "quiver-groups" = dontDistribute super."quiver-groups";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quiver-instances" = dontDistribute super."quiver-instances";
+ "quiver-interleave" = dontDistribute super."quiver-interleave";
+ "quiver-sort" = dontDistribute super."quiver-sort";
+ "quoridor-hs" = dontDistribute super."quoridor-hs";
+ "qux" = dontDistribute super."qux";
+ "rabocsv2qif" = dontDistribute super."rabocsv2qif";
+ "rad" = dontDistribute super."rad";
+ "radian" = dontDistribute super."radian";
+ "radium" = dontDistribute super."radium";
+ "radium-formula-parser" = dontDistribute super."radium-formula-parser";
+ "radix" = dontDistribute super."radix";
+ "rados-haskell" = dontDistribute super."rados-haskell";
+ "rail-compiler-editor" = dontDistribute super."rail-compiler-editor";
+ "rainbow" = doDistribute super."rainbow_0_26_0_6";
+ "rainbow-tests" = dontDistribute super."rainbow-tests";
+ "rainbox" = doDistribute super."rainbox_0_18_0_4";
+ "rake" = dontDistribute super."rake";
+ "rakhana" = dontDistribute super."rakhana";
+ "ralist" = dontDistribute super."ralist";
+ "rallod" = dontDistribute super."rallod";
+ "raml" = dontDistribute super."raml";
+ "rand-vars" = dontDistribute super."rand-vars";
+ "randfile" = dontDistribute super."randfile";
+ "random-access-list" = dontDistribute super."random-access-list";
+ "random-derive" = dontDistribute super."random-derive";
+ "random-eff" = dontDistribute super."random-eff";
+ "random-effin" = dontDistribute super."random-effin";
+ "random-extras" = dontDistribute super."random-extras";
+ "random-hypergeometric" = dontDistribute super."random-hypergeometric";
+ "random-stream" = dontDistribute super."random-stream";
+ "random-tree" = dontDistribute super."random-tree";
+ "random-variates" = dontDistribute super."random-variates";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratel" = dontDistribute super."ratel";
+ "ratel-wai" = dontDistribute super."ratel-wai";
+ "ratio-int" = dontDistribute super."ratio-int";
+ "raven-haskell" = dontDistribute super."raven-haskell";
+ "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty";
+ "rawstring-qm" = dontDistribute super."rawstring-qm";
+ "razom-text-util" = dontDistribute super."razom-text-util";
+ "rbr" = dontDistribute super."rbr";
+ "rclient" = dontDistribute super."rclient";
+ "rcu" = dontDistribute super."rcu";
+ "rdf4h" = dontDistribute super."rdf4h";
+ "rdioh" = dontDistribute super."rdioh";
+ "rdtsc" = dontDistribute super."rdtsc";
+ "rdtsc-enolan" = dontDistribute super."rdtsc-enolan";
+ "re2" = dontDistribute super."re2";
+ "react-flux" = dontDistribute super."react-flux";
+ "react-haskell" = dontDistribute super."react-haskell";
+ "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server";
+ "reaction-logic" = dontDistribute super."reaction-logic";
+ "reactive" = dontDistribute super."reactive";
+ "reactive-bacon" = dontDistribute super."reactive-bacon";
+ "reactive-balsa" = dontDistribute super."reactive-balsa";
+ "reactive-banana" = dontDistribute super."reactive-banana";
+ "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
+ "reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
+ "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
+ "reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
+ "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
+ "reactive-glut" = dontDistribute super."reactive-glut";
+ "reactive-haskell" = dontDistribute super."reactive-haskell";
+ "reactive-io" = dontDistribute super."reactive-io";
+ "reactive-thread" = dontDistribute super."reactive-thread";
+ "reactivity" = dontDistribute super."reactivity";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "read-env-var" = dontDistribute super."read-env-var";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "readshp" = dontDistribute super."readshp";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "rebase" = dontDistribute super."rebase";
+ "recaptcha" = dontDistribute super."recaptcha";
+ "record" = dontDistribute super."record";
+ "record-aeson" = dontDistribute super."record-aeson";
+ "record-gl" = dontDistribute super."record-gl";
+ "record-preprocessor" = dontDistribute super."record-preprocessor";
+ "record-syntax" = dontDistribute super."record-syntax";
+ "records" = dontDistribute super."records";
+ "records-th" = dontDistribute super."records-th";
+ "recursive-line-count" = dontDistribute super."recursive-line-count";
+ "redHandlers" = dontDistribute super."redHandlers";
+ "reddit" = dontDistribute super."reddit";
+ "redis" = dontDistribute super."redis";
+ "redis-hs" = dontDistribute super."redis-hs";
+ "redis-io" = doDistribute super."redis-io_0_5_2";
+ "redis-job-queue" = dontDistribute super."redis-job-queue";
+ "redis-resp" = doDistribute super."redis-resp_0_3_2";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reedsolomon" = dontDistribute super."reedsolomon";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-animation" = dontDistribute super."reflex-animation";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
+ "reflex-orphans" = dontDistribute super."reflex-orphans";
+ "reflex-transformers" = dontDistribute super."reflex-transformers";
+ "regex-deriv" = dontDistribute super."regex-deriv";
+ "regex-dfa" = dontDistribute super."regex-dfa";
+ "regex-easy" = dontDistribute super."regex-easy";
+ "regex-genex" = dontDistribute super."regex-genex";
+ "regex-parsec" = dontDistribute super."regex-parsec";
+ "regex-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-type" = dontDistribute super."regex-type";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr" = dontDistribute super."regexpr";
+ "regexpr-symbolic" = dontDistribute super."regexpr-symbolic";
+ "regexqq" = dontDistribute super."regexqq";
+ "regional-pointers" = dontDistribute super."regional-pointers";
+ "regions" = dontDistribute super."regions";
+ "regions-monadsfd" = dontDistribute super."regions-monadsfd";
+ "regions-monadstf" = dontDistribute super."regions-monadstf";
+ "regions-mtl" = dontDistribute super."regions-mtl";
+ "register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
+ "regress" = dontDistribute super."regress";
+ "regular" = dontDistribute super."regular";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "regular-xmlpickler" = dontDistribute super."regular-xmlpickler";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "relacion" = dontDistribute super."relacion";
+ "relation" = dontDistribute super."relation";
+ "relational-postgresql8" = dontDistribute super."relational-postgresql8";
+ "relational-query" = dontDistribute super."relational-query";
+ "relational-query-HDBC" = dontDistribute super."relational-query-HDBC";
+ "relational-record" = dontDistribute super."relational-record";
+ "relational-record-examples" = dontDistribute super."relational-record-examples";
+ "relational-schemas" = dontDistribute super."relational-schemas";
+ "relative-date" = dontDistribute super."relative-date";
+ "relit" = dontDistribute super."relit";
+ "rematch" = dontDistribute super."rematch";
+ "rematch-text" = dontDistribute super."rematch-text";
+ "remote" = dontDistribute super."remote";
+ "remote-debugger" = dontDistribute super."remote-debugger";
+ "remote-json" = dontDistribute super."remote-json";
+ "remote-json-client" = dontDistribute super."remote-json-client";
+ "remote-json-server" = dontDistribute super."remote-json-server";
+ "remote-monad" = dontDistribute super."remote-monad";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "repa-eval" = dontDistribute super."repa-eval";
+ "repa-examples" = dontDistribute super."repa-examples";
+ "repa-fftw" = dontDistribute super."repa-fftw";
+ "repa-flow" = dontDistribute super."repa-flow";
+ "repa-linear-algebra" = dontDistribute super."repa-linear-algebra";
+ "repa-plugin" = dontDistribute super."repa-plugin";
+ "repa-scalar" = dontDistribute super."repa-scalar";
+ "repa-series" = dontDistribute super."repa-series";
+ "repa-sndfile" = dontDistribute super."repa-sndfile";
+ "repa-stream" = dontDistribute super."repa-stream";
+ "repa-v4l2" = dontDistribute super."repa-v4l2";
+ "repl" = dontDistribute super."repl";
+ "repl-toolkit" = dontDistribute super."repl-toolkit";
+ "repline" = dontDistribute super."repline";
+ "repo-based-blog" = dontDistribute super."repo-based-blog";
+ "repr" = dontDistribute super."repr";
+ "repr-tree-syb" = dontDistribute super."repr-tree-syb";
+ "representable-functors" = dontDistribute super."representable-functors";
+ "representable-profunctors" = dontDistribute super."representable-profunctors";
+ "representable-tries" = dontDistribute super."representable-tries";
+ "reqcatcher" = dontDistribute super."reqcatcher";
+ "request-monad" = dontDistribute super."request-monad";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-pool-monad" = dontDistribute super."resource-pool-monad";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "respond" = dontDistribute super."respond";
+ "rest-core" = doDistribute super."rest-core_0_37";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_19_0_1";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-arguments" = dontDistribute super."reverse-arguments";
+ "reverse-geocoding" = dontDistribute super."reverse-geocoding";
+ "reversi" = dontDistribute super."reversi";
+ "rewrite" = dontDistribute super."rewrite";
+ "rewriting" = dontDistribute super."rewriting";
+ "rex" = dontDistribute super."rex";
+ "rezoom" = dontDistribute super."rezoom";
+ "rfc3339" = dontDistribute super."rfc3339";
+ "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial";
+ "riak" = doDistribute super."riak_0_9_1_1";
+ "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0";
+ "richreports" = dontDistribute super."richreports";
+ "riemann" = dontDistribute super."riemann";
+ "riff" = dontDistribute super."riff";
+ "ring-buffer" = dontDistribute super."ring-buffer";
+ "riot" = dontDistribute super."riot";
+ "ripple" = dontDistribute super."ripple";
+ "ripple-federation" = dontDistribute super."ripple-federation";
+ "risc386" = dontDistribute super."risc386";
+ "rivers" = dontDistribute super."rivers";
+ "rivet" = dontDistribute super."rivet";
+ "rivet-core" = dontDistribute super."rivet-core";
+ "rivet-migration" = dontDistribute super."rivet-migration";
+ "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy";
+ "rlglue" = dontDistribute super."rlglue";
+ "rlist" = dontDistribute super."rlist";
+ "rmonad" = dontDistribute super."rmonad";
+ "rncryptor" = dontDistribute super."rncryptor";
+ "rng-utils" = dontDistribute super."rng-utils";
+ "robin" = dontDistribute super."robin";
+ "robot" = dontDistribute super."robot";
+ "robots-txt" = dontDistribute super."robots-txt";
+ "rocksdb-haskell" = dontDistribute super."rocksdb-haskell";
+ "roguestar" = dontDistribute super."roguestar";
+ "roguestar-engine" = dontDistribute super."roguestar-engine";
+ "roguestar-gl" = dontDistribute super."roguestar-gl";
+ "roguestar-glut" = dontDistribute super."roguestar-glut";
+ "rollbar" = dontDistribute super."rollbar";
+ "roller" = dontDistribute super."roller";
+ "rolling-queue" = dontDistribute super."rolling-queue";
+ "roman-numerals" = dontDistribute super."roman-numerals";
+ "romkan" = dontDistribute super."romkan";
+ "roots" = dontDistribute super."roots";
+ "rope" = dontDistribute super."rope";
+ "rosa" = dontDistribute super."rosa";
+ "rose-trie" = dontDistribute super."rose-trie";
+ "roshask" = dontDistribute super."roshask";
+ "rosso" = dontDistribute super."rosso";
+ "rot13" = dontDistribute super."rot13";
+ "rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
+ "rounding" = dontDistribute super."rounding";
+ "roundtrip" = dontDistribute super."roundtrip";
+ "roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
+ "roundtrip-string" = dontDistribute super."roundtrip-string";
+ "roundtrip-xml" = dontDistribute super."roundtrip-xml";
+ "route-generator" = dontDistribute super."route-generator";
+ "route-planning" = dontDistribute super."route-planning";
+ "rowrecord" = dontDistribute super."rowrecord";
+ "rpc" = dontDistribute super."rpc";
+ "rpc-framework" = dontDistribute super."rpc-framework";
+ "rpf" = dontDistribute super."rpf";
+ "rpm" = dontDistribute super."rpm";
+ "rsagl" = dontDistribute super."rsagl";
+ "rsagl-frp" = dontDistribute super."rsagl-frp";
+ "rsagl-math" = dontDistribute super."rsagl-math";
+ "rspp" = dontDistribute super."rspp";
+ "rss" = dontDistribute super."rss";
+ "rss-conduit" = dontDistribute super."rss-conduit";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtcm" = dontDistribute super."rtcm";
+ "rtld" = dontDistribute super."rtld";
+ "rtlsdr" = dontDistribute super."rtlsdr";
+ "rtorrent-rpc" = dontDistribute super."rtorrent-rpc";
+ "rtorrent-state" = dontDistribute super."rtorrent-state";
+ "rubberband" = dontDistribute super."rubberband";
+ "ruby-marshal" = dontDistribute super."ruby-marshal";
+ "ruby-qq" = dontDistribute super."ruby-qq";
+ "ruff" = dontDistribute super."ruff";
+ "ruler" = dontDistribute super."ruler";
+ "ruler-core" = dontDistribute super."ruler-core";
+ "rungekutta" = dontDistribute super."rungekutta";
+ "runghc" = dontDistribute super."runghc";
+ "rwlock" = dontDistribute super."rwlock";
+ "rws" = dontDistribute super."rws";
+ "s-cargot" = dontDistribute super."s-cargot";
+ "safe-access" = dontDistribute super."safe-access";
+ "safe-failure" = dontDistribute super."safe-failure";
+ "safe-failure-cme" = dontDistribute super."safe-failure-cme";
+ "safe-freeze" = dontDistribute super."safe-freeze";
+ "safe-globals" = dontDistribute super."safe-globals";
+ "safe-lazy-io" = dontDistribute super."safe-lazy-io";
+ "safe-length" = dontDistribute super."safe-length";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "safeint" = dontDistribute super."safeint";
+ "safer-file-handles" = dontDistribute super."safer-file-handles";
+ "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring";
+ "safer-file-handles-text" = dontDistribute super."safer-file-handles-text";
+ "saferoute" = dontDistribute super."saferoute";
+ "sai-shape-syb" = dontDistribute super."sai-shape-syb";
+ "saltine" = dontDistribute super."saltine";
+ "saltine-quickcheck" = dontDistribute super."saltine-quickcheck";
+ "salvia" = dontDistribute super."salvia";
+ "salvia-demo" = dontDistribute super."salvia-demo";
+ "salvia-extras" = dontDistribute super."salvia-extras";
+ "salvia-protocol" = dontDistribute super."salvia-protocol";
+ "salvia-sessions" = dontDistribute super."salvia-sessions";
+ "salvia-websocket" = dontDistribute super."salvia-websocket";
+ "sample-frame" = dontDistribute super."sample-frame";
+ "sample-frame-np" = dontDistribute super."sample-frame-np";
+ "sampling" = dontDistribute super."sampling";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandlib" = dontDistribute super."sandlib";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sarsi" = dontDistribute super."sarsi";
+ "sasl" = dontDistribute super."sasl";
+ "sat" = dontDistribute super."sat";
+ "sat-micro-hs" = dontDistribute super."sat-micro-hs";
+ "satchmo" = dontDistribute super."satchmo";
+ "satchmo-backends" = dontDistribute super."satchmo-backends";
+ "satchmo-examples" = dontDistribute super."satchmo-examples";
+ "satchmo-funsat" = dontDistribute super."satchmo-funsat";
+ "satchmo-minisat" = dontDistribute super."satchmo-minisat";
+ "satchmo-toysat" = dontDistribute super."satchmo-toysat";
+ "sbp" = dontDistribute super."sbp";
+ "sbvPlugin" = dontDistribute super."sbvPlugin";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = doDistribute super."scalpel_0_2_1_1";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scanner" = dontDistribute super."scanner";
+ "scanner-attoparsec" = dontDistribute super."scanner-attoparsec";
+ "scat" = dontDistribute super."scat";
+ "scc" = dontDistribute super."scc";
+ "scenegraph" = dontDistribute super."scenegraph";
+ "scgi" = dontDistribute super."scgi";
+ "schedevr" = dontDistribute super."schedevr";
+ "schedule-planner" = dontDistribute super."schedule-planner";
+ "schedyield" = dontDistribute super."schedyield";
+ "scholdoc" = dontDistribute super."scholdoc";
+ "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc";
+ "scholdoc-texmath" = dontDistribute super."scholdoc-texmath";
+ "scholdoc-types" = dontDistribute super."scholdoc-types";
+ "schonfinkeling" = dontDistribute super."schonfinkeling";
+ "sci-ratio" = dontDistribute super."sci-ratio";
+ "science-constants" = dontDistribute super."science-constants";
+ "science-constants-dimensional" = dontDistribute super."science-constants-dimensional";
+ "scion" = dontDistribute super."scion";
+ "scion-browser" = dontDistribute super."scion-browser";
+ "scons2dot" = dontDistribute super."scons2dot";
+ "scope" = dontDistribute super."scope";
+ "scope-cairo" = dontDistribute super."scope-cairo";
+ "scottish" = dontDistribute super."scottish";
+ "scotty" = doDistribute super."scotty_0_10_2";
+ "scotty-binding-play" = dontDistribute super."scotty-binding-play";
+ "scotty-blaze" = dontDistribute super."scotty-blaze";
+ "scotty-cookie" = dontDistribute super."scotty-cookie";
+ "scotty-fay" = dontDistribute super."scotty-fay";
+ "scotty-hastache" = dontDistribute super."scotty-hastache";
+ "scotty-params-parser" = dontDistribute super."scotty-params-parser";
+ "scotty-resource" = dontDistribute super."scotty-resource";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scotty-view" = dontDistribute super."scotty-view";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scrape-changes" = dontDistribute super."scrape-changes";
+ "scrobble" = dontDistribute super."scrobble";
+ "scroll" = dontDistribute super."scroll";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2-cairo" = dontDistribute super."sdl2-cairo";
+ "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
+ "sdl2-compositor" = dontDistribute super."sdl2-compositor";
+ "sdl2-image" = dontDistribute super."sdl2-image";
+ "sdl2-ttf" = dontDistribute super."sdl2-ttf";
+ "sdnv" = dontDistribute super."sdnv";
+ "sdr" = dontDistribute super."sdr";
+ "seacat" = dontDistribute super."seacat";
+ "seal-module" = dontDistribute super."seal-module";
+ "search" = dontDistribute super."search";
+ "sec" = dontDistribute super."sec";
+ "secdh" = dontDistribute super."secdh";
+ "seclib" = dontDistribute super."seclib";
+ "second-transfer" = doDistribute super."second-transfer_0_7_1_0";
+ "secp256k1" = dontDistribute super."secp256k1";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "sednaDBXML" = dontDistribute super."sednaDBXML";
+ "select" = dontDistribute super."select";
+ "selectors" = dontDistribute super."selectors";
+ "selenium" = dontDistribute super."selenium";
+ "selenium-server" = dontDistribute super."selenium-server";
+ "selfrestart" = dontDistribute super."selfrestart";
+ "selinux" = dontDistribute super."selinux";
+ "semaphore-plus" = dontDistribute super."semaphore-plus";
+ "semi-iso" = dontDistribute super."semi-iso";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver-range" = dontDistribute super."semver-range";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensei" = dontDistribute super."sensei";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "seqid" = dontDistribute super."seqid";
+ "seqid-streams" = dontDistribute super."seqid-streams";
+ "seqloc-datafiles" = dontDistribute super."seqloc-datafiles";
+ "sequence" = dontDistribute super."sequence";
+ "sequent-core" = dontDistribute super."sequent-core";
+ "sequential-index" = dontDistribute super."sequential-index";
+ "sequor" = dontDistribute super."sequor";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
+ "serv" = dontDistribute super."serv";
+ "serv-wai" = dontDistribute super."serv-wai";
+ "servant" = doDistribute super."servant_0_4_4_7";
+ "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7";
+ "servant-cassava" = dontDistribute super."servant-cassava";
+ "servant-client" = doDistribute super."servant-client_0_4_4_7";
+ "servant-csharp" = dontDistribute super."servant-csharp";
+ "servant-docs" = doDistribute super."servant-docs_0_4_4_7";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-elm" = dontDistribute super."servant-elm";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-foreign" = dontDistribute super."servant-foreign";
+ "servant-github" = dontDistribute super."servant-github";
+ "servant-haxl-client" = dontDistribute super."servant-haxl-client";
+ "servant-js" = dontDistribute super."servant-js";
+ "servant-lucid" = dontDistribute super."servant-lucid";
+ "servant-mock" = dontDistribute super."servant-mock";
+ "servant-pandoc" = dontDistribute super."servant-pandoc";
+ "servant-pool" = dontDistribute super."servant-pool";
+ "servant-postgresql" = dontDistribute super."servant-postgresql";
+ "servant-quickcheck" = dontDistribute super."servant-quickcheck";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = doDistribute super."servant-server_0_4_4_7";
+ "servant-swagger" = doDistribute super."servant-swagger_0_1_2";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = doDistribute super."set-extra_1_3_2";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setgame" = dontDistribute super."setgame";
+ "setops" = dontDistribute super."setops";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-grammar" = dontDistribute super."sexp-grammar";
+ "sexp-show" = dontDistribute super."sexp-show";
+ "sexpr" = dontDistribute super."sexpr";
+ "sext" = dontDistribute super."sext";
+ "sfml-audio" = dontDistribute super."sfml-audio";
+ "sfmt" = dontDistribute super."sfmt";
+ "sgd" = dontDistribute super."sgd";
+ "sgf" = dontDistribute super."sgf";
+ "sgrep" = dontDistribute super."sgrep";
+ "sha-streams" = dontDistribute super."sha-streams";
+ "shadower" = dontDistribute super."shadower";
+ "shadowsocks" = dontDistribute super."shadowsocks";
+ "shady-gen" = dontDistribute super."shady-gen";
+ "shady-graphics" = dontDistribute super."shady-graphics";
+ "shake-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = doDistribute super."shake-language-c_0_8_6";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shake-persist" = dontDistribute super."shake-persist";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare-babel" = dontDistribute super."shakespeare-babel";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-i18n" = dontDistribute super."shakespeare-i18n";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shakespeare-text" = dontDistribute super."shakespeare-text";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "sharc-timbre" = dontDistribute super."sharc-timbre";
+ "shared-buffer" = dontDistribute super."shared-buffer";
+ "shared-fields" = dontDistribute super."shared-fields";
+ "shared-memory" = dontDistribute super."shared-memory";
+ "sharedio" = dontDistribute super."sharedio";
+ "she" = dontDistribute super."she";
+ "shelduck" = dontDistribute super."shelduck";
+ "shell-escape" = dontDistribute super."shell-escape";
+ "shell-monad" = dontDistribute super."shell-monad";
+ "shell-pipe" = dontDistribute super."shell-pipe";
+ "shellish" = dontDistribute super."shellish";
+ "shellmate" = dontDistribute super."shellmate";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shine" = dontDistribute super."shine";
+ "shine-varying" = dontDistribute super."shine-varying";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1";
+ "show" = dontDistribute super."show";
+ "show-type" = dontDistribute super."show-type";
+ "showdown" = dontDistribute super."showdown";
+ "shpider" = dontDistribute super."shpider";
+ "shplit" = dontDistribute super."shplit";
+ "shqq" = dontDistribute super."shqq";
+ "shuffle" = dontDistribute super."shuffle";
+ "sieve" = dontDistribute super."sieve";
+ "sifflet" = dontDistribute super."sifflet";
+ "sifflet-lib" = dontDistribute super."sifflet-lib";
+ "sign" = dontDistribute super."sign";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "simple-actors" = dontDistribute super."simple-actors";
+ "simple-atom" = dontDistribute super."simple-atom";
+ "simple-bluetooth" = dontDistribute super."simple-bluetooth";
+ "simple-c-value" = dontDistribute super."simple-c-value";
+ "simple-conduit" = dontDistribute super."simple-conduit";
+ "simple-config" = dontDistribute super."simple-config";
+ "simple-css" = dontDistribute super."simple-css";
+ "simple-eval" = dontDistribute super."simple-eval";
+ "simple-firewire" = dontDistribute super."simple-firewire";
+ "simple-form" = dontDistribute super."simple-form";
+ "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm";
+ "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr";
+ "simple-get-opt" = dontDistribute super."simple-get-opt";
+ "simple-index" = dontDistribute super."simple-index";
+ "simple-log" = dontDistribute super."simple-log";
+ "simple-log-syslog" = dontDistribute super."simple-log-syslog";
+ "simple-neural-networks" = dontDistribute super."simple-neural-networks";
+ "simple-nix" = dontDistribute super."simple-nix";
+ "simple-observer" = dontDistribute super."simple-observer";
+ "simple-pascal" = dontDistribute super."simple-pascal";
+ "simple-pipe" = dontDistribute super."simple-pipe";
+ "simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_23";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "simple-vec3" = dontDistribute super."simple-vec3";
+ "simpleargs" = dontDistribute super."simpleargs";
+ "simpleirc" = dontDistribute super."simpleirc";
+ "simpleirc-lens" = dontDistribute super."simpleirc-lens";
+ "simplenote" = dontDistribute super."simplenote";
+ "simpleprelude" = dontDistribute super."simpleprelude";
+ "simplesmtpclient" = dontDistribute super."simplesmtpclient";
+ "simplessh" = dontDistribute super."simplessh";
+ "simplest-sqlite" = dontDistribute super."simplest-sqlite";
+ "simplex" = dontDistribute super."simplex";
+ "simplex-basic" = dontDistribute super."simplex-basic";
+ "simseq" = dontDistribute super."simseq";
+ "simtreelo" = dontDistribute super."simtreelo";
+ "sindre" = dontDistribute super."sindre";
+ "singleton-nats" = dontDistribute super."singleton-nats";
+ "sink" = dontDistribute super."sink";
+ "sirkel" = dontDistribute super."sirkel";
+ "sitemap" = dontDistribute super."sitemap";
+ "sized" = dontDistribute super."sized";
+ "sized-types" = dontDistribute super."sized-types";
+ "sized-vector" = dontDistribute super."sized-vector";
+ "sizes" = dontDistribute super."sizes";
+ "sjsp" = dontDistribute super."sjsp";
+ "skeleton" = dontDistribute super."skeleton";
+ "skell" = dontDistribute super."skell";
+ "skemmtun" = dontDistribute super."skemmtun";
+ "skulk" = dontDistribute super."skulk";
+ "skype4hs" = dontDistribute super."skype4hs";
+ "skypelogexport" = dontDistribute super."skypelogexport";
+ "slack" = dontDistribute super."slack";
+ "slack-api" = dontDistribute super."slack-api";
+ "slack-notify-haskell" = dontDistribute super."slack-notify-haskell";
+ "sleep" = dontDistribute super."sleep";
+ "slice-cpp-gen" = dontDistribute super."slice-cpp-gen";
+ "slidemews" = dontDistribute super."slidemews";
+ "sloane" = dontDistribute super."sloane";
+ "slot-lambda" = dontDistribute super."slot-lambda";
+ "sloth" = dontDistribute super."sloth";
+ "smallarray" = dontDistribute super."smallarray";
+ "smallcheck-laws" = dontDistribute super."smallcheck-laws";
+ "smallcheck-lens" = dontDistribute super."smallcheck-lens";
+ "smallcheck-series" = dontDistribute super."smallcheck-series";
+ "smallpt-hs" = dontDistribute super."smallpt-hs";
+ "smallstring" = dontDistribute super."smallstring";
+ "smaoin" = dontDistribute super."smaoin";
+ "smartGroup" = dontDistribute super."smartGroup";
+ "smartcheck" = dontDistribute super."smartcheck";
+ "smartconstructor" = dontDistribute super."smartconstructor";
+ "smartword" = dontDistribute super."smartword";
+ "sme" = dontDistribute super."sme";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
+ "smtp2mta" = dontDistribute super."smtp2mta";
+ "smtps-gmail" = dontDistribute super."smtps-gmail";
+ "snake-game" = dontDistribute super."snake-game";
+ "snap-accept" = dontDistribute super."snap-accept";
+ "snap-app" = dontDistribute super."snap-app";
+ "snap-auth-cli" = dontDistribute super."snap-auth-cli";
+ "snap-blaze" = dontDistribute super."snap-blaze";
+ "snap-blaze-clay" = dontDistribute super."snap-blaze-clay";
+ "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities";
+ "snap-cors" = dontDistribute super."snap-cors";
+ "snap-elm" = dontDistribute super."snap-elm";
+ "snap-error-collector" = dontDistribute super."snap-error-collector";
+ "snap-extras" = dontDistribute super."snap-extras";
+ "snap-language" = dontDistribute super."snap-language";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
+ "snap-testing" = dontDistribute super."snap-testing";
+ "snap-utils" = dontDistribute super."snap-utils";
+ "snap-web-routes" = dontDistribute super."snap-web-routes";
+ "snaplet-acid-state" = dontDistribute super."snaplet-acid-state";
+ "snaplet-actionlog" = dontDistribute super."snaplet-actionlog";
+ "snaplet-amqp" = dontDistribute super."snaplet-amqp";
+ "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid";
+ "snaplet-coffee" = dontDistribute super."snaplet-coffee";
+ "snaplet-css-min" = dontDistribute super."snaplet-css-min";
+ "snaplet-environments" = dontDistribute super."snaplet-environments";
+ "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
+ "snaplet-hasql" = dontDistribute super."snaplet-hasql";
+ "snaplet-haxl" = dontDistribute super."snaplet-haxl";
+ "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";
+ "snaplet-hslogger" = dontDistribute super."snaplet-hslogger";
+ "snaplet-i18n" = dontDistribute super."snaplet-i18n";
+ "snaplet-influxdb" = dontDistribute super."snaplet-influxdb";
+ "snaplet-lss" = dontDistribute super."snaplet-lss";
+ "snaplet-mandrill" = dontDistribute super."snaplet-mandrill";
+ "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB";
+ "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic";
+ "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple";
+ "snaplet-oauth" = dontDistribute super."snaplet-oauth";
+ "snaplet-persistent" = dontDistribute super."snaplet-persistent";
+ "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple";
+ "snaplet-postmark" = dontDistribute super."snaplet-postmark";
+ "snaplet-purescript" = dontDistribute super."snaplet-purescript";
+ "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha";
+ "snaplet-redis" = dontDistribute super."snaplet-redis";
+ "snaplet-redson" = dontDistribute super."snaplet-redson";
+ "snaplet-rest" = dontDistribute super."snaplet-rest";
+ "snaplet-riak" = dontDistribute super."snaplet-riak";
+ "snaplet-sass" = dontDistribute super."snaplet-sass";
+ "snaplet-sedna" = dontDistribute super."snaplet-sedna";
+ "snaplet-ses-html" = dontDistribute super."snaplet-ses-html";
+ "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple";
+ "snaplet-stripe" = dontDistribute super."snaplet-stripe";
+ "snaplet-tasks" = dontDistribute super."snaplet-tasks";
+ "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions";
+ "snaplet-wordpress" = dontDistribute super."snaplet-wordpress";
+ "snappy" = dontDistribute super."snappy";
+ "snappy-conduit" = dontDistribute super."snappy-conduit";
+ "snappy-framing" = dontDistribute super."snappy-framing";
+ "snappy-iteratee" = dontDistribute super."snappy-iteratee";
+ "sndfile-enumerators" = dontDistribute super."sndfile-enumerators";
+ "sneakyterm" = dontDistribute super."sneakyterm";
+ "sneathlane-haste" = dontDistribute super."sneathlane-haste";
+ "snippet-extractor" = dontDistribute super."snippet-extractor";
+ "snm" = dontDistribute super."snm";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = doDistribute super."socket_0_5_3_1";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "socketson" = dontDistribute super."socketson";
+ "soegtk" = dontDistribute super."soegtk";
+ "solr" = dontDistribute super."solr";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "sorting" = dontDistribute super."sorting";
+ "sorty" = dontDistribute super."sorty";
+ "sound-collage" = dontDistribute super."sound-collage";
+ "sounddelay" = dontDistribute super."sounddelay";
+ "source-code-server" = dontDistribute super."source-code-server";
+ "sousit" = dontDistribute super."sousit";
+ "sox" = dontDistribute super."sox";
+ "soxlib" = dontDistribute super."soxlib";
+ "soyuz" = dontDistribute super."soyuz";
+ "spacefill" = dontDistribute super."spacefill";
+ "spacepart" = dontDistribute super."spacepart";
+ "spaceprobe" = dontDistribute super."spaceprobe";
+ "spanout" = dontDistribute super."spanout";
+ "sparkle" = dontDistribute super."sparkle";
+ "sparse" = dontDistribute super."sparse";
+ "sparse-lin-alg" = dontDistribute super."sparse-lin-alg";
+ "sparsebit" = dontDistribute super."sparsebit";
+ "sparsecheck" = dontDistribute super."sparsecheck";
+ "sparser" = dontDistribute super."sparser";
+ "spata" = dontDistribute super."spata";
+ "spatial-math" = dontDistribute super."spatial-math";
+ "spawn" = dontDistribute super."spawn";
+ "spe" = dontDistribute super."spe";
+ "special-functors" = dontDistribute super."special-functors";
+ "special-keys" = dontDistribute super."special-keys";
+ "specialize-th" = dontDistribute super."specialize-th";
+ "species" = dontDistribute super."species";
+ "speculation-transformers" = dontDistribute super."speculation-transformers";
+ "spelling-suggest" = dontDistribute super."spelling-suggest";
+ "sphero" = dontDistribute super."sphero";
+ "sphinx-cli" = dontDistribute super."sphinx-cli";
+ "spice" = dontDistribute super."spice";
+ "spike" = dontDistribute super."spike";
+ "spine" = dontDistribute super."spine";
+ "spir-v" = dontDistribute super."spir-v";
+ "splay" = dontDistribute super."splay";
+ "splaytree" = dontDistribute super."splaytree";
+ "spline3" = dontDistribute super."spline3";
+ "splines" = dontDistribute super."splines";
+ "split-channel" = dontDistribute super."split-channel";
+ "split-record" = dontDistribute super."split-record";
+ "split-tchan" = dontDistribute super."split-tchan";
+ "splitter" = dontDistribute super."splitter";
+ "splot" = dontDistribute super."splot";
+ "spool" = dontDistribute super."spool";
+ "spoonutil" = dontDistribute super."spoonutil";
+ "spoty" = dontDistribute super."spoty";
+ "spreadsheet" = dontDistribute super."spreadsheet";
+ "spritz" = dontDistribute super."spritz";
+ "sproxy" = dontDistribute super."sproxy";
+ "spsa" = dontDistribute super."spsa";
+ "spy" = dontDistribute super."spy";
+ "sql-simple" = dontDistribute super."sql-simple";
+ "sql-simple-mysql" = dontDistribute super."sql-simple-mysql";
+ "sql-simple-pool" = dontDistribute super."sql-simple-pool";
+ "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql";
+ "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite";
+ "sql-words" = dontDistribute super."sql-words";
+ "sqlite" = dontDistribute super."sqlite";
+ "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed";
+ "sqlvalue-list" = dontDistribute super."sqlvalue-list";
+ "squeeze" = dontDistribute super."squeeze";
+ "sr-extra" = dontDistribute super."sr-extra";
+ "srcinst" = dontDistribute super."srcinst";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
+ "ssh" = dontDistribute super."ssh";
+ "sshd-lint" = dontDistribute super."sshd-lint";
+ "sshtun" = dontDistribute super."sshtun";
+ "sssp" = dontDistribute super."sssp";
+ "sstable" = dontDistribute super."sstable";
+ "ssv" = dontDistribute super."ssv";
+ "stable-heap" = dontDistribute super."stable-heap";
+ "stable-maps" = dontDistribute super."stable-maps";
+ "stable-marriage" = dontDistribute super."stable-marriage";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = doDistribute super."stack_1_0_2";
+ "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stack-run" = dontDistribute super."stack-run";
+ "stackage-curator" = doDistribute super."stackage-curator_0_13_3";
+ "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
+ "standalone-haddock" = dontDistribute super."standalone-haddock";
+ "star-to-star" = dontDistribute super."star-to-star";
+ "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";
+ "store" = dontDistribute super."store";
+ "str" = dontDistribute super."str";
+ "stratosphere" = dontDistribute super."stratosphere";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream" = dontDistribute super."stream";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-png" = dontDistribute super."streaming-png";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streaming-wai" = dontDistribute super."streaming-wai";
+ "strict-base-types" = doDistribute super."strict-base-types_0_4_0";
+ "strict-concurrency" = dontDistribute super."strict-concurrency";
+ "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin";
+ "strict-identity" = dontDistribute super."strict-identity";
+ "strict-io" = dontDistribute super."strict-io";
+ "strictify" = dontDistribute super."strictify";
+ "strictly" = dontDistribute super."strictly";
+ "string" = dontDistribute super."string";
+ "string-conv" = dontDistribute super."string-conv";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "string-typelits" = dontDistribute super."string-typelits";
+ "stringlike" = dontDistribute super."stringlike";
+ "stringprep" = dontDistribute super."stringprep";
+ "strings" = dontDistribute super."strings";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
+ "structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
+ "structured-mongoDB" = dontDistribute super."structured-mongoDB";
+ "structures" = dontDistribute super."structures";
+ "stunclient" = dontDistribute super."stunclient";
+ "stunts" = dontDistribute super."stunts";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subleq-toolchain" = dontDistribute super."subleq-toolchain";
+ "subnet" = dontDistribute super."subnet";
+ "subtitleParser" = dontDistribute super."subtitleParser";
+ "subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
+ "suffixarray" = dontDistribute super."suffixarray";
+ "suffixtree" = dontDistribute super."suffixtree";
+ "sugarhaskell" = dontDistribute super."sugarhaskell";
+ "suitable" = dontDistribute super."suitable";
+ "sump" = dontDistribute super."sump";
+ "sundown" = dontDistribute super."sundown";
+ "sunlight" = dontDistribute super."sunlight";
+ "sunroof-compiler" = dontDistribute super."sunroof-compiler";
+ "sunroof-examples" = dontDistribute super."sunroof-examples";
+ "sunroof-server" = dontDistribute super."sunroof-server";
+ "super-user-spark" = dontDistribute super."super-user-spark";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "supplemented" = dontDistribute super."supplemented";
+ "suspend" = dontDistribute super."suspend";
+ "svg-builder" = dontDistribute super."svg-builder";
+ "svg-tree" = doDistribute super."svg-tree_0_3_2";
+ "svg2q" = dontDistribute super."svg2q";
+ "svgcairo" = dontDistribute super."svgcairo";
+ "svgutils" = dontDistribute super."svgutils";
+ "svm" = dontDistribute super."svm";
+ "svm-light-utils" = dontDistribute super."svm-light-utils";
+ "svm-simple" = dontDistribute super."svm-simple";
+ "svndump" = dontDistribute super."svndump";
+ "swagger2" = doDistribute super."swagger2_1_2_1";
+ "swapper" = dontDistribute super."swapper";
+ "swearjure" = dontDistribute super."swearjure";
+ "swf" = dontDistribute super."swf";
+ "swift-lda" = dontDistribute super."swift-lda";
+ "swish" = dontDistribute super."swish";
+ "sws" = dontDistribute super."sws";
+ "syb-extras" = dontDistribute super."syb-extras";
+ "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text";
+ "sylvia" = dontDistribute super."sylvia";
+ "sym" = dontDistribute super."sym";
+ "sym-plot" = dontDistribute super."sym-plot";
+ "symbol" = dontDistribute super."symbol";
+ "symengine-hs" = dontDistribute super."symengine-hs";
+ "sync" = dontDistribute super."sync";
+ "synchronous-channels" = dontDistribute super."synchronous-channels";
+ "syncthing-hs" = dontDistribute super."syncthing-hs";
+ "synt" = dontDistribute super."synt";
+ "syntactic" = dontDistribute super."syntactic";
+ "syntactical" = dontDistribute super."syntactical";
+ "syntax" = dontDistribute super."syntax";
+ "syntax-attoparsec" = dontDistribute super."syntax-attoparsec";
+ "syntax-example" = dontDistribute super."syntax-example";
+ "syntax-example-json" = dontDistribute super."syntax-example-json";
+ "syntax-pretty" = dontDistribute super."syntax-pretty";
+ "syntax-printer" = dontDistribute super."syntax-printer";
+ "syntax-trees" = dontDistribute super."syntax-trees";
+ "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn";
+ "synthesizer" = dontDistribute super."synthesizer";
+ "synthesizer-alsa" = dontDistribute super."synthesizer-alsa";
+ "synthesizer-core" = dontDistribute super."synthesizer-core";
+ "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional";
+ "synthesizer-filter" = dontDistribute super."synthesizer-filter";
+ "synthesizer-inference" = dontDistribute super."synthesizer-inference";
+ "synthesizer-llvm" = dontDistribute super."synthesizer-llvm";
+ "synthesizer-midi" = dontDistribute super."synthesizer-midi";
+ "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient";
+ "sys-process" = dontDistribute super."sys-process";
+ "system-canonicalpath" = dontDistribute super."system-canonicalpath";
+ "system-command" = dontDistribute super."system-command";
+ "system-gpio" = dontDistribute super."system-gpio";
+ "system-inotify" = dontDistribute super."system-inotify";
+ "system-lifted" = dontDistribute super."system-lifted";
+ "system-random-effect" = dontDistribute super."system-random-effect";
+ "system-test" = dontDistribute super."system-test";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "t-regex" = dontDistribute super."t-regex";
+ "t3-client" = dontDistribute super."t3-client";
+ "t3-game" = dontDistribute super."t3-game";
+ "t3-server" = dontDistribute super."t3-server";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-layout" = dontDistribute super."table-layout";
+ "table-tennis" = dontDistribute super."table-tennis";
+ "tableaux" = dontDistribute super."tableaux";
+ "tables" = dontDistribute super."tables";
+ "tablestorage" = dontDistribute super."tablestorage";
+ "tabloid" = dontDistribute super."tabloid";
+ "taffybar" = dontDistribute super."taffybar";
+ "tag-bits" = dontDistribute super."tag-bits";
+ "tag-stream" = dontDistribute super."tag-stream";
+ "tagchup" = dontDistribute super."tagchup";
+ "tagged-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-timers" = dontDistribute super."tagged-timers";
+ "tagged-transformer" = dontDistribute super."tagged-transformer";
+ "tagging" = dontDistribute super."tagging";
+ "taggy" = dontDistribute super."taggy";
+ "taggy-lens" = dontDistribute super."taggy-lens";
+ "taglib" = dontDistribute super."taglib";
+ "taglib-api" = dontDistribute super."taglib-api";
+ "tagset-positional" = dontDistribute super."tagset-positional";
+ "tagsoup-ht" = dontDistribute super."tagsoup-ht";
+ "tagsoup-parsec" = dontDistribute super."tagsoup-parsec";
+ "tai64" = dontDistribute super."tai64";
+ "takahashi" = dontDistribute super."takahashi";
+ "takusen-oracle" = dontDistribute super."takusen-oracle";
+ "tamarin-prover" = dontDistribute super."tamarin-prover";
+ "tamarin-prover-term" = dontDistribute super."tamarin-prover-term";
+ "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory";
+ "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils";
+ "tamper" = dontDistribute super."tamper";
+ "tardis" = doDistribute super."tardis_0_3_0_0";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "task-distribution" = dontDistribute super."task-distribution";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0";
+ "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters";
+ "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter";
+ "tasty-integrate" = dontDistribute super."tasty-integrate";
+ "tasty-laws" = dontDistribute super."tasty-laws";
+ "tasty-lens" = dontDistribute super."tasty-lens";
+ "tasty-program" = dontDistribute super."tasty-program";
+ "tateti-tateti" = dontDistribute super."tateti-tateti";
+ "tau" = dontDistribute super."tau";
+ "tbox" = dontDistribute super."tbox";
+ "tcache-AWS" = dontDistribute super."tcache-AWS";
+ "tccli" = dontDistribute super."tccli";
+ "tce-conf" = dontDistribute super."tce-conf";
+ "tconfig" = dontDistribute super."tconfig";
+ "tcp" = dontDistribute super."tcp";
+ "tdd-util" = dontDistribute super."tdd-util";
+ "tdoc" = dontDistribute super."tdoc";
+ "teams" = dontDistribute super."teams";
+ "teeth" = dontDistribute super."teeth";
+ "telegram" = dontDistribute super."telegram";
+ "telegram-api" = dontDistribute super."telegram-api";
+ "teleport" = dontDistribute super."teleport";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "template-yj" = dontDistribute super."template-yj";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempo" = dontDistribute super."tempo";
+ "tempodb" = dontDistribute super."tempodb";
+ "temporal-csound" = dontDistribute super."temporal-csound";
+ "temporal-media" = dontDistribute super."temporal-media";
+ "temporal-music-notation" = dontDistribute super."temporal-music-notation";
+ "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo";
+ "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western";
+ "temporary-resourcet" = dontDistribute super."temporary-resourcet";
+ "tempus" = dontDistribute super."tempus";
+ "tempus-fugit" = dontDistribute super."tempus-fugit";
+ "tensor" = dontDistribute super."tensor";
+ "term-rewriting" = dontDistribute super."term-rewriting";
+ "termbox-bindings" = dontDistribute super."termbox-bindings";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo" = doDistribute super."terminfo_0_4_0_2";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "termplot" = dontDistribute super."termplot";
+ "terntup" = dontDistribute super."terntup";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "test-framework-program" = dontDistribute super."test-framework-program";
+ "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck";
+ "test-framework-sandbox" = dontDistribute super."test-framework-sandbox";
+ "test-framework-skip" = dontDistribute super."test-framework-skip";
+ "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "test-invariant" = dontDistribute super."test-invariant";
+ "test-pkg" = dontDistribute super."test-pkg";
+ "test-sandbox" = dontDistribute super."test-sandbox";
+ "test-sandbox-compose" = dontDistribute super."test-sandbox-compose";
+ "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit";
+ "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
+ "test-shouldbe" = dontDistribute super."test-shouldbe";
+ "testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpack" = dontDistribute super."testpack";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texrunner" = dontDistribute super."texrunner";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
+ "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";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "textual" = dontDistribute super."textual";
+ "tfp" = dontDistribute super."tfp";
+ "tfp-th" = dontDistribute super."tfp-th";
+ "tftp" = dontDistribute super."tftp";
+ "tga" = dontDistribute super."tga";
+ "th-alpha" = dontDistribute super."th-alpha";
+ "th-build" = dontDistribute super."th-build";
+ "th-cas" = dontDistribute super."th-cas";
+ "th-context" = dontDistribute super."th-context";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-fold" = dontDistribute super."th-fold";
+ "th-inline-io-action" = dontDistribute super."th-inline-io-action";
+ "th-instance-reification" = dontDistribute super."th-instance-reification";
+ "th-instances" = dontDistribute super."th-instances";
+ "th-kinds" = dontDistribute super."th-kinds";
+ "th-kinds-fork" = dontDistribute super."th-kinds-fork";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "th-utilities" = dontDistribute super."th-utilities";
+ "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-serial" = dontDistribute super."tidal-serial";
+ "tidal-vis" = dontDistribute super."tidal-vis";
+ "tie-knot" = dontDistribute super."tie-knot";
+ "tiempo" = dontDistribute super."tiempo";
+ "tiger" = dontDistribute super."tiger";
+ "tight-apply" = dontDistribute super."tight-apply";
+ "tightrope" = dontDistribute super."tightrope";
+ "tighttp" = dontDistribute super."tighttp";
+ "tilings" = dontDistribute super."tilings";
+ "timberc" = dontDistribute super."timberc";
+ "time-cache" = dontDistribute super."time-cache";
+ "time-extras" = dontDistribute super."time-extras";
+ "time-exts" = dontDistribute super."time-exts";
+ "time-http" = dontDistribute super."time-http";
+ "time-interval" = dontDistribute super."time-interval";
+ "time-io-access" = dontDistribute super."time-io-access";
+ "time-out" = dontDistribute super."time-out";
+ "time-patterns" = dontDistribute super."time-patterns";
+ "time-qq" = dontDistribute super."time-qq";
+ "time-recurrence" = dontDistribute super."time-recurrence";
+ "time-series" = dontDistribute super."time-series";
+ "time-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeless" = dontDistribute super."timeless";
+ "timelike" = dontDistribute super."timelike";
+ "timelike-clock" = dontDistribute super."timelike-clock";
+ "timelike-time" = dontDistribute super."timelike-time";
+ "timemap" = dontDistribute super."timemap";
+ "timeout" = dontDistribute super."timeout";
+ "timeout-control" = dontDistribute super."timeout-control";
+ "timeout-with-results" = dontDistribute super."timeout-with-results";
+ "timeparsers" = dontDistribute super."timeparsers";
+ "timeplot" = dontDistribute super."timeplot";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = doDistribute super."tinylog_0_12_1";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "tiphys" = dontDistribute super."tiphys";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls-debug" = doDistribute super."tls-debug_0_4_1";
+ "tls-extra" = dontDistribute super."tls-extra";
+ "tmpl" = dontDistribute super."tmpl";
+ "tn" = dontDistribute super."tn";
+ "tnet" = dontDistribute super."tnet";
+ "to-haskell" = dontDistribute super."to-haskell";
+ "to-string-class" = dontDistribute super."to-string-class";
+ "to-string-instances" = dontDistribute super."to-string-instances";
+ "todos" = dontDistribute super."todos";
+ "tofromxml" = dontDistribute super."tofromxml";
+ "toilet" = dontDistribute super."toilet";
+ "tokenify" = dontDistribute super."tokenify";
+ "tokenize" = dontDistribute super."tokenize";
+ "toktok" = dontDistribute super."toktok";
+ "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell";
+ "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell";
+ "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal";
+ "toml" = dontDistribute super."toml";
+ "toolshed" = dontDistribute super."toolshed";
+ "topkata" = dontDistribute super."topkata";
+ "torch" = dontDistribute super."torch";
+ "total" = dontDistribute super."total";
+ "total-alternative" = dontDistribute super."total-alternative";
+ "total-map" = dontDistribute super."total-map";
+ "total-maps" = dontDistribute super."total-maps";
+ "touched" = dontDistribute super."touched";
+ "toysolver" = dontDistribute super."toysolver";
+ "tpdb" = dontDistribute super."tpdb";
+ "trace" = dontDistribute super."trace";
+ "trace-call" = dontDistribute super."trace-call";
+ "trace-function-call" = dontDistribute super."trace-function-call";
+ "traced" = dontDistribute super."traced";
+ "tracer" = dontDistribute super."tracer";
+ "tracetree" = dontDistribute super."tracetree";
+ "tracker" = dontDistribute super."tracker";
+ "traildb" = dontDistribute super."traildb";
+ "trajectory" = dontDistribute super."trajectory";
+ "transactional-events" = dontDistribute super."transactional-events";
+ "transf" = dontDistribute super."transf";
+ "transformations" = dontDistribute super."transformations";
+ "transformers-abort" = dontDistribute super."transformers-abort";
+ "transformers-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-eff" = dontDistribute super."transformers-eff";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "transient-universe" = dontDistribute super."transient-universe";
+ "translatable-intset" = dontDistribute super."translatable-intset";
+ "translate" = dontDistribute super."translate";
+ "travis" = dontDistribute super."travis";
+ "travis-meta-yaml" = dontDistribute super."travis-meta-yaml";
+ "trawl" = dontDistribute super."trawl";
+ "traypoweroff" = dontDistribute super."traypoweroff";
+ "tree-fun" = dontDistribute super."tree-fun";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treersec" = dontDistribute super."treersec";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "tripLL" = dontDistribute super."tripLL";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "truelevel" = dontDistribute super."truelevel";
+ "trurl" = dontDistribute super."trurl";
+ "truthful" = dontDistribute super."truthful";
+ "tsession" = dontDistribute super."tsession";
+ "tsession-happstack" = dontDistribute super."tsession-happstack";
+ "tskiplist" = dontDistribute super."tskiplist";
+ "tslib" = dontDistribute super."tslib";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttask" = dontDistribute super."ttask";
+ "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";
+ "turingMachine" = dontDistribute super."turingMachine";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle-options" = dontDistribute super."turtle-options";
+ "tweak" = dontDistribute super."tweak";
+ "twee" = dontDistribute super."twee";
+ "twentefp" = dontDistribute super."twentefp";
+ "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
+ "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees";
+ "twentefp-graphs" = dontDistribute super."twentefp-graphs";
+ "twentefp-number" = dontDistribute super."twentefp-number";
+ "twentefp-rosetree" = dontDistribute super."twentefp-rosetree";
+ "twentefp-trees" = dontDistribute super."twentefp-trees";
+ "twentefp-websockets" = dontDistribute super."twentefp-websockets";
+ "twentyseven" = dontDistribute super."twentyseven";
+ "twhs" = dontDistribute super."twhs";
+ "twidge" = dontDistribute super."twidge";
+ "twilight-stm" = dontDistribute super."twilight-stm";
+ "twilio" = dontDistribute super."twilio";
+ "twill" = dontDistribute super."twill";
+ "twiml" = dontDistribute super."twiml";
+ "twine" = dontDistribute super."twine";
+ "twisty" = dontDistribute super."twisty";
+ "twitch" = dontDistribute super."twitch";
+ "twitter" = dontDistribute super."twitter";
+ "twitter-conduit" = doDistribute super."twitter-conduit_0_1_3";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "tx" = dontDistribute super."tx";
+ "txt-sushi" = dontDistribute super."txt-sushi";
+ "txt2rtf" = dontDistribute super."txt2rtf";
+ "txtblk" = dontDistribute super."txtblk";
+ "ty" = dontDistribute super."ty";
+ "typalyze" = dontDistribute super."typalyze";
+ "type-booleans" = dontDistribute super."type-booleans";
+ "type-cache" = dontDistribute super."type-cache";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-combinators" = dontDistribute super."type-combinators";
+ "type-combinators-quote" = dontDistribute super."type-combinators-quote";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-fun" = dontDistribute super."type-fun";
+ "type-functions" = dontDistribute super."type-functions";
+ "type-hint" = dontDistribute super."type-hint";
+ "type-int" = dontDistribute super."type-int";
+ "type-iso" = dontDistribute super."type-iso";
+ "type-level" = dontDistribute super."type-level";
+ "type-level-bst" = dontDistribute super."type-level-bst";
+ "type-level-natural-number" = dontDistribute super."type-level-natural-number";
+ "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction";
+ "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
+ "type-level-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-operators" = dontDistribute super."type-operators";
+ "type-ord" = dontDistribute super."type-ord";
+ "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal";
+ "type-prelude" = dontDistribute super."type-prelude";
+ "type-settheory" = dontDistribute super."type-settheory";
+ "type-spine" = dontDistribute super."type-spine";
+ "type-structure" = dontDistribute super."type-structure";
+ "type-sub-th" = dontDistribute super."type-sub-th";
+ "type-unary" = dontDistribute super."type-unary";
+ "typeable-th" = dontDistribute super."typeable-th";
+ "typed-spreadsheet" = dontDistribute super."typed-spreadsheet";
+ "typed-wire" = dontDistribute super."typed-wire";
+ "typed-wire-utils" = dontDistribute super."typed-wire-utils";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel" = dontDistribute super."typelevel";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uber" = dontDistribute super."uber";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus" = dontDistribute super."udbus";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "uhc-light" = dontDistribute super."uhc-light";
+ "uhc-util" = dontDistribute super."uhc-util";
+ "uhexdump" = dontDistribute super."uhexdump";
+ "uhttpc" = dontDistribute super."uhttpc";
+ "ui-command" = dontDistribute super."ui-command";
+ "uid" = dontDistribute super."uid";
+ "una" = dontDistribute super."una";
+ "unagi-chan" = dontDistribute super."unagi-chan";
+ "unagi-streams" = dontDistribute super."unagi-streams";
+ "unamb" = dontDistribute super."unamb";
+ "unamb-custom" = dontDistribute super."unamb-custom";
+ "unbound" = dontDistribute super."unbound";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unbreak" = dontDistribute super."unbreak";
+ "uncertain" = dontDistribute super."uncertain";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "unfoldable-restricted" = dontDistribute super."unfoldable-restricted";
+ "ungadtagger" = dontDistribute super."ungadtagger";
+ "uni-events" = dontDistribute super."uni-events";
+ "uni-graphs" = dontDistribute super."uni-graphs";
+ "uni-htk" = dontDistribute super."uni-htk";
+ "uni-posixutil" = dontDistribute super."uni-posixutil";
+ "uni-reactor" = dontDistribute super."uni-reactor";
+ "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph";
+ "uni-util" = dontDistribute super."uni-util";
+ "unicode" = dontDistribute super."unicode";
+ "unicode-names" = dontDistribute super."unicode-names";
+ "unicode-normalization" = dontDistribute super."unicode-normalization";
+ "unicode-prelude" = dontDistribute super."unicode-prelude";
+ "unicode-properties" = dontDistribute super."unicode-properties";
+ "unicode-show" = dontDistribute super."unicode-show";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union" = dontDistribute super."union";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique" = dontDistribute super."unique";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "unit-constraint" = dontDistribute super."unit-constraint";
+ "units" = dontDistribute super."units";
+ "units-attoparsec" = dontDistribute super."units-attoparsec";
+ "units-defs" = dontDistribute super."units-defs";
+ "units-parser" = dontDistribute super."units-parser";
+ "unittyped" = dontDistribute super."unittyped";
+ "universal-binary" = dontDistribute super."universal-binary";
+ "universe-th" = dontDistribute super."universe-th";
+ "unix-fcntl" = dontDistribute super."unix-fcntl";
+ "unix-handle" = dontDistribute super."unix-handle";
+ "unix-io-extra" = dontDistribute super."unix-io-extra";
+ "unix-memory" = dontDistribute super."unix-memory";
+ "unix-process-conduit" = dontDistribute super."unix-process-conduit";
+ "unix-pty-light" = dontDistribute super."unix-pty-light";
+ "unlambda" = dontDistribute super."unlambda";
+ "unlit" = dontDistribute super."unlit";
+ "unm-hip" = dontDistribute super."unm-hip";
+ "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unordered-graphs" = dontDistribute super."unordered-graphs";
+ "unpack-funcs" = dontDistribute super."unpack-funcs";
+ "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin";
+ "unsafe" = dontDistribute super."unsafe";
+ "unsafe-promises" = dontDistribute super."unsafe-promises";
+ "unsafely" = dontDistribute super."unsafely";
+ "unsafeperformst" = dontDistribute super."unsafeperformst";
+ "unscramble" = dontDistribute super."unscramble";
+ "unsequential" = dontDistribute super."unsequential";
+ "unusable-pkg" = dontDistribute super."unusable-pkg";
+ "uom-plugin" = dontDistribute super."uom-plugin";
+ "up" = dontDistribute super."up";
+ "up-grade" = dontDistribute super."up-grade";
+ "uploadcare" = dontDistribute super."uploadcare";
+ "upskirt" = dontDistribute super."upskirt";
+ "ureader" = dontDistribute super."ureader";
+ "urembed" = dontDistribute super."urembed";
+ "uri" = dontDistribute super."uri";
+ "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9_2";
+ "uri-conduit" = dontDistribute super."uri-conduit";
+ "uri-enumerator" = dontDistribute super."uri-enumerator";
+ "uri-enumerator-file" = dontDistribute super."uri-enumerator-file";
+ "uri-template" = dontDistribute super."uri-template";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "urn" = dontDistribute super."urn";
+ "urxml" = dontDistribute super."urxml";
+ "usb" = dontDistribute super."usb";
+ "usb-enumerator" = dontDistribute super."usb-enumerator";
+ "usb-hid" = dontDistribute super."usb-hid";
+ "usb-id-database" = dontDistribute super."usb-id-database";
+ "usb-iteratee" = dontDistribute super."usb-iteratee";
+ "usb-safe" = dontDistribute super."usb-safe";
+ "users" = doDistribute super."users_0_4_0_0";
+ "users-persistent" = doDistribute super."users-persistent_0_4_0_0";
+ "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0";
+ "users-test" = doDistribute super."users-test_0_4_0_0";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "uu-cco" = dontDistribute super."uu-cco";
+ "uu-cco-examples" = dontDistribute super."uu-cco-examples";
+ "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing";
+ "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib";
+ "uu-options" = dontDistribute super."uu-options";
+ "uu-tc" = dontDistribute super."uu-tc";
+ "uuagc" = dontDistribute super."uuagc";
+ "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap";
+ "uuagc-cabal" = dontDistribute super."uuagc-cabal";
+ "uuagc-diagrams" = dontDistribute super."uuagc-diagrams";
+ "uuagd" = dontDistribute super."uuagd";
+ "uuid-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "uulib" = dontDistribute super."uulib";
+ "uvector" = dontDistribute super."uvector";
+ "uvector-algorithms" = dontDistribute super."uvector-algorithms";
+ "uxadt" = dontDistribute super."uxadt";
+ "uzbl-with-source" = dontDistribute super."uzbl-with-source";
+ "v4l2" = dontDistribute super."v4l2";
+ "v4l2-examples" = dontDistribute super."v4l2-examples";
+ "vacuum" = dontDistribute super."vacuum";
+ "vacuum-cairo" = dontDistribute super."vacuum-cairo";
+ "vacuum-graphviz" = dontDistribute super."vacuum-graphviz";
+ "vacuum-opengl" = dontDistribute super."vacuum-opengl";
+ "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph";
+ "vado" = dontDistribute super."vado";
+ "valid-names" = dontDistribute super."valid-names";
+ "validate" = dontDistribute super."validate";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "validations" = dontDistribute super."validations";
+ "value-supply" = dontDistribute super."value-supply";
+ "vampire" = dontDistribute super."vampire";
+ "var" = dontDistribute super."var";
+ "varan" = dontDistribute super."varan";
+ "variable-precision" = dontDistribute super."variable-precision";
+ "variables" = dontDistribute super."variables";
+ "varying" = dontDistribute super."varying";
+ "vaultaire-common" = dontDistribute super."vaultaire-common";
+ "vcache" = dontDistribute super."vcache";
+ "vcache-trie" = dontDistribute super."vcache-trie";
+ "vcard" = dontDistribute super."vcard";
+ "vcatt" = dontDistribute super."vcatt";
+ "vcd" = dontDistribute super."vcd";
+ "vcs-revision" = dontDistribute super."vcs-revision";
+ "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse";
+ "vcsgui" = dontDistribute super."vcsgui";
+ "vcswrapper" = dontDistribute super."vcswrapper";
+ "vect" = dontDistribute super."vect";
+ "vect-floating" = dontDistribute super."vect-floating";
+ "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate";
+ "vect-opengl" = dontDistribute super."vect-opengl";
+ "vector-binary" = dontDistribute super."vector-binary";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "vector-instances-collections" = dontDistribute super."vector-instances-collections";
+ "vector-mmap" = dontDistribute super."vector-mmap";
+ "vector-random" = dontDistribute super."vector-random";
+ "vector-read-instances" = dontDistribute super."vector-read-instances";
+ "vector-sized" = dontDistribute super."vector-sized";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = dontDistribute super."vector-space-points";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verdict" = dontDistribute super."verdict";
+ "verdict-json" = dontDistribute super."verdict-json";
+ "verilog" = dontDistribute super."verilog";
+ "versions" = dontDistribute super."versions";
+ "vhdl" = dontDistribute super."vhdl";
+ "views" = dontDistribute super."views";
+ "vigilance" = dontDistribute super."vigilance";
+ "vimeta" = dontDistribute super."vimeta";
+ "vimus" = dontDistribute super."vimus";
+ "vintage-basic" = dontDistribute super."vintage-basic";
+ "vinyl-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
+ "vinyl-plus" = dontDistribute super."vinyl-plus";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "vinyl-vectors" = dontDistribute super."vinyl-vectors";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "visibility" = dontDistribute super."visibility";
+ "vision" = dontDistribute super."vision";
+ "visual-graphrewrite" = dontDistribute super."visual-graphrewrite";
+ "visual-prof" = dontDistribute super."visual-prof";
+ "vivid" = dontDistribute super."vivid";
+ "vk-aws-route53" = dontDistribute super."vk-aws-route53";
+ "vk-posix-pty" = dontDistribute super."vk-posix-pty";
+ "vocabulary-kadma" = dontDistribute super."vocabulary-kadma";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vrpn" = dontDistribute super."vrpn";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
+ "vty-examples" = dontDistribute super."vty-examples";
+ "vty-menu" = dontDistribute super."vty-menu";
+ "vty-ui" = dontDistribute super."vty-ui";
+ "vty-ui-extras" = dontDistribute super."vty-ui-extras";
+ "vulkan" = dontDistribute super."vulkan";
+ "wacom-daemon" = dontDistribute super."wacom-daemon";
+ "waddle" = dontDistribute super."waddle";
+ "wai-accept-language" = dontDistribute super."wai-accept-language";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-devel" = dontDistribute super."wai-devel";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi";
+ "wai-graceful" = dontDistribute super."wai-graceful";
+ "wai-handler-devel" = dontDistribute super."wai-handler-devel";
+ "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi";
+ "wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
+ "wai-handler-snap" = dontDistribute super."wai-handler-snap";
+ "wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
+ "wai-hastache" = dontDistribute super."wai-hastache";
+ "wai-hmac-auth" = dontDistribute super."wai-hmac-auth";
+ "wai-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-inv-route" = dontDistribute super."web-inv-route";
+ "web-mongrel2" = dontDistribute super."web-mongrel2";
+ "web-page" = dontDistribute super."web-page";
+ "web-routes-mtl" = dontDistribute super."web-routes-mtl";
+ "web-routes-quasi" = dontDistribute super."web-routes-quasi";
+ "web-routes-regular" = dontDistribute super."web-routes-regular";
+ "web-routes-transformers" = dontDistribute super."web-routes-transformers";
+ "webapi" = dontDistribute super."webapi";
+ "webapp" = dontDistribute super."webapp";
+ "webcloud" = dontDistribute super."webcloud";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webfinger-client" = dontDistribute super."webfinger-client";
+ "webidl" = dontDistribute super."webidl";
+ "webify" = dontDistribute super."webify";
+ "webkit" = dontDistribute super."webkit";
+ "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore";
+ "webkitgtk3" = dontDistribute super."webkitgtk3";
+ "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "webwire" = dontDistribute super."webwire";
+ "wedding-announcement" = dontDistribute super."wedding-announcement";
+ "wedged" = dontDistribute super."wedged";
+ "weighted-regexp" = dontDistribute super."weighted-regexp";
+ "weighted-search" = dontDistribute super."weighted-search";
+ "welshy" = dontDistribute super."welshy";
+ "werewolf" = dontDistribute super."werewolf";
+ "werewolf-slack" = dontDistribute super."werewolf-slack";
+ "wheb-mongo" = dontDistribute super."wheb-mongo";
+ "wheb-redis" = dontDistribute super."wheb-redis";
+ "wheb-strapped" = dontDistribute super."wheb-strapped";
+ "while-lang-parser" = dontDistribute super."while-lang-parser";
+ "whim" = dontDistribute super."whim";
+ "whiskers" = dontDistribute super."whiskers";
+ "whitespace" = dontDistribute super."whitespace";
+ "whois" = dontDistribute super."whois";
+ "why3" = dontDistribute super."why3";
+ "wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
+ "wikipedia4epub" = dontDistribute super."wikipedia4epub";
+ "win-hp-path" = dontDistribute super."win-hp-path";
+ "windowslive" = dontDistribute super."windowslive";
+ "winerror" = dontDistribute super."winerror";
+ "winio" = dontDistribute super."winio";
+ "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";
+ "word-vector" = dontDistribute super."word-vector";
+ "word24" = dontDistribute super."word24";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "workflow-osx" = dontDistribute super."workflow-osx";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsdl" = dontDistribute super."wsdl";
+ "wsedit" = dontDistribute super."wsedit";
+ "wtk" = dontDistribute super."wtk";
+ "wtk-gtk" = dontDistribute super."wtk-gtk";
+ "wumpus-basic" = dontDistribute super."wumpus-basic";
+ "wumpus-core" = dontDistribute super."wumpus-core";
+ "wumpus-drawing" = dontDistribute super."wumpus-drawing";
+ "wumpus-microprint" = dontDistribute super."wumpus-microprint";
+ "wumpus-tree" = dontDistribute super."wumpus-tree";
+ "wuss" = dontDistribute super."wuss";
+ "wx" = dontDistribute super."wx";
+ "wxAsteroids" = dontDistribute super."wxAsteroids";
+ "wxFruit" = dontDistribute super."wxFruit";
+ "wxc" = dontDistribute super."wxc";
+ "wxcore" = dontDistribute super."wxcore";
+ "wxdirect" = dontDistribute super."wxdirect";
+ "wxhnotepad" = dontDistribute super."wxhnotepad";
+ "wxturtle" = dontDistribute super."wxturtle";
+ "wybor" = dontDistribute super."wybor";
+ "wyvern" = dontDistribute super."wyvern";
+ "x-dsp" = dontDistribute super."x-dsp";
+ "x11-xim" = dontDistribute super."x11-xim";
+ "x11-xinput" = dontDistribute super."x11-xinput";
+ "x509-util" = dontDistribute super."x509-util";
+ "xattr" = dontDistribute super."xattr";
+ "xbattbar" = dontDistribute super."xbattbar";
+ "xcb-types" = dontDistribute super."xcb-types";
+ "xcffib" = dontDistribute super."xcffib";
+ "xchat-plugin" = dontDistribute super."xchat-plugin";
+ "xcp" = dontDistribute super."xcp";
+ "xdcc" = dontDistribute super."xdcc";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "xhaskell-library" = dontDistribute super."xhaskell-library";
+ "xhb" = dontDistribute super."xhb";
+ "xhb-atom-cache" = dontDistribute super."xhb-atom-cache";
+ "xhb-ewmh" = dontDistribute super."xhb-ewmh";
+ "xhtml" = doDistribute super."xhtml_3000_2_1";
+ "xhtml-combinators" = dontDistribute super."xhtml-combinators";
+ "xilinx-lava" = dontDistribute super."xilinx-lava";
+ "xine" = dontDistribute super."xine";
+ "xing-api" = dontDistribute super."xing-api";
+ "xinput-conduit" = dontDistribute super."xinput-conduit";
+ "xkbcommon" = dontDistribute super."xkbcommon";
+ "xkcd" = dontDistribute super."xkcd";
+ "xlsx-tabular" = dontDistribute super."xlsx-tabular";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens";
+ "xml-monad" = dontDistribute super."xml-monad";
+ "xml-parsec" = dontDistribute super."xml-parsec";
+ "xml-picklers" = dontDistribute super."xml-picklers";
+ "xml-pipe" = dontDistribute super."xml-pipe";
+ "xml-prettify" = dontDistribute super."xml-prettify";
+ "xml-push" = dontDistribute super."xml-push";
+ "xml-query" = dontDistribute super."xml-query";
+ "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit";
+ "xml-query-xml-types" = dontDistribute super."xml-query-xml-types";
+ "xml2html" = dontDistribute super."xml2html";
+ "xml2json" = dontDistribute super."xml2json";
+ "xml2x" = dontDistribute super."xml2x";
+ "xmltv" = dontDistribute super."xmltv";
+ "xmms2-client" = dontDistribute super."xmms2-client";
+ "xmms2-client-glib" = dontDistribute super."xmms2-client-glib";
+ "xmobar" = dontDistribute super."xmobar";
+ "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch";
+ "xmonad-contrib" = dontDistribute super."xmonad-contrib";
+ "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch";
+ "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl";
+ "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper";
+ "xmonad-eval" = dontDistribute super."xmonad-eval";
+ "xmonad-extras" = dontDistribute super."xmonad-extras";
+ "xmonad-screenshot" = dontDistribute super."xmonad-screenshot";
+ "xmonad-utils" = dontDistribute super."xmonad-utils";
+ "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper";
+ "xmonad-windownames" = dontDistribute super."xmonad-windownames";
+ "xmpipe" = dontDistribute super."xmpipe";
+ "xorshift" = dontDistribute super."xorshift";
+ "xosd" = dontDistribute super."xosd";
+ "xournal-builder" = dontDistribute super."xournal-builder";
+ "xournal-convert" = dontDistribute super."xournal-convert";
+ "xournal-parser" = dontDistribute super."xournal-parser";
+ "xournal-render" = dontDistribute super."xournal-render";
+ "xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
+ "xsact" = dontDistribute super."xsact";
+ "xsd" = dontDistribute super."xsd";
+ "xsha1" = dontDistribute super."xsha1";
+ "xslt" = dontDistribute super."xslt";
+ "xtc" = dontDistribute super."xtc";
+ "xtest" = dontDistribute super."xtest";
+ "xturtle" = dontDistribute super."xturtle";
+ "xxhash" = dontDistribute super."xxhash";
+ "y0l0bot" = dontDistribute super."y0l0bot";
+ "yabi" = dontDistribute super."yabi";
+ "yabi-muno" = dontDistribute super."yabi-muno";
+ "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit";
+ "yahoo-web-search" = dontDistribute super."yahoo-web-search";
+ "yajl" = dontDistribute super."yajl";
+ "yajl-enumerator" = dontDistribute super."yajl-enumerator";
+ "yall" = dontDistribute super."yall";
+ "yamemo" = dontDistribute super."yamemo";
+ "yaml-config" = dontDistribute super."yaml-config";
+ "yaml-light-lens" = dontDistribute super."yaml-light-lens";
+ "yaml-rpc" = dontDistribute super."yaml-rpc";
+ "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty";
+ "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap";
+ "yaml-union" = dontDistribute super."yaml-union";
+ "yaml2owl" = dontDistribute super."yaml2owl";
+ "yamlkeysdiff" = dontDistribute super."yamlkeysdiff";
+ "yampa-canvas" = dontDistribute super."yampa-canvas";
+ "yampa-glfw" = dontDistribute super."yampa-glfw";
+ "yampa-glut" = dontDistribute super."yampa-glut";
+ "yampa2048" = dontDistribute super."yampa2048";
+ "yaop" = dontDistribute super."yaop";
+ "yap" = dontDistribute super."yap";
+ "yarr" = dontDistribute super."yarr";
+ "yarr-image-io" = dontDistribute super."yarr-image-io";
+ "yate" = dontDistribute super."yate";
+ "yavie" = dontDistribute super."yavie";
+ "ycextra" = dontDistribute super."ycextra";
+ "yeganesh" = dontDistribute super."yeganesh";
+ "yeller" = dontDistribute super."yeller";
+ "yeshql" = dontDistribute super."yeshql";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_3";
+ "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
+ "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
+ "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
+ "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "yesod-auth-pam" = dontDistribute super."yesod-auth-pam";
+ "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient";
+ "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk";
+ "yesod-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-csp" = dontDistribute super."yesod-csp";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
+ "yesod-job-queue" = dontDistribute super."yesod-job-queue";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "yesod-platform" = dontDistribute super."yesod-platform";
+ "yesod-pnotify" = dontDistribute super."yesod-pnotify";
+ "yesod-pure" = dontDistribute super."yesod-pure";
+ "yesod-purescript" = dontDistribute super."yesod-purescript";
+ "yesod-raml" = dontDistribute super."yesod-raml";
+ "yesod-raml-bin" = dontDistribute super."yesod-raml-bin";
+ "yesod-raml-docs" = dontDistribute super."yesod-raml-docs";
+ "yesod-raml-mock" = dontDistribute super."yesod-raml-mock";
+ "yesod-recaptcha" = dontDistribute super."yesod-recaptcha";
+ "yesod-routes" = dontDistribute super."yesod-routes";
+ "yesod-routes-flow" = dontDistribute super."yesod-routes-flow";
+ "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript";
+ "yesod-rst" = dontDistribute super."yesod-rst";
+ "yesod-s3" = dontDistribute super."yesod-s3";
+ "yesod-sass" = dontDistribute super."yesod-sass";
+ "yesod-session-redis" = dontDistribute super."yesod-session-redis";
+ "yesod-static-angular" = doDistribute super."yesod-static-angular_0_1_7";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra";
+ "yesod-worker" = dontDistribute super."yesod-worker";
+ "yet-another-logger" = dontDistribute super."yet-another-logger";
+ "yhccore" = dontDistribute super."yhccore";
+ "yi-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "yi-snippet" = dontDistribute super."yi-snippet";
+ "yi-solarized" = dontDistribute super."yi-solarized";
+ "yi-spolsky" = dontDistribute super."yi-spolsky";
+ "yi-vty" = dontDistribute super."yi-vty";
+ "yices" = dontDistribute super."yices";
+ "yices-easy" = dontDistribute super."yices-easy";
+ "yices-painless" = dontDistribute super."yices-painless";
+ "yjftp" = dontDistribute super."yjftp";
+ "yjftp-libs" = dontDistribute super."yjftp-libs";
+ "yjsvg" = dontDistribute super."yjsvg";
+ "yjtools" = dontDistribute super."yjtools";
+ "yocto" = dontDistribute super."yocto";
+ "yoctoparsec" = dontDistribute super."yoctoparsec";
+ "yoko" = dontDistribute super."yoko";
+ "york-lava" = dontDistribute super."york-lava";
+ "youtube" = dontDistribute super."youtube";
+ "yql" = dontDistribute super."yql";
+ "yst" = dontDistribute super."yst";
+ "yuiGrid" = dontDistribute super."yuiGrid";
+ "yuuko" = dontDistribute super."yuuko";
+ "yxdb-utils" = dontDistribute super."yxdb-utils";
+ "z3" = dontDistribute super."z3";
+ "zalgo" = dontDistribute super."zalgo";
+ "zampolit" = dontDistribute super."zampolit";
+ "zasni-gerna" = dontDistribute super."zasni-gerna";
+ "zcache" = dontDistribute super."zcache";
+ "zenc" = dontDistribute super."zenc";
+ "zendesk-api" = dontDistribute super."zendesk-api";
+ "zeno" = dontDistribute super."zeno";
+ "zerobin" = dontDistribute super."zerobin";
+ "zeromq-haskell" = dontDistribute super."zeromq-haskell";
+ "zeromq3-conduit" = dontDistribute super."zeromq3-conduit";
+ "zeromq3-haskell" = dontDistribute super."zeromq3-haskell";
+ "zeroth" = dontDistribute super."zeroth";
+ "zigbee-znet25" = dontDistribute super."zigbee-znet25";
+ "zim-parser" = doDistribute super."zim-parser_0_1_0_0";
+ "zip" = dontDistribute super."zip";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipkin" = dontDistribute super."zipkin";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "zmcat" = dontDistribute super."zmcat";
+ "zmidi-core" = dontDistribute super."zmidi-core";
+ "zmidi-score" = dontDistribute super."zmidi-score";
+ "zmqat" = dontDistribute super."zmqat";
+ "zoneinfo" = dontDistribute super."zoneinfo";
+ "zoom" = dontDistribute super."zoom";
+ "zoom-cache" = dontDistribute super."zoom-cache";
+ "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm";
+ "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile";
+ "zoom-refs" = dontDistribute super."zoom-refs";
+ "zot" = dontDistribute super."zot";
+ "zsh-battery" = dontDistribute super."zsh-battery";
+ "ztail" = dontDistribute super."ztail";
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix
index 751dede7bca6..c60a485d1719 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix
@@ -1012,6 +1012,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -2567,6 +2568,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -3049,6 +3051,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_5";
@@ -3243,6 +3246,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3267,6 +3272,7 @@ self: super: {
"ghc-syb" = dontDistribute super."ghc-syb";
"ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3312,6 +3318,7 @@ self: super: {
"gipeda" = doDistribute super."gipeda_0_2";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_6_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3761,6 +3768,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4105,14 +4113,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4504,6 +4509,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4636,6 +4642,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4656,6 +4663,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5070,6 +5078,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5462,6 +5471,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5692,6 +5702,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6226,6 +6237,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6359,6 +6371,7 @@ self: super: {
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
"pusher-http-haskell" = doDistribute super."pusher-http-haskell_0_3_0_1";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6387,6 +6400,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
@@ -6538,6 +6552,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0";
@@ -6701,6 +6716,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6907,6 +6923,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -7162,6 +7179,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7310,6 +7328,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7364,6 +7383,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
"sugarhaskell" = dontDistribute super."sugarhaskell";
@@ -7553,6 +7573,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7565,6 +7586,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7727,6 +7749,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = doDistribute super."tracy_0_1_2_0";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8179,6 +8202,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -8222,6 +8246,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8240,6 +8265,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8344,6 +8370,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8417,6 +8444,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix
index 9c28a5b6fb43..f4e2dbd81502 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix
@@ -1009,6 +1009,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -2558,6 +2559,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -3034,6 +3036,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_5";
@@ -3227,6 +3230,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3251,6 +3256,7 @@ self: super: {
"ghc-syb" = dontDistribute super."ghc-syb";
"ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3295,6 +3301,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_6_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3744,6 +3751,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4088,14 +4096,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4487,6 +4492,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4618,6 +4624,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4638,6 +4645,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5052,6 +5060,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5442,6 +5451,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5672,6 +5682,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6205,6 +6216,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6337,6 +6349,7 @@ self: super: {
"push-notify-ccs" = dontDistribute super."push-notify-ccs";
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6365,6 +6378,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
@@ -6515,6 +6529,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-deriv" = dontDistribute super."regex-deriv";
@@ -6677,6 +6692,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6883,6 +6899,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -7135,6 +7152,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7283,6 +7301,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7337,6 +7356,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
"sugarhaskell" = dontDistribute super."sugarhaskell";
@@ -7526,6 +7546,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7538,6 +7559,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7700,6 +7722,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = doDistribute super."tracy_0_1_2_0";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8148,6 +8171,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -8191,6 +8215,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8209,6 +8234,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8313,6 +8339,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8386,6 +8413,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix
index 171616fa39cc..699de394bb2a 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix
@@ -1008,6 +1008,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -2552,6 +2553,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -3025,6 +3027,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_5";
@@ -3218,6 +3221,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3241,6 +3246,7 @@ self: super: {
"ghc-syb" = dontDistribute super."ghc-syb";
"ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3285,6 +3291,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_6_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3734,6 +3741,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4078,14 +4086,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4475,6 +4480,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4606,6 +4612,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4626,6 +4633,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5040,6 +5048,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5095,6 +5104,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5428,6 +5438,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5656,6 +5667,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6185,6 +6197,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6317,6 +6330,7 @@ self: super: {
"push-notify-ccs" = dontDistribute super."push-notify-ccs";
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6345,6 +6359,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
@@ -6494,6 +6509,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-deriv" = dontDistribute super."regex-deriv";
@@ -6656,6 +6672,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6862,6 +6879,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -7114,6 +7132,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7262,6 +7281,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7316,6 +7336,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
"sugarhaskell" = dontDistribute super."sugarhaskell";
@@ -7504,6 +7525,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7516,6 +7538,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7678,6 +7701,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = doDistribute super."tracy_0_1_2_0";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8125,6 +8149,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -8168,6 +8193,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8186,6 +8212,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8290,6 +8317,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8363,6 +8391,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix
index a2c068dc2e4f..1843f1160d57 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix
@@ -1008,6 +1008,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -2549,6 +2550,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -3022,6 +3024,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_5";
@@ -3215,6 +3218,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3238,6 +3243,7 @@ self: super: {
"ghc-syb" = dontDistribute super."ghc-syb";
"ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3282,6 +3288,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_6_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3730,6 +3737,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4074,14 +4082,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4470,6 +4475,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4601,6 +4607,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4621,6 +4628,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5035,6 +5043,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5090,6 +5099,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5423,6 +5433,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5651,6 +5662,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6180,6 +6192,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6312,6 +6325,7 @@ self: super: {
"push-notify-ccs" = dontDistribute super."push-notify-ccs";
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6340,6 +6354,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
@@ -6489,6 +6504,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-deriv" = dontDistribute super."regex-deriv";
@@ -6651,6 +6667,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6857,6 +6874,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -7109,6 +7127,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7257,6 +7276,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7311,6 +7331,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
"sugarhaskell" = dontDistribute super."sugarhaskell";
@@ -7499,6 +7520,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7511,6 +7533,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7673,6 +7696,7 @@ self: super: {
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
"tracy" = doDistribute super."tracy_0_1_2_0";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8117,6 +8141,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -8160,6 +8185,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8178,6 +8204,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8282,6 +8309,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8355,6 +8383,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix
index 9189017a9311..9635c9adee09 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix
@@ -1007,6 +1007,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -2545,6 +2546,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -3018,6 +3020,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_5";
@@ -3209,6 +3212,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3232,6 +3237,7 @@ self: super: {
"ghc-syb" = dontDistribute super."ghc-syb";
"ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3276,6 +3282,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_6_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3723,6 +3730,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4066,14 +4074,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4462,6 +4467,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4593,6 +4599,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4613,6 +4620,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5026,6 +5034,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5081,6 +5090,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5413,6 +5423,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5640,6 +5651,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6167,6 +6179,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6299,6 +6312,7 @@ self: super: {
"push-notify-ccs" = dontDistribute super."push-notify-ccs";
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6327,6 +6341,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
@@ -6476,6 +6491,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-deriv" = dontDistribute super."regex-deriv";
@@ -6638,6 +6654,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6844,6 +6861,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -7096,6 +7114,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7244,6 +7263,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7298,6 +7318,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
"sugarhaskell" = dontDistribute super."sugarhaskell";
@@ -7486,6 +7507,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7498,6 +7520,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7659,6 +7682,7 @@ self: super: {
"tracer" = dontDistribute super."tracer";
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8102,6 +8126,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -8145,6 +8170,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8162,6 +8188,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8266,6 +8293,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8339,6 +8367,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix
index 6565ffe6572a..b7a9a1dd2ec8 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix
@@ -1007,6 +1007,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -2542,6 +2543,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -3015,6 +3017,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_5";
@@ -3206,6 +3209,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3229,6 +3234,7 @@ self: super: {
"ghc-syb" = dontDistribute super."ghc-syb";
"ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3273,6 +3279,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_6_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3720,6 +3727,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4062,14 +4070,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4457,6 +4462,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4588,6 +4594,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4608,6 +4615,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5021,6 +5029,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5076,6 +5085,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5407,6 +5417,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5634,6 +5645,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6159,6 +6171,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6291,6 +6304,7 @@ self: super: {
"push-notify-ccs" = dontDistribute super."push-notify-ccs";
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6319,6 +6333,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
@@ -6468,6 +6483,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-deriv" = dontDistribute super."regex-deriv";
@@ -6630,6 +6646,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6835,6 +6852,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -7087,6 +7105,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7235,6 +7254,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7287,6 +7307,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
"sugarhaskell" = dontDistribute super."sugarhaskell";
@@ -7475,6 +7496,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7487,6 +7509,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7648,6 +7671,7 @@ self: super: {
"tracer" = dontDistribute super."tracer";
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8090,6 +8114,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -8133,6 +8158,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8150,6 +8176,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8254,6 +8281,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8327,6 +8355,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix
index 02697ba8cdda..e6b94dae9952 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix
@@ -1007,6 +1007,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -2542,6 +2543,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -3015,6 +3017,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_6";
@@ -3206,6 +3209,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3229,6 +3234,7 @@ self: super: {
"ghc-syb" = dontDistribute super."ghc-syb";
"ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3273,6 +3279,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_6_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3720,6 +3727,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4062,14 +4070,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4457,6 +4462,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4588,6 +4594,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4608,6 +4615,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5021,6 +5029,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5076,6 +5085,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5407,6 +5417,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5634,6 +5645,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6159,6 +6171,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6291,6 +6304,7 @@ self: super: {
"push-notify-ccs" = dontDistribute super."push-notify-ccs";
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6319,6 +6333,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
@@ -6468,6 +6483,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-deriv" = dontDistribute super."regex-deriv";
@@ -6630,6 +6646,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6835,6 +6852,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_6";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -7087,6 +7105,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7235,6 +7254,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7287,6 +7307,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
"sugarhaskell" = dontDistribute super."sugarhaskell";
@@ -7475,6 +7496,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7487,6 +7509,7 @@ self: super: {
"texrunner" = dontDistribute super."texrunner";
"text" = doDistribute super."text_1_2_2_0";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7648,6 +7671,7 @@ self: super: {
"tracer" = dontDistribute super."tracer";
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8089,6 +8113,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -8132,6 +8157,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8149,6 +8175,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8253,6 +8280,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8326,6 +8354,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix
index 4220d542ee72..86967cf60af9 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix
@@ -1007,6 +1007,7 @@ self: super: {
"YFrob" = dontDistribute super."YFrob";
"Yablog" = dontDistribute super."Yablog";
"YamlReference" = dontDistribute super."YamlReference";
+ "Yampa" = doDistribute super."Yampa_0_10_4";
"Yampa-core" = dontDistribute super."Yampa-core";
"Yocto" = dontDistribute super."Yocto";
"Yogurt" = dontDistribute super."Yogurt";
@@ -2539,6 +2540,7 @@ self: super: {
"digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
"digit" = dontDistribute super."digit";
"digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional" = doDistribute super."dimensional_1_0_1_1";
"dimensional-codata" = dontDistribute super."dimensional-codata";
"dimensional-tf" = dontDistribute super."dimensional-tf";
"dingo-core" = dontDistribute super."dingo-core";
@@ -3012,6 +3014,7 @@ self: super: {
"fmark" = dontDistribute super."fmark";
"fn" = doDistribute super."fn_0_2_0_2";
"fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "focus" = doDistribute super."focus_0_1_4";
"fold-debounce" = dontDistribute super."fold-debounce";
"fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
"foldl" = doDistribute super."foldl_1_1_6";
@@ -3203,6 +3206,8 @@ self: super: {
"getopt-simple" = dontDistribute super."getopt-simple";
"gf" = dontDistribute super."gf";
"ggtsTC" = dontDistribute super."ggtsTC";
+ "ghc-boot" = dontDistribute super."ghc-boot";
+ "ghc-boot-th" = dontDistribute super."ghc-boot-th";
"ghc-core" = dontDistribute super."ghc-core";
"ghc-core-html" = dontDistribute super."ghc-core-html";
"ghc-datasize" = dontDistribute super."ghc-datasize";
@@ -3226,6 +3231,7 @@ self: super: {
"ghc-syb" = dontDistribute super."ghc-syb";
"ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
"ghc-vis" = dontDistribute super."ghc-vis";
+ "ghci" = dontDistribute super."ghci";
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
"ghci-lib" = dontDistribute super."ghci-lib";
@@ -3270,6 +3276,7 @@ self: super: {
"ginsu" = dontDistribute super."ginsu";
"giphy-api" = dontDistribute super."giphy-api";
"gist" = dontDistribute super."gist";
+ "git" = dontDistribute super."git";
"git-all" = dontDistribute super."git-all";
"git-annex" = doDistribute super."git-annex_6_20160114";
"git-checklist" = dontDistribute super."git-checklist";
@@ -3716,6 +3723,7 @@ self: super: {
"haroonga" = dontDistribute super."haroonga";
"haroonga-httpd" = dontDistribute super."haroonga-httpd";
"harpy" = dontDistribute super."harpy";
+ "harvest-api" = dontDistribute super."harvest-api";
"has" = dontDistribute super."has";
"has-th" = dontDistribute super."has-th";
"hascal" = dontDistribute super."hascal";
@@ -4056,14 +4064,11 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
- "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4451,6 +4456,7 @@ self: super: {
"hutton" = dontDistribute super."hutton";
"huttons-razor" = dontDistribute super."huttons-razor";
"huzzy" = dontDistribute super."huzzy";
+ "hvect" = doDistribute super."hvect_0_3_0_0";
"hw-bits" = dontDistribute super."hw-bits";
"hw-conduit" = dontDistribute super."hw-conduit";
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
@@ -4580,6 +4586,7 @@ self: super: {
"inflist" = dontDistribute super."inflist";
"influxdb" = dontDistribute super."influxdb";
"informative" = dontDistribute super."informative";
+ "ini" = doDistribute super."ini_0_3_4";
"inilist" = dontDistribute super."inilist";
"inject" = dontDistribute super."inject";
"inject-function" = dontDistribute super."inject-function";
@@ -4600,6 +4607,7 @@ self: super: {
"instrument-chord" = dontDistribute super."instrument-chord";
"int-cast" = dontDistribute super."int-cast";
"integer-pure" = dontDistribute super."integer-pure";
+ "integer-simple" = dontDistribute super."integer-simple";
"intel-aes" = dontDistribute super."intel-aes";
"interchangeable" = dontDistribute super."interchangeable";
"interleavableGen" = dontDistribute super."interleavableGen";
@@ -5012,6 +5020,7 @@ self: super: {
"libxslt" = dontDistribute super."libxslt";
"life" = dontDistribute super."life";
"lift-generics" = dontDistribute super."lift-generics";
+ "lifted-async" = doDistribute super."lifted-async_0_8_0_1";
"lifted-threads" = dontDistribute super."lifted-threads";
"lifter" = dontDistribute super."lifter";
"ligature" = dontDistribute super."ligature";
@@ -5067,6 +5076,7 @@ self: super: {
"list-grouping" = dontDistribute super."list-grouping";
"list-mux" = dontDistribute super."list-mux";
"list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "list-t" = doDistribute super."list-t_0_4_6_1";
"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";
@@ -5398,6 +5408,7 @@ self: super: {
"monad-ox" = dontDistribute super."monad-ox";
"monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar";
"monad-param" = dontDistribute super."monad-param";
+ "monad-peel" = doDistribute super."monad-peel_0_2";
"monad-ran" = dontDistribute super."monad-ran";
"monad-resumption" = dontDistribute super."monad-resumption";
"monad-state" = dontDistribute super."monad-state";
@@ -5625,6 +5636,7 @@ self: super: {
"network-metrics" = dontDistribute super."network-metrics";
"network-minihttp" = dontDistribute super."network-minihttp";
"network-msg" = dontDistribute super."network-msg";
+ "network-multicast" = doDistribute super."network-multicast_0_1_0";
"network-netpacket" = dontDistribute super."network-netpacket";
"network-pgi" = dontDistribute super."network-pgi";
"network-rpca" = dontDistribute super."network-rpca";
@@ -6146,6 +6158,7 @@ self: super: {
"powerpc" = dontDistribute super."powerpc";
"ppm" = dontDistribute super."ppm";
"pqc" = dontDistribute super."pqc";
+ "pqueue" = doDistribute super."pqueue_1_3_1";
"pqueue-mtl" = dontDistribute super."pqueue-mtl";
"practice-room" = dontDistribute super."practice-room";
"precis" = dontDistribute super."precis";
@@ -6278,6 +6291,7 @@ self: super: {
"push-notify-ccs" = dontDistribute super."push-notify-ccs";
"push-notify-general" = dontDistribute super."push-notify-general";
"pusher-haskell" = dontDistribute super."pusher-haskell";
+ "pusher-ws" = dontDistribute super."pusher-ws";
"pushme" = dontDistribute super."pushme";
"putlenses" = dontDistribute super."putlenses";
"puzzle-draw" = dontDistribute super."puzzle-draw";
@@ -6306,6 +6320,7 @@ self: super: {
"queuelike" = dontDistribute super."queuelike";
"quick-generator" = dontDistribute super."quick-generator";
"quick-schema" = dontDistribute super."quick-schema";
+ "quickbooks" = dontDistribute super."quickbooks";
"quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
"quickcheck-poly" = dontDistribute super."quickcheck-poly";
"quickcheck-properties" = dontDistribute super."quickcheck-properties";
@@ -6455,6 +6470,7 @@ self: super: {
"reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-jsx" = dontDistribute super."reflex-jsx";
"reflex-orphans" = dontDistribute super."reflex-orphans";
"reflex-transformers" = dontDistribute super."reflex-transformers";
"regex-deriv" = dontDistribute super."regex-deriv";
@@ -6617,6 +6633,7 @@ self: super: {
"rosso" = dontDistribute super."rosso";
"rot13" = dontDistribute super."rot13";
"rotating-log" = dontDistribute super."rotating-log";
+ "roundRobin" = dontDistribute super."roundRobin";
"rounding" = dontDistribute super."rounding";
"roundtrip" = dontDistribute super."roundtrip";
"roundtrip-aeson" = dontDistribute super."roundtrip-aeson";
@@ -6821,6 +6838,7 @@ self: super: {
"servant-postgresql" = dontDistribute super."servant-postgresql";
"servant-quickcheck" = dontDistribute super."servant-quickcheck";
"servant-response" = dontDistribute super."servant-response";
+ "servant-router" = dontDistribute super."servant-router";
"servant-scotty" = dontDistribute super."servant-scotty";
"servant-server" = doDistribute super."servant-server_0_4_4_7";
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
@@ -7071,6 +7089,7 @@ self: super: {
"sophia" = dontDistribute super."sophia";
"sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
"sorted" = dontDistribute super."sorted";
+ "sorted-list" = doDistribute super."sorted-list_0_1_4_2";
"sorting" = dontDistribute super."sorting";
"sorty" = dontDistribute super."sorty";
"sound-collage" = dontDistribute super."sound-collage";
@@ -7219,6 +7238,7 @@ self: super: {
"storablevector" = dontDistribute super."storablevector";
"storablevector-carray" = dontDistribute super."storablevector-carray";
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
+ "store" = dontDistribute super."store";
"str" = dontDistribute super."str";
"stratosphere" = dontDistribute super."stratosphere";
"stratum-tool" = dontDistribute super."stratum-tool";
@@ -7271,6 +7291,7 @@ self: super: {
"subnet" = dontDistribute super."subnet";
"subtitleParser" = dontDistribute super."subtitleParser";
"subtitles" = dontDistribute super."subtitles";
+ "subwordgraph" = dontDistribute super."subwordgraph";
"suffixarray" = dontDistribute super."suffixarray";
"suffixtree" = dontDistribute super."suffixtree";
"sugarhaskell" = dontDistribute super."sugarhaskell";
@@ -7459,6 +7480,7 @@ self: super: {
"test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck";
"test-shouldbe" = dontDistribute super."test-shouldbe";
"testPkg" = dontDistribute super."testPkg";
+ "testbench" = dontDistribute super."testbench";
"testing-feat" = doDistribute super."testing-feat_0_4_0_2";
"testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
"testloop" = dontDistribute super."testloop";
@@ -7470,6 +7492,7 @@ self: super: {
"texmath" = doDistribute super."texmath_0_8_5";
"texrunner" = dontDistribute super."texrunner";
"text-and-plots" = dontDistribute super."text-and-plots";
+ "text-conversions" = dontDistribute super."text-conversions";
"text-format-simple" = dontDistribute super."text-format-simple";
"text-icu-translit" = dontDistribute super."text-icu-translit";
"text-json-qq" = dontDistribute super."text-json-qq";
@@ -7631,6 +7654,7 @@ self: super: {
"tracer" = dontDistribute super."tracer";
"tracetree" = dontDistribute super."tracetree";
"tracker" = dontDistribute super."tracker";
+ "traildb" = dontDistribute super."traildb";
"trajectory" = dontDistribute super."trajectory";
"transactional-events" = dontDistribute super."transactional-events";
"transf" = dontDistribute super."transf";
@@ -8072,6 +8096,7 @@ self: super: {
"web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell";
"web-css" = dontDistribute super."web-css";
"web-encodings" = dontDistribute super."web-encodings";
+ "web-inv-route" = dontDistribute super."web-inv-route";
"web-mongrel2" = dontDistribute super."web-mongrel2";
"web-page" = dontDistribute super."web-page";
"web-routes-mtl" = dontDistribute super."web-routes-mtl";
@@ -8114,6 +8139,7 @@ self: super: {
"whois" = dontDistribute super."whois";
"why3" = dontDistribute super."why3";
"wigner-symbols" = dontDistribute super."wigner-symbols";
+ "wikicfp-scraper" = dontDistribute super."wikicfp-scraper";
"wikipedia4epub" = dontDistribute super."wikipedia4epub";
"win-hp-path" = dontDistribute super."win-hp-path";
"windowslive" = dontDistribute super."windowslive";
@@ -8131,6 +8157,7 @@ self: super: {
"wol" = dontDistribute super."wol";
"wolf" = dontDistribute super."wolf";
"woot" = dontDistribute super."woot";
+ "word-vector" = dontDistribute super."word-vector";
"word24" = dontDistribute super."word24";
"wordcloud" = dontDistribute super."wordcloud";
"wordexp" = dontDistribute super."wordexp";
@@ -8235,6 +8262,7 @@ self: super: {
"xournal-parser" = dontDistribute super."xournal-parser";
"xournal-render" = dontDistribute super."xournal-render";
"xournal-types" = dontDistribute super."xournal-types";
+ "xpathdsv" = dontDistribute super."xpathdsv";
"xsact" = dontDistribute super."xsact";
"xsd" = dontDistribute super."xsd";
"xsha1" = dontDistribute super."xsha1";
@@ -8307,6 +8335,7 @@ self: super: {
"yesod-form-json" = dontDistribute super."yesod-form-json";
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
"yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-ip" = dontDistribute super."yesod-ip";
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
"yesod-json" = dontDistribute super."yesod-json";
"yesod-links" = dontDistribute super."yesod-links";
diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix
index f143b72215dd..4cfc9a7b4e67 100644
--- a/pkgs/development/haskell-modules/hackage-packages.nix
+++ b/pkgs/development/haskell-modules/hackage-packages.nix
@@ -11278,18 +11278,18 @@ self: {
"Hoed" = callPackage
({ mkDerivation, array, base, bytestring, cereal, containers
, directory, filepath, FPretty, libgraph, mtl, process, RBTree
- , regex-posix, template-haskell, threepenny-gui
+ , regex-posix, template-haskell, threepenny-gui, time
}:
mkDerivation {
pname = "Hoed";
- version = "0.3.5";
- sha256 = "b14c654effc7d4926f73966be56de290d9b0d5159371fc184320033aabba1f1f";
+ version = "0.3.6";
+ sha256 = "8508f5077a0a45662af4dddd44bf1ce55fb4cd007b0246ce193ff6d439c351db";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
array base bytestring cereal containers directory filepath FPretty
libgraph mtl process RBTree regex-posix template-haskell
- threepenny-gui
+ threepenny-gui time
];
jailbreak = true;
homepage = "https://wiki.haskell.org/Hoed";
@@ -12221,24 +12221,21 @@ self: {
"JsonGrammar" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, containers
- , hashable, HUnit, language-typescript, mtl, semigroups
- , stack-prism, template-haskell, test-framework
- , test-framework-hunit, text, time, unordered-containers, vector
+ , HUnit, language-typescript, mtl, stack-prism, test-framework
+ , test-framework-hunit, text, unordered-containers, vector
}:
mkDerivation {
pname = "JsonGrammar";
- version = "1.0.3";
- sha256 = "0d3879f9735dce25bdd52b01d0fb07c92eaf32a79aed1a16a67429cae3b297ee";
+ version = "1.0.4";
+ sha256 = "cb411635c4f9e30e0e59ed4a0b3294b5df78ccd70dc646a0eb896a56451e72bd";
libraryHaskellDepends = [
- aeson attoparsec base bytestring containers hashable
- language-typescript mtl semigroups stack-prism template-haskell
- text time unordered-containers vector
+ aeson attoparsec base bytestring containers language-typescript mtl
+ stack-prism text unordered-containers vector
];
testHaskellDepends = [
aeson base HUnit language-typescript stack-prism test-framework
test-framework-hunit text
];
- jailbreak = true;
homepage = "https://github.com/MedeaMelana/JsonGrammar2";
description = "Combinators for bidirectional JSON parsing";
license = stdenv.lib.licenses.bsd3;
@@ -15028,6 +15025,20 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "NoTrace_0_3_0_1" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "NoTrace";
+ version = "0.3.0.1";
+ sha256 = "a8efac60b33bb9a50b08036b94b75746150aa79e2cf4a10f3c627f4982cd5f4f";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base ];
+ homepage = "https://github.com/CindyLinz/Haskell-NoTrace";
+ description = "Remove all the functions come from Debug.Trace after debugging";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"Noise" = callPackage
({ mkDerivation, array, base, data-default, vector }:
mkDerivation {
@@ -15444,6 +15455,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "Octree_0_5_4_3" = callPackage
+ ({ mkDerivation, AC-Vector, base, markdown-unlit, QuickCheck }:
+ mkDerivation {
+ pname = "Octree";
+ version = "0.5.4.3";
+ sha256 = "4fd8aa7fbbcc2387e06159b0d96c8ede26812ebe85b5d6931ce4bb8b1972b465";
+ libraryHaskellDepends = [ AC-Vector base QuickCheck ];
+ testHaskellDepends = [ AC-Vector base markdown-unlit QuickCheck ];
+ homepage = "https://github.com/mgajda/octree";
+ description = "Simple unbalanced Octree for storing data about 3D points";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"OddWord" = callPackage
({ mkDerivation, base, QuickCheck }:
mkDerivation {
@@ -16437,8 +16462,8 @@ self: {
}:
mkDerivation {
pname = "Plot-ho-matic";
- version = "0.9.0.7";
- sha256 = "48b55a36a471db30444ca4118402f2eece7cf20034a9737db5cd4b8723cbbf90";
+ version = "0.9.0.8";
+ sha256 = "22b6f69b384eb9883560b837cdf8dbe70b76099a10818adca803298c22cbe3bd";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -21765,7 +21790,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "Yampa" = callPackage
+ "Yampa_0_10_4" = callPackage
({ mkDerivation, base, deepseq, random }:
mkDerivation {
pname = "Yampa";
@@ -21776,6 +21801,20 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Yampa";
description = "Library for programming hybrid systems";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "Yampa" = callPackage
+ ({ mkDerivation, base, deepseq, random }:
+ mkDerivation {
+ pname = "Yampa";
+ version = "0.10.5";
+ sha256 = "ebb5fb1091f913b246fb2e9dd8278d642dbb88bfd248e34fff1ac796299cf6d7";
+ libraryHaskellDepends = [ base deepseq random ];
+ testHaskellDepends = [ base ];
+ 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" ];
}) {};
@@ -23270,10 +23309,9 @@ self: {
({ mkDerivation, base, QuickCheck }:
mkDerivation {
pname = "activehs-base";
- version = "0.3.0.3";
- sha256 = "6258c61cd325735f033e5bf388c96502fa4fd283e67c2465ce473f9ffc1a83e0";
+ version = "0.3.0.4";
+ sha256 = "92d516583737ceb2272807eab8280ebb3b36e679c5a219ca9813d0c695efb13e";
libraryHaskellDepends = [ base QuickCheck ];
- jailbreak = true;
description = "Basic definitions for activehs";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -31844,18 +31882,17 @@ self: {
}) {};
"apiary-http-client" = callPackage
- ({ mkDerivation, apiary, base, bytestring, data-default-class
- , http-client, http-types, text, transformers, types-compat, wai
+ ({ mkDerivation, apiary, base, bytestring, bytestring-builder
+ , data-default-class, http-client, http-types, text, transformers
+ , types-compat, wai
}:
mkDerivation {
pname = "apiary-http-client";
- version = "0.1.1.0";
- sha256 = "4e7b6ba5741f0f194ee23679cceb87167a7bac44ad2bca7789e4488320e103bd";
- revision = "2";
- editedCabalFile = "8238cab98333b055b04dd16fed558be1c969b7004e1ab06ebf2567ee9a64523b";
+ version = "0.1.2.0";
+ sha256 = "056fdeea4f3cb0c93a4b36e3c1d1695c45804ecdef45e9a77e6f9a9c87895413";
libraryHaskellDepends = [
- apiary base bytestring data-default-class http-client http-types
- text transformers types-compat wai
+ apiary base bytestring bytestring-builder 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";
@@ -35115,6 +35152,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "authenticate-oauth_1_5_1_2" = callPackage
+ ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring
+ , crypto-pubkey-types, data-default, http-client, http-types
+ , random, RSA, SHA, time, transformers
+ }:
+ mkDerivation {
+ pname = "authenticate-oauth";
+ version = "1.5.1.2";
+ sha256 = "294279ff1a4e746eedb5186d8230c34b2ffa770f020d30341424a59fedb76a33";
+ libraryHaskellDepends = [
+ base base64-bytestring blaze-builder bytestring crypto-pubkey-types
+ data-default http-client http-types random RSA SHA time
+ transformers
+ ];
+ homepage = "http://github.com/yesodweb/authenticate";
+ description = "Library to authenticate with OAuth for Haskell web applications";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"authinfo-hs" = callPackage
({ mkDerivation, attoparsec, base, network, text }:
mkDerivation {
@@ -37275,17 +37332,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "base_4_8_2_0" = callPackage
- ({ mkDerivation, ghc-prim, rts }:
+ "base_4_9_0_0" = callPackage
+ ({ mkDerivation, ghc-prim, invalid-cabal-flag-settings, rts }:
mkDerivation {
pname = "base";
- version = "4.8.2.0";
- sha256 = "f2bc9eb2773f74c231a25f32dc3b47b704cccc6b9064b6e1140dded364fafe8c";
- libraryHaskellDepends = [ ghc-prim rts ];
+ version = "4.9.0.0";
+ sha256 = "de577e8bd48de97be954c32951b9544ecdbbede721042c71f7f611af4ba8be2d";
+ libraryHaskellDepends = [
+ ghc-prim invalid-cabal-flag-settings rts
+ ];
+ jailbreak = true;
description = "Basic libraries";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
+ broken = true;
+ }) {invalid-cabal-flag-settings = null;};
"base-compat_0_5_0" = callPackage
({ mkDerivation, base, errorcall-eq-instance, hspec, QuickCheck
@@ -37397,6 +37458,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "base-noprelude_4_9_0_0" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "base-noprelude";
+ version = "4.9.0.0";
+ sha256 = "1c5509c33366d7d0810c12d3e00579709f1b940733fda0f5f38079eba8f2fe5d";
+ libraryHaskellDepends = [ base ];
+ doHaddock = false;
+ jailbreak = true;
+ homepage = "https://github.com/hvr/base-noprelude";
+ description = "\"base\" package sans \"Prelude\" module";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"base-orphans_0_4_3" = callPackage
({ mkDerivation, base, ghc-prim, hspec, QuickCheck }:
mkDerivation {
@@ -37686,11 +37762,11 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "base-prelude";
- version = "1";
- sha256 = "ee443310c2b3a18471f05b3c8c05ce39ea6f7825a0bf78028a06d59b3f28469c";
+ version = "1.0.1.1";
+ sha256 = "dccf0a9a3b45f950bac92b6d87997c0a2a4304e40027204b12d018698b7a31b5";
libraryHaskellDepends = [ base ];
homepage = "https://github.com/nikita-volkov/base-prelude";
- description = "The most complete prelude formed from only the \"base\" package";
+ description = "The most complete prelude formed solely from the \"base\" package";
license = stdenv.lib.licenses.mit;
}) {};
@@ -38393,8 +38469,8 @@ self: {
({ mkDerivation, base, criterion, silently, text, turtle }:
mkDerivation {
pname = "bench";
- version = "1.0.0";
- sha256 = "377f85a056c84e5a5e3e8b5ddd6fd2bf8e061b1025c48eac1053df3ff988dcca";
+ version = "1.0.1";
+ sha256 = "b90b0789604d351aa97d736492c4b10be9bebaa369efc4145579f9f6d2eeb019";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base criterion silently text turtle ];
@@ -39594,6 +39670,8 @@ self: {
pname = "binary-strict";
version = "0.4.8.3";
sha256 = "8eb8fb5bd9fdae7bc39df27e3273bdf7e7903c88c517c5646616dd8f04a92cb1";
+ revision = "1";
+ editedCabalFile = "5d905811b3b81ca6d2bac8d764e732ca0595de486e568693ef9d228de1279df8";
libraryHaskellDepends = [ array base bytestring containers mtl ];
homepage = "https://github.com/idontgetoutmuch/binary-low-level";
description = "Binary deserialisation using strict ByteStrings";
@@ -41735,8 +41813,8 @@ self: {
pname = "blank-canvas";
version = "0.6";
sha256 = "2a0e5c4fc50b1ce43e56b1a11056186c21d565e225da36f90c58f8c0a70f48b3";
- revision = "3";
- editedCabalFile = "3a1b54006324de595823f744e3f2592e85629008eea36f4e5d7b206a91085fdf";
+ revision = "5";
+ editedCabalFile = "a2da8be74560f47fd5fc7a5ff13849485e8bf4e8b4e4581091a6810904b64c76";
libraryHaskellDepends = [
aeson base base-compat base64-bytestring bytestring colour
containers data-default-class http-types kansas-comet mime-types
@@ -43538,15 +43616,15 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "brick_0_6_2" = callPackage
+ "brick_0_6_4" = callPackage
({ mkDerivation, base, containers, contravariant, data-default
, deepseq, microlens, microlens-th, template-haskell, text
, text-zipper, transformers, vector, vty
}:
mkDerivation {
pname = "brick";
- version = "0.6.2";
- sha256 = "1441b889d60eb9f2f17b5f44a98bcdaaa32f81bc6302a55bbabd4a62be882d74";
+ version = "0.6.4";
+ sha256 = "6a90f5c5c3cdbb2426a880cc5ae25637bc48dcb6eb78288e6ad33cc18ca4f4eb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -43916,6 +43994,28 @@ self: {
hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ];
}) {};
+ "buffer-builder_0_2_4_3" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion
+ , deepseq, HTF, mtl, quickcheck-instances, text
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "buffer-builder";
+ version = "0.2.4.3";
+ sha256 = "8a3da08e222498a245405d77eed7da90a943e848396291e617ba0b6daf27ad6f";
+ libraryHaskellDepends = [
+ base bytestring mtl text unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson attoparsec base bytestring criterion deepseq HTF
+ quickcheck-instances text vector
+ ];
+ 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 = stdenv.lib.platforms.none;
+ }) {};
+
"buffer-builder-aeson" = callPackage
({ mkDerivation, aeson, attoparsec, base, buffer-builder
, bytestring, hashable, HUnit, integer-gmp, QuickCheck, scientific
@@ -44125,8 +44225,8 @@ self: {
pname = "bumper";
version = "0.6.0.3";
sha256 = "7cfce3a38be30744a2eb322ad1e5271cd665fa62b4fe21bdf9aa00fcdbc4daa8";
- revision = "2";
- editedCabalFile = "bab175b04d4877724879ff0951490a7e0f5b98c3c99f802649e9b3db52c4db78";
+ revision = "3";
+ editedCabalFile = "1cd28042d55e1292a7ca8cdbb43afd5a170db915f91a2e0d3aa210da6b918e64";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -44796,6 +44896,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "bytestring-handle_0_1_0_4" = callPackage
+ ({ mkDerivation, base, bytestring, HUnit, QuickCheck
+ , test-framework, test-framework-hunit, test-framework-quickcheck2
+ }:
+ mkDerivation {
+ pname = "bytestring-handle";
+ version = "0.1.0.4";
+ sha256 = "3083c6434a6ec552c6c29030f7b2c44b53dead5f05f4a8363e3c350552ffbe60";
+ libraryHaskellDepends = [ base bytestring ];
+ testHaskellDepends = [
+ base bytestring HUnit QuickCheck test-framework
+ test-framework-hunit test-framework-quickcheck2
+ ];
+ homepage = "http://hub.darcs.net/ganesh/bytestring-handle";
+ description = "ByteString-backed Handles";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"bytestring-lexing_0_4_3_2" = callPackage
({ mkDerivation, alex, array, base, bytestring }:
mkDerivation {
@@ -47328,6 +47447,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) cairo;};
+ "cairo_0_13_2_0" = callPackage
+ ({ mkDerivation, array, base, bytestring, cairo, gtk2hs-buildtools
+ , mtl, text, utf8-string
+ }:
+ mkDerivation {
+ pname = "cairo";
+ version = "0.13.2.0";
+ sha256 = "4d08ffd7979bac6c39a8143dad353f966d268719817c0230c9138146d977c104";
+ libraryHaskellDepends = [
+ array base bytestring mtl text utf8-string
+ ];
+ libraryPkgconfigDepends = [ cairo ];
+ libraryToolDepends = [ gtk2hs-buildtools ];
+ homepage = "http://projects.haskell.org/gtk2hs/";
+ description = "Binding to the Cairo library";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) cairo;};
+
"cairo-appbase" = callPackage
({ mkDerivation, base, cairo, glib, gtk }:
mkDerivation {
@@ -48374,8 +48512,8 @@ self: {
}:
mkDerivation {
pname = "casr-logbook";
- version = "0.0.7";
- sha256 = "600acd86109323bbf47ee9449b45565c44350330ca1ff08113ce3e669d92a7ad";
+ version = "0.0.9";
+ sha256 = "02651b7d7e3ada1f99f5e9026f5a994677b17dd53764d150afe26fb4759d3a0a";
libraryHaskellDepends = [ base containers ];
testHaskellDepends = [
base directory doctest filepath QuickCheck template-haskell
@@ -48951,6 +49089,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "cayley-client_0_1_5_1" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, bytestring, exceptions
+ , http-client, http-conduit, lens, lens-aeson, mtl, text
+ , transformers, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "cayley-client";
+ version = "0.1.5.1";
+ sha256 = "3a2eab27b2aa711141d43248a5505154945e8563d846e1db3379f486b140563c";
+ libraryHaskellDepends = [
+ aeson attoparsec base bytestring exceptions http-client
+ http-conduit lens lens-aeson mtl text transformers
+ unordered-containers vector
+ ];
+ homepage = "https://github.com/MichelBoucey/cayley-client";
+ description = "A Haskell client for the Cayley graph database";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"cayley-dickson" = callPackage
({ mkDerivation, base, random }:
mkDerivation {
@@ -49571,8 +49729,8 @@ self: {
}:
mkDerivation {
pname = "cgrep";
- version = "6.6.3";
- sha256 = "cb603a7127c922a63a0c91f64f4d35782860a96cb1da66d5d9ae5fa8f91a634f";
+ version = "6.6.4";
+ sha256 = "c192928788b336d23b549f4a9bacfae7f4698f3e76a148f2d9fa557465b7a54d";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -52257,6 +52415,8 @@ self: {
pname = "classy-prelude";
version = "0.10.2";
sha256 = "f3341ddb9a469f612263d94274144510209f16ed4d9ec709ad622f3d5f36015f";
+ revision = "1";
+ editedCabalFile = "8205abcd17796648ca86bfac8737bce5d75156248d770f75752bd849b2c5c229";
libraryHaskellDepends = [
base basic-prelude bifunctors bytestring chunked-data containers
enclosed-exceptions exceptions ghc-prim hashable lifted-base
@@ -52286,6 +52446,8 @@ self: {
pname = "classy-prelude";
version = "0.10.4";
sha256 = "e6fb56bfe0b38b9d084f5f398492a2cbc8093771f32ca561d24c5df8c5f1049c";
+ revision = "1";
+ editedCabalFile = "8fe5a995f8362f186df641d9829338c7c3ad5abba0f3e5ce492ff337d3636091";
libraryHaskellDepends = [
base basic-prelude bifunctors bytestring chunked-data containers
enclosed-exceptions exceptions ghc-prim hashable lifted-base
@@ -52315,6 +52477,8 @@ self: {
pname = "classy-prelude";
version = "0.10.5";
sha256 = "c3ebf83dd83fd6d370dbc403121e40397ed142ffb2e7071317a2f4a365f330e9";
+ revision = "1";
+ editedCabalFile = "46c660bb65fe8b799efedb0cf1cfb73b71d0813cb0fe4700c413a3ab871e8dbf";
libraryHaskellDepends = [
base basic-prelude bifunctors bytestring chunked-data containers
enclosed-exceptions exceptions ghc-prim hashable lifted-base
@@ -52344,8 +52508,8 @@ self: {
pname = "classy-prelude";
version = "0.11.0";
sha256 = "ce36f9cfa3d5c2652a308e5caa476f8b1d82e95472b01ad6ec03b91c75add81d";
- revision = "1";
- editedCabalFile = "c81bf68ba89e8e7959a28ef72534c68754a25751b835cb1f8b8319a57e870a49";
+ revision = "2";
+ editedCabalFile = "cca4e94643881a92e6b166e4a167aa2d0269fdbf5e6cb0da8f4e7a215ee12fa9";
libraryHaskellDepends = [
base basic-prelude bifunctors bytestring chunked-data containers
dlist enclosed-exceptions exceptions ghc-prim hashable lifted-base
@@ -52375,8 +52539,8 @@ self: {
pname = "classy-prelude";
version = "0.11.1";
sha256 = "31a6e0d46efa1c1df694becb8be1eeb9bae4b65d81fa3f3b0170e823aeb22a00";
- revision = "1";
- editedCabalFile = "efba11a13e994d395e10c529bebbce36190a5187b867f7267f256e53fa655255";
+ revision = "2";
+ editedCabalFile = "585916c8a1ed2acb4f9915e331e32523f3d1b2c357fc1331487acc2d8222276d";
libraryHaskellDepends = [
base basic-prelude bifunctors bytestring chunked-data containers
dlist enclosed-exceptions exceptions ghc-prim hashable lifted-base
@@ -52406,8 +52570,8 @@ self: {
pname = "classy-prelude";
version = "0.11.1.1";
sha256 = "ea38048052a392b5080476160042e68402df18ec4ba3e9ed61abdf2c566436aa";
- revision = "1";
- editedCabalFile = "7b3c53842e0544b865ddd2be370b1541810f24b764056f507e23c8d26f1f716d";
+ revision = "2";
+ editedCabalFile = "b0172c665933c5091d37a19a4ab65782cd4ba3d2c4aaec79b81bdd21d49a4fa0";
libraryHaskellDepends = [
base basic-prelude bifunctors bytestring chunked-data containers
dlist enclosed-exceptions exceptions ghc-prim hashable lifted-base
@@ -52437,6 +52601,8 @@ self: {
pname = "classy-prelude";
version = "0.12.1.1";
sha256 = "670a85ffd10ff467e5eec1164462932c00bb6282cda2987a2b92c82f09ac3d13";
+ revision = "1";
+ editedCabalFile = "13f28e09ecbfeb2eca784ad6819598706b71ac7b1b2a033abd86491826dfb40b";
libraryHaskellDepends = [
base basic-prelude bifunctors bytestring chunked-data containers
dlist enclosed-exceptions exceptions ghc-prim hashable lifted-base
@@ -52447,6 +52613,7 @@ self: {
testHaskellDepends = [
base containers hspec QuickCheck transformers unordered-containers
];
+ jailbreak = true;
homepage = "https://github.com/snoyberg/classy-prelude";
description = "A typeclass-based Prelude";
license = stdenv.lib.licenses.mit;
@@ -54056,7 +54223,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "cmark" = callPackage
+ "cmark_0_5_2" = callPackage
({ mkDerivation, base, bytestring, HUnit, text }:
mkDerivation {
pname = "cmark";
@@ -54067,6 +54234,20 @@ self: {
homepage = "https://github.com/jgm/commonmark-hs";
description = "Fast, accurate CommonMark (Markdown) parser and renderer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "cmark" = callPackage
+ ({ mkDerivation, base, bytestring, HUnit, text }:
+ mkDerivation {
+ pname = "cmark";
+ version = "0.5.2.1";
+ sha256 = "a332b84e5983bc616682cb20cf2c7ed59e16b0002bada1ccaaa381f556dd8dc8";
+ libraryHaskellDepends = [ base bytestring text ];
+ testHaskellDepends = [ base HUnit text ];
+ homepage = "https://github.com/jgm/commonmark-hs";
+ description = "Fast, accurate CommonMark (Markdown) parser and renderer";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"cmath" = callPackage
@@ -55469,6 +55650,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "compactmap_0_1_4" = callPackage
+ ({ mkDerivation, base, containers, hspec, QuickCheck, vector }:
+ mkDerivation {
+ pname = "compactmap";
+ version = "0.1.4";
+ sha256 = "e65ba73cac5eca9eb0fa53863d57e41c5c47a16fe72fdade99c1defbfeb4fc7f";
+ libraryHaskellDepends = [ base vector ];
+ testHaskellDepends = [ base containers hspec QuickCheck ];
+ description = "A read-only memory-efficient key-value store";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"compare-type" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -56194,6 +56388,7 @@ self: {
testHaskellDepends = [
base machines tasty tasty-hunit time transformers
];
+ jailbreak = true;
description = "Concurrent networked stream transducers";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -58896,6 +59091,8 @@ self: {
pname = "conversion";
version = "1.2.1";
sha256 = "c97771da92f229886f1a3033253a63bb429244f06a7cd877bdd633b4e4b82108";
+ revision = "1";
+ editedCabalFile = "8db4210950736e54be5cd7f7076c19e05d06fb48673eb23638093246a1e7199e";
libraryHaskellDepends = [ base-prelude ];
homepage = "https://github.com/nikita-volkov/conversion";
description = "Universal converter between values of different types";
@@ -60048,7 +60245,7 @@ self: {
description = "Bindings for libpython";
license = stdenv.lib.licenses.gpl3;
hydraPlatforms = stdenv.lib.platforms.none;
- }) {python34 = null;};
+ }) {inherit (pkgs) python34;};
"cql_3_0_5" = callPackage
({ mkDerivation, base, bytestring, cereal, Decimal, iproute
@@ -60444,8 +60641,8 @@ self: {
}:
mkDerivation {
pname = "craze";
- version = "0.1.1.0";
- sha256 = "9fcffba5a76aba13be1fbb05971724ac291c95328019d1836309f99fa78fb2c8";
+ version = "0.1.2.0";
+ sha256 = "951dae20e27bffdff346008b1f357a12f1e143d9c42184c32ba90fbbbbc722a9";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -62005,6 +62202,25 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "css-syntax_0_0_5" = callPackage
+ ({ mkDerivation, attoparsec, base, bytestring, directory, hspec
+ , scientific, text
+ }:
+ mkDerivation {
+ pname = "css-syntax";
+ version = "0.0.5";
+ sha256 = "3969e0bf83c81dd970cdde9bb07386071264f0f390215078eb86a5cfa1e50b9e";
+ libraryHaskellDepends = [
+ attoparsec base bytestring scientific text
+ ];
+ testHaskellDepends = [
+ attoparsec base bytestring directory hspec scientific text
+ ];
+ description = "This package implments a parser for the CSS syntax";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"css-text" = callPackage
({ mkDerivation, attoparsec, base, hspec, QuickCheck, text }:
mkDerivation {
@@ -63620,20 +63836,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "data-default_0_6_0" = callPackage
+ "data-default_0_7_0" = callPackage
({ mkDerivation, base, data-default-class
, data-default-instances-base, data-default-instances-containers
, data-default-instances-dlist, data-default-instances-old-locale
}:
mkDerivation {
pname = "data-default";
- version = "0.6.0";
- sha256 = "1f84023990e44e4555ac54e6bc84e4efa3bb42a0851ce0bb7b3358ef5344386d";
+ version = "0.7.0";
+ sha256 = "933b52b2477edbaaf2569a2bc76d4df8cf6fb52dc5e345ce18a76630423cb077";
libraryHaskellDepends = [
base data-default-class data-default-instances-base
data-default-instances-containers data-default-instances-dlist
data-default-instances-old-locale
];
+ jailbreak = true;
description = "A class for types with a default value";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -63650,6 +63867,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "data-default-class_0_1_0" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "data-default-class";
+ version = "0.1.0";
+ sha256 = "01186c3b0da2d8513c2f93464a253fdc7eaeef06b1c526a5d139300bfcb39790";
+ libraryHaskellDepends = [ base ];
+ description = "A class for types with a default value";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"data-default-extra" = callPackage
({ mkDerivation, base, data-default-class
, data-default-instances-base, data-default-instances-bytestring
@@ -64434,8 +64663,8 @@ self: {
({ mkDerivation, base, deepseq, mtl, parallel, pretty, time }:
mkDerivation {
pname = "data-pprint";
- version = "0.2.4";
- sha256 = "659bf5b10d5c177982bed9f6676a656387c70e9223ea0b1060afbe446f499864";
+ version = "0.2.4.1";
+ sha256 = "0c06aae83e1e41883927fbaa008964acd7d6b005a0f7e44c95fa5062943e0f83";
libraryHaskellDepends = [ base deepseq mtl parallel pretty time ];
description = "Prettyprint and compare Data values";
license = stdenv.lib.licenses.bsd3;
@@ -65684,8 +65913,8 @@ self: {
}:
mkDerivation {
pname = "dead-code-detection";
- version = "0.6";
- sha256 = "477614d43048109bfa4a3116204d70c3ea822524c3caba410cf6aac90b3804ee";
+ version = "0.7";
+ sha256 = "9773ee8333d81797823483946eebf556bf8f7f542aafed33af43402c5266ab11";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -67287,8 +67516,8 @@ self: {
({ mkDerivation, base, deepseq }:
mkDerivation {
pname = "dia-base";
- version = "0.1.1.3";
- sha256 = "e5ac6200e802e81b9d40b497b117cb1b29086170ec9fbff6c574baa53e6ba7cf";
+ version = "0.1.1.4";
+ sha256 = "1fc6bbf2f60bdefbd516a84063100f63f9ea9a41188ea5eb8f67be7b01fd9e26";
libraryHaskellDepends = [ base deepseq ];
description = "An EDSL for teaching Haskell with diagrams - data types";
license = stdenv.lib.licenses.bsd3;
@@ -67300,8 +67529,8 @@ self: {
}:
mkDerivation {
pname = "dia-functions";
- version = "0.2.1.4";
- sha256 = "4730fbef211f42b4567f4a034dc27bd82f2770adac55b3d04b555067dd550e92";
+ version = "0.2.1.5";
+ sha256 = "aff8ffc4ff79a48f7b275cf84b5a97092e1a674e3c978fdae405d66c3cf732e1";
libraryHaskellDepends = [
base containers data-pprint deepseq dia-base mtl xhtml
];
@@ -70132,7 +70361,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "dimensional" = callPackage
+ "dimensional_1_0_1_1" = callPackage
({ mkDerivation, base, deepseq, exact-pi, HUnit, numtype-dk, vector
}:
mkDerivation {
@@ -70146,9 +70375,10 @@ self: {
homepage = "https://github.com/bjornbm/dimensional/";
description = "Statically checked physical dimensions, using Type Families and Data Kinds";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "dimensional_1_0_1_2" = callPackage
+ "dimensional" = callPackage
({ mkDerivation, base, deepseq, exact-pi, HUnit, numtype-dk, vector
}:
mkDerivation {
@@ -70162,7 +70392,6 @@ self: {
homepage = "https://github.com/bjornbm/dimensional/";
description = "Statically checked physical dimensions, using Type Families and Data Kinds";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dimensional-codata" = callPackage
@@ -73884,15 +74113,14 @@ self: {
}:
mkDerivation {
pname = "dynamic-plot";
- version = "0.1.2.0";
- sha256 = "9afd0f1a29dd23036d7f7a8da943ea1a015e8c2ceec628f0ffc946203689878f";
+ version = "0.1.3.0";
+ sha256 = "e6fcb68028ffb4148b7cd00fd87a5bb34a4be3f8995669ad136b37dc24747588";
libraryHaskellDepends = [
async base colour constrained-categories containers data-default
deepseq diagrams-cairo diagrams-core diagrams-gtk diagrams-lib glib
gtk lens manifolds MemoTrie MonadRandom mtl process random
semigroups tagged time transformers vector vector-space
];
- jailbreak = true;
homepage = "https://github.com/leftaroundabout/dynamic-plot";
description = "Interactive diagram windows";
license = stdenv.lib.licenses.gpl3;
@@ -74591,6 +74819,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "edit-distance-vector_1_0_0_4" = callPackage
+ ({ mkDerivation, base, QuickCheck, quickcheck-instances, vector }:
+ mkDerivation {
+ pname = "edit-distance-vector";
+ version = "1.0.0.4";
+ sha256 = "b7dfddd86d315ef1b0c86415f321efc04b4a1b47a7b13edafc73a6e81b620f1f";
+ libraryHaskellDepends = [ base vector ];
+ testHaskellDepends = [
+ base QuickCheck quickcheck-instances vector
+ ];
+ homepage = "https://github.com/thsutton/edit-distance-vector";
+ description = "Calculate edit distances and edit scripts between vectors";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"edit-lenses" = callPackage
({ mkDerivation, base, containers, data-default, lattices, mtl }:
mkDerivation {
@@ -75517,8 +75761,8 @@ self: {
}:
mkDerivation {
pname = "elm-bridge";
- version = "0.2.2.1";
- sha256 = "8920c626419291f8683fee026b9ea9c593996b4384ed53dd7251890ef6c55427";
+ version = "0.3.0.0";
+ sha256 = "18d802945885846a1e64edc87b8062a341e1ae35f6a88b45a0aab2c7fd893c65";
libraryHaskellDepends = [ aeson base template-haskell ];
testHaskellDepends = [
aeson base containers hspec QuickCheck text
@@ -78011,6 +78255,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "event_0_1_4" = callPackage
+ ({ mkDerivation, base, containers, semigroups, transformers }:
+ mkDerivation {
+ pname = "event";
+ version = "0.1.4";
+ sha256 = "6791d1402b4d77a11407ab592f65cb61ee60c5a80b99751c5d775afcc9d1824a";
+ libraryHaskellDepends = [
+ base containers semigroups transformers
+ ];
+ description = "Monoidal, monadic and first-class events";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"event-driven" = callPackage
({ mkDerivation, base, monads-tf, yjtools }:
mkDerivation {
@@ -79161,14 +79419,13 @@ self: {
}:
mkDerivation {
pname = "extended-reals";
- version = "0.2.1.0";
- sha256 = "b7397efc31d717943304dc985316526163aa7c5ec5a3536e41721e4043b97ba8";
+ version = "0.2.2.0";
+ sha256 = "f24538c29ffadf26fb9e3808e0fd5f326623a4d2588d1a985894e951019e9a93";
libraryHaskellDepends = [ base deepseq hashable ];
testHaskellDepends = [
- base HUnit QuickCheck test-framework test-framework-hunit
+ base deepseq HUnit QuickCheck test-framework test-framework-hunit
test-framework-quickcheck2 test-framework-th
];
- jailbreak = true;
homepage = "https://github.com/msakai/extended-reals/";
description = "Extension of real numbers with positive/negative infinities";
license = stdenv.lib.licenses.bsd3;
@@ -79399,7 +79656,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "extra" = callPackage
+ "extra_1_4_6" = callPackage
({ mkDerivation, base, directory, filepath, process, QuickCheck
, time, unix
}:
@@ -79416,6 +79673,26 @@ self: {
homepage = "https://github.com/ndmitchell/extra#readme";
description = "Extra functions I use";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "extra" = callPackage
+ ({ mkDerivation, base, directory, filepath, process, QuickCheck
+ , time, unix
+ }:
+ mkDerivation {
+ pname = "extra";
+ version = "1.4.7";
+ sha256 = "d4cf844777cbfc652d2161f6ef13344e2ff712066ddc70d3a9143dc62f512018";
+ libraryHaskellDepends = [
+ base directory filepath process time unix
+ ];
+ testHaskellDepends = [
+ base directory filepath QuickCheck time unix
+ ];
+ homepage = "https://github.com/ndmitchell/extra#readme";
+ description = "Extra functions I use";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"extract-dependencies" = callPackage
@@ -79735,6 +80012,20 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {};
+ "farmhash_0_1_0_5" = callPackage
+ ({ mkDerivation, base, bytestring, hspec, QuickCheck }:
+ mkDerivation {
+ pname = "farmhash";
+ version = "0.1.0.5";
+ sha256 = "0e685a5445f7bce88682d209bccb47d03f06065a627475df44a8e2af8bc20fa1";
+ libraryHaskellDepends = [ base bytestring ];
+ testHaskellDepends = [ base bytestring hspec QuickCheck ];
+ homepage = "https://github.com/abhinav/farmhash";
+ description = "Fast hash functions";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"fast-builder_0_0_0_2" = callPackage
({ mkDerivation, base, bytestring, ghc-prim, process, QuickCheck
, stm
@@ -79798,6 +80089,22 @@ self: {
license = stdenv.lib.licenses.publicDomain;
}) {};
+ "fast-builder_0_0_0_6" = callPackage
+ ({ mkDerivation, base, bytestring, ghc-prim, process, QuickCheck
+ , stm
+ }:
+ mkDerivation {
+ pname = "fast-builder";
+ version = "0.0.0.6";
+ sha256 = "4a83c2fb4e21ec43d7cf9b2412286e1fea036f7c5cbfd4dcee8914f8b2ae9e1c";
+ libraryHaskellDepends = [ base bytestring ghc-prim ];
+ testHaskellDepends = [ base bytestring process QuickCheck stm ];
+ homepage = "http://github.com/takano-akio/fast-builder";
+ description = "Fast ByteString Builder";
+ license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"fast-digits" = callPackage
({ mkDerivation, base, digits, integer-gmp, QuickCheck, smallcheck
, tasty, tasty-quickcheck, tasty-smallcheck
@@ -81332,8 +81639,8 @@ self: {
pname = "feed";
version = "0.3.11.1";
sha256 = "ed04d0fc120a4b1b47c7675d395afbb419506431bc6f8e0f2c382c73a4afc983";
- revision = "1";
- editedCabalFile = "c5f129b41daa9931f100efb01cee561e61a04b2118436e10e64141d68edab7fb";
+ revision = "2";
+ editedCabalFile = "a59224b7f2b31906c2decebe084684888ce6319e04645791378e385741e36e28";
libraryHaskellDepends = [
base old-locale old-time time time-locale-compat utf8-string xml
];
@@ -83929,6 +84236,8 @@ self: {
pname = "focus";
version = "0.1.3";
sha256 = "1eab0c24475725b0d29f4ac3cefe07a75b06a48ed77a9758201f542132cd8686";
+ revision = "1";
+ editedCabalFile = "ecefbe557e7d69155a272ef15d99a1e28906740cfc8eda052001f02ba98d655c";
libraryHaskellDepends = [ base ];
doHaddock = false;
jailbreak = true;
@@ -83939,14 +84248,29 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "focus_0_1_4" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "focus";
+ version = "0.1.4";
+ sha256 = "56447cb6087d7ce3db38a54bb73e6fc456d488f2a674e24ab80132b63c22d840";
+ revision = "1";
+ editedCabalFile = "2fd83bef83cc171b26d53614a3a67c82bd83aee4c6ea406a33d0cd379f1b1f25";
+ libraryHaskellDepends = [ base ];
+ doCheck = false;
+ homepage = "https://github.com/nikita-volkov/focus";
+ description = "A general abstraction for manipulating elements of container data structures";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"focus" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "focus";
- version = "0.1.4";
- sha256 = "56447cb6087d7ce3db38a54bb73e6fc456d488f2a674e24ab80132b63c22d840";
+ version = "0.1.5";
+ sha256 = "ef4b641e06207e4b3bfc2c1cbce062db86fe02956ca2294a3ae8c6b1e1ace7b1";
libraryHaskellDepends = [ base ];
- doCheck = false;
homepage = "https://github.com/nikita-volkov/focus";
description = "A general abstraction for manipulating elements of container data structures";
license = stdenv.lib.licenses.mit;
@@ -83958,8 +84282,8 @@ self: {
}:
mkDerivation {
pname = "fold-debounce";
- version = "0.2.0.1";
- sha256 = "0a59cd7d26dad8b5d87d6acd073152131642942736c1fdcb4a96ad0444037e56";
+ version = "0.2.0.2";
+ sha256 = "971be718a834d0a18fb3b36b20faf2efbaadb8dd3a600c879909aca1e36778d2";
libraryHaskellDepends = [
base data-default-class stm stm-delay time
];
@@ -83976,8 +84300,8 @@ self: {
}:
mkDerivation {
pname = "fold-debounce-conduit";
- version = "0.1.0.1";
- sha256 = "d8e0a80f0172ab80a842253aeb856ec327832e7f7f91d221ecf2ce66d265dc10";
+ version = "0.1.0.2";
+ sha256 = "33853bcf36dd89e8a51fdaeb6d78fffd6b3a5fb853f7b0f4f7add8e65ff07b50";
libraryHaskellDepends = [
base conduit fold-debounce resourcet stm transformers
transformers-base
@@ -86922,8 +87246,8 @@ self: {
({ mkDerivation, base, GConf, glib, gtk2hs-buildtools, text }:
mkDerivation {
pname = "gconf";
- version = "0.13.0.3";
- sha256 = "e8efb705c725ae56486585d0972f9dcec96db89c4d636f1805f7dd3e175d69d2";
+ version = "0.13.1.0";
+ sha256 = "57cfa606ef4dcd377e0d77d59b880439382ad05604b3e3d439fd64af64a21dad";
libraryHaskellDepends = [ base glib text ];
libraryPkgconfigDepends = [ GConf ];
libraryToolDepends = [ gtk2hs-buildtools ];
@@ -87586,6 +87910,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "generic-trie_0_3_0_2" = callPackage
+ ({ mkDerivation, base, containers, transformers }:
+ mkDerivation {
+ pname = "generic-trie";
+ version = "0.3.0.2";
+ sha256 = "38319a5e95ed79e0e8924a69fc992c6fa38a3152a2539314ddd19d1a10abf8e9";
+ libraryHaskellDepends = [ base containers transformers ];
+ homepage = "http://github.com/glguy/tries";
+ description = "A map, where the keys may be complex structured data";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"generic-xml" = callPackage
({ mkDerivation, base, HaXml, mtl, syb-with-class, template-haskell
}:
@@ -88341,6 +88678,33 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "ghc-boot" = callPackage
+ ({ mkDerivation, base, binary, bytestring, directory, filepath
+ , ghc-boot-th
+ }:
+ mkDerivation {
+ pname = "ghc-boot";
+ version = "8.0.1";
+ sha256 = "ba9bfbe6d18c0cf445f2b38ab42b649286f8b61d727dec2ba37fea648ebb28da";
+ libraryHaskellDepends = [
+ base binary bytestring directory filepath ghc-boot-th
+ ];
+ jailbreak = true;
+ description = "Shared functionality between GHC and its boot libraries";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "ghc-boot-th" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "ghc-boot-th";
+ version = "8.0.1";
+ sha256 = "c2eb6746801ca289d940099b3c68113963f9eddec90b454258a1442cd993e385";
+ libraryHaskellDepends = [ base ];
+ description = "Shared functionality between GHC and the @template-haskell@ library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"ghc-core" = callPackage
({ mkDerivation, base, colorize-haskell, directory, filepath
, pcre-light, process
@@ -88655,6 +89019,8 @@ self: {
pname = "ghc-mod";
version = "5.2.1.1";
sha256 = "46cc0247d61bec5aa1262825ca18b7b264f2842a99aada3b299668701229af25";
+ revision = "1";
+ editedCabalFile = "5fca3415989e6265bd328ba0f9cca817edd93bbe2d135975f8b1baadefc1843b";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -88674,6 +89040,7 @@ self: {
temporary text time transformers transformers-base
];
doHaddock = false;
+ jailbreak = true;
doCheck = false;
homepage = "http://www.mew.org/~kazu/proj/ghc-mod/";
description = "Happy Haskell Programming";
@@ -88693,6 +89060,8 @@ self: {
pname = "ghc-mod";
version = "5.2.1.2";
sha256 = "3b66b4ab4271ee1a61ab348951d49c38e500535789b469783281d36556cb9687";
+ revision = "1";
+ editedCabalFile = "bab980626f9e737e0a9c5a5f5a44dafb6341fa9b6fe052163fbf1e1394bcebb9";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -88711,6 +89080,7 @@ self: {
monad-control monad-journal mtl old-time pretty process split syb
temporary text time transformers transformers-base
];
+ jailbreak = true;
doCheck = false;
homepage = "http://www.mew.org/~kazu/proj/ghc-mod/";
description = "Happy Haskell Programming";
@@ -88923,12 +89293,12 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "ghc-prim_0_4_0_0" = callPackage
+ "ghc-prim_0_5_0_0" = callPackage
({ mkDerivation, rts }:
mkDerivation {
pname = "ghc-prim";
- version = "0.4.0.0";
- sha256 = "61688f073f20651000781e012da8c42e771b6f4a16bf62e03c263adf039d70f0";
+ version = "0.5.0.0";
+ sha256 = "44bbe4f0858f5101d860b7447a689bcd38a2451f4cc1d29f0de130cbd92bd6b2";
libraryHaskellDepends = [ rts ];
description = "GHC primitives";
license = stdenv.lib.licenses.bsd3;
@@ -89221,6 +89591,23 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {};
+ "ghci" = callPackage
+ ({ mkDerivation, array, base, binary, bytestring, containers
+ , deepseq, filepath, ghc-boot, template-haskell, transformers, unix
+ }:
+ mkDerivation {
+ pname = "ghci";
+ version = "8.0.1";
+ sha256 = "6becea2e7f687eefda4acc9ddf90dbd90d82fd497d0d9f72f47d8f1e9614988e";
+ libraryHaskellDepends = [
+ array base binary bytestring containers deepseq filepath ghc-boot
+ template-haskell transformers unix
+ ];
+ jailbreak = true;
+ description = "The library supporting GHC's interactive interpreter";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"ghci-diagrams" = callPackage
({ mkDerivation, base, cairo, colour, diagrams, gtk }:
mkDerivation {
@@ -89640,76 +90027,38 @@ self: {
"gi-atk" = callPackage
({ mkDerivation, atk, base, bytestring, containers, gi-glib
- , gi-gobject, haskell-gi-base, text, transformers
+ , gi-gobject, haskell-gi, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-atk";
- version = "0.2.18.15";
- sha256 = "32433985326a9fedef4bec6c28085bb379f435ba1eaea2588aed10a1ff126e3d";
+ version = "2.0.3";
+ sha256 = "3470813961cc6223c02b29cceaede04966b4e5ed497748bd0a61c023d7142620";
libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject haskell-gi-base text
- transformers
+ base bytestring containers gi-glib gi-gobject haskell-gi
+ haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ atk ];
+ doHaddock = false;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Atk bindings";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = [ "x86_64-linux" ];
}) {inherit (pkgs) atk;};
- "gi-atk_2_0_1" = callPackage
- ({ mkDerivation, atk, base, bytestring, containers, gi-glib
- , gi-gobject, haskell-gi-base, text, transformers
- }:
- mkDerivation {
- pname = "gi-atk";
- version = "2.0.1";
- sha256 = "fdcf66f99d6d829eb1313fafc6369fd6a50e0d2198a702fa4cdff5b7054e5771";
- libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject haskell-gi-base text
- transformers
- ];
- libraryPkgconfigDepends = [ atk ];
- doHaddock = false;
- jailbreak = true;
- homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "Atk bindings";
- license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {inherit (pkgs) atk;};
-
"gi-cairo" = callPackage
({ mkDerivation, base, bytestring, cairo-gobject, containers
- , haskell-gi-base, text, transformers
+ , haskell-gi, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-cairo";
- version = "0.1.14.15";
- sha256 = "82479b13e0b127d8955d2d3069ad6105674f03f6b8bab0752d7653918fbc7728";
+ version = "1.0.3";
+ sha256 = "0b54aff46b1998285a79a7356c5a74699112d6b09f1952bb30622ee6b53afe8b";
libraryHaskellDepends = [
- base bytestring containers haskell-gi-base text transformers
- ];
- libraryPkgconfigDepends = [ cairo-gobject ];
- 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-cairo_1_0_1" = callPackage
- ({ mkDerivation, base, bytestring, cairo-gobject, containers
- , haskell-gi-base, text, transformers
- }:
- mkDerivation {
- pname = "gi-cairo";
- version = "1.0.1";
- sha256 = "2500fd8040dd355dd55253fff836ddc70f6e5569b163be67c14b2dca5a52bfe0";
- libraryHaskellDepends = [
- base bytestring containers haskell-gi-base text transformers
+ base bytestring containers haskell-gi haskell-gi-base text
+ transformers
];
libraryPkgconfigDepends = [ cairo-gobject ];
doHaddock = false;
- jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Cairo bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -89718,40 +90067,19 @@ self: {
"gi-gdk" = callPackage
({ mkDerivation, base, bytestring, containers, gdk3, gi-cairo
- , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango
+ , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, haskell-gi
, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-gdk";
- version = "0.3.18.15";
- sha256 = "02c44539e484c7dd7b17583c04ffc8c36df05ceb4dc8c4f5f815df0798881f8f";
+ version = "3.0.3";
+ sha256 = "12bd380233f41a43479891a3f731391b7ecd1d74712f263f835089cb8090be4b";
libraryHaskellDepends = [
base bytestring containers gi-cairo gi-gdkpixbuf gi-gio gi-glib
- gi-gobject gi-pango haskell-gi-base text transformers
- ];
- libraryPkgconfigDepends = [ gdk3 ];
- homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "Gdk bindings";
- license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {gdk3 = null;};
-
- "gi-gdk_3_0_1" = callPackage
- ({ mkDerivation, base, bytestring, containers, gdk3, gi-cairo
- , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango
- , haskell-gi-base, text, transformers
- }:
- mkDerivation {
- pname = "gi-gdk";
- version = "3.0.1";
- sha256 = "e9faa1e181513e5fbb3ec200df827373a81cb9abf1d095ba401d7eafef9628c1";
- libraryHaskellDepends = [
- base bytestring containers gi-cairo gi-gdkpixbuf gi-gio gi-glib
- gi-gobject gi-pango haskell-gi-base text transformers
+ gi-gobject gi-pango haskell-gi haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ gdk3 ];
doHaddock = false;
- jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Gdk bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -89760,99 +90088,60 @@ self: {
"gi-gdkpixbuf" = callPackage
({ mkDerivation, base, bytestring, containers, gdk_pixbuf, gi-gio
- , gi-glib, gi-gobject, haskell-gi-base, text, transformers
+ , gi-glib, gi-gobject, haskell-gi, haskell-gi-base, text
+ , transformers
}:
mkDerivation {
pname = "gi-gdkpixbuf";
- version = "0.2.32.15";
- sha256 = "bb93833ddb7990ee8dd773c59c689ff19469b7b527353e13d6cd896fc48cb453";
+ version = "2.0.3";
+ sha256 = "5c1dcc322ad42839c74e5be2fb715f29bfa1f06d285ea4e90d2f3a19a6f545c9";
libraryHaskellDepends = [
- base bytestring containers gi-gio gi-glib gi-gobject
+ base bytestring containers gi-gio gi-glib gi-gobject haskell-gi
haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ gdk_pixbuf ];
+ doHaddock = false;
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-gdkpixbuf_2_0_1" = callPackage
- ({ mkDerivation, base, bytestring, containers, gdk_pixbuf, gi-gio
- , gi-glib, gi-gobject, haskell-gi-base, text, transformers
- }:
- mkDerivation {
- pname = "gi-gdkpixbuf";
- version = "2.0.1";
- sha256 = "3e05be1242632f33362a8d064f3a13e9276110636da96dcba2a6915f56b2c7a8";
- libraryHaskellDepends = [
- base bytestring containers gi-gio gi-glib gi-gobject
- haskell-gi-base text transformers
- ];
- libraryPkgconfigDepends = [ gdk_pixbuf ];
- doHaddock = false;
- jailbreak = true;
- homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "GdkPixbuf bindings";
- license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {inherit (pkgs) gdk_pixbuf;};
-
"gi-gio" = callPackage
({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
- , glib, haskell-gi-base, text, transformers
+ , glib, haskell-gi, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-gio";
- version = "0.2.46.15";
- sha256 = "c84fdfc6c83e114667458f785e3a88337d08109e353486865099c23c2d1df82a";
+ version = "2.0.3";
+ sha256 = "1b2cc15f3cb60b72a7256ec8b5d0a07644b850055ae45fab5b0be9633d96f09c";
libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject haskell-gi-base text
- transformers
+ base bytestring containers gi-glib gi-gobject haskell-gi
+ haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ glib ];
+ doHaddock = false;
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-gio_2_0_1" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
- , glib, haskell-gi-base, text, transformers
- }:
- mkDerivation {
- pname = "gi-gio";
- version = "2.0.1";
- sha256 = "71c4e7338a245572fd893a19544370030fdc1fd04029ce5a8af44cbb54cf925b";
- libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject haskell-gi-base text
- transformers
- ];
- libraryPkgconfigDepends = [ glib ];
- doHaddock = false;
- jailbreak = true;
- homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "Gio bindings";
- license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {inherit (pkgs) glib;};
-
"gi-girepository" = callPackage
({ mkDerivation, base, bytestring, containers, gi-gobject
- , gobjectIntrospection, haskell-gi-base, text, transformers
+ , gobjectIntrospection, haskell-gi, haskell-gi-base, text
+ , transformers
}:
mkDerivation {
pname = "gi-girepository";
- version = "1.0.1";
- sha256 = "d152f0e1e8c7d5cf0fee86e61b8d3874985720216ab7db08a63c8ab4cc05f2d3";
+ version = "1.0.3";
+ sha256 = "aa40c340fce39c3b6f6a582905e370cee47f5e07c2beebe95a8bbc02a7a20274";
libraryHaskellDepends = [
- base bytestring containers gi-gobject haskell-gi-base text
- transformers
+ base bytestring containers gi-gobject haskell-gi haskell-gi-base
+ text transformers
];
libraryPkgconfigDepends = [ gobjectIntrospection ];
doHaddock = false;
- jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "GIRepository (gobject-introspection) bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -89860,98 +90149,59 @@ self: {
}) {inherit (pkgs) gobjectIntrospection;};
"gi-glib" = callPackage
- ({ mkDerivation, base, bytestring, containers, glib
+ ({ mkDerivation, base, bytestring, containers, glib, haskell-gi
, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-glib";
- version = "0.2.46.15";
- sha256 = "c3d9cac58c0502907744b15c42fd0217ba617e3b2b914fe3c78982b227ba5bd3";
+ version = "2.0.3";
+ sha256 = "2a961091547deaf8509ef3213353ec7b6ea458a584a81eef7d2685f8312b1170";
libraryHaskellDepends = [
- base bytestring containers haskell-gi-base text transformers
+ base bytestring containers haskell-gi haskell-gi-base text
+ transformers
];
libraryPkgconfigDepends = [ glib ];
+ doHaddock = false;
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-glib_2_0_1" = callPackage
- ({ mkDerivation, base, bytestring, containers, glib
- , haskell-gi-base, text, transformers
- }:
- mkDerivation {
- pname = "gi-glib";
- version = "2.0.1";
- sha256 = "3d45895bda0014da75c69552e484beb283f0fea4b40e06f63b5b12c5d75d40c7";
- libraryHaskellDepends = [
- base bytestring containers haskell-gi-base text transformers
- ];
- libraryPkgconfigDepends = [ glib ];
- doHaddock = false;
- jailbreak = true;
- homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "GLib bindings";
- license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {inherit (pkgs) glib;};
-
"gi-gobject" = callPackage
({ mkDerivation, base, bytestring, containers, gi-glib, glib
- , haskell-gi-base, text, transformers
+ , haskell-gi, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-gobject";
- version = "0.2.46.15";
- sha256 = "e3ca30d08c8819db8bef074e22826d3e52149949a0d7055e12f685df9d5c42b3";
+ version = "2.0.3";
+ sha256 = "9cd5c2c8a2c1599334f705ea15fc3e7e63f012c60a46669ad108a2965d73973b";
libraryHaskellDepends = [
- base bytestring containers gi-glib haskell-gi-base text
+ base bytestring containers gi-glib haskell-gi haskell-gi-base text
transformers
];
libraryPkgconfigDepends = [ glib ];
+ doHaddock = false;
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-gobject_2_0_1" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-glib, glib
- , haskell-gi-base, text, transformers
- }:
- mkDerivation {
- pname = "gi-gobject";
- version = "2.0.1";
- sha256 = "92a83d38f22456c39aa6452f63e4040328f2fcd595f7ddc3a77aaa30ae0f2ad9";
- libraryHaskellDepends = [
- base bytestring containers gi-glib haskell-gi-base text
- transformers
- ];
- libraryPkgconfigDepends = [ glib ];
- doHaddock = false;
- jailbreak = true;
- homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "GObject bindings";
- license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {inherit (pkgs) glib;};
-
"gi-gst" = callPackage
({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
- , gstreamer, haskell-gi-base, text, transformers
+ , gstreamer, haskell-gi, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-gst";
- version = "1.0.1";
- sha256 = "693a2389cf9bda84cd5972e518e3fa45ebf47c508b54e21348ad129d58a6282e";
+ version = "1.0.3";
+ sha256 = "6886c00b4cff10b873709762f3db3d22ed2007e36a36ef73470eb2389e6d2fb3";
libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject haskell-gi-base text
- transformers
+ base bytestring containers gi-glib gi-gobject haskell-gi
+ haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ gstreamer ];
doHaddock = false;
- jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "GStreamer bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -89960,20 +90210,19 @@ self: {
"gi-gstaudio" = callPackage
({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
- , gi-gst, gi-gstbase, gst_plugins_base, haskell-gi-base, text
- , transformers
+ , gi-gst, gi-gstbase, gst_plugins_base, haskell-gi, haskell-gi-base
+ , text, transformers
}:
mkDerivation {
pname = "gi-gstaudio";
- version = "1.0.1";
- sha256 = "fd58d01e731cbfa2b8f7d81f883c6b76c751908c7f2c147c296cbf6c6e1a35d3";
+ version = "1.0.3";
+ sha256 = "e7a63a66a6edd8871deef7f2c0659aa455821c4c7157c128ac135b6d157ccd49";
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject gi-gst gi-gstbase
- haskell-gi-base text transformers
+ haskell-gi haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ gst_plugins_base ];
doHaddock = false;
- jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "GStreamerAudio bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -89982,19 +90231,19 @@ self: {
"gi-gstbase" = callPackage
({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
- , gi-gst, gst_plugins_base, haskell-gi-base, text, transformers
+ , gi-gst, gst_plugins_base, haskell-gi, haskell-gi-base, text
+ , transformers
}:
mkDerivation {
pname = "gi-gstbase";
- version = "1.0.1";
- sha256 = "1f80a542199395af8606e7c972b3475d0fa1866449dcc041d634be3b7642e0fd";
+ version = "1.0.3";
+ sha256 = "3efcc31f79c6da853ca710dfcb2468bade41bc7b5cfa642503ae2cec75bedf67";
libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject gi-gst
+ base bytestring containers gi-glib gi-gobject gi-gst haskell-gi
haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ gst_plugins_base ];
doHaddock = false;
- jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "GStreamerBase bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -90003,20 +90252,19 @@ self: {
"gi-gstvideo" = callPackage
({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
- , gi-gst, gi-gstbase, gst_plugins_base, haskell-gi-base, text
- , transformers
+ , gi-gst, gi-gstbase, gst_plugins_base, haskell-gi, haskell-gi-base
+ , text, transformers
}:
mkDerivation {
pname = "gi-gstvideo";
- version = "1.0.1";
- sha256 = "7aa64be14fb2a226006c2e813ec19b833625dcdc124c26dba9201eae6062bad3";
+ version = "1.0.3";
+ sha256 = "54a9661a23719ba346ccffb345f6896ffa3a9a9628705076518b5e7368d2c3cf";
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject gi-gst gi-gstbase
- haskell-gi-base text transformers
+ haskell-gi haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ gst_plugins_base ];
doHaddock = false;
- jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "GStreamerVideo bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -90026,41 +90274,19 @@ self: {
"gi-gtk" = callPackage
({ mkDerivation, base, bytestring, containers, gi-atk, gi-cairo
, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3
- , haskell-gi-base, text, transformers
+ , haskell-gi, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-gtk";
- version = "0.3.18.15";
- sha256 = "213e957a7c0ddbc86ed83eae0528e20d7801638f73422d861c47f3003889e0cd";
+ version = "3.0.3";
+ sha256 = "490acc92f75b231e9770b5bba2e041c2e3cd163c5e6483a153f072b0b6987c31";
libraryHaskellDepends = [
base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf
- gi-gio gi-glib gi-gobject gi-pango haskell-gi-base text
- transformers
- ];
- libraryPkgconfigDepends = [ gtk3 ];
- 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-gtk_3_0_1" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-atk, gi-cairo
- , gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3
- , haskell-gi-base, text, transformers
- }:
- mkDerivation {
- pname = "gi-gtk";
- version = "3.0.1";
- sha256 = "d58d3698d8635de6c302daf29c23a565c03974a6ce2acc77119738b144450cce";
- libraryHaskellDepends = [
- base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf
- gi-gio gi-glib gi-gobject gi-pango haskell-gi-base text
+ gi-gio gi-glib gi-gobject gi-pango haskell-gi haskell-gi-base text
transformers
];
libraryPkgconfigDepends = [ gtk3 ];
doHaddock = false;
- jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Gtk bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -90070,39 +90296,39 @@ self: {
"gi-gtksource" = callPackage
({ mkDerivation, base, bytestring, containers, gi-atk, gi-cairo
, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-gtk
- , gi-pango, gtksourceview, haskell-gi-base, text, transformers
+ , gi-pango, gtksourceview, haskell-gi, haskell-gi-base, text
+ , transformers
}:
mkDerivation {
pname = "gi-gtksource";
- version = "3.0.1";
- sha256 = "cdf804bb7df6d991876ae1ae971d2cc48899a902699f1f70839952352e8a6769";
+ version = "3.0.3";
+ sha256 = "f3ccac36ee88f12101fbab5e1cbc893932a17e1c07d5329be6d9190e5b501088";
libraryHaskellDepends = [
base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf
- gi-gio gi-glib gi-gobject gi-gtk gi-pango haskell-gi-base text
- transformers
+ gi-gio gi-glib gi-gobject gi-gtk gi-pango haskell-gi
+ haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ gtksourceview ];
doHaddock = false;
- jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "GtkSource bindings";
license = stdenv.lib.licenses.lgpl21;
}) {inherit (pkgs.gnome) gtksourceview;};
"gi-javascriptcore" = callPackage
- ({ mkDerivation, base, bytestring, containers, haskell-gi-base
- , javascriptcoregtk, text, transformers
+ ({ mkDerivation, base, bytestring, containers, haskell-gi
+ , haskell-gi-base, javascriptcoregtk, text, transformers
}:
mkDerivation {
pname = "gi-javascriptcore";
- version = "4.0.1";
- sha256 = "325621bf6a375f6844907f4a9fc08536613e7859a0c6e43bf9d2ec6ba561ccec";
+ version = "4.0.3";
+ sha256 = "4de96b5ffa891588f2aa77e78c7d369c26afc3a233134a01b90438d057786597";
libraryHaskellDepends = [
- base bytestring containers haskell-gi-base text transformers
+ base bytestring containers haskell-gi haskell-gi-base text
+ transformers
];
libraryPkgconfigDepends = [ javascriptcoregtk ];
doHaddock = false;
- jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "JavaScriptCore bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -90111,20 +90337,19 @@ self: {
"gi-notify" = callPackage
({ mkDerivation, base, bytestring, containers, gi-gdkpixbuf
- , gi-glib, gi-gobject, haskell-gi-base, libnotify, text
+ , gi-glib, gi-gobject, haskell-gi, haskell-gi-base, libnotify, text
, transformers
}:
mkDerivation {
pname = "gi-notify";
- version = "0.7.1";
- sha256 = "016271d69825c37fad0249afae299d04de63a780527afb93a93e8b70f770c881";
+ version = "0.7.3";
+ sha256 = "03f8ccbe73908644dc01462c9046e67e165cb261d325f8ccf39f02c445fdf770";
libraryHaskellDepends = [
base bytestring containers gi-gdkpixbuf gi-glib gi-gobject
- haskell-gi-base text transformers
+ haskell-gi haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ libnotify ];
doHaddock = false;
- jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Libnotify bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -90133,59 +90358,39 @@ self: {
"gi-pango" = callPackage
({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
- , haskell-gi-base, pango, text, transformers
+ , haskell-gi, haskell-gi-base, pango, text, transformers
}:
mkDerivation {
pname = "gi-pango";
- version = "0.1.38.15";
- sha256 = "998580418b896f1c817ae7f07998d314c54f14c5b03ce47893892f2550a24f08";
+ version = "1.0.3";
+ sha256 = "d1a5f97c17038967573576e2eba05207e1d6d8c89a704d87767681e858fb0257";
libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject haskell-gi-base text
- transformers
+ base bytestring containers gi-glib gi-gobject haskell-gi
+ haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ pango ];
+ doHaddock = false;
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-pango_1_0_1" = callPackage
- ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
- , haskell-gi-base, pango, text, transformers
- }:
- mkDerivation {
- pname = "gi-pango";
- version = "1.0.1";
- sha256 = "330c2a7acb2d43025db180bc649710c7817093bedadbfbf5f07f09f532f150ce";
- libraryHaskellDepends = [
- base bytestring containers gi-glib gi-gobject haskell-gi-base text
- transformers
- ];
- libraryPkgconfigDepends = [ pango ];
- doHaddock = false;
- jailbreak = true;
- homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "Pango bindings";
- license = stdenv.lib.licenses.lgpl21;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {inherit (pkgs.gnome) pango;};
-
"gi-pangocairo" = callPackage
({ mkDerivation, base, bytestring, containers, gi-cairo, gi-glib
- , gi-gobject, gi-pango, haskell-gi-base, pango, text, transformers
+ , gi-gobject, gi-pango, haskell-gi, haskell-gi-base, pango, text
+ , transformers
}:
mkDerivation {
pname = "gi-pangocairo";
- version = "1.0.1";
- sha256 = "60adcf5b4ebc22624fcccb20de47fb86b9194f793a3cb8be87282d2067f3e7dd";
+ version = "1.0.3";
+ sha256 = "799e4ed0cc657132f7ef88f829fc5eee7390a8855c4f564a55c8066549462604";
libraryHaskellDepends = [
base bytestring containers gi-cairo gi-glib gi-gobject gi-pango
- haskell-gi-base text transformers
+ haskell-gi haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ pango ];
doHaddock = false;
- jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "PangoCairo bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -90193,19 +90398,19 @@ self: {
"gi-poppler" = callPackage
({ mkDerivation, base, bytestring, containers, gi-cairo, gi-gio
- , gi-glib, gi-gobject, haskell-gi-base, poppler, text, transformers
+ , gi-glib, gi-gobject, haskell-gi, haskell-gi-base, poppler, text
+ , transformers
}:
mkDerivation {
pname = "gi-poppler";
- version = "0.18.1";
- sha256 = "8f9ed616e2c01ffe74cedf2a3da31999b4feec0c82629ae802a0b3fde99d6059";
+ version = "0.18.3";
+ sha256 = "8d060edfd5bbb0a37334e00c043cd06e9df358773fd21ad51d3f7f6b3f4c5f69";
libraryHaskellDepends = [
base bytestring containers gi-cairo gi-gio gi-glib gi-gobject
- haskell-gi-base text transformers
+ haskell-gi haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ poppler ];
doHaddock = false;
- jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Poppler bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -90214,19 +90419,19 @@ self: {
"gi-soup" = callPackage
({ mkDerivation, base, bytestring, containers, gi-gio, gi-glib
- , gi-gobject, haskell-gi-base, libsoup, text, transformers
+ , gi-gobject, haskell-gi, haskell-gi-base, libsoup, text
+ , transformers
}:
mkDerivation {
pname = "gi-soup";
- version = "2.4.1";
- sha256 = "2608f6695cd8d64fdce0490e63ea18704dcd55adec70aa7cb402523f53ed886d";
+ version = "2.4.3";
+ sha256 = "ee786ad3b35b6468f53f3962611e5316a020bdf98d9b4050a598f7b45a575a4b";
libraryHaskellDepends = [
- base bytestring containers gi-gio gi-glib gi-gobject
+ base bytestring containers gi-gio gi-glib gi-gobject haskell-gi
haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ libsoup ];
doHaddock = false;
- jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Libsoup bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -90235,20 +90440,19 @@ self: {
"gi-vte" = callPackage
({ mkDerivation, base, bytestring, containers, gi-atk, gi-gdk
- , gi-gio, gi-glib, gi-gobject, gi-gtk, gi-pango, haskell-gi-base
- , text, transformers, vte
+ , gi-gio, gi-glib, gi-gobject, gi-gtk, gi-pango, haskell-gi
+ , haskell-gi-base, text, transformers, vte
}:
mkDerivation {
pname = "gi-vte";
- version = "2.91.1";
- sha256 = "b496e7011385f0864e7cf3eb44066e9e6bbcc366b22694d24e2b8eaeab888a91";
+ version = "2.91.3";
+ sha256 = "675caf935431d9c059fbd214d30019aede82b51349693bcc29ae74a213e646e4";
libraryHaskellDepends = [
base bytestring containers gi-atk gi-gdk gi-gio gi-glib gi-gobject
- gi-gtk gi-pango haskell-gi-base text transformers
+ gi-gtk gi-pango haskell-gi haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ vte ];
doHaddock = false;
- jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Vte bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -90258,17 +90462,17 @@ self: {
"gi-webkit" = callPackage
({ mkDerivation, base, bytestring, containers, gi-atk, gi-cairo
, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-gtk
- , gi-javascriptcore, gi-soup, haskell-gi-base, text, transformers
- , webkit
+ , gi-javascriptcore, gi-soup, haskell-gi, haskell-gi-base, text
+ , transformers, webkit
}:
mkDerivation {
pname = "gi-webkit";
- version = "3.0.1";
- sha256 = "dfe29ccfb9a3e4972f5a9d42ed38d06a689772826f02f755ff4d5f86b6bc4616";
+ version = "3.0.3";
+ sha256 = "8652475bdd3bd713a2eb6ceb55c4ab81bf0939824d707dfe888e007c782fd216";
libraryHaskellDepends = [
base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf
gi-gio gi-glib gi-gobject gi-gtk gi-javascriptcore gi-soup
- haskell-gi-base text transformers
+ haskell-gi haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ webkit ];
doHaddock = false;
@@ -90282,20 +90486,20 @@ self: {
"gi-webkit2" = callPackage
({ mkDerivation, base, bytestring, containers, gi-atk, gi-cairo
, gi-gdk, gi-gio, gi-glib, gi-gobject, gi-gtk, gi-javascriptcore
- , gi-soup, haskell-gi-base, text, transformers, webkit2gtk
+ , gi-soup, haskell-gi, haskell-gi-base, text, transformers
+ , webkit2gtk
}:
mkDerivation {
pname = "gi-webkit2";
- version = "4.0.1";
- sha256 = "f5ff290defc0d057245ef7f17c50cd08ab13a40c64c1db9078e50d31c0384027";
+ version = "4.0.3";
+ sha256 = "1f0ec734c2eb560a6b539dec340106ed6cf6a74fdd8ea4d6b21228657cb2818d";
libraryHaskellDepends = [
base bytestring containers gi-atk gi-cairo gi-gdk gi-gio gi-glib
- gi-gobject gi-gtk gi-javascriptcore gi-soup haskell-gi-base text
- transformers
+ gi-gobject gi-gtk gi-javascriptcore gi-soup haskell-gi
+ haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ webkit2gtk ];
doHaddock = false;
- jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "WebKit2 bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -90304,20 +90508,19 @@ self: {
"gi-webkit2webextension" = callPackage
({ mkDerivation, base, bytestring, containers, gi-gobject, gi-gtk
- , gi-javascriptcore, gi-soup, haskell-gi-base, text, transformers
- , webkit2gtk-web-extension
+ , gi-javascriptcore, gi-soup, haskell-gi, haskell-gi-base, text
+ , transformers, webkit2gtk-web-extension
}:
mkDerivation {
pname = "gi-webkit2webextension";
- version = "4.0.1";
- sha256 = "9192d954748c6516a144bc734d6cc0945ae57401fa51da77903e1b7218e4ca0d";
+ version = "4.0.3";
+ sha256 = "19711474df979da0da05bcf94df82674e89e31471fb76c050a43a5a071d05df4";
libraryHaskellDepends = [
base bytestring containers gi-gobject gi-gtk gi-javascriptcore
- gi-soup haskell-gi-base text transformers
+ gi-soup haskell-gi haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ webkit2gtk-web-extension ];
doHaddock = false;
- jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "WebKit2-WebExtension bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -90459,6 +90662,24 @@ self: {
license = stdenv.lib.licenses.lgpl21;
}) {};
+ "gio_0_13_2_0" = callPackage
+ ({ mkDerivation, array, base, bytestring, containers, glib
+ , gtk2hs-buildtools, mtl
+ }:
+ mkDerivation {
+ pname = "gio";
+ version = "0.13.2.0";
+ sha256 = "e5049fabb2cd1da78bae2b6d9968bfe50491ecb0f7e4a75855499aeeb264fd72";
+ libraryHaskellDepends = [
+ array base bytestring containers glib mtl
+ ];
+ libraryToolDepends = [ gtk2hs-buildtools ];
+ homepage = "http://projects.haskell.org/gtk2hs/";
+ description = "Binding to GIO";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"gipeda_0_1_0_2" = callPackage
({ mkDerivation, aeson, base, bytestring, cassava, containers
, directory, filepath, shake, split, text, unordered-containers
@@ -90619,6 +90840,29 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "git" = callPackage
+ ({ mkDerivation, base, byteable, bytedump, bytestring, containers
+ , cryptonite, hourglass, memory, mtl, patience, random
+ , system-fileio, system-filepath, tasty, tasty-quickcheck
+ , unix-compat, utf8-string, vector, zlib, zlib-bindings
+ }:
+ mkDerivation {
+ pname = "git";
+ version = "0.1";
+ sha256 = "846907115b7b81dd046c78581d4709b403e307046f1ab4680c7ac0475130bef3";
+ libraryHaskellDepends = [
+ base byteable bytestring containers cryptonite hourglass memory mtl
+ patience random system-fileio system-filepath unix-compat
+ utf8-string vector zlib zlib-bindings
+ ];
+ testHaskellDepends = [
+ base bytedump bytestring hourglass tasty tasty-quickcheck
+ ];
+ homepage = "https://github.com/vincenthz/hit";
+ description = "Git operations in haskell";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"git-all" = callPackage
({ mkDerivation, base, cmdargs, hslogger, parallel-io, regex-posix
, shelly, system-fileio, system-filepath, text, transformers, unix
@@ -91157,7 +91401,7 @@ self: {
description = "A framework for pre-commit checks";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
- }) {inherit (pkgs) git;};
+ }) {};
"gitHUD" = callPackage
({ mkDerivation, base, mtl, parsec, process, tasty, tasty-hunit
@@ -91292,8 +91536,8 @@ self: {
}:
mkDerivation {
pname = "github-backup";
- version = "1.20160511";
- sha256 = "6c6e2d78869511a58e369165991a145fb55740a0673e6d739456454ec1c06a22";
+ version = "1.20160522";
+ sha256 = "da5f7c8458321e039f8634cce7ce539bf5c0464e9487072ab79a68fa074d5aa8";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -91347,6 +91591,28 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "github-release_0_1_9" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, http-client
+ , http-client-tls, http-types, mime-types, optparse-generic, text
+ , unordered-containers, uri-templater
+ }:
+ mkDerivation {
+ pname = "github-release";
+ version = "0.1.9";
+ sha256 = "df10ca8f6c8dd97e3dbf6f173a63498a674f7564d727c5647782ec029bd4d1ef";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring http-client http-client-tls http-types
+ mime-types optparse-generic text unordered-containers uri-templater
+ ];
+ executableHaskellDepends = [ base ];
+ homepage = "https://github.com/tfausak/github-release#readme";
+ description = "Upload files to GitHub releases";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"github-types" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, hspec, hspec-smallcheck
, http-conduit, smallcheck, text, time, unordered-containers
@@ -91365,6 +91631,25 @@ self: {
license = "unknown";
}) {};
+ "github-types_0_2_1" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, base, hspec, hspec-smallcheck
+ , http-conduit, smallcheck, text, time, unordered-containers
+ , vector
+ }:
+ mkDerivation {
+ pname = "github-types";
+ version = "0.2.1";
+ sha256 = "cce4ea461b3ea7c92d130181244cfe7f29c10aecc7e7a980ee6722b6d6af7867";
+ libraryHaskellDepends = [ aeson base text time ];
+ testHaskellDepends = [
+ aeson aeson-pretty base hspec hspec-smallcheck http-conduit
+ smallcheck text time unordered-containers vector
+ ];
+ description = "Type definitions for objects used by the GitHub v3 API";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"github-utils" = callPackage
({ mkDerivation, base, basic-prelude, github, text }:
mkDerivation {
@@ -91395,6 +91680,23 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "github-webhook-handler_0_0_8" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, cryptohash, github-types
+ , text, transformers, uuid, vector
+ }:
+ mkDerivation {
+ pname = "github-webhook-handler";
+ version = "0.0.8";
+ sha256 = "1d908854606683c236720c2de3988ae723591be02b1c668bd8ba0ffa03b34fea";
+ libraryHaskellDepends = [
+ aeson base bytestring cryptohash github-types text transformers
+ uuid vector
+ ];
+ description = "GitHub WebHook Handler";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"github-webhook-handler-snap" = callPackage
({ mkDerivation, base, bytestring, case-insensitive, github-types
, github-webhook-handler, snap-core, uuid
@@ -92272,6 +92574,25 @@ self: {
license = stdenv.lib.licenses.lgpl21;
}) {inherit (pkgs) glib;};
+ "glib_0_13_3_0" = callPackage
+ ({ mkDerivation, base, bytestring, containers, glib
+ , gtk2hs-buildtools, text, utf8-string
+ }:
+ mkDerivation {
+ pname = "glib";
+ version = "0.13.3.0";
+ sha256 = "8a2b765d92f8f6c138888ef1b76da25758f72e493c677355438015dc25451029";
+ libraryHaskellDepends = [
+ base bytestring containers text utf8-string
+ ];
+ libraryPkgconfigDepends = [ glib ];
+ libraryToolDepends = [ gtk2hs-buildtools ];
+ homepage = "http://projects.haskell.org/gtk2hs/";
+ description = "Binding to the GLIB library for Gtk2Hs";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) glib;};
+
"glicko" = callPackage
({ mkDerivation, base, containers, data-default, deepseq, hspec
, lens, parallel, QuickCheck, statistics
@@ -92323,8 +92644,8 @@ self: {
}:
mkDerivation {
pname = "gll";
- version = "0.3.0.7";
- sha256 = "6d139f9b239944a442473096d055eb8f0bfb52fa9f5497a29d86d00e78e015da";
+ version = "0.3.0.9";
+ sha256 = "4c5657403588a489d1a97ee2e85e9ed5e41e029a299918b59778f1e65dfde0e2";
libraryHaskellDepends = [
array base containers pretty regex-applicative text TypeCompose
];
@@ -96240,6 +96561,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "grouped-list_0_2_1_2" = callPackage
+ ({ mkDerivation, base, containers, deepseq, pointed, QuickCheck
+ , tasty, tasty-quickcheck
+ }:
+ mkDerivation {
+ pname = "grouped-list";
+ version = "0.2.1.2";
+ sha256 = "5bc49f34b1d9759a819c919971d789b14d37a8e22de811a5fc062675e3f8e875";
+ libraryHaskellDepends = [ base containers deepseq pointed ];
+ testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ];
+ homepage = "https://github.com/Daniel-Diaz/grouped-list/blob/master/README.md";
+ description = "Grouped lists. Equal consecutive elements are grouped.";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"groupoid" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -96419,14 +96756,13 @@ self: {
}:
mkDerivation {
pname = "gstreamer";
- version = "0.12.5.0";
- sha256 = "c633b67d1a687ce781775cea8bf4a250e823473b7cfae145bdceb7ad39102f3f";
+ version = "0.12.8";
+ sha256 = "ff437ed983c8d7d38add69a601707f86fcfcbc1a079c4463e67cb6a1dfcf69ad";
libraryHaskellDepends = [
array base bytestring directory glib mtl
];
libraryPkgconfigDepends = [ gst_plugins_base gstreamer ];
libraryToolDepends = [ gtk2hs-buildtools ];
- jailbreak = true;
homepage = "http://projects.haskell.org/gtk2hs/";
description = "Binding to the GStreamer open source multimedia framework";
license = stdenv.lib.licenses.lgpl21;
@@ -96609,6 +96945,25 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {gtk2 = pkgs.gnome2.gtk;};
+ "gtk_0_14_3" = callPackage
+ ({ mkDerivation, array, base, bytestring, cairo, containers, gio
+ , glib, gtk2, gtk2hs-buildtools, mtl, pango, text
+ }:
+ mkDerivation {
+ pname = "gtk";
+ version = "0.14.3";
+ sha256 = "cd225f238ccc24b14d550292768f0cbec738eac7d130b926f827770df7960969";
+ libraryHaskellDepends = [
+ array base bytestring cairo containers gio glib mtl pango text
+ ];
+ libraryPkgconfigDepends = [ gtk2 ];
+ libraryToolDepends = [ gtk2hs-buildtools ];
+ homepage = "http://projects.haskell.org/gtk2hs/";
+ description = "Binding to the Gtk+ graphical user interface library";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {gtk2 = pkgs.gnome2.gtk;};
+
"gtk-helpers" = callPackage
({ mkDerivation, array, base, gio, glib, gtk, mtl, process
, template-haskell
@@ -96662,8 +97017,8 @@ self: {
}:
mkDerivation {
pname = "gtk-mac-integration";
- version = "0.3.2.1";
- sha256 = "33ae28811e7fbcfe00b1379489c3c73d5023e6b63ebfb19cdea9ddf40c312f06";
+ version = "0.3.3.0";
+ sha256 = "639a8f6993a902346555f0cef188418fadb8f272f98d5f1f485e4c2b832641c3";
libraryHaskellDepends = [ array base containers glib gtk mtl ];
libraryPkgconfigDepends = [ gtk-mac-integration-gtk2 ];
libraryToolDepends = [ gtk2hs-buildtools ];
@@ -96807,6 +97162,31 @@ self: {
license = stdenv.lib.licenses.gpl2;
}) {};
+ "gtk2hs-buildtools_0_13_1_0" = callPackage
+ ({ mkDerivation, alex, array, base, Cabal, containers, directory
+ , filepath, happy, hashtables, pretty, process, random
+ }:
+ mkDerivation {
+ pname = "gtk2hs-buildtools";
+ version = "0.13.1.0";
+ sha256 = "2d91805f2f79a9c85d48f88474a9ff98dc64e22dcea8e79fe8a01c80945de83a";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base Cabal containers directory filepath
+ ];
+ executableHaskellDepends = [
+ array base containers directory filepath hashtables pretty process
+ random
+ ];
+ executableToolDepends = [ alex happy ];
+ jailbreak = true;
+ homepage = "http://projects.haskell.org/gtk2hs/";
+ description = "Tools to build the Gtk2Hs suite of User Interface libraries";
+ license = stdenv.lib.licenses.gpl2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"gtk2hs-cast-glade" = callPackage
({ mkDerivation, base, glade, gtk, gtk2hs-cast-glib, hint
, template-haskell
@@ -97149,14 +97529,40 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {inherit (pkgs) gtk3;};
+ "gtk3_0_14_3" = callPackage
+ ({ mkDerivation, array, base, bytestring, cairo, containers, gio
+ , glib, gtk2hs-buildtools, gtk3, mtl, pango, text, time
+ , transformers
+ }:
+ mkDerivation {
+ pname = "gtk3";
+ version = "0.14.3";
+ sha256 = "aa2fde0dde64936a96c72b08b9cc0ebb1fb73aedb94625dc2163843f957956a0";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ array base bytestring cairo containers gio glib mtl pango text
+ ];
+ libraryPkgconfigDepends = [ gtk3 ];
+ libraryToolDepends = [ gtk2hs-buildtools ];
+ executableHaskellDepends = [
+ array base cairo text time transformers
+ ];
+ jailbreak = true;
+ homepage = "http://projects.haskell.org/gtk2hs/";
+ description = "Binding to the Gtk+ 3 graphical user interface library";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) gtk3;};
+
"gtk3-mac-integration" = callPackage
({ mkDerivation, array, base, containers, glib
, gtk-mac-integration-gtk3, gtk2hs-buildtools, gtk3, mtl
}:
mkDerivation {
pname = "gtk3-mac-integration";
- version = "0.3.2.1";
- sha256 = "c457a75dff24baf47a17f8763b4549be69305dcbc1cf8da7afa01ca62dd466f5";
+ version = "0.3.3.0";
+ sha256 = "c55a0c38dca1904bef528568d914a76f349ba87279b4a8ed3997bb9ac6b0a2e3";
libraryHaskellDepends = [ array base containers glib gtk3 mtl ];
libraryPkgconfigDepends = [ gtk-mac-integration-gtk3 ];
libraryToolDepends = [ gtk2hs-buildtools ];
@@ -97229,8 +97635,8 @@ self: {
}:
mkDerivation {
pname = "gtksourceview2";
- version = "0.13.2.1";
- sha256 = "8a98b0dd60625db232152586f1f73c1e4cfdca30b8af6c155029b532aa75e206";
+ version = "0.13.3.0";
+ sha256 = "20747e2bff7b9e49bc4952a4ba706c72c02edafdb7eb86e00038dd438b5937cc";
libraryHaskellDepends = [
array base containers glib gtk mtl text
];
@@ -97262,6 +97668,25 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {inherit (pkgs.gnome) gtksourceview;};
+ "gtksourceview3_0_13_3_0" = callPackage
+ ({ mkDerivation, array, base, containers, glib, gtk2hs-buildtools
+ , gtk3, gtksourceview, mtl, text
+ }:
+ mkDerivation {
+ pname = "gtksourceview3";
+ version = "0.13.3.0";
+ sha256 = "c260f3d49e3ee2e3da2e9884f948e904b7e376bb885d0ce7da346bcab58042f2";
+ libraryHaskellDepends = [
+ array base containers glib gtk3 mtl text
+ ];
+ libraryPkgconfigDepends = [ gtksourceview ];
+ libraryToolDepends = [ gtk2hs-buildtools ];
+ homepage = "http://projects.haskell.org/gtk2hs/";
+ description = "Binding to the GtkSourceView library";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs.gnome) gtksourceview;};
+
"guarded-rewriting" = callPackage
({ mkDerivation, base, instant-generics }:
mkDerivation {
@@ -97918,6 +98343,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hPDB_1_2_0_5" = callPackage
+ ({ mkDerivation, AC-Vector, base, bytestring, containers, deepseq
+ , directory, ghc-prim, iterable, mmap, mtl, Octree, parallel
+ , QuickCheck, tagged, template-haskell, text, vector, zlib
+ }:
+ mkDerivation {
+ pname = "hPDB";
+ version = "1.2.0.5";
+ sha256 = "d0fdcaa3f67dd9dc0bfdc144f2e53859452e66156f0beabe22c3df3d256dfc51";
+ libraryHaskellDepends = [
+ AC-Vector base bytestring containers deepseq directory ghc-prim
+ iterable mmap mtl Octree parallel QuickCheck tagged
+ template-haskell text vector zlib
+ ];
+ homepage = "https://github.com/BioHaskell/hPDB";
+ description = "Protein Databank file format library";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hPDB-examples_1_1_2" = callPackage
({ mkDerivation, AC-Vector, base, bytestring, containers, deepseq
, directory, ghc-prim, GLUT, hPDB, iterable, mtl, Octree, OpenGL
@@ -99092,17 +99537,17 @@ self: {
}) {};
"haddock" = callPackage
- ({ mkDerivation, base, Cabal, directory, filepath, haddock-api
- , process
- }:
+ ({ mkDerivation, base, filepath, haddock-api, hspec }:
mkDerivation {
pname = "haddock";
- version = "2.16.1";
- sha256 = "46ecd130cb5ad2b5c7452c843f9b75e976f1416d1cf17e6436d65c2c0bdbd6d6";
+ version = "2.17.2";
+ sha256 = "9dd499b022b775b1168c2a8fc940a8cca5eec2416289277a8f59d7321117bb15";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base haddock-api ];
- testHaskellDepends = [ base Cabal directory filepath process ];
+ testHaskellDepends = [ base filepath hspec ];
+ jailbreak = true;
+ doCheck = false;
preCheck = "unset GHC_PACKAGE_PATH";
homepage = "http://www.haskell.org/haddock/";
description = "A documentation-generation tool for Haskell libraries";
@@ -99187,6 +99632,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "haddock-api_2_17_2" = callPackage
+ ({ mkDerivation, array, base, bytestring, Cabal, containers
+ , deepseq, directory, filepath, ghc, ghc-boot, ghc-paths
+ , haddock-library, hspec, QuickCheck, transformers, xhtml
+ }:
+ mkDerivation {
+ pname = "haddock-api";
+ version = "2.17.2";
+ sha256 = "60df55698ebfb5d0a36c15d789a2d95c789fe0f7e61ef0c3be30ab0183d5261e";
+ libraryHaskellDepends = [
+ array base bytestring Cabal containers deepseq directory filepath
+ ghc ghc-boot ghc-paths haddock-library transformers xhtml
+ ];
+ testHaskellDepends = [ base containers ghc hspec QuickCheck ];
+ jailbreak = true;
+ 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-leksah" = callPackage
({ mkDerivation, array, base, Cabal, containers, directory
, filepath, ghc, ghc-paths, pretty
@@ -99244,6 +99710,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "haddock-library_1_4_1" = callPackage
+ ({ mkDerivation, base, base-compat, bytestring, deepseq, hspec
+ , QuickCheck, transformers
+ }:
+ mkDerivation {
+ pname = "haddock-library";
+ version = "1.4.1";
+ sha256 = "40f4be262d3ec74a88e86f2bf9ecfba46ae140d936825c96b3d739acb9469ff1";
+ libraryHaskellDepends = [ base bytestring deepseq transformers ];
+ testHaskellDepends = [
+ base base-compat bytestring deepseq hspec QuickCheck transformers
+ ];
+ homepage = "http://www.haskell.org/haddock/";
+ description = "Library exposing some functionality of Haddock";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"haddocset" = callPackage
({ mkDerivation, base, Cabal, conduit, conduit-extra, directory
, exceptions, filepath, ghc, haddock-api, http-types, mtl
@@ -102103,6 +102587,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "harvest-api" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, file-embed, hspec
+ , http-client, mtl, servant, servant-client, text, time
+ , transformers
+ }:
+ mkDerivation {
+ pname = "harvest-api";
+ version = "0.1.0";
+ sha256 = "052cf4dff75657fb7c7e74ea6fb3af542180b520d64b6a4197ef62e8acc1b7d1";
+ libraryHaskellDepends = [
+ aeson base bytestring http-client mtl servant servant-client text
+ time transformers
+ ];
+ testHaskellDepends = [
+ aeson base bytestring file-embed hspec time
+ ];
+ homepage = "https://github.com/stackbuilders/harvest-api";
+ description = "Bindings for Harvest API";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"has" = callPackage
({ mkDerivation, base, QuickCheck }:
mkDerivation {
@@ -102452,8 +102957,8 @@ self: {
}:
mkDerivation {
pname = "hashable-generics";
- version = "1.1.8";
- sha256 = "183a77fec48044d66fcd872383bc5c461fefd23d6eb954b7d4508caf1525b1d0";
+ version = "1.1.10";
+ sha256 = "8b116058f419dc4b371dd539817d3fd064b697ccdca0a01c66a8ce0f010f931b";
libraryHaskellDepends = [ base ghc-prim hashable ];
testHaskellDepends = [
base ghc-prim hashable QuickCheck test-framework
@@ -103197,8 +103702,8 @@ self: {
}:
mkDerivation {
pname = "haskell-gi";
- version = "0.17";
- sha256 = "9c833a65889a888e1aecfff27a86f4cf3404a41a23e0be7699f2058b8accec08";
+ version = "0.17.3";
+ sha256 = "9631ce7d57f5e6fa7dbd667d9d0d17638c0d4c0b598309fc2448b46e29b7511a";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -103210,7 +103715,6 @@ self: {
executableHaskellDepends = [
base containers directory filepath haskell-gi-base pretty-show text
];
- jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Generate Haskell bindings for GObject Introspection capable libraries";
license = stdenv.lib.licenses.lgpl21;
@@ -103218,24 +103722,6 @@ self: {
}) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;};
"haskell-gi-base" = callPackage
- ({ mkDerivation, base, bytestring, containers, glib, text
- , transformers
- }:
- mkDerivation {
- pname = "haskell-gi-base";
- version = "0.15";
- sha256 = "b7c622d428fe2369f20dfba9a02fd9d29366ab9a3949a22486d46a4abf70bb37";
- libraryHaskellDepends = [
- base bytestring containers text transformers
- ];
- libraryPkgconfigDepends = [ glib ];
- 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-gi-base_0_17" = callPackage
({ mkDerivation, base, bytestring, containers, glib, text
, transformers
}:
@@ -103250,7 +103736,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 = stdenv.lib.platforms.none;
+ hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ];
}) {inherit (pkgs) glib;};
"haskell-import-graph" = callPackage
@@ -105746,8 +106232,8 @@ self: {
}:
mkDerivation {
pname = "hasql";
- version = "0.19.11";
- sha256 = "48b12698e6168f176fa583317cb3f058e99f604ceda5036e891bc496bf4158e4";
+ version = "0.19.12";
+ sha256 = "8f211a2ce98debdd31a3a0ecf835c14ceb314c1e6421924cb3f7356ad3132342";
libraryHaskellDepends = [
aeson attoparsec base base-prelude bytestring
bytestring-tree-builder contravariant contravariant-extras
@@ -106534,8 +107020,8 @@ self: {
}:
mkDerivation {
pname = "hatex-guide";
- version = "1.3.1.1";
- sha256 = "19bdc6cd223514e0066fa3d74f8a86817f756245838437e9ba4e50faedb21acd";
+ version = "1.3.1.3";
+ sha256 = "9ec844efda0fd5ece2fb7e0c57ac3a79a7dcf3035aac85a08c797f3ded4c17ac";
libraryHaskellDepends = [
base blaze-html directory filepath HaTeX parsec text time
transformers
@@ -107912,7 +108398,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hdocs" = callPackage
+ "hdocs_0_4_4_2" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, bytestring, Cabal
, containers, filepath, ghc, ghc-paths, haddock-api
, haddock-library, MonadCatchIO-transformers, mtl, network, process
@@ -107937,6 +108423,32 @@ self: {
homepage = "https://github.com/mvoidex/hdocs";
description = "Haskell docs tool";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "hdocs" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, base, bytestring, Cabal
+ , containers, filepath, ghc, ghc-paths, haddock-api
+ , haddock-library, mtl, network, process, text
+ }:
+ mkDerivation {
+ pname = "hdocs";
+ version = "0.5.0.0";
+ sha256 = "57c422f7f86029436595d19f102aa64da499fc23f9f60801070a1650bde19c37";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring Cabal containers filepath ghc ghc-paths
+ haddock-api haddock-library mtl network process text
+ ];
+ executableHaskellDepends = [
+ aeson aeson-pretty base bytestring containers filepath haddock-api
+ mtl network text
+ ];
+ testHaskellDepends = [ base containers mtl ];
+ homepage = "https://github.com/mvoidex/hdocs";
+ description = "Haskell docs tool";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"hdph" = callPackage
@@ -109620,8 +110132,8 @@ self: {
({ mkDerivation, base, base-unicode-symbols, hspec, text }:
mkDerivation {
pname = "hformat";
- version = "0.1.0.0";
- sha256 = "722f3d6bcf285477c93c68bcf62a23312cc8715d573989d87c8c1a6d0e725323";
+ version = "0.1.0.1";
+ sha256 = "62830d91b7d338f2fee8c3aa2b6ab874d6340ed84b0a67dd0f31fbcad6d08d0c";
libraryHaskellDepends = [ base base-unicode-symbols text ];
testHaskellDepends = [ base base-unicode-symbols hspec text ];
homepage = "http://github.com/mvoidex/hformat";
@@ -110522,8 +111034,8 @@ self: {
}:
mkDerivation {
pname = "hills";
- version = "0.1.2.1";
- sha256 = "cf5e5c6a00e48b70c099e2259b4af0f4340f07feb1e3cbe08e3c2e0045f40ca1";
+ version = "0.1.2.2";
+ sha256 = "fd4428fa04a87613287d1e09a1a889986edd2d351dab351d4b0aa6659396e7e7";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -111075,6 +111587,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hint_0_5_2" = callPackage
+ ({ mkDerivation, base, directory, exceptions, extensible-exceptions
+ , filepath, ghc, ghc-paths, HUnit, mtl, random, unix
+ }:
+ mkDerivation {
+ pname = "hint";
+ version = "0.5.2";
+ sha256 = "b988ddf97c01dcfe21d3db97e4de94f8a9eeed645cc89ed0471f977b1fa22c0f";
+ 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
({ mkDerivation, base, eprocess, exceptions, hint, monad-loops, mtl
}:
@@ -112085,7 +112617,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hledger" = callPackage
+ "hledger_0_26" = callPackage
({ mkDerivation, base, base-compat, cmdargs, containers, csv
, directory, filepath, haskeline, hledger-lib, HUnit, mtl
, mtl-compat, old-time, parsec, pretty-show, process, regex-tdfa
@@ -112117,12 +112649,14 @@ self: {
pretty-show process regex-tdfa safe shakespeare split tabular
test-framework test-framework-hunit text time transformers wizards
];
+ jailbreak = true;
homepage = "http://hledger.org";
description = "The main command-line interface for the hledger accounting tool";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hledger_0_27" = callPackage
+ "hledger" = callPackage
({ mkDerivation, base, base-compat, cmdargs, containers, csv
, directory, filepath, haskeline, hledger-lib, HUnit, mtl
, mtl-compat, old-time, parsec, pretty-show, process, regex-tdfa
@@ -112157,11 +112691,9 @@ self: {
terminfo test-framework test-framework-hunit text time
unordered-containers utf8-string wizards
];
- jailbreak = true;
homepage = "http://hledger.org";
description = "Command-line interface for the hledger accounting tool";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hledger-chart" = callPackage
@@ -112318,7 +112850,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hledger-lib" = callPackage
+ "hledger-lib_0_26" = callPackage
({ mkDerivation, array, base, base-compat, blaze-markup, bytestring
, cmdargs, containers, csv, Decimal, directory, filepath, HUnit
, mtl, mtl-compat, old-time, parsec, pretty-show, regex-tdfa, safe
@@ -112343,9 +112875,10 @@ self: {
homepage = "http://hledger.org";
description = "Core data types, parsers and utilities for the hledger accounting tool";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hledger-lib_0_27" = callPackage
+ "hledger-lib" = callPackage
({ mkDerivation, array, base, base-compat, blaze-markup, bytestring
, cmdargs, containers, csv, Decimal, deepseq, directory, filepath
, HUnit, mtl, mtl-compat, old-time, parsec, pretty-show, regex-tdfa
@@ -112373,7 +112906,6 @@ self: {
homepage = "http://hledger.org";
description = "Core data types, parsers and functionality for the hledger accounting tools";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hledger-ui_0_27_3" = callPackage
@@ -112394,7 +112926,6 @@ self: {
hledger hledger-lib HUnit lens pretty-show safe split time
transformers vector vty
];
- jailbreak = true;
homepage = "http://hledger.org";
description = "Curses-style user interface for the hledger accounting tool";
license = "GPL";
@@ -112419,7 +112950,6 @@ self: {
hledger hledger-lib HUnit lens pretty-show safe split time
transformers vector vty
];
- jailbreak = true;
homepage = "http://hledger.org";
description = "Curses-style user interface for the hledger accounting tool";
license = "GPL";
@@ -112484,7 +113014,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hledger-web" = callPackage
+ "hledger-web_0_26" = callPackage
({ mkDerivation, base, base-compat, blaze-html, blaze-markup
, bytestring, clientsession, cmdargs, conduit-extra, data-default
, directory, filepath, hjsmin, hledger, hledger-lib, hspec
@@ -112516,12 +113046,14 @@ self: {
yesod-static
];
testHaskellDepends = [ base base-compat hspec yesod yesod-test ];
+ jailbreak = true;
homepage = "http://hledger.org";
description = "A web interface for the hledger accounting tool";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hledger-web_0_27" = callPackage
+ "hledger-web" = callPackage
({ mkDerivation, base, base-compat, blaze-html, blaze-markup
, bytestring, clientsession, cmdargs, conduit-extra, data-default
, directory, filepath, hjsmin, hledger, hledger-lib, hspec
@@ -112560,11 +113092,9 @@ self: {
wai-extra wai-handler-launch warp yaml yesod yesod-core yesod-form
yesod-static yesod-test
];
- jailbreak = true;
homepage = "http://hledger.org";
description = "Web interface for the hledger accounting tool";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hlibBladeRF" = callPackage
@@ -112652,7 +113182,7 @@ self: {
testToolDepends = [ git ];
description = "Low-level bindings to libgit2";
license = stdenv.lib.licenses.mit;
- }) {inherit (pkgs) git; inherit (pkgs) openssl;};
+ }) {inherit (pkgs) openssl;};
"hlibsass_0_1_4_0" = callPackage
({ mkDerivation, base, hspec, libsass }:
@@ -114050,6 +114580,29 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hoauth2_0_5_3_1" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, http-conduit
+ , http-types, text, wai, warp
+ }:
+ mkDerivation {
+ pname = "hoauth2";
+ version = "0.5.3.1";
+ sha256 = "f61b65dfe6834a6a26c32f6cf38914b5587102e62e50eb3b02887b0c6927e7ad";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring http-conduit http-types text
+ ];
+ executableHaskellDepends = [
+ aeson base bytestring containers http-conduit http-types text wai
+ warp
+ ];
+ homepage = "https://github.com/freizl/hoauth2";
+ description = "Haskell OAuth2 authentication client";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hob" = callPackage
({ mkDerivation, base, bytestring, containers, directory, filepath
, glib, gtk-largeTreeStore, gtk3, gtksourceview3, hspec, mtl, pango
@@ -114105,8 +114658,8 @@ self: {
}:
mkDerivation {
pname = "hobbits";
- version = "1.2.1";
- sha256 = "d2e11a1b42ee877a4c74df40df4f0131432c7d7219bf8304de239e2e7a44a0a1";
+ version = "1.2.2";
+ sha256 = "568be09943c403e3bb46b4b58bcb543fbc2421fecfe8459e1976a57894657b11";
libraryHaskellDepends = [
base deepseq haskell-src-exts haskell-src-meta mtl syb tagged
template-haskell th-expand-syns transformers
@@ -115862,35 +116415,6 @@ self: {
}) {};
"hpack" = callPackage
- ({ mkDerivation, aeson, aeson-qq, base, base-compat, containers
- , deepseq, directory, filepath, Glob, hspec, interpolate, mockery
- , QuickCheck, temporary, text, unordered-containers, yaml
- }:
- mkDerivation {
- pname = "hpack";
- version = "0.13.0";
- sha256 = "1e374c9c6ea4784371e91353bc2204d9724a0f5864916bcba355d882cde44830";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson base base-compat containers deepseq directory filepath Glob
- text unordered-containers yaml
- ];
- executableHaskellDepends = [
- aeson base base-compat containers deepseq directory filepath Glob
- text unordered-containers yaml
- ];
- testHaskellDepends = [
- aeson aeson-qq base base-compat containers deepseq directory
- filepath Glob hspec interpolate mockery QuickCheck temporary text
- unordered-containers yaml
- ];
- homepage = "https://github.com/sol/hpack#readme";
- description = "An alternative format for Haskell packages";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "hpack_0_14_0" = callPackage
({ mkDerivation, aeson, aeson-qq, base, base-compat, containers
, deepseq, directory, filepath, Glob, hspec, interpolate, mockery
, QuickCheck, temporary, text, unordered-containers, yaml
@@ -115917,7 +116441,6 @@ self: {
homepage = "https://github.com/sol/hpack#readme";
description = "An alternative format for Haskell packages";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hpaco" = callPackage
@@ -116055,8 +116578,8 @@ self: {
}:
mkDerivation {
pname = "hpath";
- version = "0.7.0";
- sha256 = "5e13502321eab493d9755264ce4941500fe4c3d28fb2237da2c700a594bd3324";
+ version = "0.7.1";
+ sha256 = "33396f57805c65daa77ceb4bd19d73f9a7b0c6881451468f8589ce4ac71c990a";
libraryHaskellDepends = [
base bytestring deepseq exceptions hspec simple-sendfile unix
unix-bytestring utf8-string word8
@@ -118195,34 +118718,34 @@ self: {
({ mkDerivation, aeson, aeson-lens, aeson-pretty, array, async
, attoparsec, base, bin-package-db, bytestring, Cabal, containers
, cpphs, data-default, deepseq, directory, exceptions, filepath
- , fsnotify, ghc, ghc-mod, ghc-paths, ghc-syb-utils, haddock-api
+ , fsnotify, ghc, ghc-paths, ghc-syb-utils, haddock-api
, haskell-src-exts, hdocs, hformat, hlint, hspec, HTTP, lens
- , lifted-base, monad-control, monad-loops
- , MonadCatchIO-transformers, mtl, network, optparse-applicative
- , process, regex-pcre-builtin, scientific, simple-log, syb
- , template-haskell, text, text-region, time, transformers
- , transformers-base, uniplate, unix, unordered-containers, vector
+ , lifted-base, monad-control, monad-loops, mtl, network
+ , optparse-applicative, process, regex-pcre-builtin, scientific
+ , simple-log, syb, template-haskell, text, text-region, time
+ , transformers, transformers-base, uniplate, unix
+ , unordered-containers, vector
}:
mkDerivation {
pname = "hsdev";
- version = "0.1.8.2";
- sha256 = "0779ad320de31f59c6bae829398281697a25f45a3b38e1502cf1d005e1d5f9b4";
+ version = "0.2.0.0";
+ sha256 = "da36361df0f56f5e217da972cd4a9e2a0f3321be684c365f9d599fb635f7b02e";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson aeson-pretty array async attoparsec base bin-package-db
bytestring Cabal containers cpphs data-default deepseq directory
- exceptions filepath fsnotify ghc ghc-mod ghc-paths ghc-syb-utils
+ exceptions filepath fsnotify ghc ghc-paths ghc-syb-utils
haddock-api haskell-src-exts hdocs hformat hlint HTTP lens
- lifted-base monad-control monad-loops MonadCatchIO-transformers mtl
- network optparse-applicative process regex-pcre-builtin scientific
+ lifted-base monad-control monad-loops mtl network
+ optparse-applicative process regex-pcre-builtin scientific
simple-log syb template-haskell text text-region time transformers
transformers-base uniplate unix unordered-containers vector
];
executableHaskellDepends = [
aeson aeson-pretty base bytestring containers data-default deepseq
- directory exceptions filepath ghc haskell-src-exts lens monad-loops
- mtl network optparse-applicative process text transformers
+ directory exceptions filepath haskell-src-exts lens monad-loops mtl
+ network optparse-applicative process text transformers
unordered-containers vector
];
testHaskellDepends = [
@@ -118232,7 +118755,7 @@ self: {
doHaddock = false;
doCheck = false;
homepage = "https://github.com/mvoidex/hsdev";
- description = "Haskell development library and tool with support of autocompletion, symbol info, go to declaration, find references etc";
+ description = "Haskell development library";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -124855,7 +125378,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hvect" = callPackage
+ "hvect_0_3_0_0" = callPackage
({ mkDerivation, base, HTF }:
mkDerivation {
pname = "hvect";
@@ -124866,6 +125389,20 @@ self: {
homepage = "https://github.com/agrafix/hvect";
description = "Simple strict heterogeneous lists";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "hvect" = callPackage
+ ({ mkDerivation, base, HTF }:
+ mkDerivation {
+ pname = "hvect";
+ version = "0.3.1.0";
+ sha256 = "b9ba2408a3718b7a38b72cf7f81ce51ac9f0db63908969d386213c47b6526ab8";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base HTF ];
+ homepage = "https://github.com/agrafix/hvect";
+ description = "Simple strict heterogeneous lists";
+ license = stdenv.lib.licenses.mit;
}) {};
"hw-bits" = callPackage
@@ -128184,8 +128721,8 @@ self: {
({ mkDerivation, base, hspec, transformers }:
mkDerivation {
pname = "ilist";
- version = "0.1.0.0";
- sha256 = "777054a8ffdde4b8030bd4ec20bc904216b72ad976472d7fd4f16fee92d8d121";
+ version = "0.2.0.0";
+ sha256 = "ffbfab4804e01a4b36caa3f75d77535084d6165ed6c92c0df4329b9238e03cef";
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base hspec transformers ];
homepage = "http://github.com/aelve/ilist";
@@ -129256,7 +129793,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "ini" = callPackage
+ "ini_0_3_4" = callPackage
({ mkDerivation, attoparsec, base, text, unordered-containers }:
mkDerivation {
pname = "ini";
@@ -129268,9 +129805,10 @@ self: {
homepage = "http://github.com/chrisdone/ini";
description = "Quick and easy configuration files in the INI format";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "ini_0_3_5" = callPackage
+ "ini" = callPackage
({ mkDerivation, attoparsec, base, text, unordered-containers }:
mkDerivation {
pname = "ini";
@@ -129282,7 +129820,6 @@ self: {
homepage = "http://github.com/chrisdone/ini";
description = "Quick and easy configuration files in the INI format";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"inilist" = callPackage
@@ -129688,14 +130225,12 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "integer-gmp_1_0_0_0" = callPackage
+ "integer-gmp_1_0_0_1" = callPackage
({ mkDerivation, ghc-prim }:
mkDerivation {
pname = "integer-gmp";
- version = "1.0.0.0";
- sha256 = "ae1489ea4361138f668aee76c5ac47bfc1818ac1ef2832525fe09f15970e006a";
- revision = "1";
- editedCabalFile = "5d63fab9a7c94b4e713d151bdc0c361228efbac2b7583dfa8e6c5370ecae5663";
+ version = "1.0.0.1";
+ sha256 = "ef11daab7d7007b6be61846350a947173c46475c833623bcac45aa532ec3c121";
libraryHaskellDepends = [ ghc-prim ];
description = "Integer library based on GMP";
license = stdenv.lib.licenses.bsd3;
@@ -129714,6 +130249,17 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "integer-simple" = callPackage
+ ({ mkDerivation, ghc-prim }:
+ mkDerivation {
+ pname = "integer-simple";
+ version = "0.1.1.1";
+ sha256 = "766b4b9de5c5c7cf77191b32462155b3c7bd34d035abb1af5f6369cb097510fd";
+ libraryHaskellDepends = [ ghc-prim ];
+ description = "Simple Integer library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"integration_0_2_0_1" = callPackage
({ mkDerivation, base, parallel }:
mkDerivation {
@@ -130233,18 +130779,19 @@ self: {
"invertible" = callPackage
({ mkDerivation, arrows, base, haskell-src-meta, HList, invariant
- , lens, partial-isomorphisms, Piso, semigroupoids, template-haskell
- , TypeCompose
+ , lens, partial-isomorphisms, Piso, QuickCheck, semigroupoids
+ , template-haskell, transformers, TypeCompose
}:
mkDerivation {
pname = "invertible";
- version = "0.1";
- sha256 = "f51ee09313044a21f4c0a5e9d7b9c9c8bb1bd91de33de9cb23d462991713829e";
+ version = "0.1.1";
+ sha256 = "c15730feb9dee7a930cf25d2f44e3e13e1c48e831202f7fa844a33e14e4f4acd";
libraryHaskellDepends = [
arrows base haskell-src-meta HList invariant lens
partial-isomorphisms Piso semigroupoids template-haskell
- TypeCompose
+ transformers TypeCompose
];
+ testHaskellDepends = [ base QuickCheck transformers ];
description = "bidirectional arrows, bijective functions, and invariant functors";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -130587,13 +131134,21 @@ self: {
}) {};
"ip" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, hashable, text }:
+ ({ mkDerivation, aeson, attoparsec, base, bytestring, hashable
+ , QuickCheck, test-framework, test-framework-quickcheck2, text
+ }:
mkDerivation {
pname = "ip";
- version = "0.3";
- sha256 = "ec3ae6092c46a5249f5058d1b34484002e82077b6965dda761b94616b11c1470";
- libraryHaskellDepends = [ aeson attoparsec base hashable text ];
- homepage = "https://github.com/andrewthad/ip#readme";
+ version = "0.6.1";
+ sha256 = "0b816ce08fff4ea6fe108751abc151573dbcb64ccd31311e67e1d931306b84bb";
+ libraryHaskellDepends = [
+ aeson attoparsec base bytestring hashable text
+ ];
+ testHaskellDepends = [
+ base bytestring QuickCheck test-framework
+ test-framework-quickcheck2 text
+ ];
+ homepage = "https://github.com/andrewthad/haskell-ip#readme";
description = "Library for IP and MAC addresses";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -130642,6 +131197,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "ip6addr_0_5_1_2" = callPackage
+ ({ mkDerivation, base, cmdargs, IPv6Addr, text }:
+ mkDerivation {
+ pname = "ip6addr";
+ version = "0.5.1.2";
+ sha256 = "810dc63ee4dbd42705f6d2383841adc83bdc0f27a95499179b7bb5f50cce5462";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [ base cmdargs IPv6Addr text ];
+ homepage = "https://github.com/MichelBoucey/ip6addr";
+ description = "Commandline tool to generate IPv6 address text representations";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"ipatch" = callPackage
({ mkDerivation, base, bytestring, darcs, directory, filepath
, hashed-storage, process, unix
@@ -131263,19 +131833,19 @@ self: {
, 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
+ , vector, xmlhtml, yaml
}:
mkDerivation {
pname = "iridium";
- version = "0.1.5.3";
- sha256 = "7713b11ea4ea643fbbc99eef0c2bb52cb0968c8d645bf176e196a738e7b18644";
+ version = "0.1.5.4";
+ sha256 = "665c68ad724532fd65b1043e7152df8823bbcdb7e28c74ea4c0527cc017a3937";
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
+ unordered-containers vector xmlhtml yaml
];
executableHaskellDepends = [
base extra multistate text transformers unordered-containers yaml
@@ -132212,8 +132782,8 @@ self: {
}:
mkDerivation {
pname = "jammittools";
- version = "0.5.0.3";
- sha256 = "90917b080f69f47982c0c8851e7a7781e1627b42f291f11f6543214da2a7a1b4";
+ version = "0.5.1";
+ sha256 = "b3a5069b8725f7ace65f2e921d0451f42996bd6e198d38e32ef948b44ec90349";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -132941,7 +133511,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "js-jquery" = callPackage
+ "js-jquery_1_12_3" = callPackage
({ mkDerivation, base, HTTP }:
mkDerivation {
pname = "js-jquery";
@@ -132953,6 +133523,21 @@ self: {
homepage = "https://github.com/ndmitchell/js-jquery#readme";
description = "Obtain minified jQuery code";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "js-jquery" = callPackage
+ ({ mkDerivation, base, HTTP }:
+ mkDerivation {
+ pname = "js-jquery";
+ version = "1.12.4";
+ sha256 = "6038b72113932bec21c89293fb5f7e23621d03e315596986d9feab34a159ffdb";
+ 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;
}) {};
"jsaddle" = callPackage
@@ -134650,8 +135235,8 @@ self: {
pname = "kansas-comet";
version = "0.4";
sha256 = "1f1a4565f2e955b8947bafcb9611789b0ccdf9efdfed8aaa2a2aa162a07339e1";
- revision = "5";
- editedCabalFile = "4f00c7ffbc136b1d6176804ddd8214e169e13419ff6c81816e128784ef501cbd";
+ revision = "7";
+ editedCabalFile = "beaef45f7b61a2883a64471f052ae8b9c51f8453c253e4328eddaf5ffe994d74";
libraryHaskellDepends = [
aeson base containers data-default-class scotty stm text time
transformers unordered-containers
@@ -136163,6 +136748,22 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "kraken_0_0_2" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, http-client
+ , http-client-tls, mtl
+ }:
+ mkDerivation {
+ pname = "kraken";
+ version = "0.0.2";
+ sha256 = "0d75c7c7e0be11e0ca508506a693acd7638e875418e95407ecb2f1e6ecabd046";
+ libraryHaskellDepends = [
+ aeson base bytestring http-client http-client-tls mtl
+ ];
+ description = "Kraken.io API client";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"krpc" = callPackage
({ mkDerivation, base, bencoding, bytestring, containers
, data-default-class, hspec, lifted-base, monad-control
@@ -140806,6 +141407,23 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "libinfluxdb_0_0_4" = callPackage
+ ({ mkDerivation, base, bytestring, clock, containers, http-client
+ , http-client-tls, http-types, resource-pool, stm, text
+ }:
+ mkDerivation {
+ pname = "libinfluxdb";
+ version = "0.0.4";
+ sha256 = "25b5bbc274c9e18bc46ea0271805adfcaaec6d46caa69eb465e0cbc03f63ef3f";
+ libraryHaskellDepends = [
+ base bytestring clock containers http-client http-client-tls
+ http-types resource-pool stm text
+ ];
+ description = "libinfluxdb";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"libjenkins" = callPackage
({ mkDerivation, async, attoparsec, base, bytestring, conduit
, containers, directory, doctest, filepath, free, hspec
@@ -141388,7 +142006,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "lifted-async" = callPackage
+ "lifted-async_0_8_0_1" = callPackage
({ mkDerivation, async, base, constraints, HUnit, lifted-base
, monad-control, mtl, tasty, tasty-hunit, tasty-th
, transformers-base
@@ -141407,6 +142025,28 @@ self: {
homepage = "https://github.com/maoe/lifted-async";
description = "Run lifted IO operations asynchronously and wait for their results";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "lifted-async" = callPackage
+ ({ mkDerivation, async, base, constraints, HUnit, lifted-base
+ , monad-control, mtl, tasty, tasty-hunit, tasty-th
+ , transformers-base
+ }:
+ mkDerivation {
+ pname = "lifted-async";
+ version = "0.9.0";
+ sha256 = "3930922419084557d8b78ad3c7202efbb599d35539adb564c2d11a6699e3d601";
+ libraryHaskellDepends = [
+ async base constraints lifted-base monad-control transformers-base
+ ];
+ testHaskellDepends = [
+ async base HUnit lifted-base monad-control mtl tasty tasty-hunit
+ tasty-th
+ ];
+ homepage = "https://github.com/maoe/lifted-async";
+ description = "Run lifted IO operations asynchronously and wait for their results";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"lifted-base_0_2_2_1" = callPackage
@@ -142878,15 +143518,39 @@ self: {
}) {};
"list-t_0_4_6" = callPackage
- ({ mkDerivation, base-prelude, HTF, mmorph, monad-control, mtl
- , mtl-prelude, transformers, transformers-base
+ ({ mkDerivation, base, base-prelude, HTF, mmorph, monad-control
+ , mtl, mtl-prelude, transformers, transformers-base
}:
mkDerivation {
pname = "list-t";
version = "0.4.6";
sha256 = "fe49a4fee6f166c677758e26bb26dadd8fa57c5a8fa288c64bbcaeeb420467b2";
+ revision = "1";
+ editedCabalFile = "ddb609f5492eff290b2c12a0f3b42607b44970462487746864cc37a513ffe5e6";
libraryHaskellDepends = [
- base-prelude mmorph monad-control mtl transformers
+ base base-prelude mmorph monad-control mtl transformers
+ transformers-base
+ ];
+ testHaskellDepends = [ base-prelude HTF mmorph mtl-prelude ];
+ doCheck = false;
+ homepage = "https://github.com/nikita-volkov/list-t";
+ description = "ListT done right";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "list-t_0_4_6_1" = callPackage
+ ({ mkDerivation, base, base-prelude, HTF, mmorph, monad-control
+ , mtl, mtl-prelude, transformers, transformers-base
+ }:
+ mkDerivation {
+ pname = "list-t";
+ version = "0.4.6.1";
+ sha256 = "78c9cc7da0593571d4f0724df197ad23b467677573e1ac2714fd8fc6d7d1c00f";
+ revision = "3";
+ editedCabalFile = "7365d2a90b8a073460d2e89532c9ca45978e9e6db782c43c0847fd90f63dfc1f";
+ libraryHaskellDepends = [
+ base base-prelude mmorph monad-control mtl transformers
transformers-base
];
testHaskellDepends = [ base-prelude HTF mmorph mtl-prelude ];
@@ -142898,15 +143562,15 @@ self: {
}) {};
"list-t" = callPackage
- ({ mkDerivation, base-prelude, HTF, mmorph, monad-control, mtl
- , mtl-prelude, transformers, transformers-base
+ ({ mkDerivation, base, base-prelude, HTF, mmorph, monad-control
+ , mtl, mtl-prelude, transformers, transformers-base
}:
mkDerivation {
pname = "list-t";
- version = "0.4.6.1";
- sha256 = "78c9cc7da0593571d4f0724df197ad23b467677573e1ac2714fd8fc6d7d1c00f";
+ version = "0.4.7";
+ sha256 = "6b5900d4570bef59b5ebdc25317a032314f738adacc742d19d9c5078bb48a6c9";
libraryHaskellDepends = [
- base-prelude mmorph monad-control mtl transformers
+ base base-prelude mmorph monad-control mtl transformers
transformers-base
];
testHaskellDepends = [ base-prelude HTF mmorph mtl-prelude ];
@@ -146437,6 +147101,8 @@ self: {
pname = "managed";
version = "1.0.3";
sha256 = "67e9f15717db54abcd3864d4f20cdcdf709a7f82c087fa77ad0bcb456bb631b2";
+ revision = "1";
+ editedCabalFile = "f350e935d9d1688e8c2880679b90fcf8b3c430fed49f7482b6396488a2b3ca5d";
libraryHaskellDepends = [ base transformers ];
description = "A monad for managed values";
license = stdenv.lib.licenses.bsd3;
@@ -147230,8 +147896,8 @@ self: {
}:
mkDerivation {
pname = "manifolds";
- version = "0.2.0.1";
- sha256 = "72116d4489b4b2b125647271c92a1b1d7c2323554ae329614e175e967ce3c3f4";
+ version = "0.2.2.0";
+ sha256 = "95bfb764205c8d2038ec1dacbe30ca89a4bb85d19292dd55e77274f75e71fbc1";
libraryHaskellDepends = [
base comonad constrained-categories containers deepseq hmatrix
MemoTrie semigroups tagged transformers trivial-constraint vector
@@ -148946,8 +149612,8 @@ self: {
}:
mkDerivation {
pname = "memory";
- version = "0.12";
- sha256 = "e27e15cdfb41842ad1b6d68d5feb3c3ae041c0af1eb4dc997331e4c895162d1a";
+ version = "0.13";
+ sha256 = "dc73602573eaed85b1887f07057151c7de63f559ef90a10297c363d9b120870a";
libraryHaskellDepends = [ base bytestring deepseq ghc-prim ];
testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ];
homepage = "https://github.com/vincenthz/hs-memory";
@@ -149555,8 +150221,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "microlens";
- version = "0.4.3.0";
- sha256 = "c6476fa747094cc385a0aa369f705d3c5edbe5435e0e15d20dcb4ffa84443620";
+ version = "0.4.4.0";
+ sha256 = "376423b8820d620644e919ff0333800cf499fcdf3969fa13a24494c66d0c64a2";
libraryHaskellDepends = [ base ];
homepage = "http://github.com/aelve/microlens";
description = "A tiny part of the lens library with no dependencies";
@@ -149740,8 +150406,8 @@ self: {
}:
mkDerivation {
pname = "microlens-ghc";
- version = "0.4.3.0";
- sha256 = "f6ceaa3824742a8aa9659d01c3688997d72c0dedd74163147d0ee7744f62ede5";
+ version = "0.4.4.0";
+ sha256 = "b6e83dbfa16b78f9af477eaa635d2ea6b965603d16e7e751b4d1e4cf26dd23a8";
libraryHaskellDepends = [
array base bytestring containers microlens transformers
];
@@ -149919,8 +150585,8 @@ self: {
}:
mkDerivation {
pname = "microlens-platform";
- version = "0.3.0.0";
- sha256 = "76c27befd899f86306e191b29b2f57afeb93eeaa91569ea7c80ad8a234b6ecc9";
+ version = "0.3.1.0";
+ sha256 = "f0d62c55fa492cd2e98c1fd70cd64b2ec1991d3c3b45cfe2b8e38617ac8c4d36";
libraryHaskellDepends = [
base hashable microlens microlens-ghc microlens-mtl microlens-th
text unordered-containers vector
@@ -150160,16 +150826,14 @@ self: {
}:
mkDerivation {
pname = "midi-util";
- version = "0.1.1.1";
- sha256 = "d3c93d2112b5fbbff2fc2da10e18372f9f6d57a87166d313891e6663438719bd";
- revision = "1";
- editedCabalFile = "2c42b8e0940125f6354a9174ad5cb19da6fc0122b4947576e28abb753a7cff14";
+ version = "0.2";
+ sha256 = "f92ad57d4ba9b8120e66d55927938d968b97e305fd7a4296b94189a32461d7ee";
libraryHaskellDepends = [
base containers event-list midi non-negative
];
homepage = "http://github.com/mtolly/midi-util";
description = "Utility functions for processing MIDI files";
- license = "GPL";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"midimory" = callPackage
@@ -151154,8 +151818,8 @@ self: {
}:
mkDerivation {
pname = "mnist-idx";
- version = "0.1.2.4";
- sha256 = "cb0d8a5ca5fd15a8f8fbf903c1e7adfc22a958d094961ed214eb301c214205bb";
+ version = "0.1.2.5";
+ sha256 = "e8881f03789ae5046b33a051a0cc5a269614642d5876d893fc4a9c34b9bdad56";
libraryHaskellDepends = [ base binary bytestring vector ];
testHaskellDepends = [ base binary directory hspec vector ];
homepage = "https://github.com/kryoxide/mnist-idx/";
@@ -152610,7 +153274,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "monad-peel" = callPackage
+ "monad-peel_0_2" = callPackage
({ mkDerivation, base, extensible-exceptions, transformers }:
mkDerivation {
pname = "monad-peel";
@@ -152622,6 +153286,27 @@ self: {
homepage = "http://andersk.mit.edu/haskell/monad-peel/";
description = "Lift control operations like exception catching through monad transformers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "monad-peel" = callPackage
+ ({ mkDerivation, base, extensible-exceptions, HUnit, test-framework
+ , test-framework-hunit, transformers
+ }:
+ mkDerivation {
+ pname = "monad-peel";
+ version = "0.2.1.1";
+ sha256 = "f591f54910a117bba2fc963d5502de668ece69181b605cf9db353fbcfa9fe394";
+ libraryHaskellDepends = [
+ base extensible-exceptions transformers
+ ];
+ testHaskellDepends = [
+ base extensible-exceptions HUnit test-framework
+ test-framework-hunit transformers
+ ];
+ homepage = "http://andersk.mit.edu/haskell/monad-peel/";
+ description = "Lift control operations like exception catching through monad transformers";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"monad-primitive" = callPackage
@@ -154006,6 +154691,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "monoid-subclasses_0_4_2_1" = callPackage
+ ({ mkDerivation, base, bytestring, containers, primes, QuickCheck
+ , quickcheck-instances, tasty, tasty-quickcheck, text, vector
+ }:
+ mkDerivation {
+ pname = "monoid-subclasses";
+ version = "0.4.2.1";
+ sha256 = "4fe3360d06c09b66ba89c080337e2813ad225b1e6a28a580410930e882f5032a";
+ libraryHaskellDepends = [
+ base bytestring containers primes text vector
+ ];
+ testHaskellDepends = [
+ base bytestring containers primes QuickCheck quickcheck-instances
+ tasty tasty-quickcheck text vector
+ ];
+ jailbreak = true;
+ homepage = "https://github.com/blamario/monoid-subclasses/";
+ description = "Subclasses of Monoid";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"monoid-transformer" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -154915,6 +155622,19 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "mtl-prelude_2_0_3_1" = callPackage
+ ({ mkDerivation, base, mtl, transformers }:
+ mkDerivation {
+ pname = "mtl-prelude";
+ version = "2.0.3.1";
+ sha256 = "c4a6dda093d63bd2161f55030c5825903dfa9b7d5e766c487fd848cb2aa01233";
+ libraryHaskellDepends = [ base mtl transformers ];
+ homepage = "https://github.com/nikita-volkov/mtl-prelude";
+ description = "Reexports of most definitions from \"mtl\" and \"transformers\"";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"mtl-tf" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -155444,10 +156164,8 @@ self: {
}:
mkDerivation {
pname = "multistate";
- version = "0.7.0.0";
- sha256 = "012cefe6afa33be2285c47538e6d79ba54bcb15328865751209cadbea2a38b75";
- revision = "2";
- editedCabalFile = "bef1a17a6c406a4468feee7dea8f82e70565a7acb1dae9dd0bf974d7cb3a6018";
+ version = "0.7.1.1";
+ sha256 = "609650cbbfd102c775b44be3fd7bb4f6732127e64b21dd45ea1af057c5ffb8a6";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -155963,6 +156681,8 @@ self: {
pname = "mutable-containers";
version = "0.2.1.2";
sha256 = "c89ff0d7fd37153d9cf259ca48282c273425e7beb3d92c6f5603471b51ff2dc8";
+ revision = "1";
+ editedCabalFile = "bc39fc4614bb907bc01f1ad47871bf359f330b14ab12c6cdf17449acc79f30d9";
libraryHaskellDepends = [
base containers ghc-prim mono-traversable primitive vector
];
@@ -155983,6 +156703,8 @@ self: {
pname = "mutable-containers";
version = "0.3.0";
sha256 = "ccec3cc85fa5a4facd65e7ab39220d0b41bd4ec2fe15df0bcd38fcf249105ff7";
+ revision = "1";
+ editedCabalFile = "a2978f06656719d92aff431c32ce5ac2c16b7ef903f8b5d05790f92469439683";
libraryHaskellDepends = [
base containers ghc-prim mono-traversable primitive vector
];
@@ -156003,6 +156725,8 @@ self: {
pname = "mutable-containers";
version = "0.3.2";
sha256 = "781388cf52faa5f9c4c8a825eef11bec430e323c6913d25b5f4e63d8ce02017e";
+ revision = "1";
+ editedCabalFile = "ff58817f1b7c5b5d448bcf93a216fa067ad76f7151649874abadba5676f49901";
libraryHaskellDepends = [
base containers ghc-prim mono-traversable primitive vector
];
@@ -156023,6 +156747,8 @@ self: {
pname = "mutable-containers";
version = "0.3.2.1";
sha256 = "fb83475c6a755d1998906f37a71b6aa6f414fd0b5d41b16567c2219fb43e4e4d";
+ revision = "1";
+ editedCabalFile = "cab478fe3a2d06ef49ac28dcd4e61d6a285a9c59d5a32c5a45480243b4a6fe69";
libraryHaskellDepends = [
base containers ghc-prim mono-traversable primitive vector
];
@@ -158826,7 +159552,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "network-multicast" = callPackage
+ "network-multicast_0_1_0" = callPackage
({ mkDerivation, base, network }:
mkDerivation {
pname = "network-multicast";
@@ -158835,6 +159561,18 @@ self: {
libraryHaskellDepends = [ base network ];
description = "Simple multicast library";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "network-multicast" = callPackage
+ ({ mkDerivation, base, network }:
+ mkDerivation {
+ pname = "network-multicast";
+ version = "0.1.1";
+ sha256 = "f44c0b10569a10349d6e5a587ba3ed85a61a56a001939f1b6fb1b15911e8b742";
+ libraryHaskellDepends = [ base network ];
+ description = "Simple multicast library";
+ license = stdenv.lib.licenses.publicDomain;
}) {};
"network-netpacket" = callPackage
@@ -160181,13 +160919,14 @@ self: {
pname = "nonlinear-optimization-ad";
version = "0.2.1";
sha256 = "4da26e17e8b8f877d1c6cfb2da008153d7372cbaadf1e0b54ab5ee76aff5714c";
+ revision = "1";
+ editedCabalFile = "0e98c117988be619a34551dcabf96b2f451248a333d8b086fe762d54bf2af89c";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
ad base nonlinear-optimization primitive reflection vector
];
executableHaskellDepends = [ base csv ];
- jailbreak = true;
homepage = "https://github.com/msakai/nonlinear-optimization-ad";
description = "Wrapper of nonlinear-optimization package for using with AD package";
license = stdenv.lib.licenses.gpl3;
@@ -160364,8 +161103,8 @@ self: {
({ mkDerivation, base, containers, numeric-prelude, primes }:
mkDerivation {
pname = "np-extras";
- version = "0.3.1";
- sha256 = "3e0a363aa70842155dfe0046f0e96c3feac56f7e543f6307a9d764b4af1991d1";
+ version = "0.3.1.1";
+ sha256 = "8e2ee0de39eae5984e69010fdcaea68a0defb6d6a007e235053805d4ea9d273c";
libraryHaskellDepends = [ base containers numeric-prelude primes ];
description = "NumericPrelude extras";
license = stdenv.lib.licenses.bsd3;
@@ -161173,30 +161912,6 @@ self: {
}) {};
"octane" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, autoexporter, base, binary
- , binary-bits, bytestring, containers, data-binary-ieee754, deepseq
- , newtype-generics, tasty, tasty-hspec, text
- }:
- mkDerivation {
- pname = "octane";
- version = "0.4.22";
- sha256 = "7ce7c26cd1fb80219b26e0bf428dcd2305374b5e15605536b4367f9a0251bea7";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson aeson-pretty autoexporter base binary binary-bits bytestring
- containers data-binary-ieee754 deepseq newtype-generics text
- ];
- executableHaskellDepends = [ base ];
- testHaskellDepends = [
- base binary bytestring containers tasty tasty-hspec
- ];
- homepage = "https://github.com/tfausak/octane#readme";
- description = "Parse Rocket League replays";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "octane_0_4_24" = callPackage
({ mkDerivation, aeson, aeson-pretty, autoexporter, base, binary
, binary-bits, bytestring, containers, data-binary-ieee754, deepseq
, newtype-generics, tasty, tasty-hspec, text
@@ -161218,7 +161933,6 @@ self: {
homepage = "https://github.com/tfausak/octane#readme";
description = "Parse Rocket League replays";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"octohat" = callPackage
@@ -163134,6 +163848,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "optparse-helper_0_2_1_0" = callPackage
+ ({ mkDerivation, base, optparse-applicative }:
+ mkDerivation {
+ pname = "optparse-helper";
+ version = "0.2.1.0";
+ sha256 = "40516d83162d84e8ce33b593dbeea80b2bd6ebec038047694824ec8061f20ded";
+ libraryHaskellDepends = [ base optparse-applicative ];
+ homepage = "https://github.com/pharpend/optparse-helper";
+ description = "Helper functions for optparse-applicative";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"optparse-simple_0_0_2" = callPackage
({ mkDerivation, base, either, gitrev, optparse-applicative
, template-haskell, transformers
@@ -163588,8 +164315,8 @@ self: {
({ mkDerivation, base, containers, parsec, split, uniplate }:
mkDerivation {
pname = "ottparse-pretty";
- version = "0.1.2.5";
- sha256 = "a4aeef67d3f01694114c9e28869f01df8c2931b2d3d21ac53fab7098974c94b7";
+ version = "0.1.2.6";
+ sha256 = "45abdb079fc904f507493c32a2defbb2460f4666b7e49cb39e512e1204fba2e0";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -165324,6 +166051,25 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {inherit (pkgs.gnome) pango;};
+ "pango_0_13_2_0" = callPackage
+ ({ mkDerivation, array, base, cairo, containers, directory, glib
+ , gtk2hs-buildtools, mtl, pango, pretty, process, text
+ }:
+ mkDerivation {
+ pname = "pango";
+ version = "0.13.2.0";
+ sha256 = "4b80c8ed358699738c6956b6ab68a8867de129b521230f5c53daea208923f07c";
+ libraryHaskellDepends = [
+ array base cairo containers directory glib mtl pretty process text
+ ];
+ libraryPkgconfigDepends = [ pango ];
+ libraryToolDepends = [ gtk2hs-buildtools ];
+ homepage = "http://projects.haskell.org/gtk2hs/";
+ description = "Binding to the Pango text rendering engine";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs.gnome) pango;};
+
"papillon" = callPackage
({ mkDerivation, base, bytestring, directory, filepath, monads-tf
, template-haskell, transformers
@@ -167038,6 +167784,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "pcre-utils_0_1_8" = callPackage
+ ({ mkDerivation, array, attoparsec, base, bytestring, HUnit, mtl
+ , regex-pcre-builtin, vector
+ }:
+ mkDerivation {
+ pname = "pcre-utils";
+ version = "0.1.8";
+ sha256 = "9599b89fcea0676891fcb6a51b556db4af5f870c1362a84492d773b3927cd8b2";
+ libraryHaskellDepends = [
+ array attoparsec base bytestring mtl regex-pcre-builtin vector
+ ];
+ testHaskellDepends = [ base bytestring HUnit regex-pcre-builtin ];
+ homepage = "https://github.com/bartavelle/pcre-utils";
+ description = "Perl-like substitute and split for PCRE regexps";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"pdf-toolbox-content_0_0_5_0" = callPackage
({ mkDerivation, attoparsec, base, base16-bytestring, bytestring
, containers, io-streams, pdf-toolbox-core, text
@@ -170108,6 +170872,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "phantom-state_0_2_1_0" = callPackage
+ ({ mkDerivation, base, transformers }:
+ mkDerivation {
+ pname = "phantom-state";
+ version = "0.2.1.0";
+ sha256 = "fd35de3275c4bb0f00826ae71460b36763d466f5697d77ebfaffbe5f38f04128";
+ libraryHaskellDepends = [ base transformers ];
+ description = "Phantom State Transformer. Like State Monad, but without values.";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"phasechange" = callPackage
({ mkDerivation, array, base, ghc-prim, monad-st, primitive, vector
}:
@@ -170593,6 +171369,29 @@ self: {
hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ];
}) {};
+ "pinch_0_2_0_1" = callPackage
+ ({ mkDerivation, array, base, bytestring, containers, deepseq
+ , ghc-prim, hashable, hspec, hspec-discover, QuickCheck, text
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "pinch";
+ version = "0.2.0.1";
+ sha256 = "02115cbe9ad2053d57e4d14e203acb9962bcaa7a4b390b838e650a5d5e18d536";
+ libraryHaskellDepends = [
+ array base bytestring containers deepseq ghc-prim hashable text
+ unordered-containers vector
+ ];
+ testHaskellDepends = [
+ base bytestring containers hspec hspec-discover QuickCheck text
+ unordered-containers vector
+ ];
+ homepage = "https://github.com/abhinav/pinch#readme";
+ description = "An alternative implementation of Thrift for Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"pinchot_0_6_0_0" = callPackage
({ mkDerivation, base, containers, Earley, lens, template-haskell
, transformers
@@ -171554,8 +172353,8 @@ self: {
}:
mkDerivation {
pname = "pipes-key-value-csv";
- version = "0.0.0.0";
- sha256 = "5a6f09f41031bd66ceca26fed08c51784610b1c586d064a0e76d83cf8dd780c5";
+ version = "0.1.0.0";
+ sha256 = "b4f65a07978ddd42d54bd1082b2185df87f3feff391fafaff1fc254b3d9ad8a0";
libraryHaskellDepends = [
base containers data-default-class lens mtl pipes pipes-bytestring
pipes-group pipes-parse pipes-safe pipes-text reflection text
@@ -174438,8 +175237,8 @@ self: {
pname = "postgresql-simple-url";
version = "0.1.0.1";
sha256 = "cf165ec652e1192f392349e09e413a776921ddef71d95bac0d23e9f81cfbe8a0";
- revision = "6";
- editedCabalFile = "316507c07968bf66036b35f24ee6899bfcca65978730197a2687c9ccc3b2a48d";
+ revision = "7";
+ editedCabalFile = "f4f8535e362cc496675fa36640cea043fbe46e99e2d3bc8ee449ebe6a293c8cc";
libraryHaskellDepends = [
base network-uri postgresql-simple split
];
@@ -174721,7 +175520,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "pqueue" = callPackage
+ "pqueue_1_3_1" = callPackage
({ mkDerivation, base, deepseq }:
mkDerivation {
pname = "pqueue";
@@ -174730,6 +175529,18 @@ self: {
libraryHaskellDepends = [ base deepseq ];
description = "Reliable, persistent, fast priority queues";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "pqueue" = callPackage
+ ({ mkDerivation, base, deepseq }:
+ mkDerivation {
+ pname = "pqueue";
+ version = "1.3.1.1";
+ sha256 = "a40a5eaa1b74b34f774c09613ac92955ae381000a5007a67b500a794516063a2";
+ libraryHaskellDepends = [ base deepseq ];
+ description = "Reliable, persistent, fast priority queues";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"pqueue-mtl" = callPackage
@@ -176784,8 +177595,8 @@ self: {
}:
mkDerivation {
pname = "propellor";
- version = "3.0.3";
- sha256 = "c0dc9dff49c9062e51fd4e7486fe3d882766633f51110161d56c5011c378ee45";
+ version = "3.0.4";
+ sha256 = "99b80381aa6811b2ad504c86a8b453b139b2aae3f3db4da766effb66f0ffda3a";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -176800,7 +177611,7 @@ self: {
];
homepage = "https://propellor.branchable.com/";
description = "property-based host configuration management in haskell";
- license = stdenv.lib.licenses.bsd3;
+ license = stdenv.lib.licenses.bsd2;
}) {};
"properties" = callPackage
@@ -177435,6 +178246,8 @@ self: {
pname = "pseudo-boolean";
version = "0.1.4.0";
sha256 = "0fc981b210c969fb150f5720829556c94bc6f24c5aff6807a08c3d39e2ca726d";
+ revision = "1";
+ editedCabalFile = "3d1f36fb70c675267b56b621175f957ea34d56f7149da4e3085d1ace84ad0d43";
libraryHaskellDepends = [
attoparsec base bytestring bytestring-builder containers deepseq
dlist hashable megaparsec parsec
@@ -177600,8 +178413,8 @@ self: {
({ mkDerivation, base, filepath, hspec, template-haskell }:
mkDerivation {
pname = "publicsuffix";
- version = "0.20160505";
- sha256 = "936c39ccb9d0d6ca661a924d95244699eaec0d634afa6f852438430967c5c4e7";
+ version = "0.20160522";
+ sha256 = "1ae1ae02b3c317d421de31490cbd4b83a306f6be53103a5b1438aa170703f529";
libraryHaskellDepends = [ base filepath template-haskell ];
testHaskellDepends = [ base hspec ];
homepage = "https://github.com/wereHamster/publicsuffix-haskell/";
@@ -178508,6 +179321,26 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "pusher-ws" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, deepseq
+ , hashable, http-conduit, lens, lens-aeson, network, scientific
+ , stm, text, time, transformers, unordered-containers, websockets
+ , wuss
+ }:
+ mkDerivation {
+ pname = "pusher-ws";
+ version = "0.1.0.0";
+ sha256 = "ba74ec6413d8ae7811afe748bd6dde6e9ceb12cb65a69884f02043cb76eeab3d";
+ libraryHaskellDepends = [
+ aeson base bytestring containers deepseq hashable http-conduit lens
+ lens-aeson network scientific stm text time transformers
+ unordered-containers websockets wuss
+ ];
+ homepage = "https://github.com/barrucadu/pusher-ws";
+ description = "Implementation of the Pusher WebSocket protocol";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"pushme" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, deepseq
, hslogger, io-storage, lens, old-locale, optparse-applicative
@@ -179098,6 +179931,27 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "quickbooks" = callPackage
+ ({ mkDerivation, aeson, authenticate-oauth, base, bytestring
+ , doctest, email-validate, fast-logger, http-client
+ , http-client-tls, http-types, interpolate, old-locale, text, thyme
+ , yaml
+ }:
+ mkDerivation {
+ pname = "quickbooks";
+ version = "0.5.0.1";
+ sha256 = "460895f6edbb16e4256a779a817f548fef8f49464c304eb036e3ed22c4b65f30";
+ libraryHaskellDepends = [
+ aeson authenticate-oauth base bytestring email-validate fast-logger
+ http-client http-client-tls http-types interpolate old-locale text
+ thyme yaml
+ ];
+ testHaskellDepends = [ base doctest ];
+ jailbreak = true;
+ description = "QuickBooks API binding";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"quickcheck-assertions_0_1_1" = callPackage
({ mkDerivation, base, hspec, ieee754, QuickCheck }:
mkDerivation {
@@ -181556,12 +182410,11 @@ self: {
}:
mkDerivation {
pname = "record";
- version = "0.4.0.2";
- sha256 = "bc96ff1b80e5c5c7aba2ce4ba366099ab262be5b858c9b1ca6a0dedb8e0443a2";
+ version = "0.4.1.1";
+ sha256 = "efb51262d06872cc7881b000842e46fd593468a4e6823e80cf0c0d58196b2d96";
libraryHaskellDepends = [
base base-prelude basic-lens template-haskell transformers
];
- jailbreak = true;
homepage = "https://github.com/nikita-volkov/record";
description = "Anonymous records";
license = stdenv.lib.licenses.mit;
@@ -182555,6 +183408,23 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {};
+ "reflex-jsx" = callPackage
+ ({ mkDerivation, base, containers, haskell-src-meta, parsec, reflex
+ , reflex-dom, template-haskell, text
+ }:
+ mkDerivation {
+ pname = "reflex-jsx";
+ version = "0.1.0.0";
+ sha256 = "a06801ba3100eb5966fb078c1e04f8c2662eb63661615aef8b54b1d31e98fde4";
+ libraryHaskellDepends = [
+ base containers haskell-src-meta parsec reflex reflex-dom
+ template-haskell text
+ ];
+ homepage = "https://github.com/dackerman/reflex-jsx";
+ description = "Use jsx-like syntax in Reflex";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"reflex-orphans" = callPackage
({ mkDerivation, base, deepseq, dependent-map, mtl, ref-tf, reflex
, tasty, tasty-hunit, these
@@ -183554,28 +184424,6 @@ self: {
}) {};
"relational-query" = callPackage
- ({ mkDerivation, array, base, bytestring, containers, dlist
- , names-th, persistable-record, quickcheck-simple, sql-words
- , template-haskell, text, time, time-locale-compat, transformers
- }:
- mkDerivation {
- pname = "relational-query";
- version = "0.8.2.0";
- sha256 = "b7cf3a04b353413c21128dec79569dab465f92d42ad918cc55e44ffe03976735";
- libraryHaskellDepends = [
- array base bytestring containers dlist names-th persistable-record
- sql-words template-haskell text time time-locale-compat
- transformers
- ];
- testHaskellDepends = [
- base containers quickcheck-simple transformers
- ];
- homepage = "http://khibino.github.io/haskell-relational-record/";
- description = "Typeful, Modular, Relational, algebraic query engine";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "relational-query_0_8_2_1" = callPackage
({ mkDerivation, array, base, bytestring, containers, dlist
, names-th, persistable-record, quickcheck-simple, sql-words
, template-haskell, text, time, time-locale-compat, transformers
@@ -183595,7 +184443,6 @@ self: {
homepage = "http://khibino.github.io/haskell-relational-record/";
description = "Typeful, Modular, Relational, algebraic query engine";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"relational-query-HDBC" = callPackage
@@ -183641,8 +184488,8 @@ self: {
}:
mkDerivation {
pname = "relational-record-examples";
- version = "0.3.0.1";
- sha256 = "72687264a0e511fd06d6b3e81cd095d3014a18c067d2c2f7d94866c07eca95a1";
+ version = "0.3.1.0";
+ sha256 = "eaf3bae14a4e05bc159efb3a8f0bc721d0fbb2d7bcea6df65002daaf93cc3352";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -183653,29 +184500,11 @@ self: {
executableHaskellDepends = [
base relational-query template-haskell time
];
- jailbreak = true;
description = "Examples of Haskell Relationa Record";
license = stdenv.lib.licenses.bsd3;
}) {};
"relational-schemas" = callPackage
- ({ mkDerivation, base, bytestring, containers, persistable-record
- , relational-query, template-haskell, time
- }:
- mkDerivation {
- pname = "relational-schemas";
- version = "0.1.2.2";
- sha256 = "aaab90384f20c5cbf3badab61b1dd7a0579acc7edcccc96af3ff07ebe9269626";
- libraryHaskellDepends = [
- base bytestring containers persistable-record relational-query
- template-haskell time
- ];
- homepage = "http://khibino.github.io/haskell-relational-record/";
- description = "RDBMSs' schema templates for relational-query";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "relational-schemas_0_1_3_0" = callPackage
({ mkDerivation, base, bytestring, containers, persistable-record
, relational-query, template-haskell, time
}:
@@ -183690,7 +184519,6 @@ self: {
homepage = "http://khibino.github.io/haskell-relational-record/";
description = "RDBMSs' schema templates for relational-query";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"relative-date" = callPackage
@@ -185235,8 +186063,8 @@ self: {
pname = "rest-client";
version = "0.5.1.0";
sha256 = "9b75fb30f0f101945440c21b38d64b22a9aad81b81bce8e6a21e4675e6c8136e";
- revision = "2";
- editedCabalFile = "a95c81e43b13fd4998514f346a7b81093228886b99dc0b05e07506f44b8ae642";
+ revision = "3";
+ editedCabalFile = "71a86d947b97b59428d9314c8adf60e55995b9824886e2d11fc855fc30d92e09";
libraryHaskellDepends = [
aeson-utils base bytestring case-insensitive data-default
exceptions http-conduit http-types hxt hxt-pickle-utils
@@ -186172,6 +187000,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "rest-types_1_14_1" = callPackage
+ ({ mkDerivation, aeson, base, base-compat, case-insensitive
+ , generic-aeson, generic-xmlpickler, hxt, json-schema
+ , rest-stringmap, text, uuid
+ }:
+ mkDerivation {
+ pname = "rest-types";
+ version = "1.14.1";
+ sha256 = "a8433f4736820b19da3ac626f653954a93e72ab3c3d5a50983eed3aeffb20157";
+ libraryHaskellDepends = [
+ aeson base base-compat case-insensitive generic-aeson
+ generic-xmlpickler hxt json-schema rest-stringmap text uuid
+ ];
+ description = "Silk Rest Framework Types";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"rest-wai_0_1_0_4" = callPackage
({ mkDerivation, base, bytestring, case-insensitive, containers
, http-types, mime-types, mtl, rest-core, text
@@ -187749,6 +188595,17 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "roundRobin" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "roundRobin";
+ version = "0.1.0.1";
+ sha256 = "90f5e012886131801863bf00105f249d4d44250fd378beb9fc87fe13bbf0d23b";
+ libraryHaskellDepends = [ base ];
+ description = "A simple round-robin data type";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"rounding" = callPackage
({ mkDerivation, array, base, numeric-extras }:
mkDerivation {
@@ -188384,12 +189241,16 @@ self: {
}) {};
"s-cargot" = callPackage
- ({ mkDerivation, base, containers, parsec, text }:
+ ({ mkDerivation, base, containers, parsec, QuickCheck, text }:
mkDerivation {
pname = "s-cargot";
- version = "0.1.0.0";
- sha256 = "18682ea8684e704ba2abc55d699b9df0a98a2f400c3d0ace436de5b90c335a3e";
+ version = "0.1.1.1";
+ sha256 = "5ac3d9e1a58763943249b3d7ac174ff3f17dec7a7508f984b8c1efc2a1c51c60";
+ isLibrary = true;
+ isExecutable = true;
libraryHaskellDepends = [ base containers parsec text ];
+ executableHaskellDepends = [ base containers parsec text ];
+ testHaskellDepends = [ base parsec QuickCheck text ];
homepage = "https://github.com/aisamanra/s-cargot";
description = "A flexible, extensible s-expression library";
license = stdenv.lib.licenses.bsd3;
@@ -189150,6 +190011,26 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "sandman_0_2_0_1" = callPackage
+ ({ mkDerivation, base, Cabal, containers, directory, filepath
+ , optparse-applicative, process, text, unix-compat
+ }:
+ mkDerivation {
+ pname = "sandman";
+ version = "0.2.0.1";
+ sha256 = "407d283e1fc4a2a369615bac569683bf399ac14ddbce1331850bfe1d7837ce64";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base Cabal containers directory filepath optparse-applicative
+ process text unix-compat
+ ];
+ homepage = "https://github.com/abhinav/sandman#readme";
+ description = "Manages Cabal sandboxes to avoid rebuilding packages";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"sarasvati" = callPackage
({ mkDerivation, base, deepseq, portaudio }:
mkDerivation {
@@ -190431,8 +191312,8 @@ self: {
pname = "scotty";
version = "0.11.0";
sha256 = "892203c937ccf1279f5005ddb78ebea84629b80687a1e38fc118b38011a386ed";
- revision = "1";
- editedCabalFile = "2e46f8dbc3078a329ac2d6662f80aa48a7c0517d02978812b0d1293c8bc050dc";
+ revision = "2";
+ editedCabalFile = "d26457a20e549b7577daf798b5bd7cdfca4e6b21e39b345175b7841e7660d22e";
libraryHaskellDepends = [
aeson base blaze-builder bytestring case-insensitive
data-default-class fail http-types monad-control mtl nats network
@@ -191917,9 +192798,12 @@ self: {
pname = "semver-range";
version = "0.1.1";
sha256 = "162a7149c50908cd1669ecc16193e2a1bc5cee99bf9e78baa985550592b421d7";
+ revision = "1";
+ editedCabalFile = "f27c2457d92acc53e4fad4d66b74b2a4633838d6c32a15257902b0a677d46890";
libraryHaskellDepends = [
base classy-prelude parsec text unordered-containers
];
+ jailbreak = true;
description = "An implementation of semver and semantic version ranges";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -193752,6 +194636,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-router" = callPackage
+ ({ mkDerivation, base, bytestring, http-api-data, http-types, mtl
+ , network-uri, servant, text
+ }:
+ mkDerivation {
+ pname = "servant-router";
+ version = "0.7.1";
+ sha256 = "32498fadd0bfd0adf5bcddb79538e45a1a9807b3cbb7ad2ac3358eab2673f826";
+ libraryHaskellDepends = [
+ base bytestring http-api-data http-types mtl network-uri servant
+ text
+ ];
+ testHaskellDepends = [ base mtl servant ];
+ homepage = "https://github.com/ElvishJerricco/servant-router";
+ description = "Servant router for non-server applications";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"servant-scotty" = callPackage
({ mkDerivation, aeson, base, http-types, scotty, servant
, servant-response, text, transformers
@@ -194436,6 +195338,26 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "servius_1_2_0_2" = callPackage
+ ({ mkDerivation, base, blaze-builder, blaze-html, bytestring
+ , http-types, markdown, shakespeare, text, wai, wai-app-static
+ }:
+ mkDerivation {
+ pname = "servius";
+ version = "1.2.0.2";
+ sha256 = "c11682eb485f028aaf2dc6abdbda38cc5a68fd57521cc3ffb5b56b765e9b5d2b";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base blaze-builder blaze-html bytestring http-types markdown
+ shakespeare text wai wai-app-static
+ ];
+ homepage = "http://github.com/snoyberg/servius#readme";
+ description = "Warp web server with template rendering";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"ses-html" = callPackage
({ mkDerivation, base, base64-bytestring, blaze-html, byteable
, bytestring, cryptohash, HsOpenSSL, http-streams, tagsoup, time
@@ -194683,6 +195605,8 @@ self: {
pname = "setters";
version = "0.1";
sha256 = "5f2820de0e25847ace980132c04913c7ec61333e2b20cce49e2062765caa8967";
+ revision = "1";
+ editedCabalFile = "c4ff7321208bb4f71ea367d5a1811d7c13aadda0d05a1d9ddb25fff5e31c9365";
libraryHaskellDepends = [ base mtl template-haskell ];
description = "Small (TH) library to declare setters for typical `record' data type fields";
license = stdenv.lib.licenses.bsd3;
@@ -196442,6 +197366,8 @@ self: {
pname = "shelly";
version = "1.6.6";
sha256 = "9c89e1ed25de9ede0ee6d6a4094ff72ca6af5b1a1f67503ea40a87beb796e1c5";
+ revision = "1";
+ editedCabalFile = "cfea5fb2615eb1f4833a368d051db2065d02aa4a5ff7578c5323f65ba9298894";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -197192,16 +198118,16 @@ self: {
"simple-log" = callPackage
({ mkDerivation, async, base, containers, deepseq, directory
- , filepath, MonadCatchIO-transformers, mtl, SafeSemaphore, text
- , time, transformers
+ , exceptions, filepath, mtl, SafeSemaphore, text, time
+ , transformers
}:
mkDerivation {
pname = "simple-log";
- version = "0.3.4";
- sha256 = "7d81fdfb91a2ee88d73dc4a5680be4f0e8b44faa460ce15d41a33d3a975c84f9";
+ version = "0.4.0";
+ sha256 = "548c444505f70beb02b14b5b1e0c647acaa1879edc5699ef365ec516a9b55aa5";
libraryHaskellDepends = [
- async base containers deepseq directory filepath
- MonadCatchIO-transformers mtl SafeSemaphore text time transformers
+ async base containers deepseq directory exceptions filepath mtl
+ SafeSemaphore text time transformers
];
homepage = "http://github.com/mvoidex/simple-log";
description = "Simple log for Haskell";
@@ -197412,24 +198338,6 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "simple-sendfile" = callPackage
- ({ mkDerivation, base, bytestring, conduit, conduit-extra
- , directory, hspec, HUnit, network, process, resourcet, unix
- }:
- mkDerivation {
- pname = "simple-sendfile";
- version = "0.2.22";
- sha256 = "500dec6af5c3d0b3ba6fd514c75a5be6f91071ea6c99ad15f077447221a480fe";
- libraryHaskellDepends = [ base bytestring network unix ];
- testHaskellDepends = [
- base bytestring conduit conduit-extra directory hspec HUnit network
- process resourcet unix
- ];
- doCheck = false;
- description = "Cross platform library for the sendfile system call";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
"simple-sendfile_0_2_23" = callPackage
({ mkDerivation, base, bytestring, conduit, conduit-extra
, directory, hspec, HUnit, network, process, resourcet, unix
@@ -197443,11 +198351,30 @@ self: {
base bytestring conduit conduit-extra directory hspec HUnit network
process resourcet unix
];
+ doCheck = false;
description = "Cross platform library for the sendfile system call";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "simple-sendfile" = callPackage
+ ({ mkDerivation, base, bytestring, conduit, conduit-extra
+ , directory, hspec, HUnit, network, process, resourcet, unix
+ }:
+ mkDerivation {
+ pname = "simple-sendfile";
+ version = "0.2.24";
+ sha256 = "9f68a51a58db42e79f50bf2f500bd25d66a848a242b8e4694c2fdc94d476925c";
+ libraryHaskellDepends = [ base bytestring network unix ];
+ testHaskellDepends = [
+ base bytestring conduit conduit-extra directory hspec HUnit network
+ process resourcet unix
+ ];
+ doCheck = false;
+ description = "Cross platform library for the sendfile system call";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"simple-server" = callPackage
({ mkDerivation, base, bytestring, concurrent-extra, containers
, hashtables, network, time, unbounded-delays
@@ -198035,8 +198962,8 @@ self: {
pname = "sized-types";
version = "0.5.1";
sha256 = "c76772fc89028f5407906bc699e7dd98e02328d0fe98c151706100e49f4899db";
- revision = "1";
- editedCabalFile = "b6a0520904cba8a44505d78d4188a94ccdf67be3c376c0cbd49c92e07943d17c";
+ revision = "2";
+ editedCabalFile = "5fb95524f6e6156ba969609e60f55ded8817bbad8c26ce610002e02b8d987152";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -201242,6 +202169,8 @@ self: {
pname = "socket";
version = "0.5.3.1";
sha256 = "d32a2ac77d54ce74507cc24d0bf68a719ea67ee961c61d367bfb9f0010e9c044";
+ revision = "1";
+ editedCabalFile = "ce27df183e3917eb8b747fb31c06bb0724405c35498ba5d6c143ef53d8d65ec1";
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [ async base bytestring ];
homepage = "https://github.com/lpeterse/haskell-socket";
@@ -201552,7 +202481,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "sorted-list" = callPackage
+ "sorted-list_0_1_4_2" = callPackage
({ mkDerivation, base, deepseq }:
mkDerivation {
pname = "sorted-list";
@@ -201562,9 +202491,10 @@ self: {
homepage = "https://github.com/Daniel-Diaz/sorted-list/blob/master/README.md";
description = "Type-enforced sorted lists and related functions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "sorted-list_0_1_5_0" = callPackage
+ "sorted-list" = callPackage
({ mkDerivation, base, deepseq }:
mkDerivation {
pname = "sorted-list";
@@ -201574,7 +202504,6 @@ self: {
homepage = "https://github.com/Daniel-Diaz/sorted-list/blob/master/README.md";
description = "Type-enforced sorted lists and related functions";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sorting" = callPackage
@@ -203950,46 +204879,48 @@ self: {
"stack" = callPackage
({ mkDerivation, aeson, ansi-terminal, async, attoparsec, base
- , base16-bytestring, base64-bytestring, binary, binary-tagged
- , blaze-builder, byteable, bytestring, Cabal, conduit
- , conduit-extra, containers, cryptohash, cryptohash-conduit
- , deepseq, directory, edit-distance, either, enclosed-exceptions
- , errors, exceptions, extra, fast-logger, filelock, filepath
- , fsnotify, gitrev, hashable, hastache, hpack, hpc, hspec
- , http-client, http-client-tls, http-conduit, http-types
- , lifted-base, microlens, monad-control, monad-logger, mtl
- , open-browser, optparse-applicative, optparse-simple, path
- , path-io, persistent, persistent-sqlite, persistent-template
- , pretty, process, project-template, QuickCheck, resourcet, retry
- , safe, semigroups, split, stm, streaming-commons, tar
- , template-haskell, temporary, text, text-binary, time
+ , base-compat, base16-bytestring, base64-bytestring, binary
+ , binary-tagged, blaze-builder, byteable, bytestring, Cabal
+ , conduit, conduit-extra, containers, cryptohash
+ , cryptohash-conduit, deepseq, directory, edit-distance, either
+ , enclosed-exceptions, errors, exceptions, extra, fast-logger
+ , filelock, filepath, fsnotify, generic-deriving, gitrev, hashable
+ , hastache, hit, hpack, hpc, hspec, http-client, http-client-tls
+ , http-conduit, http-types, lifted-base, microlens, monad-control
+ , monad-logger, monad-unlift, mtl, open-browser
+ , optparse-applicative, optparse-simple, path, path-io, persistent
+ , persistent-sqlite, persistent-template, pretty, process
+ , project-template, QuickCheck, regex-applicative-text, resourcet
+ , retry, safe, semigroups, split, stm, streaming-commons, tar
+ , template-haskell, temporary, text, text-binary, time, tls
, transformers, transformers-base, unix, unix-compat
, unordered-containers, vector, vector-binary-instances, yaml
, zip-archive, zlib
}:
mkDerivation {
pname = "stack";
- version = "1.1.0";
- sha256 = "58cce7048438bc452a81384493b4644034d5a0b456acd51bf7c19098a9cf406a";
+ version = "1.1.2";
+ sha256 = "fc836b24fdeac54244fc79b6775d5edee146b7e552ad8e69596c7cc2f2b10625";
revision = "2";
- editedCabalFile = "7a4f166d4e7ebd88264bd6e7bbeb2be9485bd4d18bedca31093ed3c4c2094649";
+ editedCabalFile = "dd075d659ecf05d8d9e811d12b60b523d189b6b1d520aa1a86e58b382aba6384";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- aeson ansi-terminal async attoparsec base base16-bytestring
- base64-bytestring binary binary-tagged blaze-builder byteable
- bytestring Cabal conduit conduit-extra containers cryptohash
- cryptohash-conduit deepseq directory edit-distance either
- enclosed-exceptions errors exceptions extra fast-logger filelock
- filepath fsnotify hashable hastache hpack hpc http-client
- http-client-tls http-conduit http-types lifted-base microlens
- monad-control monad-logger mtl open-browser optparse-applicative
- path path-io persistent persistent-sqlite persistent-template
- pretty process project-template resourcet retry safe semigroups
- split stm streaming-commons tar template-haskell temporary text
- text-binary time transformers transformers-base unix unix-compat
- unordered-containers vector vector-binary-instances yaml
- zip-archive zlib
+ aeson ansi-terminal async attoparsec base base-compat
+ base16-bytestring base64-bytestring binary binary-tagged
+ blaze-builder byteable bytestring Cabal conduit conduit-extra
+ containers cryptohash cryptohash-conduit deepseq directory
+ edit-distance either enclosed-exceptions errors exceptions extra
+ fast-logger filelock filepath fsnotify generic-deriving hashable
+ hastache hit hpack hpc http-client http-client-tls http-conduit
+ http-types lifted-base microlens monad-control monad-logger
+ monad-unlift mtl open-browser optparse-applicative path path-io
+ persistent persistent-sqlite persistent-template pretty process
+ project-template regex-applicative-text resourcet retry safe
+ semigroups split stm streaming-commons tar template-haskell
+ temporary text text-binary time tls transformers transformers-base
+ unix unix-compat unordered-containers vector
+ vector-binary-instances yaml zip-archive zlib
];
executableHaskellDepends = [
base bytestring Cabal containers directory filelock filepath gitrev
@@ -204048,13 +204979,12 @@ self: {
}:
mkDerivation {
pname = "stack-prism";
- version = "0.1.4";
- sha256 = "4020440962715bf1dd4987d6b96c865a1de3e9d5f26aebd0ab87e9bfa61584d3";
+ version = "0.1.5";
+ sha256 = "ead22ecccaa5110b9ceba98077a5101e97ac21675f9d74ff01df4a01cd41540f";
libraryHaskellDepends = [
base profunctors tagged template-haskell transformers
];
testHaskellDepends = [ base template-haskell ];
- jailbreak = true;
homepage = "https://github.com/MedeaMelana/stack-prism";
description = "Stack prisms";
license = stdenv.lib.licenses.bsd3;
@@ -205125,6 +206055,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "stateWriter_0_2_8" = callPackage
+ ({ mkDerivation, base, free, hspec, mtl, QuickCheck, transformers
+ }:
+ mkDerivation {
+ pname = "stateWriter";
+ version = "0.2.8";
+ sha256 = "dbed209ec350b751b2c56388ab751149874f6b76c0d7a6725de1583682ccc6e2";
+ libraryHaskellDepends = [ base mtl transformers ];
+ testHaskellDepends = [ base free hspec mtl QuickCheck ];
+ description = "A faster variant of the RWS monad transformers";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"statechart" = callPackage
({ mkDerivation, base, polyparse }:
mkDerivation {
@@ -206034,17 +206978,19 @@ self: {
}) {};
"stm-containers_0_2_10" = callPackage
- ({ mkDerivation, base-prelude, focus, free, hashable, HTF, list-t
- , loch-th, mtl, mtl-prelude, placeholders, primitive, QuickCheck
- , transformers, unordered-containers
+ ({ mkDerivation, base, base-prelude, focus, free, hashable, HTF
+ , list-t, loch-th, mtl, mtl-prelude, placeholders, primitive
+ , QuickCheck, transformers, unordered-containers
}:
mkDerivation {
pname = "stm-containers";
version = "0.2.10";
sha256 = "1dd724fda2456279d2bf70b8666eb1f87604776932b452f3b097236ad1533e6d";
+ revision = "1";
+ editedCabalFile = "0e879ab4d7fc5ef981e11343eed75760bccbe2f93ea876d3e1fab9cd6e8cf46f";
libraryHaskellDepends = [
- base-prelude focus hashable list-t loch-th placeholders primitive
- transformers
+ base base-prelude focus hashable list-t loch-th placeholders
+ primitive transformers
];
testHaskellDepends = [
base-prelude focus free hashable HTF list-t loch-th mtl mtl-prelude
@@ -206058,20 +207004,23 @@ self: {
}) {};
"stm-containers" = callPackage
- ({ mkDerivation, base-prelude, focus, free, hashable, HTF, list-t
- , loch-th, mtl, mtl-prelude, placeholders, primitive, QuickCheck
- , transformers, unordered-containers
+ ({ mkDerivation, base, base-prelude, focus, free, hashable, HTF
+ , list-t, loch-th, mtl, mtl-prelude, placeholders, primitive
+ , QuickCheck, transformers, unordered-containers
}:
mkDerivation {
pname = "stm-containers";
version = "0.2.11";
sha256 = "f7eff1833da6c9ad18a5301912bbb477216347d7940f6495d398fbdedee27f8e";
+ revision = "1";
+ editedCabalFile = "78f0d160b53c64c755e21e477bbc5b0721bcd8548358556ff590791edf4da0cb";
libraryHaskellDepends = [
base-prelude focus hashable list-t primitive transformers
];
testHaskellDepends = [
- base-prelude focus free hashable HTF list-t loch-th mtl mtl-prelude
- placeholders primitive QuickCheck transformers unordered-containers
+ base base-prelude focus free hashable HTF list-t loch-th mtl
+ mtl-prelude placeholders primitive QuickCheck transformers
+ unordered-containers
];
doCheck = false;
homepage = "https://github.com/nikita-volkov/stm-containers";
@@ -206079,6 +207028,29 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "stm-containers_0_2_13" = callPackage
+ ({ mkDerivation, base, base-prelude, focus, free, hashable, HTF
+ , list-t, loch-th, mtl, mtl-prelude, placeholders, primitive
+ , QuickCheck, transformers, unordered-containers
+ }:
+ mkDerivation {
+ pname = "stm-containers";
+ version = "0.2.13";
+ sha256 = "ba38ce4c8438071fad33d69902e2a8637ec53aec2175b0c88b1de8af02db4b1c";
+ libraryHaskellDepends = [
+ base base-prelude focus hashable list-t primitive transformers
+ ];
+ testHaskellDepends = [
+ base base-prelude focus free hashable HTF list-t loch-th mtl
+ mtl-prelude placeholders primitive QuickCheck transformers
+ unordered-containers
+ ];
+ homepage = "https://github.com/nikita-volkov/stm-containers";
+ description = "Containers for STM";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"stm-delay" = callPackage
({ mkDerivation, base, stm }:
mkDerivation {
@@ -206314,8 +207286,8 @@ self: {
({ mkDerivation, base, clock, hspec, transformers }:
mkDerivation {
pname = "stopwatch";
- version = "0.1.0.1";
- sha256 = "647e89db9b9b23631c751b6d73cdee124b86c1768186d3a572ba6951a57c46da";
+ version = "0.1.0.2";
+ sha256 = "f9f0897702a3b5cb3cd7ef8960caa4733fef3273dab0c91f6f6da3d956e0489b";
libraryHaskellDepends = [ base clock transformers ];
testHaskellDepends = [ base clock hspec ];
homepage = "https://github.com/debug-ito/stopwatch";
@@ -206472,6 +207444,40 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "store" = callPackage
+ ({ mkDerivation, array, base, base-orphans, bytestring, conduit
+ , containers, cryptohash, deepseq, fail, ghc-prim, hashable, hspec
+ , hspec-smallcheck, integer-gmp, lifted-base, monad-control
+ , mono-traversable, primitive, resourcet, safe, semigroups
+ , smallcheck, syb, template-haskell, text, th-lift
+ , th-lift-instances, th-orphans, th-reify-many, th-utilities, time
+ , transformers, unordered-containers, vector, void
+ }:
+ mkDerivation {
+ pname = "store";
+ version = "0.1.0.1";
+ sha256 = "2f7bae795eec86374f1d55edfd9705beb493399a4f85979eec7a366b5ab2bfa2";
+ libraryHaskellDepends = [
+ array base base-orphans bytestring conduit containers cryptohash
+ deepseq fail ghc-prim hashable hspec hspec-smallcheck integer-gmp
+ lifted-base monad-control mono-traversable primitive resourcet safe
+ semigroups smallcheck syb template-haskell text th-lift
+ th-lift-instances th-orphans th-reify-many th-utilities time
+ transformers unordered-containers vector void
+ ];
+ testHaskellDepends = [
+ array base base-orphans bytestring conduit containers cryptohash
+ deepseq fail ghc-prim hashable hspec hspec-smallcheck integer-gmp
+ lifted-base monad-control mono-traversable primitive resourcet safe
+ semigroups smallcheck syb template-haskell text th-lift
+ th-lift-instances th-orphans th-reify-many th-utilities time
+ transformers unordered-containers vector void
+ ];
+ homepage = "https://github.com/fpco/store#readme";
+ description = "Fast binary serialization";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"str" = callPackage
({ mkDerivation, base, base16-bytestring, bytestring, Crypto
, hashable, MissingH, text, utf8-string
@@ -208381,6 +209387,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "subwordgraph" = callPackage
+ ({ mkDerivation, base, containers, mtl, QuickCheck }:
+ mkDerivation {
+ pname = "subwordgraph";
+ version = "1.0.0";
+ sha256 = "e662eec910320fb4dd017ff40fa24bd7f050991d5bfea64de0632670d296c26d";
+ libraryHaskellDepends = [ base containers mtl ];
+ testHaskellDepends = [ base containers mtl QuickCheck ];
+ homepage = "https://github.com/danielnowakowski/Subword-Graph";
+ description = "Subword graph implementation";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"success_0_2_4" = callPackage
({ mkDerivation, base, monad-control, mtl, transformers
, transformers-base
@@ -208894,8 +209913,8 @@ self: {
}:
mkDerivation {
pname = "svgcairo";
- version = "0.13.0.4";
- sha256 = "a366bb2592d9bd398183eefc9407442cfeaddd5b39e9f898081c788c691126a6";
+ version = "0.13.1.0";
+ sha256 = "055adbb80d21091be3703215f1d210f5b40c762adc8450a45a9a39bdc20315a5";
libraryHaskellDepends = [ base cairo glib mtl text ];
libraryPkgconfigDepends = [ librsvg ];
libraryToolDepends = [ gtk2hs-buildtools ];
@@ -210330,18 +211349,20 @@ self: {
}) {};
"system-test" = callPackage
- ({ mkDerivation, aeson, ansi-terminal, base, bytestring, process
- , text
+ ({ mkDerivation, aeson, ansi-terminal, base, bytestring, HUnit
+ , process, text
}:
mkDerivation {
pname = "system-test";
- version = "0.1.1";
- sha256 = "d7c3118a4592a96cb9869ee8d1f5eb67d593a6d9e88dba8fad9998a3132bbf56";
- isLibrary = false;
+ version = "0.1.2";
+ sha256 = "02b14ebb4d0291f658f52ea3117ef47b6025859cadd7593eff1b5d37833b0641";
+ isLibrary = true;
isExecutable = true;
- executableHaskellDepends = [
+ libraryHaskellDepends = [
aeson ansi-terminal base bytestring process text
];
+ executableHaskellDepends = [ base ];
+ testHaskellDepends = [ base HUnit ];
homepage = "https://github.com/ExcaliburZero/system-test-haskell";
description = "Runs system tests of applications";
license = stdenv.lib.licenses.mit;
@@ -210544,8 +211565,8 @@ self: {
}:
mkDerivation {
pname = "table-layout";
- version = "0.5.2.0";
- sha256 = "5000afb85689a2b1e9141887bdf8d589a0cb6a9026ce600be269f856f27a88d3";
+ version = "0.6.0.0";
+ sha256 = "383291677ebb039ae83bc4deebc39bdb9cec5b910e6ac5053bbeab1abf80d10c";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -212603,8 +213624,8 @@ self: {
}:
mkDerivation {
pname = "telegram-api";
- version = "0.4.0.1";
- sha256 = "e3df1db3136065619be332932e0f05985ab8411bdf8179b84fa65dd00971ba0a";
+ version = "0.4.2.0";
+ sha256 = "ba0d6b7e2e7461d7eeb6182ef1c38ee445a657f23469ea844e827c3dcfaef62e";
libraryHaskellDepends = [
aeson base bytestring either http-api-data http-client http-media
http-types mime-types servant servant-client string-conversions
@@ -212730,13 +213751,13 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "template-haskell_2_10_0_0" = callPackage
- ({ mkDerivation, base, pretty }:
+ "template-haskell_2_11_0_0" = callPackage
+ ({ mkDerivation, base, ghc-boot-th, pretty }:
mkDerivation {
pname = "template-haskell";
- version = "2.10.0.0";
- sha256 = "358a3818d04fde27dd44f2c6d24b409031839ee5da2c9ec34b16257fd78c0df8";
- libraryHaskellDepends = [ base pretty ];
+ version = "2.11.0.0";
+ sha256 = "e7bddc18f980f6b8a589a2c4d5e6dd3e1d76e533321cb7ad22afb7242269f6d4";
+ libraryHaskellDepends = [ base ghc-boot-th pretty ];
description = "Support library for Template Haskell";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -213734,6 +214755,26 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "testbench" = callPackage
+ ({ mkDerivation, base, boxes, bytestring, containers, criterion
+ , deepseq, HUnit, statistics, transformers
+ }:
+ mkDerivation {
+ pname = "testbench";
+ version = "0.1.0.0";
+ sha256 = "66592406ff6e1a03d3ae994560e0bf04e500398fd0a9c9be6bca34a3b86f3e83";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base boxes criterion deepseq HUnit statistics transformers
+ ];
+ executableHaskellDepends = [
+ base bytestring containers criterion HUnit
+ ];
+ description = "Create tests and benchmarks together";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"testing-feat_0_4_0_2" = callPackage
({ mkDerivation, base, mtl, QuickCheck, tagshare, template-haskell
}:
@@ -214230,6 +215271,31 @@ self: {
license = "GPL";
}) {};
+ "texmath_0_8_6_3" = 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.6.3";
+ sha256 = "74f600a77a5ce2d88aa1aa81b0bea5f5e79da6b64b51e50656f7bbf27debc22b";
+ 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
@@ -214308,7 +215374,7 @@ self: {
"text_1_2_0_4" = callPackage
({ mkDerivation, array, base, bytestring, deepseq, directory
- , ghc-prim, HUnit, integer-gmp, QuickCheck, quickcheck-unicode
+ , ghc-prim, HUnit, integer-simple, QuickCheck, quickcheck-unicode
, random, test-framework, test-framework-hunit
, test-framework-quickcheck2
}:
@@ -214319,11 +215385,11 @@ self: {
revision = "1";
editedCabalFile = "ee605e146a984f0f9ea30b9e8d92a93a765f1bcc1fa6b6d23e0487fc3f210f0b";
libraryHaskellDepends = [
- array base bytestring deepseq ghc-prim integer-gmp
+ array base bytestring deepseq ghc-prim integer-simple
];
testHaskellDepends = [
- array base bytestring deepseq directory ghc-prim HUnit integer-gmp
- QuickCheck quickcheck-unicode random test-framework
+ array base bytestring deepseq directory ghc-prim HUnit
+ integer-simple QuickCheck quickcheck-unicode random test-framework
test-framework-hunit test-framework-quickcheck2
];
doCheck = false;
@@ -214335,7 +215401,7 @@ self: {
"text_1_2_0_6" = callPackage
({ mkDerivation, array, base, bytestring, deepseq, directory
- , ghc-prim, HUnit, integer-gmp, QuickCheck, quickcheck-unicode
+ , ghc-prim, HUnit, integer-simple, QuickCheck, quickcheck-unicode
, random, test-framework, test-framework-hunit
, test-framework-quickcheck2
}:
@@ -214346,11 +215412,11 @@ self: {
revision = "1";
editedCabalFile = "1d5d0c706835f1ca74925cd3b0aa025bf4ee0fd795581b6038c13cd030fddb47";
libraryHaskellDepends = [
- array base bytestring deepseq ghc-prim integer-gmp
+ array base bytestring deepseq ghc-prim integer-simple
];
testHaskellDepends = [
- array base bytestring deepseq directory ghc-prim HUnit integer-gmp
- QuickCheck quickcheck-unicode random test-framework
+ array base bytestring deepseq directory ghc-prim HUnit
+ integer-simple QuickCheck quickcheck-unicode random test-framework
test-framework-hunit test-framework-quickcheck2
];
doCheck = false;
@@ -214362,7 +215428,7 @@ self: {
"text_1_2_1_3" = callPackage
({ mkDerivation, array, base, binary, bytestring, deepseq
- , directory, ghc-prim, HUnit, integer-gmp, QuickCheck
+ , directory, ghc-prim, HUnit, integer-simple, QuickCheck
, quickcheck-unicode, random, test-framework, test-framework-hunit
, test-framework-quickcheck2
}:
@@ -214373,11 +215439,11 @@ self: {
revision = "1";
editedCabalFile = "0f5b6a2f9204089b6cc58071b92e9f2fc3e6d773e3aa486b4a66bf25e124712a";
libraryHaskellDepends = [
- array base binary bytestring deepseq ghc-prim integer-gmp
+ array base binary bytestring deepseq ghc-prim integer-simple
];
testHaskellDepends = [
array base binary bytestring deepseq directory ghc-prim HUnit
- integer-gmp QuickCheck quickcheck-unicode random test-framework
+ integer-simple QuickCheck quickcheck-unicode random test-framework
test-framework-hunit test-framework-quickcheck2
];
doCheck = false;
@@ -214481,6 +215547,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "text-conversions" = callPackage
+ ({ mkDerivation, base, bytestring, errors, hspec, hspec-discover
+ , text
+ }:
+ mkDerivation {
+ pname = "text-conversions";
+ version = "0.1.0";
+ sha256 = "a7930b778d757ae771f80d71aebc2112c243a02c87b32a1483d3901a160d506f";
+ libraryHaskellDepends = [ base bytestring errors text ];
+ testHaskellDepends = [ base bytestring hspec hspec-discover text ];
+ homepage = "https://github.com/cjdev/text-conversions#readme";
+ description = "Safe conversions between textual types";
+ license = stdenv.lib.licenses.isc;
+ }) {};
+
"text-format" = callPackage
({ mkDerivation, array, base, double-conversion, ghc-prim
, integer-gmp, old-locale, text, time, transformers
@@ -214758,8 +215839,8 @@ self: {
}:
mkDerivation {
pname = "text-region";
- version = "0.1.0.0";
- sha256 = "bf65047a5608e62b55a6a10067068b5ef63675df1b41148ad198f464e8f80673";
+ version = "0.1.0.1";
+ sha256 = "5217ff7af33898ca615e5444ba4293f214d6a5cbc8c4eb34ba53845151f61bf1";
libraryHaskellDepends = [
aeson base base-unicode-symbols bytestring containers groups lens
mtl text
@@ -214768,7 +215849,7 @@ self: {
base base-unicode-symbols containers hspec lens mtl text
];
homepage = "https://github.com/mvoidex/text-region";
- description = "Provides functions to update text region positions according to text edit actions";
+ description = "Marking text regions";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -214858,7 +215939,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "text-show_3_2_1" = callPackage
+ "text-show_3_2_2" = callPackage
({ mkDerivation, array, base, base-compat, base-orphans, bifunctors
, bytestring, bytestring-builder, containers, generic-deriving
, ghc-prim, hspec, integer-gmp, nats, QuickCheck
@@ -214867,8 +215948,8 @@ self: {
}:
mkDerivation {
pname = "text-show";
- version = "3.2.1";
- sha256 = "c5d13ce1c1a411930a0bc3220f8189b91d9ff58c8b82f5777277fc62cc27d28a";
+ version = "3.2.2";
+ sha256 = "93a9479d19f303d4e8310ae8e35a8609d27ef6e443f8a4531c73bd5d1bbd4c40";
libraryHaskellDepends = [
array base base-compat bifunctors bytestring bytestring-builder
containers generic-deriving ghc-prim integer-gmp nats semigroups
@@ -215935,8 +217016,8 @@ self: {
}:
mkDerivation {
pname = "th-utilities";
- version = "0.1.0.1";
- sha256 = "b41375d16d87fb64e1b3a8e32dfd154199175cdd1ab16c86e3923c75f36d1160";
+ version = "0.1.1.0";
+ sha256 = "8d9905d0be5ac2e009f0cab4f0c44e61b997beb8c3e7183bb1ce544217cbbe70";
libraryHaskellDepends = [
base bytestring containers directory filepath primitive syb
template-haskell text th-orphans
@@ -216064,8 +217145,8 @@ self: {
pname = "these";
version = "0.6.2.1";
sha256 = "41dd6403ec489deef66632fcae4cd058f636badb162aedff7c8b4930affb99bb";
- revision = "1";
- editedCabalFile = "d4a7e4b298af27e72431b3f361841ce3063dc451500d319f754fd39117fd6907";
+ revision = "2";
+ editedCabalFile = "3899efa5ea17e23cfb9acde7fa3316fa35183358b90d4540899b5d9d38d59a35";
libraryHaskellDepends = [
base bifunctors containers data-default-class hashable mtl
profunctors semigroupoids semigroups transformers
@@ -216381,6 +217462,8 @@ self: {
pname = "through-text";
version = "0.1.0.0";
sha256 = "933225da128906e61865ccd1da73463781b890d742cbb38f52524d94ac19b4cd";
+ revision = "1";
+ editedCabalFile = "f0c09f65756b493eee2c55f4ef5ef1f71f1afe9b0d19448c34bf1db6e942a865";
libraryHaskellDepends = [ base bytestring case-insensitive text ];
homepage = "https://www.github.com/bergmark/through-text";
description = "Convert textual types through Text without needing O(n^2) instances";
@@ -218426,8 +219509,8 @@ self: {
({ mkDerivation, base, containers }:
mkDerivation {
pname = "total-map";
- version = "0.0.5";
- sha256 = "c7392d06e1c5ed4b1219eda838aaa0e2a7befcb3650765f1e87e86533d2195d3";
+ version = "0.0.6";
+ sha256 = "32ff8bf84ce379fa4a3d9f2630471ff0ab4924bcd5e65bad9b539da50e65af85";
libraryHaskellDepends = [ base containers ];
homepage = "http://github.com/conal/total-map/";
description = "Finitely represented /total/ maps";
@@ -218642,6 +219725,24 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "traildb" = callPackage
+ ({ mkDerivation, base, bytestring, cmph, containers, directory
+ , exceptions, Judy, lens, primitive, text, time, traildb
+ , transformers, unix, vector
+ }:
+ mkDerivation {
+ pname = "traildb";
+ version = "0.1.0.1";
+ sha256 = "60945b9b57871c10d25d364c5ae27ba676e4651c785c6ddb8ba79a4c085341c8";
+ libraryHaskellDepends = [
+ base bytestring containers directory exceptions lens primitive text
+ time transformers unix vector
+ ];
+ librarySystemDepends = [ cmph Judy traildb ];
+ description = "TrailDB bindings for Haskell";
+ license = stdenv.lib.licenses.mit;
+ }) {Judy = null; cmph = null; traildb = null;};
+
"trajectory" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, cmdargs
, containers, http-enumerator, http-types, regexpr, text
@@ -220106,6 +221207,8 @@ self: {
pname = "turtle";
version = "1.2.1";
sha256 = "9c5886fcfc2397da2d2861ad85992d952b0f749ef07b60f93c717b5ca87d8406";
+ revision = "1";
+ editedCabalFile = "aeed045fbbb2e98a90dc4ccdd33fe81dfafb6cce130632d927bd56f6c12a2e93";
libraryHaskellDepends = [
async base clock directory foldl hostname managed optional-args
optparse-applicative process system-fileio system-filepath
@@ -220128,6 +221231,8 @@ self: {
pname = "turtle";
version = "1.2.2";
sha256 = "b2676e0222829b8951fe127676f891e212d1dad95d8db92dc7ffdbd099e60ec6";
+ revision = "1";
+ editedCabalFile = "94e5ce1de1914b27b012e9c4e243cab208d2a5ebeadc0979a18491991870ea62";
libraryHaskellDepends = [
async base clock directory foldl hostname managed optional-args
optparse-applicative process stm system-fileio system-filepath
@@ -220150,6 +221255,8 @@ self: {
pname = "turtle";
version = "1.2.3";
sha256 = "3669a203887b58621ba20a4192defb3bdbfdf17ac13de80747143f739127d36d";
+ revision = "1";
+ editedCabalFile = "730c8de9603e2d53fae9c544b667d5e93778a2883f48e4ac2ef4b99e0963a457";
libraryHaskellDepends = [
async base clock directory foldl hostname managed optional-args
optparse-applicative process stm system-fileio system-filepath
@@ -220172,6 +221279,8 @@ self: {
pname = "turtle";
version = "1.2.4";
sha256 = "c42148d062098913a4519af92c0bc6b139edad18c22f6c01aea8697386851de4";
+ revision = "1";
+ editedCabalFile = "4eadcd71a803df6ac90d05bd47208c581933cabc1d42a2072e5476f149834a97";
libraryHaskellDepends = [
async base clock directory foldl hostname managed optional-args
optparse-applicative process stm system-fileio system-filepath
@@ -220194,6 +221303,8 @@ self: {
pname = "turtle";
version = "1.2.5";
sha256 = "006566b6d1060c576ad10db068381ff433598bffac0e49847c6aff522ad9c5c7";
+ revision = "1";
+ editedCabalFile = "01ecee5b95ca73d30fec3176c3d0c763322506d0f89020f442c77a5094ade60c";
libraryHaskellDepends = [
async base clock directory foldl hostname managed optional-args
optparse-applicative process stm system-fileio system-filepath
@@ -220216,6 +221327,8 @@ self: {
pname = "turtle";
version = "1.2.6";
sha256 = "947f73268b9b72585c0b6e8943a1eeb51d5683dec01cbdbe9a3f94ef00b91d92";
+ revision = "1";
+ editedCabalFile = "f7b7554ff334221e86fe193dad0ad53a218435a97fa1f107e536b91287b14c46";
libraryHaskellDepends = [
async base clock directory foldl hostname managed optional-args
optparse-applicative process stm system-fileio system-filepath
@@ -220238,6 +221351,8 @@ self: {
pname = "turtle";
version = "1.2.7";
sha256 = "45736cf5106e75808eaed098228309bcfa3eb8b5e7e956c28423002ca5232f98";
+ revision = "1";
+ editedCabalFile = "2215d980813e67b577b7d44d2b83cdca5c327f153340b3a9ac3084936ae58faa";
libraryHaskellDepends = [
async base clock directory foldl hostname managed optional-args
optparse-applicative process stm system-fileio system-filepath
@@ -221468,8 +222583,8 @@ self: {
({ mkDerivation, base, singletons }:
mkDerivation {
pname = "type-list";
- version = "0.3.0.3";
- sha256 = "ccb5ba7fcce21c2c0ebf8567adbac662f705abb6250637468dacd1d365ff83c0";
+ version = "0.3.0.4";
+ sha256 = "cd06218bf2f6897e0caf85c86334d8834ea36410a0d0b1d9193e1cbadd1b300a";
libraryHaskellDepends = [ base singletons ];
description = "Operations on type-level lists and tuples";
license = stdenv.lib.licenses.bsd3;
@@ -221816,7 +222931,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "typelits-witnesses" = callPackage
+ "typelits-witnesses_0_2_1_0" = callPackage
({ mkDerivation, base, base-compat, constraints, reflection
, transformers
}:
@@ -221830,6 +222945,23 @@ self: {
homepage = "https://github.com/mstksg/typelits-witnesses";
description = "Existential witnesses, singletons, and classes for operations on GHC TypeLits";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "typelits-witnesses" = callPackage
+ ({ mkDerivation, base, base-compat, constraints, reflection
+ , transformers
+ }:
+ mkDerivation {
+ pname = "typelits-witnesses";
+ version = "0.2.2.0";
+ sha256 = "9d9e1ce622b309d51f748bbbbccdc1648c00680257426c1ebd90c1e590d3cf0b";
+ libraryHaskellDepends = [
+ base base-compat constraints reflection transformers
+ ];
+ homepage = "https://github.com/mstksg/typelits-witnesses";
+ description = "Existential witnesses, singletons, and classes for operations on GHC TypeLits";
+ license = stdenv.lib.licenses.mit;
}) {};
"typeof" = callPackage
@@ -222217,8 +223349,8 @@ self: {
}:
mkDerivation {
pname = "uhc-light";
- version = "1.1.9.3";
- sha256 = "e1c4868e38987c2938c6c9379bb3d8b1bfcfbfc95541862e118e8ca9439343f3";
+ version = "1.1.9.4";
+ sha256 = "617fd803d9693cc9c03f071045a892b5a1f8b4564e7764c595014a440261f053";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -222238,16 +223370,17 @@ self: {
"uhc-util" = callPackage
({ mkDerivation, array, base, binary, bytestring, containers
- , directory, fclabels, fgl, hashable, logict-state, mtl, process
- , syb, time, time-compat, uulib
+ , directory, fclabels, fgl, hashable, logict-state, mtl, pqueue
+ , process, time, time-compat, transformers, uulib
}:
mkDerivation {
pname = "uhc-util";
- version = "0.1.6.5";
- sha256 = "a296ebd71c34353f69ad42b6b8979dbdc5e2bb5fb117b5e8953ff77ccbc378fc";
+ version = "0.1.6.6";
+ sha256 = "b5abc07215168b1f203ce50da8f13b8170269a5e4b2e4c8a872819f13f14bb47";
libraryHaskellDepends = [
array base binary bytestring containers directory fclabels fgl
- hashable logict-state mtl process syb time time-compat uulib
+ hashable logict-state mtl pqueue process time time-compat
+ transformers uulib
];
homepage = "https://github.com/UU-ComputerScience/uhc-util";
description = "UHC utilities";
@@ -222496,6 +223629,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "unbound-generics_0_3_1" = callPackage
+ ({ mkDerivation, base, containers, contravariant, deepseq, mtl
+ , profunctors, QuickCheck, tasty, tasty-hunit, tasty-quickcheck
+ , template-haskell, transformers, transformers-compat
+ }:
+ mkDerivation {
+ pname = "unbound-generics";
+ version = "0.3.1";
+ sha256 = "1f85672c8edfc8cbea638bcbf1e29d04934d79470177cb59e6dba0f9bb7a6440";
+ libraryHaskellDepends = [
+ base containers contravariant deepseq mtl profunctors
+ template-haskell transformers transformers-compat
+ ];
+ testHaskellDepends = [
+ base mtl QuickCheck tasty tasty-hunit tasty-quickcheck
+ ];
+ homepage = "http://github.com/lambdageek/unbound-generics";
+ description = "Support for programming with names and binders using GHC Generics";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"unbounded-delays_0_1_0_8" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -222577,8 +223732,8 @@ self: {
}:
mkDerivation {
pname = "uncertain";
- version = "0.3.0.0";
- sha256 = "91aedeb132b145799cc84fd409e60b1688c023b55adf4bcdf405327b2e1f0f8b";
+ version = "0.3.1.0";
+ sha256 = "6f67855ed4799e0c3465dfaef062b637efc61fbea40ebc44ced163028a996ff2";
libraryHaskellDepends = [
ad base base-compat containers free mwc-random primitive
transformers
@@ -224573,17 +225728,17 @@ self: {
}) {};
"users-persistent" = callPackage
- ({ mkDerivation, base, bytestring, hspec, monad-logger, mtl
- , persistent, persistent-sqlite, persistent-template, temporary
- , text, time, transformers, users, users-test, uuid
+ ({ mkDerivation, base, bytestring, esqueleto, hspec, monad-logger
+ , mtl, persistent, persistent-sqlite, persistent-template
+ , temporary, text, time, transformers, users, users-test, uuid
}:
mkDerivation {
pname = "users-persistent";
- version = "0.5.0.1";
- sha256 = "59107ccbc443ecc37f8539eca28c0717a45d902bf07f47fddadc704a0c701ba2";
+ version = "0.5.0.2";
+ sha256 = "f860936c9eaca82353979c70344576964319d241e3c74caf0a55cd3c9918944c";
libraryHaskellDepends = [
- base bytestring mtl persistent persistent-template text time
- transformers users uuid
+ base bytestring esqueleto mtl persistent persistent-template text
+ time transformers users uuid
];
testHaskellDepends = [
base hspec monad-logger persistent-sqlite temporary text users-test
@@ -224656,8 +225811,8 @@ self: {
}:
mkDerivation {
pname = "users-postgresql-simple";
- version = "0.5.0.1";
- sha256 = "bac279ce4e93c71581e9aa890170d5acea262b1c4fddb8b5c7df5ea9807d9905";
+ version = "0.5.0.2";
+ sha256 = "051b5d2c9c6cdeaacb6271a50ee4084cc1473de8d873825dc6d98023e96ec100";
libraryHaskellDepends = [
base bytestring mtl postgresql-simple text time users uuid
];
@@ -224711,8 +225866,8 @@ self: {
({ mkDerivation, base, hspec, text, users }:
mkDerivation {
pname = "users-test";
- version = "0.5.0.0";
- sha256 = "d3cee7db30b5fe19ca4d822f5f03484eda82090a5060ef6493befe0324d15643";
+ version = "0.5.0.1";
+ sha256 = "f68549fa0cc002b16dc55f23a73b1a423aa2e64ab584c4041252a3bb6a5cac3e";
libraryHaskellDepends = [ base hspec text users ];
homepage = "https://github.com/agrafix/users";
description = "Library to test backends for the users library";
@@ -225559,8 +226714,8 @@ self: {
}:
mkDerivation {
pname = "vado";
- version = "0.0.6";
- sha256 = "cc9b6ffa83eaedf2c793a93e47b8341b2f8014382aaae63a46b4028c3e86212c";
+ version = "0.0.7";
+ sha256 = "fc8609a92ce40a4c52d37a44297b67928bf30562c4b87a2e3885059ecbc6273b";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -226695,7 +227850,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "vector-space-points" = callPackage
+ "vector-space-points_0_2_1_1" = callPackage
({ mkDerivation, base, vector-space }:
mkDerivation {
pname = "vector-space-points";
@@ -226704,6 +227859,18 @@ self: {
libraryHaskellDepends = [ base vector-space ];
description = "A type for points, as distinct from vectors";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "vector-space-points" = callPackage
+ ({ mkDerivation, base, vector-space }:
+ mkDerivation {
+ pname = "vector-space-points";
+ version = "0.2.1.2";
+ sha256 = "feead3c4e82d25b0ef3a64af93e01ac377083adb7f755c2360417838d6f1114b";
+ libraryHaskellDepends = [ base vector-space ];
+ description = "A type for points, as distinct from vectors";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"vector-static" = callPackage
@@ -227184,8 +228351,8 @@ self: {
({ mkDerivation, base, contravariant, transformers, vinyl }:
mkDerivation {
pname = "vinyl-utils";
- version = "0.2.0.3";
- sha256 = "870e5f5fb312fd3ff37f56eb06d28518571b085a5257852b652cde31e9abc08c";
+ version = "0.3.0.0";
+ sha256 = "e6d7668cd91d5ef14b54396561c10930654dae9398cedefc1fb6faab00c4143f";
libraryHaskellDepends = [ base contravariant transformers vinyl ];
homepage = "https://github.com/marcinmrotek/vinyl-utils";
description = "Utilities for vinyl";
@@ -227477,8 +228644,8 @@ self: {
({ mkDerivation, base, glib, gtk, gtk2hs-buildtools, pango, vte }:
mkDerivation {
pname = "vte";
- version = "0.13.0.3";
- sha256 = "70efa9daec459aa3d7d49e767af2449752c62f47985d5bac9ef50fc1cdb4f90f";
+ version = "0.13.1.0";
+ sha256 = "6dc78551c75c393f2c8b9c463539293214ee788ad73c0623adc69f10b36f4a9d";
libraryHaskellDepends = [ base glib gtk pango ];
libraryPkgconfigDepends = [ vte ];
libraryToolDepends = [ gtk2hs-buildtools ];
@@ -227493,8 +228660,8 @@ self: {
({ mkDerivation, base, glib, gtk2hs-buildtools, gtk3, pango, vte }:
mkDerivation {
pname = "vtegtk3";
- version = "0.13.0.3";
- sha256 = "d712bf11446133f3146985db6ced3d932cf8f65d6a81900f4b65bb6e914c176a";
+ version = "0.13.1.0";
+ sha256 = "9da47c606db50183e1d9c19dc6626864a50c2838623836e65084951416452dfe";
libraryHaskellDepends = [ base glib gtk3 pango ];
libraryPkgconfigDepends = [ vte ];
libraryToolDepends = [ gtk2hs-buildtools ];
@@ -227907,6 +229074,26 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "wai_3_2_1_1" = callPackage
+ ({ mkDerivation, base, blaze-builder, bytestring
+ , bytestring-builder, hspec, http-types, network, text
+ , transformers, vault
+ }:
+ mkDerivation {
+ pname = "wai";
+ version = "3.2.1.1";
+ sha256 = "5d80a68f5d8806682d8267b7dacc383d094e3ef7ecd705f20e42c91cad564e21";
+ libraryHaskellDepends = [
+ base blaze-builder bytestring bytestring-builder http-types network
+ text transformers vault
+ ];
+ testHaskellDepends = [ base blaze-builder bytestring hspec ];
+ homepage = "https://github.com/yesodweb/wai";
+ description = "Web Application Interface";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"wai-accept-language" = callPackage
({ mkDerivation, base, bytestring, file-embed, http-types, text
, wai, wai-app-static, wai-extra, warp, word8
@@ -229381,7 +230568,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "wai-handler-launch" = callPackage
+ "wai-handler-launch_3_0_2" = callPackage
({ mkDerivation, async, base, blaze-builder, bytestring, http-types
, process, streaming-commons, transformers, wai, warp
}:
@@ -229395,6 +230582,23 @@ self: {
];
description = "Launch a web app in the default browser";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "wai-handler-launch" = callPackage
+ ({ mkDerivation, async, base, blaze-builder, bytestring, http-types
+ , process, streaming-commons, transformers, wai, warp
+ }:
+ mkDerivation {
+ pname = "wai-handler-launch";
+ version = "3.0.2.1";
+ sha256 = "84a466837e6df61be9ae03f8c0241bee374a0493f24f4bdc2a1e5f38ab705864";
+ libraryHaskellDepends = [
+ async base blaze-builder bytestring http-types process
+ streaming-commons transformers wai warp
+ ];
+ description = "Launch a web app in the default browser";
+ license = stdenv.lib.licenses.mit;
}) {};
"wai-handler-scgi" = callPackage
@@ -230208,8 +231412,8 @@ self: {
pname = "wai-middleware-static";
version = "0.8.0";
sha256 = "a37aaf452e3816928934d39b4eef3c1f7186c9db618d0b303e5136fc858e5e58";
- revision = "2";
- editedCabalFile = "41421955e1c4c86f72ea709dd43ff1e8a7a4b5ad59fb90923441d449a9506327";
+ revision = "3";
+ editedCabalFile = "819eb104224cefb36cb6d8db5c43a2103e0add6c5bb799fad8bde0762493bfa9";
libraryHaskellDepends = [
base base16-bytestring bytestring containers cryptohash directory
expiring-cache-map filepath http-types mime-types mtl old-locale
@@ -231211,6 +232415,8 @@ self: {
pname = "waitra";
version = "0.0.4.0";
sha256 = "5610c69eb377e2714c3e502cf47fff7e116e356890aefb1f4144d3e6c1b16c12";
+ revision = "1";
+ editedCabalFile = "baf3d8d646916af447598800696001326206f154efe3a020a5d1c1de46a6114b";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -232650,6 +233856,26 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "web-inv-route" = callPackage
+ ({ mkDerivation, base, bytestring, case-insensitive, containers
+ , happstack-server, hashable, http-types, HUnit, invertible
+ , network-uri, snap-core, text, transformers, unordered-containers
+ , wai
+ }:
+ mkDerivation {
+ pname = "web-inv-route";
+ version = "0.1";
+ sha256 = "8973080f0a59429cf97ed1ac0d1060b864f6a25f577c3e150ff0f0a3635ac8fa";
+ libraryHaskellDepends = [
+ base bytestring case-insensitive containers happstack-server
+ hashable http-types invertible network-uri snap-core text
+ transformers unordered-containers wai
+ ];
+ testHaskellDepends = [ base bytestring HUnit network-uri text ];
+ description = "Composable, reversible, efficient web routing based on invertible invariants and bijections";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"web-mongrel2" = callPackage
({ mkDerivation, base, bytestring, data-default, file-embed
, haskell98, HStringTemplate, json, mtl, old-time, parsec
@@ -232896,8 +234122,8 @@ self: {
}:
mkDerivation {
pname = "webapp";
- version = "0.3.4";
- sha256 = "41a63dcfcb5233d0aa8d24a3a63e3c4fbcea8a96f7932d5db65e92f4a96d17f4";
+ version = "0.3.6";
+ sha256 = "cc15c419454db7a1e61bbeb8827d971234b43a120a8d372d3d015991fa04c8ec";
libraryHaskellDepends = [
aeson base base16-bytestring blaze-builder bytestring
case-insensitive http-types mtl network optparse-applicative
@@ -233409,8 +234635,8 @@ self: {
}:
mkDerivation {
pname = "webkit";
- version = "0.14.1.1";
- sha256 = "c80dd015ecbf02b7d018afd1679df78a8c1ce17e3ae6b943f23d4da2ef867e44";
+ version = "0.14.2.0";
+ sha256 = "3fdfe31a039f6168b0a694963fcdf2014e8928955b6fb88f0ef8f2c403473f51";
libraryHaskellDepends = [
base bytestring cairo glib gtk mtl pango text transformers
];
@@ -233423,17 +234649,18 @@ self: {
}) {inherit (pkgs) webkit;};
"webkit-javascriptcore" = callPackage
- ({ mkDerivation, base, glib, gtk, gtk2hs-buildtools, webkit }:
+ ({ mkDerivation, base, gtk2hs-buildtools, webkit }:
mkDerivation {
pname = "webkit-javascriptcore";
- version = "0.13.1.2";
- sha256 = "9645b68c8c4af17002870367f9c3d902154dd56eca8d303b4bcaf3c0504df861";
- libraryHaskellDepends = [ base glib gtk webkit ];
+ version = "0.14.1.0";
+ sha256 = "d3049d1ea5f9a8a7bc9b0d5e85507acfe8af9fa6344bab82443299c17f18ee72";
+ libraryHaskellDepends = [ base ];
+ libraryPkgconfigDepends = [ webkit ];
libraryToolDepends = [ gtk2hs-buildtools ];
description = "JavaScriptCore FFI from webkitgtk";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
+ }) {inherit (pkgs) webkit;};
"webkitgtk3" = callPackage
({ mkDerivation, base, bytestring, cairo, glib, gtk2hs-buildtools
@@ -233454,6 +234681,25 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {inherit (pkgs) webkit;};
+ "webkitgtk3_0_14_2_0" = callPackage
+ ({ mkDerivation, base, bytestring, cairo, glib, gtk2hs-buildtools
+ , gtk3, mtl, pango, text, transformers, webkit
+ }:
+ mkDerivation {
+ pname = "webkitgtk3";
+ version = "0.14.2.0";
+ sha256 = "dd3e3bc62b31616681ffcee07df11b30155433a2cc7eea0560af53c7560f1a86";
+ libraryHaskellDepends = [
+ base bytestring cairo glib gtk3 mtl pango text transformers
+ ];
+ libraryPkgconfigDepends = [ webkit ];
+ libraryToolDepends = [ gtk2hs-buildtools ];
+ homepage = "http://projects.haskell.org/gtk2hs/";
+ description = "Binding to the Webkit library";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) webkit;};
+
"webkitgtk3-javascriptcore" = callPackage
({ mkDerivation, base, glib, gtk2hs-buildtools, gtk3, webkit
, webkitgtk3
@@ -233470,12 +234716,12 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {inherit (pkgs) webkit;};
- "webkitgtk3-javascriptcore_0_14_0_0" = callPackage
+ "webkitgtk3-javascriptcore_0_14_1_0" = callPackage
({ mkDerivation, base, gtk2hs-buildtools, webkit }:
mkDerivation {
pname = "webkitgtk3-javascriptcore";
- version = "0.14.0.0";
- sha256 = "1e77bcdb17dad3c1db88c5c1a498c9b804a1c486a7397d22fd1f16d874b27477";
+ version = "0.14.1.0";
+ sha256 = "8d75032979d34ac811a06a5d3c7596b0cc176e24304a3834067896b4df0e5d6d";
libraryHaskellDepends = [ base ];
libraryPkgconfigDepends = [ webkit ];
libraryToolDepends = [ gtk2hs-buildtools ];
@@ -234138,6 +235384,23 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "wikicfp-scraper" = callPackage
+ ({ mkDerivation, attoparsec, base, bytestring, filepath, hspec
+ , scalpel, text, time
+ }:
+ mkDerivation {
+ pname = "wikicfp-scraper";
+ version = "0.1.0.0";
+ sha256 = "a930753e1af83b5f2f033da302d57ba2be24a2bd8e5a4ae304f7af89cfd8fe89";
+ libraryHaskellDepends = [
+ attoparsec base bytestring scalpel text time
+ ];
+ testHaskellDepends = [ base bytestring filepath hspec time ];
+ homepage = "https://github.com/debug-ito/wikicfp-scraper";
+ description = "Scrape WikiCFP web site";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"wikipedia4epub" = callPackage
({ mkDerivation, base, bytestring, directory, epub, filepath
, haskell98, HTTP, network, regex-base, regex-posix, tagsoup, url
@@ -234280,6 +235543,20 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
+ "withdependencies_0_2_3" = callPackage
+ ({ mkDerivation, base, conduit, containers, hspec, HUnit, mtl }:
+ mkDerivation {
+ pname = "withdependencies";
+ version = "0.2.3";
+ sha256 = "eae91b83a4e93c9e31ba5aca90607234708cb65f247e8bc6813b6f25d3ddb8b7";
+ libraryHaskellDepends = [ base conduit containers mtl ];
+ testHaskellDepends = [ base conduit hspec HUnit mtl ];
+ homepage = "https://github.com/bartavelle/withdependencies";
+ description = "Run computations that depend on one or more elements in a stream";
+ license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"witherable_0_1_3" = callPackage
({ mkDerivation, base, base-orphans, containers, hashable
, transformers, unordered-containers, vector
@@ -234726,6 +236003,18 @@ self: {
license = stdenv.lib.licenses.gpl2;
}) {};
+ "word-vector" = callPackage
+ ({ mkDerivation, base, bytestring, ghc-prim, vector }:
+ mkDerivation {
+ pname = "word-vector";
+ version = "0.1.0.0";
+ sha256 = "b5c9d2f8d6b2f48bed56e87ef0ab676fa236d6961d467e7892cd407c72ee6bba";
+ libraryHaskellDepends = [ base bytestring ghc-prim vector ];
+ homepage = "https://github.com/andrewthad/bytestring-coerce";
+ description = "Initial project template from stack";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"word24" = callPackage
({ mkDerivation, base, QuickCheck, test-framework
, test-framework-quickcheck2
@@ -237956,10 +239245,9 @@ self: {
({ mkDerivation, base, magic, mtl, random, unix, xmonad }:
mkDerivation {
pname = "xmonad-wallpaper";
- version = "0.0.1.2";
- sha256 = "b02e1c7a524dd9cf28d5cff6933194fe245fa4e9247f701ec87195a20a8cf265";
+ version = "0.0.1.3";
+ sha256 = "de2f46159baa7203eae9a5e1539b45039b2c87afe7169db0c58a757d1dbb816f";
libraryHaskellDepends = [ base magic mtl random unix xmonad ];
- jailbreak = true;
description = "xmonad wallpaper extension";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -238119,6 +239407,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "xpathdsv" = callPackage
+ ({ mkDerivation, base, hxt, hxt-xpath, optparse-applicative, text
+ }:
+ mkDerivation {
+ pname = "xpathdsv";
+ version = "0.1.1.0";
+ sha256 = "99967d6d64cee8188578c51e513b4e2f0ae42df8b8118f837f2182d1b83b5862";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base hxt hxt-xpath optparse-applicative text
+ ];
+ homepage = "https://github.com/danchoi/xpathdsv#readme";
+ description = "Command line tool to extract DSV data from HTML and XML with XPATH expressions";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"xsact" = callPackage
({ mkDerivation, array, base, containers, directory, process
, random, unix
@@ -239054,6 +240359,8 @@ self: {
pname = "yampa-canvas";
version = "0.2.2";
sha256 = "167c8dc3992d98d879eb281b27a0dbf6fde21ca69992e384df4b5babcdda3e3c";
+ revision = "1";
+ editedCabalFile = "98e99a555170a8b7281116b4e9c829c011b2401f21589f55ae80333ff2d6f34a";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base blank-canvas stm time Yampa ];
@@ -241974,6 +243281,40 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "yesod-bin_1_4_18_2" = callPackage
+ ({ mkDerivation, async, attoparsec, base, base64-bytestring
+ , blaze-builder, bytestring, Cabal, conduit, conduit-extra
+ , containers, data-default-class, deepseq, directory, file-embed
+ , filepath, fsnotify, ghc, ghc-paths, http-client, http-conduit
+ , http-reverse-proxy, http-types, lifted-base, network
+ , optparse-applicative, parsec, process, project-template
+ , resourcet, shakespeare, split, streaming-commons, tar
+ , template-haskell, text, time, transformers, transformers-compat
+ , unix-compat, unordered-containers, wai, wai-extra, warp, warp-tls
+ , yaml, zlib
+ }:
+ mkDerivation {
+ pname = "yesod-bin";
+ version = "1.4.18.2";
+ sha256 = "4cfd0c6bb3a77e7d126a17e9d11fc50325afdb89c8ed04b9692f1e7948724151";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ async attoparsec base base64-bytestring blaze-builder bytestring
+ Cabal conduit conduit-extra containers data-default-class deepseq
+ directory file-embed filepath fsnotify ghc ghc-paths http-client
+ http-conduit http-reverse-proxy http-types lifted-base network
+ optparse-applicative parsec process project-template resourcet
+ shakespeare split streaming-commons tar template-haskell text time
+ transformers transformers-compat unix-compat unordered-containers
+ wai wai-extra warp warp-tls yaml zlib
+ ];
+ homepage = "http://www.yesodweb.com/";
+ description = "The yesod helper executable";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"yesod-bootstrap" = callPackage
({ mkDerivation, base, blaze-html, blaze-markup, conduit
, conduit-extra, containers, either, email-validate
@@ -241983,8 +243324,8 @@ self: {
}:
mkDerivation {
pname = "yesod-bootstrap";
- version = "0.2.1";
- sha256 = "c1eb6ae089f72b389f11c29f7572177c9767e7995d4e50b7a3ed23cdea681492";
+ version = "0.3";
+ sha256 = "e40a9276089146ebfdf2a95b2bc3372b1dca7fb29d9d269b39dd3f4528d3ed01";
libraryHaskellDepends = [
base blaze-html blaze-markup conduit conduit-extra containers
either email-validate lens-family-core lens-family-th MonadRandom
@@ -243594,6 +244935,22 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "yesod-ip" = callPackage
+ ({ mkDerivation, base, ip, path-pieces, persistent, text
+ , yesod-core, yesod-form
+ }:
+ mkDerivation {
+ pname = "yesod-ip";
+ version = "0.4";
+ sha256 = "cad176587618d1184ec6b789090596fa45607fa732629b0a2c7e40e10393f7a4";
+ libraryHaskellDepends = [
+ base ip path-pieces persistent text yesod-core yesod-form
+ ];
+ homepage = "https://github.com/andrewthad/yesod-ip#readme";
+ description = "Code for using the ip package with yesod";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"yesod-job-queue" = callPackage
({ mkDerivation, aeson, api-field-json-th, base, bytestring
, classy-prelude-yesod, cron, file-embed, hedis, lens, monad-logger
@@ -246530,10 +247887,8 @@ self: {
}:
mkDerivation {
pname = "zippers";
- version = "0.2";
- sha256 = "9a864aa9acb62f018caea6f92520d9e9f9f09b8efada84ba4e9e35c35a008ee6";
- revision = "1";
- editedCabalFile = "3e27022f7ed27e35e73ed36f3aa6b396c7e7b52e864965b8d3cd4dab8394e960";
+ version = "0.2.2";
+ sha256 = "d9c499cec6f60e0556b9874d2bf3b801b0a022b226a396200d11b91d3a1aede7";
libraryHaskellDepends = [ base lens profunctors semigroupoids ];
testHaskellDepends = [ base directory doctest filepath ];
homepage = "http://github.com/ekmett/zippers/";
@@ -246881,8 +248236,8 @@ self: {
({ mkDerivation, base, lens, stm }:
mkDerivation {
pname = "zoom-refs";
- version = "0.0.0.0";
- sha256 = "3780dd561d0902772ff3ddca00fc5431c14e469c568381f5ab2f13eaf4e3765d";
+ version = "0.0.0.1";
+ sha256 = "743c0ed5e93bedf4207838274df02f2d3406c871ce51c00572b43d709978b32b";
libraryHaskellDepends = [ base lens stm ];
description = "Zoom (~ Functor) and pairing (~ Applicative) for mutable references";
license = stdenv.lib.licenses.bsd3;
diff --git a/pkgs/development/libraries/fltk/default.nix b/pkgs/development/libraries/fltk/default.nix
index 6398e5542ac3..772ea2030c2a 100644
--- a/pkgs/development/libraries/fltk/default.nix
+++ b/pkgs/development/libraries/fltk/default.nix
@@ -1,19 +1,29 @@
-{ composableDerivation, fetchurl, pkgconfig, xlibsWrapper, inputproto, libXi
-, freeglut, mesa, libjpeg, zlib, libXinerama, libXft, libpng }:
+{ stdenv, composableDerivation, fetchurl, pkgconfig, xlibsWrapper, inputproto, libXi
+, freeglut, mesa, libjpeg, zlib, libXinerama, libXft, libpng
+, cfg ? {}
+}:
let inherit (composableDerivation) edf; in
-composableDerivation.composableDerivation {} rec {
- name = "fltk-2.0.x-alpha-r9296";
+let version = "1.3.3"; in
+composableDerivation.composableDerivation {} {
+ name = "fltk-${version}";
src = fetchurl {
- url = "ftp://ftp.easysw.com/pub/fltk/snapshots/${name}.tar.bz2";
- sha256 = "0353ngb7gpyklc9mdz8629big2na3c73akfwhis8fhqp7jkbs9ih";
+ url = "http://fltk.org/pub/fltk/${version}/fltk-${version}-source.tar.gz";
+ sha256 = "15qd7lkz5d5ynz70xhxhigpz3wns39v9xcf7ggkl0792syc8sfgq";
};
+ # http://www.fltk.org/str.php?L3156
+ postPatch = ''
+ substituteInPlace FL/x.H \
+ --replace 'class Fl_XFont_On_Demand' 'class FL_EXPORT Fl_XFont_On_Demand'
+ '';
+
+ nativeBuildInputs = [ pkgconfig ];
propagatedBuildInputs = [ xlibsWrapper inputproto libXi freeglut ];
- buildInputs = [ pkgconfig ];
+ enableParallelBuilding = true;
flags =
# this could be tidied up (?).. eg why does it require freeglut without glSupport?
@@ -39,10 +49,15 @@ composableDerivation.composableDerivation {} rec {
localpngSupport = false;
sharedSupport = true;
threadsSupport = true;
- };
+ xftSupport = true;
+ } // cfg;
meta = {
- description = "a C++ cross platform lightweight gui library binding";
+ description = "A C++ cross-platform lightweight GUI library";
homepage = http://www.fltk.org;
+ platforms = stdenv.lib.platforms.linux;
+ license = stdenv.lib.licenses.gpl2;
};
+
}
+
diff --git a/pkgs/development/libraries/fltk/fltk13.nix b/pkgs/development/libraries/fltk/fltk13.nix
deleted file mode 100644
index cb71724a3604..000000000000
--- a/pkgs/development/libraries/fltk/fltk13.nix
+++ /dev/null
@@ -1,66 +0,0 @@
-{ composableDerivation, fetchurl, pkgconfig, xlibsWrapper, inputproto, libXi
-, freeglut, mesa, libjpeg, zlib, libXinerama, libXft, libpng
-, cfg ? {}
-, automake, autoconf, libtool
-}:
-
-let inherit (composableDerivation) edf; in
-
-let version = "1.3.3"; in
-composableDerivation.composableDerivation {} {
- name = "fltk-${version}";
-
- src = fetchurl {
- url = "http://fltk.org/pub/fltk/${version}/fltk-${version}-source.tar.gz";
- sha256 = "15qd7lkz5d5ynz70xhxhigpz3wns39v9xcf7ggkl0792syc8sfgq";
- };
-
- # http://www.fltk.org/str.php?L3156
- postPatch = ''
- substituteInPlace FL/x.H \
- --replace 'class Fl_XFont_On_Demand' 'class FL_EXPORT Fl_XFont_On_Demand'
- '';
-
- propagatedBuildInputs = [ xlibsWrapper inputproto libXi freeglut ];
-
- enableParallelBilding = true;
-
- nativeBuildInputs = [
- pkgconfig
- automake autoconf libtool # only required because of patch
- ];
-
- flags =
- # this could be tidied up (?).. eg why does it require freeglut without glSupport?
- edf { name = "cygwin"; } # use the CygWin libraries default=no
- // edf { name = "debug"; } # turn on debugging default=no
- // edf { name = "gl"; enable = { buildInputs = [ mesa ]; }; } # turn on OpenGL support default=yes
- // edf { name = "shared"; } # turn on shared libraries default=no
- // edf { name = "threads"; } # enable multi-threading support
- // edf { name = "quartz"; enable = { buildInputs = "quartz"; }; } # don't konw yet what quartz is # use Quartz instead of Quickdraw (default=no)
- // edf { name = "largefile"; } # omit support for large files
- // edf { name = "localjpeg"; disable = { buildInputs = [libjpeg]; }; } # use local JPEG library, default=auto
- // edf { name = "localzlib"; disable = { buildInputs = [zlib]; }; } # use local ZLIB library, default=auto
- // edf { name = "localpng"; disable = { buildInputs = [libpng]; }; } # use local PNG library, default=auto
- // edf { name = "xinerama"; enable = { buildInputs = [libXinerama]; }; } # turn on Xinerama support default=no
- // edf { name = "xft"; enable = { buildInputs=[libXft]; }; } # turn on Xft support default=no
- // edf { name = "xdbe"; }; # turn on Xdbe support default=no
-
- cfg = {
- largefileSupport = true; # is default
- glSupport = true; # doesn't build without it. Why?
- localjpegSupport = false;
- localzlibSupport = false;
- localpngSupport = false;
- sharedSupport = true;
- threadsSupport = true;
- } // cfg;
-
- meta = {
- description = "A C++ cross-platform light-weight GUI library binding";
- homepage = http://www.fltk.org;
- };
-
- patches = [
- ];
-}
diff --git a/pkgs/development/libraries/gd/default.nix b/pkgs/development/libraries/gd/default.nix
index bf3b63db399b..bb06893e712e 100644
--- a/pkgs/development/libraries/gd/default.nix
+++ b/pkgs/development/libraries/gd/default.nix
@@ -25,6 +25,10 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ zlib fontconfig freetype libjpeg libpng libtiff libXpm ];
+ outputs = [ "dev" "out" "bin" ];
+
+ postFixup = ''moveToOutput "bin/gdlib-config" $dev'';
+
meta = with stdenv.lib; {
homepage = https://libgd.github.io/;
description = "A dynamic image creation library";
diff --git a/pkgs/development/libraries/goocanvas/default.nix b/pkgs/development/libraries/goocanvas/default.nix
index 45442072d39b..77af66f9724d 100644
--- a/pkgs/development/libraries/goocanvas/default.nix
+++ b/pkgs/development/libraries/goocanvas/default.nix
@@ -1,11 +1,13 @@
{ stdenv, fetchurl, gtk, cairo, glib, pkgconfig }:
-stdenv.mkDerivation {
- name = "goocanvas-0.10";
+stdenv.mkDerivation rec {
+ majVersion = "1.0";
+ version = "${majVersion}.0";
+ name = "goocanvas-${version}";
src = fetchurl {
- url = mirror://sourceforge/goocanvas/goocanvas-0.10.tar.gz;
- sha256 = "0b49szbr3n7vpavly9w17ipa8q3ydicdcd177vxbdvbsnvg7aqp9";
+ url = "mirror://gnome/sources/goocanvas/${majVersion}/${name}.tar.bz2";
+ sha256 = "07kicpcacbqm3inp7zq32ldp95mxx4kfxpaazd0x5jk7hpw2w1qw";
};
buildInputs = [ gtk cairo glib pkgconfig ];
diff --git a/pkgs/development/libraries/hiredis/default.nix b/pkgs/development/libraries/hiredis/default.nix
index 86b1a2c72a52..7ff8ed61cab3 100644
--- a/pkgs/development/libraries/hiredis/default.nix
+++ b/pkgs/development/libraries/hiredis/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "hiredis-${version}";
- version = "0.13.1";
+ version = "0.13.3";
src = fetchFromGitHub {
owner = "redis";
repo = "hiredis";
rev = "v${version}";
- sha256 = "15rzq7n7z9h143smrnd34f9gh24swwal6r9z9xlxsl0jxabiv71l";
+ sha256 = "1qxiv61bsp6s847hhkxqj7vnbdlac089r2qdp3zgxhhckaflhb7r";
};
PREFIX = "\${out}";
diff --git a/pkgs/development/libraries/libmp3splt/default.nix b/pkgs/development/libraries/libmp3splt/default.nix
index 9074eb470b6e..08882291d1f7 100644
--- a/pkgs/development/libraries/libmp3splt/default.nix
+++ b/pkgs/development/libraries/libmp3splt/default.nix
@@ -1,20 +1,22 @@
{ stdenv, fetchurl, libtool, libmad, libid3tag }:
stdenv.mkDerivation rec {
- name = "libmp3splt-0.9.1";
+ name = "libmp3splt-0.9.2";
src = fetchurl {
- url = "http://prdownloads.sourceforge.net/mp3splt/${name}.tar.gz";
- sha256 = "17ar9d669cnirkz1kdrim687wzi36y8inapnj4svlsvr00vdzfxa";
+ url = "mirror://sourceforge/mp3splt/${name}.tar.gz";
+ sha256 = "1p1mn2hsmj5cp40fnc8g1yfvk72p8pjxi866gjdkgjsqrr7xdvih";
};
- buildInputs = [ libtool libmad libid3tag ];
+ outputs = [ "dev" "out" ];
+ nativeBuildInputs = [ libtool ];
+ buildInputs = [ libmad libid3tag ];
configureFlags = "--disable-pcre";
meta = with stdenv.lib; {
homepage = http://sourceforge.net/projects/mp3splt/;
- description = "utility to split mp3, ogg vorbis and FLAC files without decoding";
+ description = "Utility to split mp3, ogg vorbis and FLAC files without decoding";
maintainers = with maintainers; [ bosu ];
platforms = platforms.unix;
};
diff --git a/pkgs/development/libraries/libpsl/default.nix b/pkgs/development/libraries/libpsl/default.nix
index 8540eccf2da4..ea4db82c510d 100644
--- a/pkgs/development/libraries/libpsl/default.nix
+++ b/pkgs/development/libraries/libpsl/default.nix
@@ -3,10 +3,10 @@
let
- listVersion = "2016-05-10";
+ listVersion = "2016-05-23";
listSources = fetchFromGitHub {
- sha256 = "1bpdli2q5ap677yg0w0v7q5qmaxnm2y17wakzmc0k6k7m7xfyzw0";
- rev = "2226f9cc92213d0d68a74ecb535b15b3af00388a";
+ sha256 = "1sld9s9d9g3fnppyvvn5w0xw50g1gq43d7yyk9yb710268kh31jc";
+ rev = "05f7a0a82e2fea5afb8ba3736db3c294db270849";
repo = "list";
owner = "publicsuffix";
};
diff --git a/pkgs/development/libraries/libva/default.nix b/pkgs/development/libraries/libva/default.nix
index 9e22aa1d37cf..1d293f9ffcb8 100644
--- a/pkgs/development/libraries/libva/default.nix
+++ b/pkgs/development/libraries/libva/default.nix
@@ -4,11 +4,11 @@
}:
stdenv.mkDerivation rec {
- name = "libva-1.6.2";
+ name = "libva-1.7.0";
src = fetchurl {
url = "http://www.freedesktop.org/software/vaapi/releases/libva/${name}.tar.bz2";
- sha256 = "1l4bij21shqbfllbxicmqgmay4v509v9hpxyyia9wm7gvsfg05y4";
+ sha256 = "0py9igf4kicj7ji22bjawkpd6my013qpg0s4ir2np9l1rk5vr2d6";
};
outputs = [ "dev" "out" "bin" ];
@@ -31,5 +31,6 @@ stdenv.mkDerivation rec {
license = licenses.mit;
description = "VAAPI library: Video Acceleration API";
platforms = platforms.unix;
+ maintainers = with maintainers; [ garbas ];
};
}
diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix
index 16a4498f54ca..d409d20a7697 100644
--- a/pkgs/development/libraries/libvirt/default.nix
+++ b/pkgs/development/libraries/libvirt/default.nix
@@ -4,7 +4,7 @@
, iproute, iptables, readline, lvm2, utillinux, systemd, libpciaccess, gettext
, libtasn1, ebtables, libgcrypt, yajl, pmutils, libcap_ng
, dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl, perlPackages
-, curl, libiconv, gmp, xen
+, curl, libiconv, gmp, xen, zfs
}:
# if you update, also bump pythonPackages.libvirt or it will break
stdenv.mkDerivation rec {
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
libxslt xhtml1 perlPackages.XMLXPath curl libpcap
] ++ stdenv.lib.optionals stdenv.isLinux [
libpciaccess devicemapper lvm2 utillinux systemd.udev.lib libcap_ng
- libnl numad numactl xen
+ libnl numad numactl xen zfs
] ++ stdenv.lib.optionals stdenv.isDarwin [
libiconv gmp
];
@@ -52,6 +52,7 @@ stdenv.mkDerivation rec {
"--with-macvtap"
"--with-virtualport"
"--with-init-script=redhat"
+ "--with-storage-zfs"
] ++ stdenv.lib.optionals stdenv.isDarwin [
"--with-init-script=none"
];
diff --git a/pkgs/development/libraries/libwacom/default.nix b/pkgs/development/libraries/libwacom/default.nix
index 12bb7c785ac5..2356e5bddbd6 100644
--- a/pkgs/development/libraries/libwacom/default.nix
+++ b/pkgs/development/libraries/libwacom/default.nix
@@ -1,19 +1,20 @@
{ fetchurl, stdenv, glib, pkgconfig, udev, libgudev }:
stdenv.mkDerivation rec {
- name = "libwacom-0.15";
+ name = "libwacom-${version}";
+ version = "0.19";
src = fetchurl {
url = "mirror://sourceforge/linuxwacom/libwacom/${name}.tar.bz2";
- sha256 = "04vppdj99cc0ya44n8p7zjk9yyw03v6fksw0a9n1gpnnsn4wardb";
+ sha256 = "1zsmp2l53fbfy6jykh4c0i127baf503lq2fvd5y1066ihp6qh3b2";
};
- buildInputs = [ glib pkgconfig udev libgudev ];
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [ glib udev libgudev ];
meta = with stdenv.lib; {
platforms = platforms.linux;
homepage = http://sourceforge.net/projects/linuxwacom/;
description = "libraries, configuration, and diagnostic tools for Wacom tablets running under Linux";
};
-
}
diff --git a/pkgs/development/libraries/libwps/default.nix b/pkgs/development/libraries/libwps/default.nix
index 798284c3b89a..b165631e23eb 100644
--- a/pkgs/development/libraries/libwps/default.nix
+++ b/pkgs/development/libraries/libwps/default.nix
@@ -1,20 +1,19 @@
{ stdenv, fetchurl, boost, pkgconfig, librevenge, zlib }:
-let version = "0.4.2"; in
stdenv.mkDerivation rec {
name = "libwps-${version}";
+ version = "0.4.3";
src = fetchurl {
- url = "mirror://sourceforge/libwps/${name}.tar.gz";
- sha256 = "0c90i3zafxxsj989bd9bs577blx3mrb90rj52iv6ijc4qivi4wkr";
+ url = "mirror://sourceforge/libwps/${name}.tar.bz2";
+ sha256 = "0v1a0hj96i4jhb5833336s4zcslzb6md5cnmnrvgywx8cmw40c0c";
};
buildInputs = [ boost pkgconfig librevenge zlib ];
meta = with stdenv.lib; {
- inherit version;
homepage = http://libwps.sourceforge.net/;
- description = "Microsoft Works file word processor format import filter library";
+ description = "Microsoft Works document format import filter library";
platforms = platforms.linux;
license = licenses.lgpl21;
};
diff --git a/pkgs/development/libraries/openldap/CVE-2015-6908.patch b/pkgs/development/libraries/openldap/CVE-2015-6908.patch
deleted file mode 100644
index 5db36629475f..000000000000
--- a/pkgs/development/libraries/openldap/CVE-2015-6908.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 6fe51a9ab04fd28bbc171da3cf12f1c1040d6629 Mon Sep 17 00:00:00 2001
-From: Howard Chu
-Date: Thu, 10 Sep 2015 00:37:32 +0100
-Subject: [PATCH] ITS#8240 remove obsolete assert
-
----
- libraries/liblber/io.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/libraries/liblber/io.c b/libraries/liblber/io.c
-index 85c3e23..c05dcf8 100644
---- a/libraries/liblber/io.c
-+++ b/libraries/liblber/io.c
-@@ -679,7 +679,7 @@ done:
- return (ber->ber_tag);
- }
-
-- assert( 0 ); /* ber structure is messed up ?*/
-+ /* invalid input */
- return LBER_DEFAULT;
- }
-
---
-1.7.10.4
-
diff --git a/pkgs/development/libraries/openldap/default.nix b/pkgs/development/libraries/openldap/default.nix
index cc5a26a557d5..00b4139dc7cb 100644
--- a/pkgs/development/libraries/openldap/default.nix
+++ b/pkgs/development/libraries/openldap/default.nix
@@ -20,6 +20,8 @@ stdenv.mkDerivation rec {
++ stdenv.lib.optional (cyrus_sasl == null) "--without-cyrus-sasl"
++ stdenv.lib.optional stdenv.isFreeBSD "--with-pic";
+ dontPatchELF = 1; # !!!
+
# Fixup broken libtool
preFixup = ''
sed -e 's,-lsasl2,-L${cyrus_sasl.out}/lib -lsasl2,' \
diff --git a/pkgs/development/libraries/pcre2/default.nix b/pkgs/development/libraries/pcre2/default.nix
index 4f8d5cf1aaa8..447b8fe15ec0 100644
--- a/pkgs/development/libraries/pcre2/default.nix
+++ b/pkgs/development/libraries/pcre2/default.nix
@@ -1,10 +1,10 @@
{ stdenv, fetchurl }:
-stdenv.mkDerivation {
- name = "pcre2-10.20";
+stdenv.mkDerivation rec {
+ name = "pcre2-10.21";
src = fetchurl {
- url = "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre2-10.20.tar.bz2";
- sha256 = "0yj8mm9ll9zj3v47rvmmqmr1ybxk72rr2lym3rymdsf905qjhbik";
+ url = "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/${name}.tar.bz2";
+ sha256 = "1q6lrj9b08l1q39vxipb0fi88x6ybvkr6439h8bjb9r8jd81fsn6";
};
configureFlags = [
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
];
meta = {
- description = "Perl Compatible Regular Expressions";
+ description = "Perl Compatible Regular Expressions";
homepage = "http://www.pcre.org/";
license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.ttuegel ];
diff --git a/pkgs/development/libraries/science/math/cudnn/default.nix b/pkgs/development/libraries/science/math/cudnn/default.nix
new file mode 100644
index 000000000000..80975c8dc7b3
--- /dev/null
+++ b/pkgs/development/libraries/science/math/cudnn/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, requireFile }:
+
+stdenv.mkDerivation rec {
+ version = "4.0";
+
+ name = "cudnn-${version}";
+
+ src = requireFile rec {
+ name = "cudnn-7.0-linux-x64-v${version}-prod.tgz";
+ message = ''
+ This nix expression requires that ${name} is
+ already part of the store. Register yourself to NVIDIA Accelerated Computing Developer Program
+ and download cuDNN library at https://developer.nvidia.com/cudnn, and store it to the nix store with nix-store --add-fixed sha256 .
+ '';
+ sha256 = "0zgr6qdbc29qw6sikhrh6diwwz7150rqc8a49f2qf37j2rvyyr2f";
+
+ };
+
+ phases = "unpackPhase installPhase fixupPhase";
+
+ installPhase = ''
+ mkdir -p $out
+ cp -a include $out/include
+ cp -a lib64 $out/lib64
+ '';
+
+ # all binaries are already stripped
+ #dontStrip = true;
+
+ # we did this in prefixup already
+ #dontPatchELF = true;
+
+ meta = {
+ description = "NVIDIA CUDA Deep Neural Network library (cuDNN)";
+ homepage = "https://developer.nvidia.com/cudnn";
+ license = stdenv.lib.licenses.unfree;
+ };
+}
diff --git a/pkgs/development/libraries/science/math/magma/default.nix b/pkgs/development/libraries/science/math/magma/default.nix
new file mode 100644
index 000000000000..21805092c76c
--- /dev/null
+++ b/pkgs/development/libraries/science/math/magma/default.nix
@@ -0,0 +1,46 @@
+{ stdenv, fetchurl, cmake, gfortran, cudatoolkit, libpthreadstubs, liblapack }:
+
+with stdenv.lib;
+
+let version = "2.0.2";
+
+in stdenv.mkDerivation {
+ name = "magma-${version}";
+ src = fetchurl {
+ url = "http://icl.cs.utk.edu/projectsfiles/magma/downloads/magma-${version}.tar.gz";
+ sha256 = "0w3z6k1npfh0d3r8kpw873f1m7lny29sz2bvvfxzk596d4h083lk";
+ name = "magma-${version}.tar.gz";
+ };
+
+ buildInputs = [ gfortran cudatoolkit libpthreadstubs liblapack cmake ];
+
+ doCheck = false;
+ #checkTarget = "tests";
+
+ enableParallelBuilding=true;
+
+ # MAGMA's default CMake setup does not care about installation. So we copy files directly.
+ installPhase = ''
+ mkdir -p $out
+ mkdir -p $out/include
+ mkdir -p $out/lib
+ mkdir -p $out/lib/pkgconfig
+ cp -a ../include/*.h $out/include
+ #cp -a sparse-iter/include/*.h $out/include
+ cp -a lib/*.a $out/lib
+ cat ../lib/pkgconfig/magma.pc.in | \
+ sed -e s:@INSTALL_PREFIX@:"$out": | \
+ sed -e s:@CFLAGS@:"-I$out/include": | \
+ sed -e s:@LIBS@:"-L$out/lib -lmagma -lmagma_sparse": | \
+ sed -e s:@MAGMA_REQUIRED@:: \
+ > $out/lib/pkgconfig/magma.pc
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Matrix Algebra on GPU and Multicore Architectures";
+ license = licenses.bsd3;
+ homepage = "http://icl.cs.utk.edu/magma/index.html";
+ platforms = platforms.unix;
+ maintainers = with maintainers; [ ianwookim ];
+ };
+}
diff --git a/pkgs/development/libraries/vaapi-intel/default.nix b/pkgs/development/libraries/vaapi-intel/default.nix
index 6942107d146b..0bc3c196c460 100644
--- a/pkgs/development/libraries/vaapi-intel/default.nix
+++ b/pkgs/development/libraries/vaapi-intel/default.nix
@@ -3,11 +3,11 @@
}:
stdenv.mkDerivation rec {
- name = "libva-intel-driver-1.6.2";
+ name = "libva-intel-driver-1.7.0";
src = fetchurl {
url = "http://www.freedesktop.org/software/vaapi/releases/libva-intel-driver/${name}.tar.bz2";
- sha256 = "1zl51mdxfmnn33r4b0y5qxwlkqfw919aqphsq60d50pwrvdmk1xz";
+ sha256 = "032w8d0whymi5ac8fk7c5d8nnxxsjgwymw644g7gp959i73xc6cx";
};
patchPhase = ''
@@ -33,5 +33,6 @@ stdenv.mkDerivation rec {
license = licenses.mit;
description = "Intel driver for the VAAPI library";
platforms = platforms.unix;
+ maintainers = with maintainers; [ garbas ];
};
}
diff --git a/pkgs/development/libraries/wayland/protocols.nix b/pkgs/development/libraries/wayland/protocols.nix
index 0ae9d9d59c8a..57d3664447a6 100644
--- a/pkgs/development/libraries/wayland/protocols.nix
+++ b/pkgs/development/libraries/wayland/protocols.nix
@@ -4,11 +4,11 @@
stdenv.mkDerivation rec {
name = "wayland-protocols-${version}";
- version = "1.3";
+ version = "1.4";
src = fetchurl {
url = "http://wayland.freedesktop.org/releases/${name}.tar.xz";
- sha256 = "0byqvrsm6bkvylvzqy8wh5wpszwl5ra1z0yjqzqmw8przlrhdkbb";
+ sha256 = "0wpm7mz7ww6nn3vrgz7a9iyk7mk6za73wnq0n54lzl8yq8irljh1";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/development/ocaml-modules/lwt/default.nix b/pkgs/development/ocaml-modules/lwt/default.nix
index e8cdc180b729..6c0d772650cf 100644
--- a/pkgs/development/ocaml-modules/lwt/default.nix
+++ b/pkgs/development/ocaml-modules/lwt/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchzip, which, cryptopp, ocaml, findlib, ocaml_react, ocaml_ssl, libev, pkgconfig, ncurses, ocaml_oasis, ocaml_text, glib, camlp4, ppx_tools }:
let
- version = "2.5.0";
+ version = "2.5.2";
inherit (stdenv.lib) optional getVersion versionAtLeast;
ocaml_version = getVersion ocaml;
in
@@ -13,7 +13,7 @@ stdenv.mkDerivation {
src = fetchzip {
url = "https://github.com/ocsigen/lwt/archive/${version}.tar.gz";
- sha256 = "0jgg51aqbnia33l7bhgirnfpqybjwzpd85qzzd9znnc1a27gv8vr";
+ sha256 = "0gmhm282r8yi0gwcv0g2s7qchkfjmhqbqf4j9frlyv665ink9kxl";
};
buildInputs = [ ocaml_oasis pkgconfig which cryptopp ocaml findlib glib ncurses camlp4 ppx_tools ];
diff --git a/pkgs/development/ocaml-modules/ppx_tools/default.nix b/pkgs/development/ocaml-modules/ppx_tools/default.nix
index 1fea9bbd1911..c64e84869d62 100644
--- a/pkgs/development/ocaml-modules/ppx_tools/default.nix
+++ b/pkgs/development/ocaml-modules/ppx_tools/default.nix
@@ -1,10 +1,10 @@
{ stdenv, fetchzip, ocaml, findlib }:
stdenv.mkDerivation {
- name = "ocaml-ppx_tools-0.99.2";
+ name = "ocaml-ppx_tools-4.02.3";
src = fetchzip {
- url = https://github.com/alainfrisch/ppx_tools/archive/ppx_tools_0.99.2.tar.gz;
- sha256 = "1m09r2sjcb37i4dyhpbk9n2wxkcvpib6bvairsird91fm9w0vqw7";
+ url = https://github.com/alainfrisch/ppx_tools/archive/v4.02.3.tar.gz;
+ sha256 = "0varkd93hgrarwwkrjp2yy735q7jqzba75sskyanmvkb576wpcxv";
};
buildInputs = [ ocaml findlib ];
diff --git a/pkgs/development/tools/build-managers/gnumake/4.2/default.nix b/pkgs/development/tools/build-managers/gnumake/4.2/default.nix
new file mode 100644
index 000000000000..a3c8327655ee
--- /dev/null
+++ b/pkgs/development/tools/build-managers/gnumake/4.2/default.nix
@@ -0,0 +1,42 @@
+{ stdenv, fetchurl }:
+
+let
+ version = "4.2";
+in
+stdenv.mkDerivation {
+ name = "gnumake-${version}";
+
+ src = fetchurl {
+ url = "mirror://gnu/make/make-${version}.tar.bz2";
+ sha256 = "0pv5rvz5pp4njxiz3syf786d2xp4j7gzddwjvgw5zmz55yvf6p2f";
+ };
+
+ patchFlags = "-p0";
+ patches = [
+ # Purity: don't look for library dependencies (of the form `-lfoo') in /lib
+ # and /usr/lib. It's a stupid feature anyway. Likewise, when searching for
+ # included Makefiles, don't look in /usr/include and friends.
+ ./impure-dirs.patch
+ ];
+
+ outputs = [ "out" "doc" ];
+
+ meta = {
+ homepage = http://www.gnu.org/software/make/;
+ description = "A tool to control the generation of non-source files from sources";
+ license = stdenv.lib.licenses.gpl3Plus;
+
+ longDescription = ''
+ Make is a tool which controls the generation of executables and
+ other non-source files of a program from the program's source files.
+
+ Make gets its knowledge of how to build your program from a file
+ called the makefile, which lists each of the non-source files and
+ how to compute it from other files. When you write a program, you
+ should write a makefile for it, so that it is possible to use Make
+ to build and install the program.
+ '';
+
+ platforms = stdenv.lib.platforms.all;
+ };
+}
diff --git a/pkgs/development/tools/build-managers/gnumake/4.2/impure-dirs.patch b/pkgs/development/tools/build-managers/gnumake/4.2/impure-dirs.patch
new file mode 100644
index 000000000000..f6646f1d0126
--- /dev/null
+++ b/pkgs/development/tools/build-managers/gnumake/4.2/impure-dirs.patch
@@ -0,0 +1,34 @@
+diff -rc read.c read.c
+*** read.c 2006-03-17 15:24:20.000000000 +0100
+--- read.c 2007-05-24 17:16:31.000000000 +0200
+***************
+*** 99,107 ****
+--- 99,109 ----
+ #endif
+ INCLUDEDIR,
+ #ifndef _AMIGA
++ #if 0
+ "/usr/gnu/include",
+ "/usr/local/include",
+ "/usr/include",
++ #endif
+ #endif
+ 0
+ };
+diff -rc reremake.c
+*** remake.c 2006-03-20 03:36:37.000000000 +0100
+--- remake.c 2007-05-24 17:06:54.000000000 +0200
+***************
+*** 1452,1460 ****
+--- 1452,1462 ----
+ static char *dirs[] =
+ {
+ #ifndef _AMIGA
++ #if 0
+ "/lib",
+ "/usr/lib",
+ #endif
++ #endif
+ #if defined(WINDOWS32) && !defined(LIBDIR)
+ /*
+ * This is completely up to the user at product install time. Just define
diff --git a/pkgs/development/tools/build-managers/meson/default.nix b/pkgs/development/tools/build-managers/meson/default.nix
index 4a79000389f3..35d18a858674 100644
--- a/pkgs/development/tools/build-managers/meson/default.nix
+++ b/pkgs/development/tools/build-managers/meson/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
buildInputs = [ ninja python3 ];
installPhase = ''
- ./install_meson.py --prefix=$out --destdir="$pkgdir/"
+ python3 ./install_meson.py --prefix=$out --destdir="$pkgdir/"
'';
meta = {
@@ -19,5 +19,6 @@ stdenv.mkDerivation rec {
description = "SCons-like build system that use python as a front-end language and Ninja as a building backend";
license = stdenv.lib.licenses.asl20;
maintainers = [ stdenv.lib.maintainers.mbe ];
+ platforms = stdenv.lib.platforms.all;
};
}
diff --git a/pkgs/development/tools/build-managers/ninja/default.nix b/pkgs/development/tools/build-managers/ninja/default.nix
index c1ef980e82d3..cadda36a0e60 100644
--- a/pkgs/development/tools/build-managers/ninja/default.nix
+++ b/pkgs/development/tools/build-managers/ninja/default.nix
@@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
name = "ninja-${version}";
- version = "1.6.0";
+ version = "1.7.1";
src = fetchurl {
name = "${name}.tar.gz";
- url = "https://github.com/martine/ninja/archive/v${version}.tar.gz";
- sha256 = "1ryd1686bd31gfdjxnqm6k1ybnjmjz8v97px7lmdkr4g0vxqhgml";
+ url = "https://github.com/ninja-build/ninja/archive/v${version}.tar.gz";
+ sha256 = "06dy2dc1aafm61ynw9gzig88la3km9dsh53bxf4mnw7l7kjisn2i";
};
buildInputs = [ python asciidoc re2c ];
diff --git a/pkgs/development/tools/build-managers/redo/default.nix b/pkgs/development/tools/build-managers/redo/default.nix
new file mode 100644
index 000000000000..5a502a1fb79f
--- /dev/null
+++ b/pkgs/development/tools/build-managers/redo/default.nix
@@ -0,0 +1,28 @@
+{stdenv, fetchurl, perl }:
+
+stdenv.mkDerivation rec {
+ name = "redo-1.2";
+ src = fetchurl {
+ url = "http://homepage.ntlworld.com/jonathan.deboynepollard/Softwares/${name}.tar.bz2";
+ sha256 = "0hfbiljmgl821a0sf7abrfx29f22ahrgs86mrlrm8m95s7387kpp";
+ };
+
+ nativeBuildInputs = [ perl /* for pod2man */ ];
+
+ sourceRoot = ".";
+
+ buildPhase = ''
+ ./package/compile
+ '';
+ installPhase = ''
+ ./package/export $out/
+ '';
+
+ meta = {
+ homepage = http://homepage.ntlworld.com/jonathan.deboynepollard/Softwares/redo.html;
+ description = "A system for building target files from source files";
+ license = stdenv.lib.licenses.bsd2;
+ maintainers = [ stdenv.lib.maintainers.vrthra ];
+ platforms = stdenv.lib.platforms.unix;
+ };
+}
diff --git a/pkgs/development/tools/heroku/default.nix b/pkgs/development/tools/heroku/default.nix
index d3e115708cc2..1a23f1ba2331 100644
--- a/pkgs/development/tools/heroku/default.nix
+++ b/pkgs/development/tools/heroku/default.nix
@@ -1,8 +1,8 @@
-{ stdenv, fetchurl, postgresql, ruby, makeWrapper, nodejs-5_x }:
+{ stdenv, fetchurl, postgresql, ruby, makeWrapper, nodejs-6_x }:
with stdenv.lib;
stdenv.mkDerivation rec {
- version = "3.42.20";
+ version = "3.43.2";
name = "heroku-${version}";
meta = {
@@ -14,13 +14,13 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "https://s3.amazonaws.com/assets.heroku.com/heroku-client/heroku-client-${version}.tgz";
- sha256 = "1d472vm37lx5nyyaymjglavisb1mkyzbjglzjp5im7wjfifvsd29";
+ sha256 = "1sapbxg7pzi89c95k0vsp8k5bysggkjf58jwck2xs0y4ly36wbnc";
};
installPhase = ''
mkdir -p $out
cp -R * $out/
- wrapProgram $out/bin/heroku --set HEROKU_NODE_PATH ${nodejs-5_x}/bin/node
+ wrapProgram $out/bin/heroku --set HEROKU_NODE_PATH ${nodejs-6_x}/bin/node
'';
buildInputs = [ ruby postgresql makeWrapper ];
diff --git a/pkgs/development/tools/parse-cli-bin/default.nix b/pkgs/development/tools/parse-cli-bin/default.nix
index 33a6a7ebceff..9424196cf466 100644
--- a/pkgs/development/tools/parse-cli-bin/default.nix
+++ b/pkgs/development/tools/parse-cli-bin/default.nix
@@ -1,15 +1,12 @@
{ stdenv, fetchurl }:
-let
- version = "3.0.1";
-
-in stdenv.mkDerivation rec {
-
+stdenv.mkDerivation rec {
name = "parse-cli-bin-${version}";
+ version = "3.0.5";
src = fetchurl {
- url = "https://github.com/ParsePlatform/parse-cli/releases/download/release_${version}/parse_linux";
- sha256 = "d68eccc1d9408b60901b149d2b4710f3cfd0eabe5772d2e222c06870fdeca3c7";
+ url = "https://github.com/ParsePlatform/parse-cli/releases/download/release_${version}/parse_linux";
+ sha256 = "1iyfizbbxmr87wjgqiwqds51irgw6l3vm9wn89pc3zpj2zkyvf5h";
};
meta = with stdenv.lib; {
@@ -25,5 +22,4 @@ in stdenv.mkDerivation rec {
cp "$src" "$out/bin/parse"
chmod +x "$out/bin/parse"
'';
-
-}
+}
\ No newline at end of file
diff --git a/pkgs/development/tools/wp-cli/default.nix b/pkgs/development/tools/wp-cli/default.nix
new file mode 100644
index 000000000000..418e23eb0e71
--- /dev/null
+++ b/pkgs/development/tools/wp-cli/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, lib, writeText, bash, fetchurl, php }:
+
+let
+ phpIni = writeText "wp-cli-php.ini" ''
+ [Phar]
+ phar.readonly = Off
+ '';
+
+in stdenv.mkDerivation rec {
+ version = "0.23.1";
+ name = "wp-cli-${version}";
+
+ src = fetchurl {
+ url = "https://github.com/wp-cli/wp-cli/releases/download/v${version}/${name}.phar";
+ sha256 = "1sjai8gjsx6j82lsxq9m827bczp4ajnldk6ibj4krcisn9pjva5f";
+ };
+
+ propagatedBuildInputs = [ php ];
+
+ buildCommand = ''
+ mkdir -p $out/bin
+
+ cat >$out/bin/wp <$out/bin/space-orbit <$out/bin/space-orbit < $out/share/applications/steam.desktop
- '';
+ extraBuildCommands = ''
+ mkdir -p steamrt
+ ln -s ../lib/steam-runtime steamrt/${steam-runtime.arch}
+ ${lib.optionalString (steam-runtime-i686 != null) ''
+ ln -s ../lib32/steam-runtime steamrt/${steam-runtime-i686.arch}
+ ''}
+ '';
- profile = ''
- export STEAM_RUNTIME=/steamrt
- '';
+ extraInstallCommands = ''
+ mkdir -p $out/share/applications
+ ln -s ${steam}/share/icons $out/share
+ ln -s ${steam}/share/pixmaps $out/share
+ sed "s,/usr/bin/steam,$out/bin/steam,g" ${steam}/share/applications/steam.desktop > $out/share/applications/steam.desktop
+ '';
- runScript = "steam";
+ profile = ''
+ export STEAM_RUNTIME=/steamrt
+ '';
- passthru.run = buildFHSUserEnv (self // {
- name = "steam-run";
+ runScript = "steam";
- runScript =
- let ldPath = map (x: "/steamrt/${steam-runtime.arch}/" + x) steam-runtime.libs
- ++ lib.optionals (steam-runtime-i686 != null) (map (x: "/steamrt/${steam-runtime-i686.arch}/" + x) steam-runtime-i686.libs);
- in writeScript "steam-run" ''
- #!${stdenv.shell}
- run="$1"
- if [ "$run" = "" ]; then
- echo "Usage: steam-run command-to-run args..." >&2
- exit 1
- fi
- shift
- export LD_LIBRARY_PATH=${lib.concatStringsSep ":" ldPath}:$LD_LIBRARY_PATH
- exec "$run" "$@"
- '';
+ passthru.run = buildFHSUserEnv {
+ name = "steam-run";
- passthru = {};
- });
+ targetPkgs = commonTargetPkgs;
+ inherit multiPkgs extraBuildCommands;
+
+ runScript =
+ let ldPath = map (x: "/steamrt/${steam-runtime.arch}/" + x) steam-runtime.libs
+ ++ lib.optionals (steam-runtime-i686 != null) (map (x: "/steamrt/${steam-runtime-i686.arch}/" + x) steam-runtime-i686.libs);
+ in writeScript "steam-run" ''
+ #!${stdenv.shell}
+ run="$1"
+ if [ "$run" = "" ]; then
+ echo "Usage: steam-run command-to-run args..." >&2
+ exit 1
+ fi
+ shift
+ export LD_LIBRARY_PATH=${lib.concatStringsSep ":" ldPath}:$LD_LIBRARY_PATH
+ exec "$run" "$@"
+ '';
};
-
-in buildFHSUserEnv self
+}
diff --git a/pkgs/misc/emulators/mednaffe/default.nix b/pkgs/misc/emulators/mednaffe/default.nix
index 7777e73d3375..21e75a72d61c 100644
--- a/pkgs/misc/emulators/mednaffe/default.nix
+++ b/pkgs/misc/emulators/mednaffe/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
};
prePatch = ''
- substituteInPlace src/mednaffe.c --replace "binpath = NULL" "binpath = \"${mednafen}/bin/mednafen\""
+ substituteInPlace src/mednaffe.c --replace "binpath = NULL" "binpath = g_strdup( \"${mednafen}/bin/mednafen\" )"
'';
buildInputs = [ pkgconfig gtk2 mednafen ];
diff --git a/pkgs/misc/screensavers/xscreensaver/default.nix b/pkgs/misc/screensavers/xscreensaver/default.nix
index ed218abd4207..6942d642fb1b 100644
--- a/pkgs/misc/screensavers/xscreensaver/default.nix
+++ b/pkgs/misc/screensavers/xscreensaver/default.nix
@@ -4,12 +4,12 @@
}:
stdenv.mkDerivation rec {
- version = "5.34";
+ version = "5.35";
name = "xscreensaver-${version}";
src = fetchurl {
url = "http://www.jwz.org/xscreensaver/${name}.tar.gz";
- sha256 = "09sy5v8bn62hiq4ib3jyvp8lipqcvn3rdsj74q25qgklpv27xzvg";
+ sha256 = "08kbb0ry7ih436ab4i5g6lnhaaz13zkcdmbdibrn4j5gm5qq8v0y";
};
buildInputs =
diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix
index 82a8e9162b2a..f2fdbd292b48 100644
--- a/pkgs/misc/vim-plugins/default.nix
+++ b/pkgs/misc/vim-plugins/default.nix
@@ -173,11 +173,11 @@ rec {
};
Syntastic = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "Syntastic-2016-05-12";
+ name = "Syntastic-2016-05-23";
src = fetchgit {
url = "git://github.com/scrooloose/syntastic";
- rev = "c2c6a075113adbfcc4f1ad5b1c0200a0d35ceeb6";
- sha256 = "1fkjq43rlacdpb5h6qvhpc4dpm0lrfzpa5kjv8m0irk4i635mzwg";
+ rev = "95879f19a9f8a72282717e07d0d4e006d8561580";
+ sha256 = "19wr3bll9n7y3rh26r4aklk682jqxrh5j8c9wkpg6m9v60yqj053";
};
dependencies = [];
@@ -206,11 +206,11 @@ rec {
};
The_NERD_Commenter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "The_NERD_Commenter-2015-10-29";
+ name = "The_NERD_Commenter-2016-05-24";
src = fetchgit {
url = "git://github.com/scrooloose/nerdcommenter";
- rev = "1f4bfd59920c101a30a74a07b824608a6e65f3fe";
- sha256 = "1xy7bzngz41vkpf5zvk07a5kypxqmw9g1a89ji8q5sbc4pka0y8j";
+ rev = "2b3714bff67ca57cb9e416bd737a24f71181859b";
+ sha256 = "1va0d4vxk53lgy2cs1hgxcha6fsc6c2y6m7jwmzfpj2gdha2v52y";
};
dependencies = [];
@@ -267,14 +267,13 @@ rec {
name = "yankring_190.zip";
sha256 = "0nnxpsfjp2p9jvs3y5ynnd5s56snz9927zdp9bgmay2jgxfmp0si";
};
- sourceRoot = ".";
buildInputs = [ unzip ];
dependencies = [];
meta = {
url = "http://www.vim.org/scripts/script.php?script_id=1234";
};
-
+ sourceRoot = ".";
};
commentary = buildVimPluginFrom2Nix { # created by nix#NixDerivation
@@ -344,11 +343,11 @@ rec {
};
vim-autoformat = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-autoformat-2016-05-13";
+ name = "vim-autoformat-2016-05-23";
src = fetchgit {
url = "git://github.com/Chiel92/vim-autoformat";
- rev = "aaf19a31a9fcc53c5158710b69f17fe5ce137698";
- sha256 = "0bvnxmvvmzdwl0qnclc457k6ccwxx9jjfbxzjvnr6ml8l4pdh8ff";
+ rev = "0dcc7b318939dab7c34c4aa31ce93678800034c6";
+ sha256 = "1ahrpjnkyqslmiii8c81mayl299imd1jmgjplh0g575bipy4f7sa";
};
dependencies = [];
@@ -366,22 +365,22 @@ rec {
};
deoplete-nvim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "deoplete-nvim-2016-05-17";
+ name = "deoplete-nvim-2016-05-24";
src = fetchgit {
url = "git://github.com/Shougo/deoplete.nvim";
- rev = "0d69b3c2783bf5712b7d7dbdd35a2fc7617ff255";
- sha256 = "0yvlrqxhl75aq4zfdiw2j3qfcvqf057371lw90ahl64hx7srmx0h";
+ rev = "b254ca56f768b72b3ba136ccd81abd919523036a";
+ sha256 = "1dg5ids354f5c9ixfy9b6526yhr9w9968g0rghm0w8mlvgbx6bj8";
};
dependencies = [];
};
Spacegray-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "Spacegray-vim-2016-04-24";
+ name = "Spacegray-vim-2016-05-21";
src = fetchgit {
url = "git://github.com/ajh17/Spacegray.vim";
- rev = "ed44e2a6b0a7cb48ccd1a41c45ab8399e12910ba";
- sha256 = "0m3xm2p1d4ywp20cziz1iiihq4y0ca88hjs4gr48ps0n7h5qf477";
+ rev = "82551620059b055d7ed866cf7af3e8b6f1b891a4";
+ sha256 = "0xprszpva3via83zbs3x74jbc9zfrnxryilqvgpnrircgxm9cbx7";
};
dependencies = [];
@@ -410,11 +409,11 @@ rec {
};
neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "neomake-2016-05-16";
+ name = "neomake-2016-05-22";
src = fetchgit {
url = "git://github.com/benekastah/neomake";
- rev = "1b37b694b54d86795262e47eddd4995590fea0af";
- sha256 = "1i01i5hdgy0zhnjya1xvp8qv6x5hf7m1w8rkrxnvm15cdgb4qa3j";
+ rev = "b33d77d4b0543e9444ca5e79daa5109bbab4a31c";
+ sha256 = "00r7fpsd4cc3f69jar7v39ffj0xndlvgbkmlmhlcfgk1h1bzic5h";
};
dependencies = [];
@@ -443,11 +442,11 @@ rec {
};
spacevim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "spacevim-2016-05-18";
+ name = "spacevim-2016-05-23";
src = fetchgit {
url = "git://github.com/ctjhoa/spacevim";
- rev = "e9c299059967610e096bf7436b4cef0df7cad90b";
- sha256 = "00havlzm5ggxfimjh1ixjsn40jqgc5a8h6bl65b7x7ffalyfp7f1";
+ rev = "c6d1cae4a72c957279707256f6c91a390f83aa9c";
+ sha256 = "1ipm8csk6a7wcpqi1c9nmhb3jfm7ikfrw207yp1b9vklsznnqm53";
};
dependencies = [];
@@ -509,11 +508,11 @@ rec {
};
vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-go-2016-05-19";
+ name = "vim-go-2016-05-23";
src = fetchgit {
url = "git://github.com/fatih/vim-go";
- rev = "d54819ddc1fe6f7a71071f17108dae080aacdd08";
- sha256 = "1rj3cd2f6mkpl1cv9zb8ihw2fbjp59qjfvnqy3xf969n73lgv0dv";
+ rev = "e9f44d933e38bf3193ac5cce15f08fdc7e54814b";
+ sha256 = "18hxnb6rn6gxixcqqwpqi4q9adz23jgrz8as2rl90y77m8f5inr5";
};
dependencies = [];
@@ -696,11 +695,11 @@ rec {
};
fzf-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "fzf-vim-2016-05-18";
+ name = "fzf-vim-2016-05-24";
src = fetchgit {
url = "git://github.com/junegunn/fzf.vim";
- rev = "ecb3131d3fc236c29bb2643dc3ebd89bcf8743f1";
- sha256 = "0wl993vkccy3y03i2jz04ggdkbzlnkkgbba2gmxfyfdn3692c7y5";
+ rev = "c786d516375c5fe404febec39282fc1d63069a37";
+ sha256 = "0dk5bs4f2lfs96npgid5ayapsqf9xhf9ii0gaa0rq4dz93i76hzg";
};
dependencies = [];
@@ -751,22 +750,22 @@ rec {
};
vim-jinja = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-jinja-2014-06-11";
+ name = "vim-jinja-2016-05-20";
src = fetchgit {
url = "git://github.com/lepture/vim-jinja";
- rev = "4412484b410b15caecd71f2e52758b2a90ea124d";
- sha256 = "1z5ya953nn7233jjjs0ay61x5hfrfddx9xz31grq52cfd0ipy335";
+ rev = "0bcc2993ef13bacd4bf1a0d91eb17652f7aedb86";
+ sha256 = "1wypg9rf7q65g6l3ajp75gdb4cd7spckzd4b7ccg8c47vd937dcj";
};
dependencies = [];
};
vimtex = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vimtex-2016-05-15";
+ name = "vimtex-2016-05-23";
src = fetchgit {
url = "git://github.com/lervag/vimtex";
- rev = "57df1d1686ab339eec93ac51b02993c8c54343c5";
- sha256 = "08mnd84w4hh4vz5wpx5yxyyfwjzf2cwcqcq4ma6m8h6xr9h4miiz";
+ rev = "257d2f91de35716d09f08fbbcb384cdc20ac7659";
+ sha256 = "1cq7dvv4hsrm8khhlj1411rp9q5f0xp7q1m61khdr1icgjfasaxp";
};
dependencies = [];
@@ -876,11 +875,11 @@ rec {
};
vim-racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-racer-2016-05-17";
+ name = "vim-racer-2016-05-24";
src = fetchgit {
url = "git://github.com/racer-rust/vim-racer";
- rev = "216075acfb1b369199244fec83b5f49a96ae2bda";
- sha256 = "1r1ypiw931rpk5i37s7qg9nlly994x5qkamc7rqv6fsmnbjhazm1";
+ rev = "031a4e4131450758ade9073025cf4f75e8c2d85c";
+ sha256 = "1hq67hi8069h4yp8l6nb0afnkgidrk4c3hagp6saiihlh3541m11";
};
dependencies = [];
@@ -931,11 +930,11 @@ rec {
};
unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "unite-vim-2016-05-17";
+ name = "unite-vim-2016-05-22";
src = fetchgit {
url = "git://github.com/shougo/unite.vim";
- rev = "503e03fdf1485e8f54cbe76d09bf608fcde29107";
- sha256 = "028mp6lcrfc4p9wixcai0iyfj7n82d1rnq1lz38xcf7a5djr9fpm";
+ rev = "5fd81feec7ff3f94173ecb10e3dee98aaef26e5d";
+ sha256 = "0lnmys9g99m7fzcxgc9xl2n7am14wyvqmffaqhdlpqjj3lv2l4dz";
};
dependencies = [];
@@ -1121,11 +1120,11 @@ rec {
};
vim-pandoc = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-pandoc-2016-05-03";
+ name = "vim-pandoc-2016-05-24";
src = fetchgit {
url = "git://github.com/vim-pandoc/vim-pandoc";
- rev = "b32791d3cfc999344a9acf22738b41e8ab21aec7";
- sha256 = "1rmwj2a4570b5s1hy1grnfm0hyn919w07z7a2phv7bir0x1xw76c";
+ rev = "cca2326046fd9bf44276e6d44f106c90d80eca25";
+ sha256 = "106dxdll11sj5vi34a0nq5kmfbp13g80ix26m6k9snxjx2y79y3s";
};
dependencies = [];
@@ -1231,22 +1230,22 @@ rec {
};
vim-wakatime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-wakatime-2016-05-16";
+ name = "vim-wakatime-2016-05-21";
src = fetchgit {
url = "git://github.com/wakatime/vim-wakatime";
- rev = "082a711995d6af11a1b4c35a1f122d2fcfa23bc1";
- sha256 = "1xy0wwr8pilrba1bhgbkwvd18fjvxl9g9v4xsf72lh3n6fr05ydq";
+ rev = "d46c3e96d5e489d45c2910898212f58c646518c9";
+ sha256 = "1qpsasiqin9wlavivfd9925pzsfh04hhdww92iah66a2vvaxjnhw";
};
dependencies = [];
buildInputs = [ python ];
};
command-t = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "command-t-2016-05-16";
+ name = "command-t-2016-05-21";
src = fetchgit {
url = "git://github.com/wincent/command-t";
- rev = "99d06fa02753be74cc44f487c255d9326eca8c9a";
- sha256 = "14yqy841qfvmz42bhyrbcs1sc0bxmzrz33xz4iphpkhvg7ilsmd2";
+ rev = "39b75707640493795afb4fb90b2d74cade84cee8";
+ sha256 = "1n46dq4fsqq7nsl7nivl3xk23k54sarflrr6b30v1vvg22mw64yq";
};
dependencies = [];
buildInputs = [ perl ruby ];
@@ -1643,11 +1642,11 @@ rec {
};
vim-airline = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-airline-2016-05-15";
+ name = "vim-airline-2016-05-22";
src = fetchgit {
url = "git://github.com/vim-airline/vim-airline";
- rev = "70c16f4c46f11395bbbc30b2f0a6822669e7df87";
- sha256 = "0sa3my8jhslcrk81lfk8f32wnq1akxazxpxhjmiwmpws74kbibql";
+ rev = "4d39cb6f2078326dd07f2ab680a0365299a2589e";
+ sha256 = "0jwk1ly9sbj3warq92haw3alq7q639375c9bl28j3rzg7x008blz";
};
dependencies = [];
@@ -1687,11 +1686,11 @@ rec {
};
vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-gitgutter-2016-05-18";
+ name = "vim-gitgutter-2016-05-23";
src = fetchgit {
url = "git://github.com/airblade/vim-gitgutter";
- rev = "90c558b1dc4ebd23e638f27f04b08405d80c8084";
- sha256 = "1svjybh2rldr3ay07fp6zdcwyqnk78z5r46bqzwvcv4g2wnk075x";
+ rev = "f8da1fd6dbd558ebcc743bd7f91d35d6ca8db56a";
+ sha256 = "0rbvkd8pc2wpfavbkb088rp6fmsww1m29zphcw8r8x1vwk2bz1p2";
};
dependencies = [];
@@ -1753,11 +1752,11 @@ rec {
};
vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-snippets-2016-05-17";
+ name = "vim-snippets-2016-05-24";
src = fetchgit {
url = "git://github.com/honza/vim-snippets";
- rev = "f6d0b68e477c1562c8086a2c503b8742608351b3";
- sha256 = "11g2bmi2p0fyd7091zkc990nxa2npf2azfbw3a9m6h5bnklxvi3a";
+ rev = "477ede1985a92f3ae1a5ff806a7507823abcc203";
+ sha256 = "1ncs7bk2pqz4dy3h206s0c9f14h5kgfanipbiiis24z2zvq9mw18";
};
dependencies = [];
diff --git a/pkgs/os-specific/linux/cifs-utils/default.nix b/pkgs/os-specific/linux/cifs-utils/default.nix
index 46a927209a23..6dcf8e11a3e1 100644
--- a/pkgs/os-specific/linux/cifs-utils/default.nix
+++ b/pkgs/os-specific/linux/cifs-utils/default.nix
@@ -1,11 +1,12 @@
{ stdenv, fetchurl, kerberos, keyutils, pam }:
stdenv.mkDerivation rec {
- name = "cifs-utils-6.4";
+ name = "cifs-utils-${version}";
+ version = "6.5";
src = fetchurl {
url = "mirror://samba/pub/linux-cifs/cifs-utils/${name}.tar.bz2";
- sha256 = "1qz6d2xg4z1if0hy7qwyzgcr59l0alkhci6gxgjdldglda967z1q";
+ sha256 = "1xs9rwqfpx8qj5mcmagw6y1hzwc71zhzb5r8hv06sz16p1w6axz2";
};
buildInputs = [ kerberos keyutils pam ];
@@ -17,5 +18,6 @@ stdenv.mkDerivation rec {
description = "Tools for managing Linux CIFS client filesystems";
platforms = platforms.linux;
license = licenses.lgpl3;
+ maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/os-specific/linux/lxc/default.nix b/pkgs/os-specific/linux/lxc/default.nix
index 275f325b84ab..82ea72af1605 100644
--- a/pkgs/os-specific/linux/lxc/default.nix
+++ b/pkgs/os-specific/linux/lxc/default.nix
@@ -12,11 +12,11 @@ in
with stdenv.lib;
stdenv.mkDerivation rec {
name = "lxc-${version}";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchurl {
url = "https://linuxcontainers.org/downloads/lxc/lxc-${version}.tar.gz";
- sha256 = "1r0hgk91n3frrmla1681l74ag5sngbbkdagvjfqzxwcf9l8pwwsv";
+ sha256 = "0l4fs6ckvip5akfa0vbjfk34ddvcv0c84mmpj9yrcfl67qwn31z9";
};
nativeBuildInputs = [
diff --git a/pkgs/os-specific/linux/paxtest/default.nix b/pkgs/os-specific/linux/paxtest/default.nix
index 7c8e5eb70a15..0c2fd9b6f86c 100644
--- a/pkgs/os-specific/linux/paxtest/default.nix
+++ b/pkgs/os-specific/linux/paxtest/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl }:
+{ stdenv, fetchurl, paxctl }:
stdenv.mkDerivation rec {
name = "paxtest-${version}";
@@ -9,20 +9,16 @@ stdenv.mkDerivation rec {
sha256 = "0j40h3x42k5mr5gc5np4wvr9cdf9szk2f46swf42zny8rlgxiskx";
};
- buildPhase = ''
- make $makeFlags RUNDIR=$out/bin/ linux
- '';
+ enableParallelBuilding = true;
- installPhase = ''
- mkdir -p $out/bin
- find . -executable -exec cp {} $out/bin \;
- '';
+ makefile = "Makefile.psm";
+ makeFlags = [ "PAXBIN=${paxctl}/bin/paxctl" "BINDIR=$(out)/bin" "RUNDIR=$(out)/lib/paxtest" ];
+ installFlags = ''DESTDIR=""'';
meta = with stdenv.lib; {
description = "Test various memory protection measures";
license = licenses.gpl2;
platforms = platforms.linux;
- maintainer = [ maintainers.copumpkin ];
+ maintainer = with maintainers; [ copumpkin joachifm ];
};
}
-
diff --git a/pkgs/os-specific/linux/spl/default.nix b/pkgs/os-specific/linux/spl/default.nix
index 2db3a397aebe..91fce8f2aa2c 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.6";
+ version = "0.6.5.7";
src = fetchFromGitHub {
owner = "zfsonlinux";
repo = "spl";
rev = "spl-${version}";
- sha256 = "08lbfwsd368sk7dgydabzkyyn2l2n82ifcqakra3xknwgg1ka9bn";
+ sha256 = "0i9ak4wqn444i6362xq5xl0msvcck8qqypp0fynrxq8mddzypwps";
};
patches = [ ./const.patch ./install_prefix.patch ];
diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix
index 15ec3202e6b7..f5dc3145b68b 100644
--- a/pkgs/os-specific/linux/systemd/default.nix
+++ b/pkgs/os-specific/linux/systemd/default.nix
@@ -10,14 +10,14 @@
assert stdenv.isLinux;
stdenv.mkDerivation rec {
- version = "229";
+ version = "230";
name = "systemd-${version}";
src = fetchFromGitHub {
owner = "NixOS";
repo = "systemd";
- rev = "4936f6e6c05162516a685ebd227b55816cf2b670";
- sha256 = "1q0pyrljmq73qcan9rfqsiw66l1g159m5in5qgb8zwlwhl928670";
+ rev = "4ccee551f2ba8383c8b9bd06590a3cd1dfdf690f";
+ sha256 = "1i4my5z7f8g5bykv1vxyw1az66s087lfqrck79kdm4hgvb4lsk6y";
};
patches = [ ./hwdb-location.diff ];
diff --git a/pkgs/os-specific/linux/tp_smapi/default.nix b/pkgs/os-specific/linux/tp_smapi/default.nix
index 40d9e7c10682..38f2c8545db8 100644
--- a/pkgs/os-specific/linux/tp_smapi/default.nix
+++ b/pkgs/os-specific/linux/tp_smapi/default.nix
@@ -1,11 +1,12 @@
{stdenv, fetchurl, kernel}:
-stdenv.mkDerivation {
- name = "tp_smapi-0.41-${kernel.version}";
+stdenv.mkDerivation rec {
+ version = "0.42";
+ name = "tp_smapi-${version}-${kernel.version}";
src = fetchurl {
- url = "https://github.com/downloads/evgeni/tp_smapi/tp_smapi-0.41.tar.gz";
- sha256 = "6aef02b92d10360ac9be0db29ae390636be55017990063a092a285c70b54e666";
+ url = "https://github.com/evgeni/tp_smapi/releases/download/tp-smapi%2F0.42/tp_smapi-${version}.tgz";
+ sha256 = "09rdg7fm423x6sbbw3lvnvmk4nyc33az8ar93xgq0n9qii49z3bv";
};
makeFlags = [
diff --git a/pkgs/os-specific/linux/zfs/default.nix b/pkgs/os-specific/linux/zfs/default.nix
index 9fc28996a834..3ae41bc00b8e 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.6";
+ version = "0.6.5.7";
src = fetchFromGitHub {
owner = "zfsonlinux";
repo = "zfs";
rev = "zfs-${version}";
- sha256 = "0lsb93y5zbwc8fafxzm9vyfpr6fmvl8h86ny4llbd2xy2hnfwk2i";
+ sha256 = "17mshxyp8k7i9a7ys0rznhkz83f6650pby9ka48d6gzgcwv9nnsm";
};
patches = [ ./nix-build.patch ];
diff --git a/pkgs/servers/emby/default.nix b/pkgs/servers/emby/default.nix
index 2f416fabe493..851310b4ea3a 100644
--- a/pkgs/servers/emby/default.nix
+++ b/pkgs/servers/emby/default.nix
@@ -1,28 +1,28 @@
-{ stdenv, fetchurl, unzip, sqlite }:
+{ stdenv, fetchurl, pkgs, ... }:
stdenv.mkDerivation rec {
name = "emby-${version}";
- version = "3.0.5934";
+ version = "3.0.5971";
src = fetchurl {
- url = "https://github.com/MediaBrowser/Emby/releases/download/${version}/Emby.Mono.zip";
- sha256 = "1yjplz7i0lwxjnmrra33xxsvza6gj4dblsl4rqjq1qv6i0jarfv1";
+ url = "https://github.com/MediaBrowser/Emby/archive/${version}.tar.gz";
+ sha256 = "1ahx8y8l7hybkq6wy83cpgnc741q7583lp6h7qnin6x73l2wq2i8";
};
- buildInputs = [ unzip ];
- propagatedBuildInputs = [ sqlite ];
+ propagatedBuildInputs = with pkgs; [
+ mono
+ sqlite
+ ];
- # Need to set sourceRoot as unpacker will complain about multiple directory output
- sourceRoot = ".";
-
- patchPhase = ''
- substituteInPlace System.Data.SQLite.dll.config --replace libsqlite3.so ${sqlite.out}/lib/libsqlite3.so
- substituteInPlace MediaBrowser.Server.Mono.exe.config --replace ProgramData-Server "/var/lib/emby/ProgramData-Server"
+ buildPhase = ''
+ xbuild /p:Configuration="Release Mono" /p:Platform="Any CPU" /t:build MediaBrowser.Mono.sln
+ substituteInPlace MediaBrowser.Server.Mono/bin/Release\ Mono/System.Data.SQLite.dll.config --replace libsqlite3.so ${pkgs.sqlite.out}/lib/libsqlite3.so
+ substituteInPlace MediaBrowser.Server.Mono/bin/Release\ Mono/MediaBrowser.Server.Mono.exe.config --replace ProgramData-Server "/var/lib/emby/ProgramData-Server"
'';
installPhase = ''
mkdir -p $out/bin
- cp -r * $out/bin
+ cp -r MediaBrowser.Server.Mono/bin/Release\ Mono/* $out/bin/
'';
meta = {
diff --git a/pkgs/servers/mail/opensmtpd/default.nix b/pkgs/servers/mail/opensmtpd/default.nix
index 94bc9f2bfe98..4dada752cf63 100644
--- a/pkgs/servers/mail/opensmtpd/default.nix
+++ b/pkgs/servers/mail/opensmtpd/default.nix
@@ -1,21 +1,38 @@
-{ stdenv, fetchurl, autoconf, automake, libtool, bison
-, libasr, libevent, zlib, openssl, db, pam, cacert
+{ stdenv, lib, fetchurl, autoconf, automake, libtool, bison
+, libasr, libevent, zlib, openssl, db, pam
+
+# opensmtpd requires root for no reason to encrypt passwords, this patch fixes it
+# see also https://github.com/OpenSMTPD/OpenSMTPD/issues/678
+, unpriviledged_smtpctl_encrypt ? true
+
+# This enables you to override the '+' character which typically separates the user from the tag in user+tag@domain.tld
+, tag_char ? null
}:
stdenv.mkDerivation rec {
name = "opensmtpd-${version}";
- version = "5.7.3p2";
+ version = "5.9.2p1";
nativeBuildInputs = [ autoconf automake libtool bison ];
buildInputs = [ libasr libevent zlib openssl db pam ];
src = fetchurl {
url = "http://www.opensmtpd.org/archives/${name}.tar.gz";
- sha256 = "0d2973008d0f66bebb84bed516be6c32617735241cc54dd26643529281a8e52b";
+ sha256 = "07d7f1m5sxyz6mkk228rcm7fsf7350994ayvmhgph333q5rz48im";
};
patches = [ ./proc_path.diff ];
+ postPatch = with builtins; with lib;
+ optionalString (isString tag_char) ''
+ sed -i -e "s,TAG_CHAR.*'+',TAG_CHAR '${tag_char}'," smtpd/smtpd-defines.h
+ '' +
+ optionalString unpriviledged_smtpctl_encrypt ''
+ substituteInPlace smtpd/smtpctl.c --replace \
+ 'if (geteuid())' \
+ 'if (geteuid() != 0 && !(argc > 1 && !strcmp(argv[1], "encrypt")))'
+ '';
+
configureFlags = [
"--sysconfdir=/etc"
"--localstatedir=/var"
@@ -23,8 +40,9 @@ stdenv.mkDerivation rec {
"--with-pam"
"--without-bsd-auth"
"--with-sock-dir=/run"
- "--with-privsep-user=smtpd"
- "--with-queue-user=smtpq"
+ "--with-user-smtpd=smtpd"
+ "--with-user-queue=smtpq"
+ "--with-group-queue=smtpq"
"--with-ca-file=/etc/ssl/certs/ca-certificates.crt"
"--with-libevent-dir=${libevent.dev}"
"--enable-table-db"
@@ -35,14 +53,14 @@ stdenv.mkDerivation rec {
"localstatedir=\${TMPDIR}"
];
- meta = {
+ meta = with stdenv.lib; {
homepage = https://www.opensmtpd.org/;
description = ''
A free implementation of the server-side SMTP protocol as defined by
RFC 5321, with some additional standard extensions
'';
- license = stdenv.lib.licenses.isc;
- platforms = stdenv.lib.platforms.linux;
- maintainers = [ stdenv.lib.maintainers.rickynils ];
+ license = licenses.isc;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ rickynils obadz ];
};
}
diff --git a/pkgs/servers/mail/opensmtpd/proc_path.diff b/pkgs/servers/mail/opensmtpd/proc_path.diff
index 0e8eac0bb83b..9306685e365e 100644
--- a/pkgs/servers/mail/opensmtpd/proc_path.diff
+++ b/pkgs/servers/mail/opensmtpd/proc_path.diff
@@ -1,11 +1,12 @@
-diff -Naur opensmtpd-5.7.1p1/smtpd/parse.y opensmtpd-5.7.1p1.patched/smtpd/parse.y
---- opensmtpd-5.7.1p1/smtpd/parse.y 2015-06-30 10:13:34.000000000 +0200
-+++ opensmtpd-5.7.1p1.patched/smtpd/parse.y 2015-09-26 08:41:17.012472516 +0200
-@@ -2519,13 +2519,19 @@
+diff --git a/smtpd/parse.y b/smtpd/parse.y
+index ab02719..c1c77d9 100644
+--- a/smtpd/parse.y
++++ b/smtpd/parse.y
+@@ -2534,13 +2534,19 @@ create_filter_proc(char *name, char *prog)
{
struct filter_conf *f;
char *path;
-+ const char *proc_path;
++ const char *proc_path;
if (dict_get(&conf->sc_filters, name)) {
yyerror("filter \"%s\" already defined", name);
@@ -13,64 +14,71 @@ diff -Naur opensmtpd-5.7.1p1/smtpd/parse.y opensmtpd-5.7.1p1.patched/smtpd/parse
}
- if (asprintf(&path, "%s/filter-%s", PATH_LIBEXEC, prog) == -1) {
-+ proc_path = getenv("OPENSMTPD_PROC_PATH");
-+ if (proc_path == NULL) {
-+ proc_path = PATH_LIBEXEC;
-+ }
++ proc_path = getenv("OPENSMTPD_PROC_PATH");
++ if (proc_path == NULL) {
++ proc_path = PATH_LIBEXEC;
++ }
+
+ if (asprintf(&path, "%s/filter-%s", proc_path, prog) == -1) {
yyerror("filter \"%s\" asprintf failed", name);
return (0);
}
-diff -Naur opensmtpd-5.7.1p1/smtpd/smtpd.c opensmtpd-5.7.1p1.patched/smtpd/smtpd.c
---- opensmtpd-5.7.1p1/smtpd/smtpd.c 2015-06-30 10:13:34.000000000 +0200
-+++ opensmtpd-5.7.1p1.patched/smtpd/smtpd.c 2015-09-26 08:41:16.998472557 +0200
-@@ -854,6 +854,7 @@
+diff --git a/smtpd/smtpd.c b/smtpd/smtpd.c
+index afc8891..9b0a80f 100644
+--- a/smtpd/smtpd.c
++++ b/smtpd/smtpd.c
+@@ -795,6 +795,7 @@ fork_proc_backend(const char *key, const char *conf, const char *procname)
char path[PATH_MAX];
char name[PATH_MAX];
char *arg;
-+ char *proc_path;
++ char *proc_path;
if (strlcpy(name, conf, sizeof(name)) >= sizeof(name)) {
log_warnx("warn: %s-proc: conf too long", key);
-@@ -864,7 +865,12 @@
+@@ -805,7 +806,12 @@ fork_proc_backend(const char *key, const char *conf, const char *procname)
if (arg)
*arg++ = '\0';
- if (snprintf(path, sizeof(path), PATH_LIBEXEC "/%s-%s", key, name) >=
-+ proc_path = getenv("OPENSMTPD_PROC_PATH");
-+ if (proc_path == NULL) {
-+ proc_path = PATH_LIBEXEC;
-+ }
++ proc_path = getenv("OPENSMTPD_PROC_PATH");
++ if (proc_path == NULL) {
++ proc_path = PATH_LIBEXEC;
++ }
+
+ if (snprintf(path, sizeof(path), "%s/%s-%s", proc_path, key, name) >=
(ssize_t)sizeof(path)) {
log_warn("warn: %s-proc: exec path too long", key);
return (-1);
-diff -Naur opensmtpd-5.7.1p1/smtpd/table.c opensmtpd-5.7.1p1.patched/smtpd/table.c
---- opensmtpd-5.7.1p1/smtpd/table.c 2015-06-30 10:13:34.000000000 +0200
-+++ opensmtpd-5.7.1p1.patched/smtpd/table.c 2015-09-26 08:41:17.005472536 +0200
-@@ -201,6 +201,7 @@
+diff --git a/smtpd/table.c b/smtpd/table.c
+index 21ee237..95b5164 100644
+--- a/smtpd/table.c
++++ b/smtpd/table.c
+@@ -193,6 +193,7 @@ table_create(const char *backend, const char *name, const char *tag,
struct table_backend *tb;
char buf[LINE_MAX];
char path[LINE_MAX];
-+ const char *proc_path;
++ const char *proc_path;
size_t n;
struct stat sb;
-@@ -215,8 +216,14 @@
+@@ -207,11 +208,16 @@ table_create(const char *backend, const char *name, const char *tag,
if (name && table_find(name, NULL))
fatalx("table_create: table \"%s\" already defined", name);
-+ proc_path = getenv("OPENSMTPD_PROC_PATH");
-+ if (proc_path == NULL) {
-+ proc_path = PATH_LIBEXEC;
-+ }
++ proc_path = getenv("OPENSMTPD_PROC_PATH");
++ if (proc_path == NULL) {
++ proc_path = PATH_LIBEXEC;
++ }
+
if ((tb = table_backend_lookup(backend)) == NULL) {
-- if ((size_t)snprintf(path, sizeof(path), PATH_LIBEXEC "/table-%s",
+- if ((size_t)snprintf(path, sizeof(path), PATH_LIBEXEC"/table-%s",
+- backend) >= sizeof(path)) {
+- fatalx("table_create: path too long \""
+- PATH_LIBEXEC"/table-%s\"", backend);
+ if ((size_t)snprintf(path, sizeof(path), "%s/table-%s",
-+ proc_path,
- backend) >= sizeof(path)) {
- fatalx("table_create: path too long \""
- PATH_LIBEXEC "/table-%s\"", backend);
++ proc_path, backend) >= sizeof(path)) {
++ fatalx("table_create: path too long \"%s/table-%s\"",
++ proc_path, backend);
+ }
+ if (stat(path, &sb) == 0) {
+ tb = table_backend_lookup("proc");
diff --git a/pkgs/servers/sql/mysql/5.5.x.nix b/pkgs/servers/sql/mysql/5.5.x.nix
index 163deda7ae08..a714585c289a 100644
--- a/pkgs/servers/sql/mysql/5.5.x.nix
+++ b/pkgs/servers/sql/mysql/5.5.x.nix
@@ -5,11 +5,11 @@
stdenv.mkDerivation rec {
name = "mysql-${version}";
- version = "5.5.48";
+ version = "5.5.49";
src = fetchurl {
url = "mirror://mysql/MySQL-5.5/${name}.tar.gz";
- sha256 = "10fpzvf6hxvqgaq8paiz8fvhcbbs4qnzqw0svq40bvlyhx2qfgyc";
+ sha256 = "07wy1qbxf3fxgi04v6cqs4ymi9hgsgabk218bxiwlsx706ds976d";
};
patches = if stdenv.isCygwin then [
diff --git a/pkgs/shells/fish/default.nix b/pkgs/shells/fish/default.nix
index 8916cca0f044..6de8aa7f18b5 100644
--- a/pkgs/shells/fish/default.nix
+++ b/pkgs/shells/fish/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, ncurses, nettools, python, which, groff, gettext, man_db,
+{ stdenv, fetchurl, ncurses, nettools, python, which, groff, gettext, man-db,
bc, libiconv, coreutils, gnused, kbd, utillinux, glibc }:
stdenv.mkDerivation rec {
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
# Required binaries during execution
# Python: Autocompletion generated from manpages and config editing
propagatedBuildInputs = [ python which groff gettext ]
- ++ stdenv.lib.optional (!stdenv.isDarwin) man_db
+ ++ stdenv.lib.optional (!stdenv.isDarwin) man-db
++ [ bc coreutils ];
postInstall = ''
@@ -55,8 +55,8 @@ stdenv.mkDerivation rec {
done
'' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
sed -i "s|(hostname\||(${nettools}/bin/hostname\||" "$out/share/fish/functions/fish_prompt.fish"
- sed -i "s|Popen(\['manpath'|Popen(\['${man_db}/bin/manpath'|" "$out/share/fish/tools/create_manpage_completions.py"
- sed -i "s|command manpath|command ${man_db}/bin/manpath|" "$out/share/fish/functions/man.fish"
+ sed -i "s|Popen(\['manpath'|Popen(\['${man-db}/bin/manpath'|" "$out/share/fish/tools/create_manpage_completions.py"
+ sed -i "s|command manpath|command ${man-db}/bin/manpath|" "$out/share/fish/functions/man.fish"
'' + ''
sed -i "s|/sbin /usr/sbin||" \
"$out/share/fish/functions/__fish_complete_subcommand_root.fish"
diff --git a/pkgs/tools/filesystems/s3backer/default.nix b/pkgs/tools/filesystems/s3backer/default.nix
index 89e49c9586c5..f3f8877db2c9 100644
--- a/pkgs/tools/filesystems/s3backer/default.nix
+++ b/pkgs/tools/filesystems/s3backer/default.nix
@@ -1,18 +1,30 @@
-{ stdenv, fetchurl, pkgconfig, fuse, curl, expat }:
+{ stdenv, fetchFromGitHub
+, autoreconfHook, pkgconfig
+, fuse, curl, expat }:
stdenv.mkDerivation rec {
- name = "s3backer-1.3.1";
+ name = "s3backer-${version}";
+ version = "1.4.2";
- src = fetchurl {
- url = "http://s3backer.googlecode.com/files/${name}.tar.gz";
- sha256 = "1dmdvhb7mcn0fdcljpdyvfynhqrsnrg50dgl1706i8f1831lgk1r";
+ src = fetchFromGitHub {
+ sha256 = "0b9vmykrfpzs9is31pqb8xvgjraghnax1ph2jkbib1ya0vhxm8dj";
+ rev = version;
+ repo = "s3backer";
+ owner = "archiecobbs";
};
- buildInputs = [ pkgconfig fuse curl expat ];
+ nativeBuildInputs = [ autoreconfHook pkgconfig ];
+ buildInputs = [ fuse curl expat ];
- meta = {
+ autoreconfPhase = ''
+ patchShebangs ./autogen.sh
+ ./autogen.sh
+ '';
+
+ meta = with stdenv.lib; {
homepage = http://code.google.com/p/s3backer/;
description = "FUSE-based single file backing store via Amazon S3";
- license = stdenv.lib.licenses.gpl2Plus;
+ license = licenses.gpl2Plus;
+ maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/tools/inputmethods/fcitx-engines/fcitx-cloudpinyin/default.nix b/pkgs/tools/inputmethods/fcitx-engines/fcitx-cloudpinyin/default.nix
new file mode 100644
index 000000000000..acd377441e2c
--- /dev/null
+++ b/pkgs/tools/inputmethods/fcitx-engines/fcitx-cloudpinyin/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchurl, cmake, pkgconfig, fcitx, gettext, curl }:
+
+stdenv.mkDerivation rec {
+ name = "fcitx-cloudpinyin-${version}";
+ version = "0.3.4";
+
+ src = fetchurl {
+ url = "http://download.fcitx-im.org/fcitx-cloudpinyin/${name}.tar.xz";
+ sha256 = "143x9gbswzfngvgfy77zskrzrpywj8qg2d19kisgfwfisk7yhcf1";
+ };
+
+ buildInputs = [ cmake pkgconfig fcitx gettext curl ];
+
+ preInstall = ''
+ substituteInPlace src/cmake_install.cmake \
+ --replace ${fcitx} $out
+ substituteInPlace po/cmake_install.cmake \
+ --replace ${fcitx} $out
+ '';
+
+ meta = with stdenv.lib; {
+ isFcitxEngine = true;
+ description = "A standalone module for fcitx that uses web API to provide better pinyin result";
+ homepage = https://github.com/fcitx/fcitx-cloudpinyin;
+ license = licenses.gpl3Plus;
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/tools/inputmethods/fcitx/fcitx-qt5-ecm.patch b/pkgs/tools/inputmethods/fcitx/fcitx-qt5-ecm.patch
new file mode 100644
index 000000000000..8fe100dd3b24
--- /dev/null
+++ b/pkgs/tools/inputmethods/fcitx/fcitx-qt5-ecm.patch
@@ -0,0 +1,29 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index b8e729a..ebd3603 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -5,9 +5,7 @@ project(fcitx-qt5)
+ set(FcitxQt5_VERSION 1.0.0)
+ set(REQUIRED_QT_VERSION 5.1.0)
+
+-find_package(ECM 1.4.0 REQUIRED NO_MODULE)
+-
+-set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
++set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
+
+ include(GNUInstallDirs)
+ include(FeatureSummary)
+diff --git a/cmake/FindXKBCommon.cmake b/cmake/FindXKBCommon.cmake
+index a645584..de0007d 100644
+--- a/cmake/FindXKBCommon.cmake
++++ b/cmake/FindXKBCommon.cmake
+@@ -1,5 +1,5 @@
+
+-include(ECMFindModuleHelpersStub)
++include(ECMFindModuleHelpers)
+
+ ecm_find_package_version_check(XKBCommon)
+
+--
+2.8.0
+
diff --git a/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix b/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix
index ab139bdb5a76..fc9dd1e6a253 100644
--- a/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix
+++ b/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, cmake, fcitx, extra-cmake-modules, qtbase }:
+{ stdenv, lib, fetchurl, cmake, fcitx, pkgconfig, qtbase, kde5 }:
stdenv.mkDerivation rec {
name = "fcitx-qt5-${version}";
@@ -9,7 +9,19 @@ stdenv.mkDerivation rec {
sha256 = "1pj1b04n8r4kl7jh1qdv0xshgzb3zrmizfa3g5h3yk589h191vwc";
};
- buildInputs = [ cmake fcitx extra-cmake-modules qtbase ];
+ # The following is to not have a dependency on kde5 so the plugin can be part of qt5LibsFun
+ postUnpack = ''
+ ${lib.concatMapStrings (f: ''
+ ln -s ${kde5.extra-cmake-modules}/share/ECM/modules/${f} $sourceRoot/cmake/
+ '')
+ [ "ECMFindModuleHelpers.cmake" "ECMGenerateHeaders.cmake"
+ "ECMPackageConfigHelpers.cmake" "ECMQueryQmake.cmake"
+ "ECMSetupVersion.cmake" "ECMVersionHeader.h.in" ]}
+ '';
+
+ patches = [ ./fcitx-qt5-ecm.patch ];
+
+ buildInputs = [ cmake fcitx pkgconfig qtbase ];
preInstall = ''
substituteInPlace platforminputcontext/cmake_install.cmake \
diff --git a/pkgs/tools/inputmethods/fcitx/wrapper.nix b/pkgs/tools/inputmethods/fcitx/wrapper.nix
index 96423cf46e6d..8e086f7386f5 100644
--- a/pkgs/tools/inputmethods/fcitx/wrapper.nix
+++ b/pkgs/tools/inputmethods/fcitx/wrapper.nix
@@ -1,9 +1,9 @@
-{ stdenv, symlinkJoin, fcitx, fcitx-configtool, makeWrapper, plugins, kde5 }:
+{ stdenv, symlinkJoin, fcitx, fcitx-configtool, makeWrapper, plugins, qt55 }:
symlinkJoin {
name = "fcitx-with-plugins-${fcitx.version}";
- paths = [ fcitx fcitx-configtool kde5.fcitx-qt5 ] ++ plugins;
+ paths = [ fcitx fcitx-configtool qt55.fcitx-qt5 ] ++ plugins;
buildInputs = [ makeWrapper ];
diff --git a/pkgs/tools/misc/dtach/default.nix b/pkgs/tools/misc/dtach/default.nix
index 000f6cd0f93f..0367ab53835f 100644
--- a/pkgs/tools/misc/dtach/default.nix
+++ b/pkgs/tools/misc/dtach/default.nix
@@ -1,15 +1,14 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "dtach-0.8";
+ name = "dtach-${version}";
+ version = "0.9";
src = fetchurl {
- url = "mirror://sourceforge/project/dtach/dtach/0.8/dtach-0.8.tar.gz";
- sha256 = "16614ebddf8ab2811d3dc0e7f329c7de88929ac6a9632d4cb4aef7fe11b8f2a9";
+ url = "mirror://sourceforge/project/dtach/dtach/${version}/${name}.tar.gz";
+ sha256 = "1wwj2hlngi8qn2pisvhyfxxs8gyqjlgrrv5lz91w8ly54dlzvs9j";
};
- patches = [ ./fix-CVE-2012-3368.patch ];
-
installPhase = ''
mkdir -p $out/bin
cp dtach $out/bin/dtach
@@ -19,12 +18,14 @@ stdenv.mkDerivation rec {
homepage = http://dtach.sourceforge.net/;
description = "A program that emulates the detach feature of screen";
- longDescription = ''dtach is a tiny program that emulates the
- detach feature of screen, allowing you to run a program in an
- environment that is protected from the controlling terminal and
- attach to it later. dtach does not keep track of the contents of
- the screen, and thus works best with programs that know how to
- redraw themselves.'';
+ longDescription = ''
+ dtach is a tiny program that emulates the detach feature of
+ screen, allowing you to run a program in an environment that is
+ protected from the controlling terminal and attach to it later.
+ dtach does not keep track of the contents of the screen, and
+ thus works best with programs that know how to redraw
+ themselves.
+ '';
license = stdenv.lib.licenses.gpl2Plus;
diff --git a/pkgs/tools/misc/dtach/fix-CVE-2012-3368.patch b/pkgs/tools/misc/dtach/fix-CVE-2012-3368.patch
deleted file mode 100644
index 9e556d9325fb..000000000000
--- a/pkgs/tools/misc/dtach/fix-CVE-2012-3368.patch
+++ /dev/null
@@ -1,49 +0,0 @@
-Fix error handling for read from stdin in attach.c
-
-attach.c did not correctly handle a read from stdin when read returned
-an error. The code assigned the return value of read to pkt.len (an
-unsigned char) before checking the value. This prevented the error check
-from working correctly, since an unsigned integer can never be < 0.
-
-A packet with an invalid length was then sent to the master, which then
-sent 255 bytes of garbage to the program.
-
-Fix the bug in attach.c and the unchecked packet length bug in master.c.
-
-Report and initial patch by Enrico Scholz.
-
---- a/master.c 2012/07/01 21:26:10 1.14
-+++ b/master.c 2012/07/01 21:44:34 1.15
-@@ -351,7 +351,10 @@
-
- /* Push out data to the program. */
- if (pkt.type == MSG_PUSH)
-- write(the_pty.fd, pkt.u.buf, pkt.len);
-+ {
-+ if (pkt.len <= sizeof(pkt.u.buf))
-+ write(the_pty.fd, pkt.u.buf, pkt.len);
-+ }
-
- /* Attach or detach from the program. */
- else if (pkt.type == MSG_ATTACH)
---- a/attach.c 2012/07/01 21:26:10 1.12
-+++ b/attach.c 2012/07/01 21:44:34 1.13
-@@ -237,12 +237,16 @@
- /* stdin activity */
- if (n > 0 && FD_ISSET(0, &readfds))
- {
-+ ssize_t len;
-+
- pkt.type = MSG_PUSH;
- memset(pkt.u.buf, 0, sizeof(pkt.u.buf));
-- pkt.len = read(0, pkt.u.buf, sizeof(pkt.u.buf));
-+ len = read(0, pkt.u.buf, sizeof(pkt.u.buf));
-
-- if (pkt.len <= 0)
-+ if (len <= 0)
- exit(1);
-+
-+ pkt.len = len;
- process_kbd(s, &pkt);
- n--;
- }
diff --git a/pkgs/tools/misc/man-db/default.nix b/pkgs/tools/misc/man-db/default.nix
index d77b7ff48128..825921327e16 100644
--- a/pkgs/tools/misc/man-db/default.nix
+++ b/pkgs/tools/misc/man-db/default.nix
@@ -1,19 +1,24 @@
{ stdenv, fetchurl, pkgconfig, libpipeline, db, groff }:
-
+
stdenv.mkDerivation rec {
name = "man-db-2.7.5";
-
+
src = fetchurl {
url = "mirror://savannah/man-db/${name}.tar.xz";
sha256 = "056a3il7agfazac12yggcg4gf412yq34k065im0cpfxbcw6xskaw";
};
-
- buildInputs = [ pkgconfig libpipeline db groff ];
+
+ outputs = [ "out" "doc" ];
+ outputMan = "out"; # users will want `man man` to work
+
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [ libpipeline db groff ];
configureFlags = [
"--disable-setuid"
- "--sysconfdir=/etc"
"--localstatedir=/var"
+ # Don't try /etc/man_db.conf by default, so we avoid error messages.
+ "--with-config-file=\${out}/etc/man_db.conf"
"--with-systemdtmpfilesdir=\${out}/lib/tmpfiles.d"
"--with-eqn=${groff}/bin/eqn"
"--with-neqn=${groff}/bin/neqn"
@@ -23,15 +28,9 @@ stdenv.mkDerivation rec {
"--with-tbl=${groff}/bin/tbl"
];
- installFlags = [ "DESTDIR=\${out}" ];
+ enableParallelBuilding = true;
- postInstall = ''
- mv $out/$out/* $out
- DIR=$out/$out
- while rmdir $DIR 2>/dev/null; do
- DIR="$(dirname "$DIR")"
- done
- '';
+ doCheck = true;
meta = with stdenv.lib; {
homepage = "http://man-db.nongnu.org";
diff --git a/pkgs/tools/misc/multitail/default.nix b/pkgs/tools/misc/multitail/default.nix
index 9b1b3f48450c..bd446395bc78 100644
--- a/pkgs/tools/misc/multitail/default.nix
+++ b/pkgs/tools/misc/multitail/default.nix
@@ -22,5 +22,6 @@ stdenv.mkDerivation rec {
homepage = http://www.vanheusden.com/multitail/;
description = "tail on Steroids";
maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ];
+ platforms = stdenv.lib.platforms.unix;
};
}
diff --git a/pkgs/tools/misc/tlp/default.nix b/pkgs/tools/misc/tlp/default.nix
index d290c9f9a5a7..1e39ddf481bc 100644
--- a/pkgs/tools/misc/tlp/default.nix
+++ b/pkgs/tools/misc/tlp/default.nix
@@ -1,11 +1,19 @@
-{ stdenv, lib, fetchFromGitHub, makeWrapper, perl, systemd, iw, rfkill, hdparm, ethtool, inetutils
+{ stdenv, lib, fetchFromGitHub, perl, makeWrapper, systemd, iw, rfkill, hdparm, ethtool, inetutils
, kmod, pciutils, smartmontools, x86_energy_perf_policy, gawk, gnugrep, coreutils
, enableRDW ? false, networkmanager
}:
-let version = "0.8";
-in stdenv.mkDerivation {
+let
+ paths = lib.makeBinPath
+ ([ iw rfkill hdparm ethtool inetutils systemd kmod pciutils smartmontools
+ x86_energy_perf_policy gawk gnugrep coreutils
+ ]
+ ++ lib.optional enableRDW networkmanager
+ );
+
+in stdenv.mkDerivation rec {
name = "tlp-${version}";
+ version = "0.8";
src = fetchFromGitHub {
owner = "linrunner";
@@ -26,20 +34,19 @@ in stdenv.mkDerivation {
buildInputs = [ perl ];
- paths = lib.makeBinPath
- ([ iw rfkill hdparm ethtool inetutils systemd kmod pciutils smartmontools
- x86_energy_perf_policy gawk gnugrep coreutils
- ]
- ++ lib.optional enableRDW networkmanager
- );
-
installTargets = [ "install-tlp" ] ++ stdenv.lib.optional enableRDW "install-rdw";
postInstall = ''
for i in $out/bin/* $out/lib/udev/tlp-*; do
sed -i "s,/usr/lib/,$out/lib/,g" "$i"
- wrapProgram "$i" \
- --prefix PATH : "$paths"
+ if [[ "$(basename "$i")" = tlp-*list ]]; then
+ # Perl script; use wrapProgram
+ wrapProgram "$i" \
+ --prefix PATH : "${paths}"
+ else
+ # Bash script
+ sed -i '2iexport PATH=${paths}:$PATH' "$i"
+ fi
done
for i in $out/lib/udev/rules.d/*; do
@@ -51,9 +58,10 @@ in stdenv.mkDerivation {
done
'' + lib.optionalString enableRDW ''
for i in $out/etc/NetworkManager/dispatcher.d/*; do
- sed -i "s,/usr/lib/,$out/lib/,g" "$i"
- wrapProgram "$i" \
- --prefix PATH : "$paths"
+ sed -i \
+ -e "s,/usr/lib/,$out/lib/,g" \
+ -e '2iexport PATH=${paths}:$PATH' \
+ "$i"
done
'';
diff --git a/pkgs/tools/misc/vdirsyncer/default.nix b/pkgs/tools/misc/vdirsyncer/default.nix
index 0cf7f92912ed..4bf195977094 100644
--- a/pkgs/tools/misc/vdirsyncer/default.nix
+++ b/pkgs/tools/misc/vdirsyncer/default.nix
@@ -3,13 +3,12 @@
# Packaging documentation at:
# https://github.com/untitaker/vdirsyncer/blob/master/docs/packaging.rst
pythonPackages.buildPythonApplication rec {
- version = "0.10.0";
+ version = "0.11.0";
name = "vdirsyncer-${version}";
- namePrefix = "";
src = fetchurl {
- url = "https://pypi.python.org/packages/0b/fb/c42223e1e9169e4770194e62143d431755724b080d8cb77f14705b634815/vdirsyncer-0.10.0.tar.gz";
- sha256 = "1gf86sbd6w0w4zayh9r3irlp5jwrzbjikjc0vs5zkdpa5c199f78";
+ url = "mirror://pypi/v/vdirsyncer/${name}.tar.gz";
+ sha256 = "1bf0vk29qdswar0q4267aamfriq3134302i2p3qcqxpmmcwx3qfv";
};
propagatedBuildInputs = with pythonPackages; [
diff --git a/pkgs/tools/misc/xflux/gui.nix b/pkgs/tools/misc/xflux/gui.nix
new file mode 100644
index 000000000000..b78eb910f938
--- /dev/null
+++ b/pkgs/tools/misc/xflux/gui.nix
@@ -0,0 +1,47 @@
+{ stdenv, pkgs, fetchFromGitHub, buildPythonPackage,
+ pexpect,
+ pyGtkGlade,
+ pygobject,
+ pyxdg,
+ gnome_python,
+}:
+buildPythonPackage rec {
+ version = "1.1.1";
+ name = "xflux-gui-${version}";
+
+ src = fetchFromGitHub {
+ repo = "xflux-gui";
+ owner = "xflux-gui";
+ rev = "d897dfd";
+ sha256 = "1mx1r2hz3g3waafn4w8hql0gaasfizbzz60bk5llw007k4k8892r";
+ };
+
+ # remove messing with shipped binary
+ patches = [ ./setup.patch ];
+
+ # not sure if these need to be propogated or not?
+ propagatedBuildInputs = [
+ pexpect
+ pyGtkGlade
+ pygobject
+ pyxdg
+ pkgs.libappindicator-gtk2
+ gnome_python
+ ];
+
+ buildInputs = [
+ pkgs.xflux
+ ];
+
+ postPatch = ''
+ substituteInPlace src/fluxgui/xfluxcontroller.py --replace "pexpect.spawn(\"xflux\"" "pexpect.spawn(\"${pkgs.xflux}/bin/xflux\""
+ '';
+
+ meta = {
+ description = "Better lighting for Linux. Open source GUI for xflux";
+ homepage = https://justgetflux.com/linux.html;
+ license = stdenv.lib.licenses.unfree; # marked as unfree since the source code contains a copy of the unfree xflux binary
+ maintainers = [ stdenv.lib.maintainers.sheenobu ];
+ platforms = stdenv.lib.platforms.linux;
+ };
+}
diff --git a/pkgs/tools/misc/xflux/setup.patch b/pkgs/tools/misc/xflux/setup.patch
new file mode 100644
index 000000000000..c36f81f7d808
--- /dev/null
+++ b/pkgs/tools/misc/xflux/setup.patch
@@ -0,0 +1,28 @@
+diff --git a/setup.py b/setup.py
+index e11f199..b1cb0e5 100644
+--- a/setup.py
++++ b/setup.py
+@@ -4,13 +4,6 @@ from distutils.core import setup
+ from sys import maxsize
+ from os import rename
+
+-# Determines which is the appropriate executable for 32-bit
+-if maxsize == 2147483647:
+- rename("xflux32", "xflux")
+-# ... or 64-bit processors
+-elif maxsize == 9223372036854775807:
+- rename("xflux64", "xflux")
+-
+ setup(name = "f.lux indicator applet",
+ version = "1.1.8",
+ description = "f.lux indicator applet - better lighting for your computer",
+@@ -22,8 +15,7 @@ setup(name = "f.lux indicator applet",
+ packages = ["fluxgui",],
+ package_data = {"fluxgui" : ["*.glade"] },
+ data_files=[('share/icons/hicolor/scalable/apps', ['fluxgui.svg', 'fluxgui-light.svg', 'fluxgui-dark.svg']),
+- ('share/applications', ['desktop/fluxgui.desktop']),
+- ('bin', ['xflux']),],
++ ('share/applications', ['desktop/fluxgui.desktop']),],
+ scripts = ["fluxgui"],
+ long_description = """f.lux indicator applet is an indicator applet to
+ control xflux, an application that makes the color of your computer's
diff --git a/pkgs/tools/networking/libreswan/default.nix b/pkgs/tools/networking/libreswan/default.nix
index 1a040652ff4e..a2204f9664a1 100644
--- a/pkgs/tools/networking/libreswan/default.nix
+++ b/pkgs/tools/networking/libreswan/default.nix
@@ -1,15 +1,15 @@
{ stdenv, fetchurl, makeWrapper,
pkgconfig, systemd, gmp, unbound, bison, flex, pam, libevent, libcap_ng, curl, nspr,
- bash, iproute, iptables, procps, coreutils, gnused, gawk, nssTools, which, python,
+ bash, iproute, iptables, procps, coreutils, gnused, gawk, nss, which, python,
docs ? false, xmlto
}:
let
optional = stdenv.lib.optional;
- version = "3.16";
+ version = "3.17";
name = "libreswan-${version}";
binPath = stdenv.lib.makeBinPath [
- bash iproute iptables procps coreutils gnused gawk nssTools which python
+ bash iproute iptables procps coreutils gnused gawk nss.tools which python
];
in
@@ -21,12 +21,12 @@ stdenv.mkDerivation {
src = fetchurl {
url = "https://download.libreswan.org/${name}.tar.gz";
- sha256 = "15qv4101p1jw591l04gsfscb3farzd278mgi8yph015vmifyjxrd";
+ sha256 = "00qd1n6f5w4xr06yanfpnbnn7y7rq2m878ifa3hh13bdgzsqdhi8";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ pkgconfig bash iproute iptables systemd coreutils gnused gawk gmp unbound bison flex pam libevent
- libcap_ng curl nspr nssTools python ]
+ libcap_ng curl nspr nss python ]
++ optional docs xmlto;
prePatch = ''
diff --git a/pkgs/tools/networking/mailsend/default.nix b/pkgs/tools/networking/mailsend/default.nix
index b5fc484e6b1c..6f5552782190 100644
--- a/pkgs/tools/networking/mailsend/default.nix
+++ b/pkgs/tools/networking/mailsend/default.nix
@@ -3,11 +3,11 @@ let
s = # Generated upstream information
rec {
baseName="mailsend";
- version="1.18";
+ version="1.19";
name="${baseName}-${version}";
- hash="1fjrb6q7y2dxx0qz7r0wlhqfkjqq1vfh7yb7jl77h5qi5kd5rm46";
- url="https://github.com/muquit/mailsend/archive/1.18.tar.gz";
- sha256="1fjrb6q7y2dxx0qz7r0wlhqfkjqq1vfh7yb7jl77h5qi5kd5rm46";
+ hash="1xwk6jvl5li8ddlik1lj88qswnyminp9wlf5cm8gg3n54szgcpjn";
+ url="https://github.com/muquit/mailsend/archive/1.19.tar.gz";
+ sha256="1xwk6jvl5li8ddlik1lj88qswnyminp9wlf5cm8gg3n54szgcpjn";
};
buildInputs = [
openssl
diff --git a/pkgs/tools/networking/oslrd/default.nix b/pkgs/tools/networking/olsrd/default.nix
similarity index 100%
rename from pkgs/tools/networking/oslrd/default.nix
rename to pkgs/tools/networking/olsrd/default.nix
diff --git a/pkgs/tools/networking/strongswan/default.nix b/pkgs/tools/networking/strongswan/default.nix
index 1e8b1a1b299f..1e00157c4874 100644
--- a/pkgs/tools/networking/strongswan/default.nix
+++ b/pkgs/tools/networking/strongswan/default.nix
@@ -4,11 +4,12 @@
, enableTNC ? false }:
stdenv.mkDerivation rec {
- name = "strongswan-5.3.2";
+ name = "strongswan-${version}";
+ version = "5.4.0";
src = fetchurl {
url = "http://download.strongswan.org/${name}.tar.bz2";
- sha256 = "09gjrd5f8iykh926y35blxlm2hlzpw15m847d8vc9ga29s6brad4";
+ sha256 = "12dy7dfwblihrc2zs0fdvyimvgi2g5mvgh0ksjkxi73axam8ya7q";
};
dontPatchELF = true;
diff --git a/pkgs/tools/system/freeipmi/default.nix b/pkgs/tools/system/freeipmi/default.nix
index 3a88267f6c4f..44e249102965 100644
--- a/pkgs/tools/system/freeipmi/default.nix
+++ b/pkgs/tools/system/freeipmi/default.nix
@@ -1,12 +1,12 @@
{ fetchurl, stdenv, libgcrypt, readline }:
stdenv.mkDerivation rec {
- version = "1.5.1";
+ version = "1.5.2";
name = "freeipmi-${version}";
src = fetchurl {
url = "mirror://gnu/freeipmi/${name}.tar.gz";
- sha256 = "0lhjxlha4j5rx11d81y1rgp9j18rlpxsjc0flsmj6bm60awmm627";
+ sha256 = "0xgfwk6lxwwzq8pbyxjl5xxpybs9p4qwgb7q0ykf048xwxha4kvk";
};
buildInputs = [ libgcrypt readline ];
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index fb1b3571e37a..3f39248d01d0 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -64,6 +64,8 @@ doNotDisplayTwice rec {
lttngTools = lttng-tools; # added 2014-07-31
lttngUst = lttng-ust; # added 2014-07-31
manpages = man-pages; # added 2015-12-06
+ man_db = man-db; # added 2016-05
+ man = man-db; # added 2016-05
midoriWrapper = midori; # added 2015-01
mlt-qt5 = qt5.mlt; # added 2015-12-19
module_init_tools = kmod; # added 2016-04-22
@@ -93,6 +95,7 @@ doNotDisplayTwice rec {
saneBackendsGit = sane-backends-git; # added 2016-01-02
saneFrontends = sane-frontends; # added 2016-01-02
scim = sc-im; # added 2016-01-22
+ spaceOrbit = space-orbit; # addewd 2016-05-23
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
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index bfbe5a0b3226..1ed4836df7c8 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -1201,6 +1201,8 @@ in
cudatoolkit = self.cudatoolkit7;
+ cudnn = callPackage ../development/libraries/science/math/cudnn/default.nix {};
+
curlFull = self.curl.override {
idnSupport = true;
ldapSupport = true;
@@ -1490,6 +1492,7 @@ in
table-other = callPackage ../tools/inputmethods/fcitx-engines/fcitx-table-other { };
+ cloudpinyin = callPackage ../tools/inputmethods/fcitx-engines/fcitx-cloudpinyin { };
};
fcitx-configtool = callPackage ../tools/inputmethods/fcitx/fcitx-configtool.nix { };
@@ -2379,9 +2382,9 @@ in
makemkv = callPackage ../applications/video/makemkv { };
- man = callPackage ../tools/misc/man { };
+ man-old = callPackage ../tools/misc/man { };
- man_db = callPackage ../tools/misc/man-db { };
+ man-db = callPackage ../tools/misc/man-db { };
mawk = callPackage ../tools/text/mawk { };
@@ -2761,7 +2764,7 @@ in
libpng = libpng12;
};
- oslrd = callPackage ../tools/networking/oslrd { };
+ olsrd = callPackage ../tools/networking/olsrd { };
ossec = callPackage ../tools/security/ossec {};
@@ -3922,6 +3925,13 @@ in
xe-guest-utilities = callPackage ../tools/virtualization/xe-guest-utilities { };
xflux = callPackage ../tools/misc/xflux { };
+ xflux-gui = callPackage ../tools/misc/xflux/gui.nix {
+ pexpect = pythonPackages.pexpect;
+ pyGtkGlade = pythonPackages.pyGtkGlade;
+ pygobject = pythonPackages.pygobject;
+ pyxdg = pythonPackages.pyxdg;
+ gnome_python = gnome.gnome_python;
+ };
xfsprogs = callPackage ../tools/filesystems/xfsprogs { };
libxfs = self.xfsprogs.dev; # outputs TODO
@@ -5554,7 +5564,6 @@ in
};
octave = callPackage ../development/interpreters/octave {
- fltk = fltk13.override { cfg.xftSupport = true; };
qt = null;
ghostscript = null;
llvm = null;
@@ -5565,7 +5574,6 @@ in
openblas = openblasCompat;
};
octaveFull = (lowPrio (callPackage ../development/interpreters/octave {
- fltk = fltk13.override { cfg.xftSupport = true; };
qt = qt4;
}));
@@ -6146,6 +6154,7 @@ in
gnumake3 = self.gnumake382;
gnumake40 = callPackage ../development/tools/build-managers/gnumake/4.0 { };
gnumake41 = callPackage ../development/tools/build-managers/gnumake/4.1 { };
+ gnumake42 = callPackage ../development/tools/build-managers/gnumake/4.2 { };
gnumake = self.gnumake41;
gob2 = callPackage ../development/tools/misc/gob2 { };
@@ -6364,6 +6373,8 @@ in
ruby = ruby_2_0;
};
+ redo = callPackage ../development/tools/build-managers/redo { };
+
re2c = callPackage ../development/tools/parsing/re2c { };
remake = callPackage ../development/tools/build-managers/remake { };
@@ -6905,9 +6916,8 @@ in
flite = callPackage ../development/libraries/flite { };
- fltk13 = callPackage ../development/libraries/fltk/fltk13.nix { };
-
- fltk20 = callPackage ../development/libraries/fltk { };
+ fltk13 = callPackage ../development/libraries/fltk { };
+ fltk = self.fltk13;
fmod = callPackage ../development/libraries/fmod { };
@@ -8766,6 +8776,8 @@ in
accounts-qt = callPackage ../development/libraries/accounts-qt { };
+ fcitx-qt5 = callPackage ../tools/inputmethods/fcitx/fcitx-qt5.nix { };
+
grantlee = callPackage ../development/libraries/grantlee/5.x.nix { };
libcommuni = callPackage ../development/libraries/libcommuni { };
@@ -12476,9 +12488,7 @@ in
keepass-keefox = callPackage ../applications/misc/keepass-plugins/keefox { };
- exrdisplay = callPackage ../applications/graphics/exrdisplay {
- fltk = fltk20;
- };
+ exrdisplay = callPackage ../applications/graphics/exrdisplay { };
fbpanel = callPackage ../applications/window-managers/fbpanel { };
@@ -12844,6 +12854,8 @@ in
inherit (gnome) GConf;
};
+ gnome-mpv = callPackage ../applications/video/gnome-mpv { };
+
gollum = callPackage ../applications/misc/gollum { };
google-chrome = callPackage ../applications/networking/browsers/google-chrome { gconf = gnome.GConf; };
@@ -13835,6 +13847,10 @@ in
qsampler = callPackage ../applications/audio/qsampler { };
+ qscreenshot = callPackage ../applications/graphics/qscreenshot {
+ qt = qt4;
+ };
+
qsynth = callPackage ../applications/audio/qsynth { };
qtox = qt5.callPackage ../applications/networking/instant-messengers/qtox { };
@@ -13992,6 +14008,8 @@ in
gtk = gtk3;
};
+ shutter = callPackage ../applications/graphics/shutter { };
+
simple-scan = callPackage ../applications/graphics/simple-scan { };
siproxd = callPackage ../applications/networking/siproxd { };
@@ -14567,6 +14585,8 @@ in
wrapFirefox = callPackage ../applications/networking/browsers/firefox/wrapper.nix { };
+ wp-cli = callPackage ../development/tools/wp-cli { };
+
retroArchCores =
let
cfg = config.retroarch or {};
@@ -14836,15 +14856,13 @@ in
pahole = callPackage ../development/tools/misc/pahole {};
- yarp = callPackage ../applications/science/misc/yarp {};
+ yarp = callPackage ../applications/science/robotics/yarp {};
yed = callPackage ../applications/graphics/yed {};
ykpers = callPackage ../applications/misc/ykpers {};
- yoshimi = callPackage ../applications/audio/yoshimi {
- fltk = fltk13.override { cfg.xftSupport = true; };
- };
+ yoshimi = callPackage ../applications/audio/yoshimi { };
zam-plugins = callPackage ../applications/audio/zam-plugins { };
@@ -15025,9 +15043,7 @@ in
fish-fillets-ng = callPackage ../games/fish-fillets-ng {};
- flightgear = qt5.callPackage ../games/flightgear {
- fltk13 = fltk13.override { cfg.xftSupport = true; };
- };
+ flightgear = qt5.callPackage ../games/flightgear { };
freecell-solver = callPackage ../games/freecell-solver { };
@@ -15266,7 +15282,7 @@ in
};
# You still can override by passing more arguments.
- spaceOrbit = callPackage ../games/orbit { };
+ space-orbit = callPackage ../games/space-orbit { };
spring = callPackage ../games/spring {
boost = boost155;
@@ -15738,8 +15754,6 @@ in
dfilemanager = callPackage ../applications/misc/dfilemanager { };
- fcitx-qt5 = callPackage ../tools/inputmethods/fcitx/fcitx-qt5.nix { };
-
k9copy = callPackage ../applications/video/k9copy {};
kdeconnect = callPackage ../applications/misc/kdeconnect { };
@@ -15906,6 +15920,8 @@ in
openspecfun = callPackage ../development/libraries/science/math/openspecfun {};
+ magma = callPackage ../development/libraries/science/math/magma { };
+
mathematica = callPackage ../applications/science/math/mathematica { };
mathematica9 = callPackage ../applications/science/math/mathematica/9.nix { };
diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix
index 4045ba841b25..869651dcaf03 100644
--- a/pkgs/top-level/go-packages.nix
+++ b/pkgs/top-level/go-packages.nix
@@ -206,11 +206,11 @@ let
};
adapted = buildFromGitHub {
- rev = "eaea06aaff855227a71b1c58b18bc6de822e3e77";
- version = "2015-06-03";
+ rev = "0dd5fa34d6f9d74c7c0deed1fc224f9a87e02978";
+ version = "2016-04-10";
owner = "michaelmacinnis";
repo = "adapted";
- sha256 = "0f28sn5mj48087zhjdrph2sjcznff1i1lwnwplx32bc5ax8nx5xm";
+ sha256 = "16n3a87m33pqx4qih713q3gw2j6ksj1q3ngjax6bpn5b11rqvikv";
propagatedBuildInputs = [ sys ];
};
@@ -2795,11 +2795,11 @@ let
};
oh = buildFromGitHub {
- rev = "22d91b0ea97f817cd5cccd90549f74923a57daa4";
- version = "2016-03-28";
+ rev = "0daaf4081475fb9d6b3801c85019bdd57b2ee9b4";
+ version = "2016-05-23";
owner = "michaelmacinnis";
repo = "oh";
- sha256 = "1dkw3c0d640g7ciw0mmbdq94zyykdcfada05m5amnqymknphmdvl";
+ sha256 = "0ajidzs0aisbw74nri9ks6sx6644nmwkisc9mvxm3f89zmnlsgwr";
goPackageAliases = [ "github.com/michaelmacinnis/oh" ];
buildInputs = [ adapted liner ];
disabled = isGo14;
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index 3401e967fe88..3b3c2099de18 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -392,7 +392,16 @@ rec {
lts-5_15 = packages.ghc7103.override {
packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.15.nix { };
};
- lts-5 = packages.lts-5_15;
+ lts-5_16 = packages.ghc7103.override {
+ packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.16.nix { };
+ };
+ lts-5_17 = packages.ghc7103.override {
+ packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.17.nix { };
+ };
+ lts-5_18 = packages.ghc7103.override {
+ packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.18.nix { };
+ };
+ lts-5 = packages.lts-5_18;
lts = packages.lts-5;
};
diff --git a/pkgs/top-level/node-packages-generated.nix b/pkgs/top-level/node-packages-generated.nix
index 229461b82f7c..3237a975e497 100644
--- a/pkgs/top-level/node-packages-generated.nix
+++ b/pkgs/top-level/node-packages-generated.nix
@@ -35809,7 +35809,7 @@
src = fetchgit {
url = "https://github.com/tstarling/pegjs";
rev = "9162b1e114e41992dd0fdafa24d2574a0b8a836a";
- sha256 = "11f0b6b159709bc7c9223c0c8013b3e307b87ea6bbfcf615b804b2d67fe3813a";
+ sha256 = "1aj0vgdwyir7z4aals6njrd92as27bflhlm5bp0fgi0lvvlwinnh";
};
deps = {
};
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index e861ac37a90d..db1405ff8a8b 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -887,11 +887,15 @@ let self = _self // overrides; _self = with self; {
CatalystActionRenderView = buildPerlPackage rec {
name = "Catalyst-Action-RenderView-0.16";
src = fetchurl {
- url = "mirror://cpan/modules/by-module/Catalyst/${name}.tar.gz";
- sha256 = "0j1rrld13cjk7ks92b5hv3xw4rfm2lvmksb4rlzd8mx0a0wj0rc5";
+ url = "mirror://cpan/authors/id/B/BO/BOBTFISH/${name}.tar.gz";
+ sha256 = "8565203950a057d43ecd64e9593715d565c2fbd8b02c91f43c53b2111acd3948";
+ };
+ buildInputs = [ HTTPRequestAsCGI ];
+ propagatedBuildInputs = [ CatalystRuntime DataVisitor MROCompat ];
+ meta = {
+ description = "Sensible default end action";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
- propagatedBuildInputs =
- [ CatalystRuntime HTTPRequestAsCGI DataVisitor MROCompat ];
};
CatalystActionREST = buildPerlPackage rec {
@@ -953,24 +957,27 @@ let self = _self // overrides; _self = with self; {
name = "Catalyst-Component-InstancePerContext-0.001001";
src = fetchurl {
url = "mirror://cpan/authors/id/G/GR/GRODITI/${name}.tar.gz";
- sha256 = "0wfj4vnn2cvk6jh62amwlg050p37fcwdgrn9amcz24z6w4qgjqvz";
+ sha256 = "7f63f930e1e613f15955c9e6d73873675c50c0a3bc2a61a034733361ed26d271";
+ };
+ propagatedBuildInputs = [ CatalystRuntime Moose ];
+ meta = {
+ description = "Moose role to create only one instance of component per context";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
- propagatedBuildInputs = [CatalystRuntime Moose];
};
CatalystControllerHTMLFormFu = buildPerlPackage rec {
name = "Catalyst-Controller-HTML-FormFu-1.00";
src = fetchurl {
url = "mirror://cpan/authors/id/C/CF/CFRANKS/${name}.tar.gz";
- sha256 = "0b7if9sz23i4qv0yl0nrv6myfb6db1a1ivm9qp9wdk8nfwl9ncl4";
+ sha256 = "84329b287716cdc6d3c5a9ee185458cd2ce7abd9d902eac1c6240ef17572f12c";
+ };
+ buildInputs = [ CatalystActionRenderView CatalystPluginSession CatalystPluginSessionStateCookie CatalystPluginSessionStoreFile CatalystViewTT TemplateToolkit TestAggregate TestWWWMechanize TestWWWMechanizeCatalyst ];
+ propagatedBuildInputs = [ CatalystComponentInstancePerContext CatalystRuntime ConfigAny HTMLFormFu Moose MooseXAttributeChained RegexpAssemble TaskWeaken namespaceautoclean ];
+ meta = {
+ description = "Catalyst integration for HTML::FormFu";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
- buildInputs = [ CatalystActionRenderView CatalystPluginSession
- CatalystPluginSessionStateCookie CatalystPluginSessionStoreFile
- CatalystViewTT TemplateToolkit TestAggregate TestWWWMechanize
- TestWWWMechanizeCatalyst ];
- propagatedBuildInputs = [ CatalystComponentInstancePerContext CatalystRuntime
- CGI ConfigAny HTMLFormFu Moose MooseXAttributeChained RegexpAssemble TaskWeaken
- namespaceautoclean ];
};
CatalystControllerPOD = buildPerlPackage rec {
@@ -989,19 +996,19 @@ let self = _self // overrides; _self = with self; {
};
};
- CatalystDevel = buildPerlPackage {
+ CatalystDevel = buildPerlPackage rec {
name = "Catalyst-Devel-1.39";
src = fetchurl {
- url = mirror://cpan/authors/id/I/IL/ILMARI/Catalyst-Devel-1.39.tar.gz;
- sha256 = "12m50bbkggjmpxihv3wnvr0g2qng0zwhlzi5ygppjz8wh2x73qxw";
+ url = "mirror://cpan/authors/id/I/IL/ILMARI/${name}.tar.gz";
+ sha256 = "bce371ba801c7d79eff3257e0af907cf62f140de968f0d63bf55be37d702a58a";
};
buildInputs = [ TestFatal ];
- propagatedBuildInputs = [ CatalystRuntime CatalystActionRenderView CatalystPluginConfigLoader CatalystPluginStaticSimple ConfigGeneral FileChangeNotify FileCopyRecursive FileShareDir ModuleInstall Moose MooseXDaemonize MooseXEmulateClassAccessorFast namespaceautoclean namespaceclean PathClass Starman TemplateToolkit ];
+ propagatedBuildInputs = [ CatalystActionRenderView CatalystPluginConfigLoader CatalystPluginStaticSimple CatalystRuntime ConfigGeneral FileChangeNotify FileCopyRecursive FileShareDir ModuleInstall Moose MooseXDaemonize MooseXEmulateClassAccessorFast PathClass TemplateToolkit Starman namespaceautoclean namespaceclean ];
meta = {
homepage = http://dev.catalyst.perl.org/;
description = "Catalyst Development Tools";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
- platforms = stdenv.lib.platforms.linux;
+ platforms = stdenv.lib.platforms.all;
};
};
@@ -1069,34 +1076,33 @@ let self = _self // overrides; _self = with self; {
};
};
- CatalystRuntime = buildPerlPackage {
- name = "Catalyst-Runtime-5.90085";
+ CatalystRuntime = buildPerlPackage rec {
+ name = "Catalyst-Runtime-5.90104";
src = fetchurl {
- url = mirror://cpan/authors/id/J/JJ/JJNAPIORK/Catalyst-Runtime-5.90085.tar.gz;
- sha256 = "17wfcawvj8nxs2wq7r094m6dff37s6i2d2z49lxz2n8c489d9nk1";
+ url = "mirror://cpan/authors/id/J/JJ/JJNAPIORK/${name}.tar.gz";
+ sha256 = "91d551944beb3a0ae8635c78d5f2e1583ef1e7873d5c8ee407e2f64380ad870b";
};
- buildInputs = [ DataDump HTTPMessage IOstringy JSONMaybeXS TestFatal ];
- propagatedBuildInputs = [ CGISimple CGIStruct ClassC3AdoptNEXT ClassDataInheritable ClassLoad DataDump DataOptList Encode HTMLParser HTTPBody HTTPMessage HTTPRequestAsCGI HashMultiValue JSONMaybeXS LWP ListMoreUtils MROCompat ModulePluggable Moose MooseXEmulateClassAccessorFast MooseXGetopt MooseXMethodAttributes MooseXRoleWithOverloading PathClass Plack PlackMiddlewareFixMissingBodyInRedirect PlackMiddlewareMethodOverride PlackMiddlewareRemoveRedundantBody PlackMiddlewareReverseProxy PlackTestExternalServer SafeIsa StreamBuffered StringRewritePrefix SubExporter TaskWeaken TermSizeAny TextSimpleTable TreeSimple TreeSimpleVisitorFactory TryTiny URI URIws namespaceautoclean namespaceclean ];
+ buildInputs = [ DataDump HTTPMessage IOstringy JSONMaybeXS TestFatal TypeTiny ];
+ propagatedBuildInputs = [ CGISimple CGIStruct ClassC3AdoptNEXT ClassDataInheritable ClassLoad DataDump DataOptList HTMLParser HTTPBody HTTPMessage HTTPRequestAsCGI HashMultiValue JSONMaybeXS LWP ListMoreUtils MROCompat ModulePluggable Moose MooseXEmulateClassAccessorFast MooseXGetopt MooseXMethodAttributes MooseXRoleWithOverloading PathClass Plack PlackMiddlewareFixMissingBodyInRedirect PlackMiddlewareMethodOverride PlackMiddlewareRemoveRedundantBody PlackMiddlewareReverseProxy PlackTestExternalServer SafeIsa StreamBuffered StringRewritePrefix SubExporter TaskWeaken TextSimpleTable TreeSimple TreeSimpleVisitorFactory TryTiny URI URIws namespaceautoclean namespaceclean ];
meta = {
homepage = http://dev.catalyst.perl.org/;
description = "The Catalyst Framework Runtime";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
- platforms = stdenv.lib.platforms.linux;
+ platforms = stdenv.lib.platforms.all;
};
};
- CatalystPluginAccessLog = buildPerlPackage {
- name = "Catalyst-Plugin-AccessLog-1.05";
+ CatalystPluginAccessLog = buildPerlPackage rec {
+ name = "Catalyst-Plugin-AccessLog-1.10";
src = fetchurl {
- url = mirror://cpan/authors/id/A/AR/ARODLAND/Catalyst-Plugin-AccessLog-1.05.tar.gz;
- sha256 = "0hqvckaw91q5yc25a33bp0d4qqxlgkp7rxlvi8n8svxd1406r55s";
+ url = "mirror://cpan/authors/id/A/AR/ARODLAND/${name}.tar.gz";
+ sha256 = "873db8e4e72a994e3e17aeb53d2b837e6d524b4b8b0f3539f262135c88cc2120";
};
propagatedBuildInputs = [ CatalystRuntime DateTime Moose namespaceautoclean ];
- doCheck = false;
meta = {
+ homepage = http://metacpan.org/release/Catalyst-Plugin-AccessLog;
description = "Request logging from within Catalyst";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
- platforms = stdenv.lib.platforms.linux;
};
};
@@ -5507,6 +5513,60 @@ let self = _self // overrides; _self = with self; {
};
};
+ Gnome2 = buildPerlPackage rec {
+ name = "Gnome2-1.046";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/X/XA/XAOC/${name}.tar.gz";
+ sha256 = "a6c787232ab7e82a423a9ff5a49cec6bf586c1bb3c04c2052a91cdda5b66ae40";
+ };
+ buildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig Glib Gnome2Canvas Gnome2VFS Gtk2 ];
+ propagatedBuildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig Glib Gnome2Canvas Gnome2VFS Gtk2 Pango pkgs.gnome2.libgnomeui ];
+ meta = {
+ homepage = http://gtk2-perl.sourceforge.net;
+ description = "Perl interface to the 2.x series of the GNOME libraries";
+ license = stdenv.lib.licenses.lgpl21Plus;
+ };
+ };
+
+ Gnome2Canvas = buildPerlPackage rec {
+ name = "Gnome2-Canvas-1.002";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/T/TS/TSCH/${name}.tar.gz";
+ sha256 = "47a34204cd5f3a0ef5c8b9e1c9c96f41740edab7e9abf1d0560fa8666ba1916e";
+ };
+ buildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig Glib Gtk2 Pango pkgs.gnome2.libgnomecanvas ];
+ meta = {
+ license = stdenv.lib.licenses.lgpl2Plus;
+ };
+ };
+
+ Gnome2VFS = buildPerlPackage rec {
+ name = "Gnome2-VFS-1.082";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/X/XA/XAOC/${name}.tar.gz";
+ sha256 = "19dacfedef8770300861cb75f98ca5402e6e56501a888af3c18266a0790911b7";
+ };
+ propagatedBuildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig Glib pkgs.gnome2.gnome_vfs ];
+ meta = {
+ description = "Perl interface to the 2.x series of the GNOME VFS library";
+ license = stdenv.lib.licenses.lgpl21Plus;
+ };
+ };
+
+ Gnome2Wnck = buildPerlPackage rec {
+ name = "Gnome2-Wnck-0.16";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/T/TS/TSCH/${name}.tar.gz";
+ sha256 = "604a8ece88ac29f132d59b0caac27657ec31371c1606a4698a2160e88ac586e5";
+ };
+ buildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig Glib Gtk2 Pango pkgs.libwnck pkgs.glib pkgs.gtk2 ];
+ propagatedBuildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig Glib Gtk2 ];
+ meta = {
+ description = "Perl interface to the Window Navigator Construction Kit";
+ license = stdenv.lib.licenses.lgpl21Plus;
+ };
+ };
+
GnuPG = buildPerlPackage {
name = "GnuPG-0.19";
src = fetchurl {
@@ -5533,6 +5593,19 @@ let self = _self // overrides; _self = with self; {
};
};
+ GooCanvas = buildPerlPackage rec {
+ name = "Goo-Canvas-0.06";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/Y/YE/YEWENBIN/${name}.tar.gz";
+ sha256 = "0c588c507eed5e62d12ed1cc1e491c6ff3a1f59c4fb3d435e14214b37ab39251";
+ };
+ propagatedBuildInputs = [ Cairo ExtUtilsDepends ExtUtilsPkgConfig Glib Gtk2 Pango pkgs.goocanvas pkgs.gtk2 ];
+ meta = {
+ description = "Perl interface to the GooCanvas";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
+ };
+
GoogleProtocolBuffers = buildPerlPackage rec {
name = "Google-ProtocolBuffers-0.11";
src = fetchurl {
@@ -5617,6 +5690,53 @@ let self = _self // overrides; _self = with self; {
};
};
+ Gtk2AppIndicator = buildPerlPackage rec {
+ name = "Gtk2-AppIndicator-0.15";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/O/OE/OESTERHOL/${name}.tar.gz";
+ sha256 = "a25cb071e214fb89b4450aa4605031eae89b7961e149b0d6e8f491c19c14a90a";
+ };
+ propagatedBuildInputs = [ Gtk2 pkgs.libappindicator-gtk2 pkgs.libdbusmenu-gtk2 pkgs.gtk2 pkgs.pkgconfig Glib Pango ];
+ # Tests fail due to no display:
+ # Gtk-WARNING **: cannot open display: at /nix/store/HASH-perl-Gtk2-1.2498/lib/perl5/site_perl/5.22.2/x86_64-linux-thread-multi/Gtk2.pm line 126.
+ doCheck = false;
+ meta = {
+ description = "Perl extension for libappindicator";
+ license = stdenv.lib.licenses.artistic1;
+ };
+ };
+
+ Gtk2ImageView = buildPerlPackage rec {
+ name = "Gtk2-ImageView-0.05";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/R/RA/RATCLIFFE/${name}.tar.gz";
+ sha256 = "087186c3693acf196451cf59cc8b7f5cf9a7b05abe20d32dcbcba0822953fb80";
+ };
+ buildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig Glib Gtk2 Pango pkgs.gtkimageview pkgs.gtk2 ];
+ propagatedBuildInputs = [ ExtUtilsDepends ExtUtilsPkgConfig Glib Gtk2 ];
+ # Tests fail due to no display server:
+ # Gtk-WARNING **: cannot open display: at /nix/store/HASH-perl-Gtk2-1.2498/lib/perl5/site_perl/5.22.2/x86_64-linux-thread-multi/Gtk2.pm line 126.
+ # t/animview.t ...........
+ doCheck = false;
+ meta = {
+ description = "Perl bindings for the GtkImageView widget";
+ license = stdenv.lib.licenses.free;
+ };
+ };
+
+ Gtk2Unique = buildPerlPackage rec {
+ name = "Gtk2-Unique-0.05";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/P/PO/POTYL/${name}.tar.gz";
+ sha256 = "ae8dfb0f6844ddaa2ce7b5b44553419490c8e83c24fd35c431406a58f6be0f4f";
+ };
+ propagatedBuildInputs = [ Gtk2 Glib ExtUtilsDepends ExtUtilsPkgConfig pkgs.libunique pkgs.gtk2 Cairo Pango ];
+ meta = {
+ description = "Use single instance applications";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
+ };
+
Guard = buildPerlPackage rec {
name = "Guard-1.023";
src = fetchurl {
@@ -7690,11 +7810,11 @@ let self = _self // overrides; _self = with self; {
};
};
- MIMETypes = buildPerlPackage {
- name = "MIME-Types-2.04";
+ MIMETypes = buildPerlPackage rec {
+ name = "MIME-Types-2.13";
src = fetchurl {
- url = mirror://cpan/authors/id/M/MA/MARKOV/MIME-Types-2.04.tar.gz;
- sha256 = "13yci99n8kl8p4ac5n5f1j968p7va2phlvfc5qgpnn1d6yfhddi2";
+ url = "mirror://cpan/authors/id/M/MA/MARKOV/${name}.tar.gz";
+ sha256 = "1y3vnxk4wv4a00lxcp39hw9650cdl455d3y7nv42rqmvaxikghwr";
};
meta = {
description = "Definition of MIME types";
@@ -10009,6 +10129,17 @@ let self = _self // overrides; _self = with self; {
};
};
+ ProcSimple = buildPerlPackage rec {
+ name = "Proc-Simple-1.32";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/M/MS/MSCHILLI/${name}.tar.gz";
+ sha256 = "4c8f0a924b19ad78a13da73fe0fb306d32a7b9d10a332c523087fc83a209a8c4";
+ };
+ meta = {
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
+ };
+
ProcWait3 = buildPerlPackage {
name = "Proc-Wait3-0.05";
src = fetchurl {
@@ -11486,24 +11617,14 @@ let self = _self // overrides; _self = with self; {
name = "Task-Catalyst-Tutorial-0.06";
src = fetchurl {
url = "mirror://cpan/authors/id/M/MR/MRAMBERG/${name}.tar.gz";
- sha256 = "07nn8a30n3qylpnf7s4ma6w462g31pywwikib117hr2mc7cv5cbm";
+ sha256 = "75b1b2d96155647842587146cefd0de30943b85195e8e3eca51e0f0b8642d61e";
};
- propagatedBuildInputs = [
- CatalystManual CatalystRuntime CatalystDevel
- CatalystPluginSession CatalystPluginAuthentication
- CatalystAuthenticationStoreDBIxClass
- CatalystPluginAuthorizationRoles
- CatalystPluginSessionStateCookie
- CatalystPluginAuthorizationACL
- CatalystPluginHTMLWidget
- CatalystPluginSessionStoreFastMmap
- CatalystPluginStackTrace
- CatalystViewTT
- DBIxClass DBIxClassHTMLWidget
- CatalystControllerHTMLFormFu
- ];
buildInputs = [TestPodCoverage];
- meta.platforms = stdenv.lib.platforms.linux;
+ propagatedBuildInputs = [ CatalystAuthenticationStoreDBIxClass CatalystControllerHTMLFormFu CatalystDevel CatalystManual CatalystModelDBICSchema CatalystPluginAuthentication CatalystPluginAuthorizationACL CatalystPluginAuthorizationRoles CatalystPluginSession CatalystPluginSessionStateCookie CatalystPluginSessionStoreFastMmap CatalystPluginStackTrace CatalystRuntime CatalystViewTT DBIxClass ];
+ meta = {
+ description = "Everything you need to follow the Catalyst Tutorial";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
};
TaskPlack = buildPerlModule rec {
@@ -11714,13 +11835,13 @@ let self = _self // overrides; _self = with self; {
};
TermReadLineGnu = buildPerlPackage rec {
- name = "Term-ReadLine-Gnu-1.26";
+ name = "Term-ReadLine-Gnu-1.31";
src = fetchurl {
url = "mirror://cpan/authors/id/H/HA/HAYASHI/${name}.tar.gz";
- sha256 = "1s2dvjbh501c04s5hpf17mwirslmhqmsymg3ri4hcvh5yvp7bw7q";
+ sha256 = "42174b4bc9d3881502d527fc7c8bd1c0a4b266c2f0bbee012e9a604999418f3b";
};
buildInputs = [ pkgs.readline pkgs.ncurses ];
- NIX_CFLAGS_LINK = "-lreadline";
+ NIX_CFLAGS_LINK = "-lreadline -lncursesw";
# For some crazy reason Makefile.PL doesn't generate a Makefile if
# AUTOMATED_TESTING is set.
@@ -11735,6 +11856,12 @@ let self = _self // overrides; _self = with self; {
# Tests don't work because they require /dev/tty.
doCheck = false;
+
+ meta = {
+ homepage = http://sourceforge.net/projects/perl-trg/;
+ description = "Perl extension for the GNU Readline/History Library";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
};
TermShellUI = buildPerlPackage rec {
@@ -13770,11 +13897,11 @@ let self = _self // overrides; _self = with self; {
};
};
- Want = buildPerlPackage {
- name = "Want-0.26";
+ Want = buildPerlPackage rec {
+ name = "Want-0.29";
src = fetchurl {
- url = mirror://cpan/authors/id/R/RO/ROBIN/Want-0.26.tar.gz;
- sha256 = "4951675e13de2b0b9792be2827b8ef46ef25a0b9a2d3e9132143444dac28e17c";
+ url = "mirror://cpan/authors/id/R/RO/ROBIN/${name}.tar.gz";
+ sha256 = "1xsjylbxxcbkjazqms49ipi94j1hd2ykdikk29cq7dscil5p9r5l";
};
};
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 0be4ffff90d2..098570eb3a40 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -13245,7 +13245,7 @@ in modules // {
name = "slixmpp-${version}";
version = "1.1";
- disabled = (!isPy34);
+ disabled = pythonOlder "3.4";
src = pkgs.fetchurl {
url = "mirror://pypi/s/slixmpp/${name}.tar.gz";
@@ -26213,14 +26213,14 @@ in modules // {
};
neovim = buildPythonPackage rec {
- version = "0.1.7";
+ version = "0.1.8";
name = "neovim-${version}";
disabled = isPy35;
src = pkgs.fetchurl {
url = "mirror://pypi/n/neovim/${name}.tar.gz";
- sha256 = "0il6h9qpy9rkgz16yn2bhhg5f23w41wvm9ivlscx5l55llq9sd9q";
+ sha256 = "06g84f0l208jrc1iqa4vk9kgwr77z1ya8cq39cygpq88yjj28whi";
};
propagatedBuildInputs = with self; [ msgpack ]
@@ -26408,7 +26408,7 @@ in modules // {
version = "0.9";
namePrefix = "";
- disabled = (!isPy34);
+ disabled = pythonOlder "3.4";
buildInputs = with self; [ pytest ];
propagatedBuildInputs = with self ; [ aiodns slixmpp pyinotify potr ];
@@ -27274,6 +27274,32 @@ in modules // {
};
};
+ Lasagne = buildPythonPackage rec {
+ name = "Lasagne-${version}";
+ version = "0.1";
+ disabled = isPy3k;
+
+ src = pkgs.fetchurl {
+ url = "mirror://pypi/l/lasagne/${name}.tar.gz";
+ sha256 = "0cqj86rdm6c7y5vq3i13qy76fg5xi3yjp4r0hpqy8hvynv54wqrw";
+ };
+
+ propagatedBuildInputs = with self; [
+ numpy
+ Theano
+ ];
+
+ # there are no tests
+ doCheck = false;
+
+ meta = {
+ description = "Lightweight library to build and train neural networks in Theano";
+ homepage = "https://github.com/Lasagne/Lasagne";
+ maintainers = with maintainers; [ NikolaMandic ];
+ license = licenses.mit;
+ };
+ };
+
sigtools = buildPythonPackage rec {
name = "sigtools-${version}";
version = "1.1a3";
@@ -27383,4 +27409,90 @@ in modules // {
license = licenses.asl20;
};
};
+
+ simpleai = buildPythonPackage rec {
+ version = "0.7.11";
+ name = "simpleai-${version}";
+
+ src = pkgs.fetchurl {
+ url= "https://pypi.python.org/packages/source/s/simpleai/${name}.tar.gz";
+ sha256 = "03frjc5jxsz9xm24jz7qa4hcp0dicgazrxkdsa2rsnir672lwkwz";
+ };
+
+ propagatedBuildInputs = with self; [ numpy ];
+
+ disabled = isPy3k;
+
+ #No tests in archive
+ doCheck = false;
+
+ meta = {
+ homepage = https://github.com/simpleai-team/simpleai;
+ description = "This lib implements many of the artificial intelligence algorithms described on the book 'Artificial Intelligence, a Modern Approach'";
+ maintainers = with maintainers; [ NikolaMandic ];
+ };
+ };
+
+ tvdb_api = buildPythonPackage rec {
+ name = "tvdb_api-${version}";
+ version = "1.10";
+
+ src = pkgs.fetchurl {
+ url = "mirror://pypi/t/tvdb_api/${name}.tar.gz";
+ sha256 = "0hq887yb3rwc0rcw32lh7xdkk9bbrqy274aspzqkd6f7dyhp73ih";
+ };
+
+ disabled = isPy3k;
+
+ meta = {
+ description = "Simple to use TVDB (thetvdb.com) API in Python.";
+ homepage = "https://github.com/dbr/tvdb_api";
+ license = licenses.unlicense;
+ maintainers = with maintainers; [ peterhoeg ];
+ };
+ };
+
+ tvnamer = buildPythonPackage rec {
+ name = "tvnamer-${version}";
+ version = "2.3";
+
+ src = pkgs.fetchurl {
+ url = "mirror://pypi/t/tvnamer/${name}.tar.gz";
+ sha256 = "15i6qvhwhcx08c96xx3s2841yc7k8gxrqqvhw908c11g0045c2r3";
+ };
+
+ propagatedBuildInputs = with self; [
+ tvdb_api
+ ];
+
+ # tvdb_api isn't working with Python 3
+ disabled = isPy3k;
+
+ meta = {
+ description = "Automatic TV episode file renamer, uses data from thetvdb.com via tvdb_api.";
+ homepage = "https://github.com/dbr/tvnamer";
+ license = licenses.unlicense;
+ maintainers = with maintainers; [ peterhoeg ];
+ };
+ };
+
+ pybrain = buildPythonPackage rec {
+ name = "pybrain-${version}";
+ version = "0.3.3";
+
+ src = pkgs.fetchurl {
+ url = "https://github.com/pybrain/pybrain/archive/${version}.tar.gz";
+ sha256 = "114m99vsrps2gjqfm3i3kxx4nibjhjdzphsy2bhrxa5q3h2q14dz";
+ };
+
+ propagatedBuildInputs = with self; [ scipy ];
+
+ meta = {
+ homepage = "http://pybrain.org/";
+ description = "Modular Machine Learning Library for Python";
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ NikolaMandic ];
+ };
+ };
+
}
diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix
index 83bbf3b96e8e..2211241ed3dd 100644
--- a/pkgs/top-level/release.nix
+++ b/pkgs/top-level/release.nix
@@ -298,7 +298,6 @@ let
xf86videonv = linux;
xf86videovesa = linux;
xf86videovmware = linux;
- xf86videomodesetting = linux;
xfs = linux ++ darwin;
xinput = linux ++ darwin;
xkbcomp = linux ++ darwin;