diff --git a/README.md b/README.md index 987cb2a1f97c..055a219462ed 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,7 @@ For pull-requests, please rebase onto nixpkgs `master`. * [Documentation (Nix Expression Language chapter)](https://nixos.org/nix/manual/#ch-expression-language) * [Manual (How to write packages for Nix)](https://nixos.org/nixpkgs/manual/) * [Manual (NixOS)](https://nixos.org/nixos/manual/) +* [Nix Wiki](https://nixos.org/wiki/) * [Continuous package builds for unstable/master](https://hydra.nixos.org/jobset/nixos/trunk-combined) * [Continuous package builds for 14.12 release](https://hydra.nixos.org/jobset/nixos/release-14.12) * [Continuous package builds for 15.09 release](https://hydra.nixos.org/jobset/nixos/release-15.09) diff --git a/lib/attrsets.nix b/lib/attrsets.nix index 5aad76e75e4d..22ecc808679d 100644 --- a/lib/attrsets.nix +++ b/lib/attrsets.nix @@ -116,7 +116,7 @@ rec { Type: collect :: - (AttrSet -> Bool) -> AttrSet -> AttrSet + (AttrSet -> Bool) -> AttrSet -> [x] Example: collect isList { a = { b = ["b"]; }; c = [1]; } diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 78ccbc68b8bf..902095b5a7fe 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -76,6 +76,7 @@ dbohdan = "Danyil Bohdan "; DerGuteMoritz = "Moritz Heidkamp "; deepfire = "Kosyrev Serge <_deepfire@feelingofgreen.ru>"; + demin-dmitriy = "Dmitriy Demin "; desiderius = "Didier J. Devroye "; devhell = "devhell <\"^\"@regexmail.net>"; dezgeg = "Tuomas Tynkkynen "; @@ -89,6 +90,7 @@ edwtjo = "Edward Tjörnhammar "; eelco = "Eelco Dolstra "; eikek = "Eike Kettner "; + elasticdog = "Aaron Bull Schaefer "; ellis = "Ellis Whitehead "; emery = "Emery Hemingway "; enolan = "Echo Nolan "; @@ -181,6 +183,7 @@ mathnerd314 = "Mathnerd314 "; matthiasbeyer = "Matthias Beyer "; mbakke = "Marius Bakke "; + mbe = "Brandon Edens "; meditans = "Carlo Nucera "; meisternu = "Matt Miemiec "; michelk = "Michel Kuhlmann "; @@ -259,9 +262,11 @@ skeidel = "Sven Keidel "; smironov = "Sergey Mironov "; spacefrogg = "Michael Raitza "; + spencerjanssen = "Spencer Janssen "; sprock = "Roger Mason "; spwhitt = "Spencer Whitt "; stephenmw = "Stephen Weinberg "; + steveej = "Stefan Junker "; szczyp = "Szczyp "; sztupi = "Attila Sztupak "; tailhook = "Paul Colomiets "; @@ -289,6 +294,7 @@ vlstill = "Vladimír Štill "; vmandela = "Venkateswara Rao Mandela "; vozz = "Oliver Hunt "; + wedens = "wedens "; winden = "Antonio Vargas Gonzalez "; wizeman = "Ricardo M. Correia "; wjlroe = "William Roe "; diff --git a/maintainers/scripts/dep-licenses.sh b/maintainers/scripts/dep-licenses.sh index 48c1efdeebc5..28ad22c334fc 100755 --- a/maintainers/scripts/dep-licenses.sh +++ b/maintainers/scripts/dep-licenses.sh @@ -17,7 +17,7 @@ trap "exitHandler" EXIT # fetch the trace and the drvPath of the attribute. nix-instantiate $NIXPKGS -A $attr --show-trace > "$tmp/drvPath" 2> "$tmp/trace" || { cat 1>&2 - "$tmp/trace" </run/current-system/sw/lib/debug/.build-id, + where tools such as gdb can find them. + If you need debug symbols for a package that doesn't + provide them by default, you can enable them as follows: + + + nixpkgs.config.packageOverrides = pkgs: { + hello = overrideDerivation pkgs.hello (attrs: { + outputs = attrs.outputs or ["out"] ++ ["debug"]; + buildInputs = attrs.buildInputs ++ [<nixpkgs/pkgs/build-support/setup-hooks/separate-debug-info.sh>]; + }); + }; + + ''; + }; + + }; + + + config = { + + # FIXME: currently disabled because /lib is already in + # environment.pathsToLink, and we can't have both. + #environment.pathsToLink = [ "/lib/debug/.build-id" ]; + + environment.outputsToLink = + optional config.environment.enableDebugInfo "debug"; + + }; + +} diff --git a/nixos/modules/config/swap.nix b/nixos/modules/config/swap.nix index 1dc7ebb96aff..9a5d6a9fc333 100644 --- a/nixos/modules/config/swap.nix +++ b/nixos/modules/config/swap.nix @@ -3,6 +3,84 @@ with utils; with lib; +let + + swapCfg = {config, options, ...}: { + + options = { + + device = mkOption { + example = "/dev/sda3"; + type = types.str; + description = "Path of the device."; + }; + + label = mkOption { + example = "swap"; + type = types.str; + description = '' + Label of the device. Can be used instead of device. + ''; + }; + + size = mkOption { + default = null; + example = 2048; + type = types.nullOr types.int; + description = '' + If this option is set, ‘device’ is interpreted as the + path of a swapfile that will be created automatically + with the indicated size (in megabytes) if it doesn't + exist. + ''; + }; + + priority = mkOption { + default = null; + example = 2048; + type = types.nullOr types.int; + description = '' + Specify the priority of the swap device. Priority is a value between 0 and 32767. + Higher numbers indicate higher priority. + null lets the kernel choose a priority, which will show up as a negative value. + ''; + }; + + randomEncryption = mkOption { + default = false; + type = types.bool; + description = '' + Encrypt swap device with a random key. This way you won't have a persistent swap device. + + WARNING: Don't try to hibernate when you have at least one swap partition with + this option enabled! We have no way to set the partition into which hibernation image + is saved, so if your image ends up on an encrypted one you would lose it! + ''; + }; + + deviceName = mkOption { + type = types.str; + internal = true; + }; + + realDevice = mkOption { + type = types.path; + internal = true; + }; + + }; + + config = rec { + device = mkIf options.label.isDefined + "/dev/disk/by-label/${config.label}"; + deviceName = escapeSystemdPath config.device; + realDevice = if config.randomEncryption then "/dev/mapper/${deviceName}" else config.device; + }; + + }; + +in + { ###### interface @@ -26,58 +104,7 @@ with lib; recommended. ''; - type = types.listOf types.optionSet; - - options = {config, options, ...}: { - - options = { - - device = mkOption { - example = "/dev/sda3"; - type = types.str; - description = "Path of the device."; - }; - - label = mkOption { - example = "swap"; - type = types.str; - description = '' - Label of the device. Can be used instead of device. - ''; - }; - - size = mkOption { - default = null; - example = 2048; - type = types.nullOr types.int; - description = '' - If this option is set, ‘device’ is interpreted as the - path of a swapfile that will be created automatically - with the indicated size (in megabytes) if it doesn't - exist. - ''; - }; - - priority = mkOption { - default = null; - example = 2048; - type = types.nullOr types.int; - description = '' - Specify the priority of the swap device. Priority is a value between 0 and 32767. - Higher numbers indicate higher priority. - null lets the kernel choose a priority, which will show up as a negative value. - ''; - }; - - }; - - config = { - device = mkIf options.label.isDefined - "/dev/disk/by-label/${config.label}"; - }; - - }; - + type = types.listOf (types.submodule swapCfg); }; }; @@ -95,27 +122,37 @@ with lib; createSwapDevice = sw: assert sw.device != ""; - let device' = escapeSystemdPath sw.device; in - nameValuePair "mkswap-${escapeSystemdPath sw.device}" - { description = "Initialisation of Swapfile ${sw.device}"; - wantedBy = [ "${device'}.swap" ]; - before = [ "${device'}.swap" ]; - path = [ pkgs.utillinux ]; + let realDevice' = escapeSystemdPath sw.realDevice; + in nameValuePair "mkswap-${sw.deviceName}" + { description = "Initialisation of swap device ${sw.device}"; + wantedBy = [ "${realDevice'}.swap" ]; + before = [ "${realDevice'}.swap" ]; + path = [ pkgs.utillinux ] ++ optional sw.randomEncryption pkgs.cryptsetup; script = '' - if [ ! -e "${sw.device}" ]; then - fallocate -l ${toString sw.size}M "${sw.device}" || - dd if=/dev/zero of="${sw.device}" bs=1M count=${toString sw.size} - chmod 0600 ${sw.device} - mkswap ${sw.device} - fi + ${optionalString (sw.size != null) '' + if [ ! -e "${sw.device}" ]; then + fallocate -l ${toString sw.size}M "${sw.device}" || + dd if=/dev/zero of="${sw.device}" bs=1M count=${toString sw.size} + chmod 0600 ${sw.device} + ${optionalString (!sw.randomEncryption) "mkswap ${sw.realDevice}"} + fi + ''} + ${optionalString sw.randomEncryption '' + echo "secretkey" | cryptsetup luksFormat --batch-mode ${sw.device} + echo "secretkey" | cryptsetup luksOpen ${sw.device} ${sw.deviceName} + cryptsetup luksErase --batch-mode ${sw.device} + mkswap ${sw.realDevice} + ''} ''; unitConfig.RequiresMountsFor = [ "${dirOf sw.device}" ]; unitConfig.DefaultDependencies = false; # needed to prevent a cycle serviceConfig.Type = "oneshot"; + serviceConfig.RemainAfterExit = sw.randomEncryption; + serviceConfig.ExecStop = optionalString sw.randomEncryption "cryptsetup luksClose ${sw.deviceName}"; }; - in listToAttrs (map createSwapDevice (filter (sw: sw.size != null) config.swapDevices)); + in listToAttrs (map createSwapDevice (filter (sw: sw.size != null || sw.randomEncryption) config.swapDevices)); }; diff --git a/nixos/modules/config/system-path.nix b/nixos/modules/config/system-path.nix index 748ada99be69..e14e4cf13147 100644 --- a/nixos/modules/config/system-path.nix +++ b/nixos/modules/config/system-path.nix @@ -7,12 +7,6 @@ with lib; let - extraManpages = pkgs.runCommand "extra-manpages" { buildInputs = [ pkgs.help2man ]; } - '' - mkdir -p $out/share/man/man1 - help2man ${pkgs.gnutar}/bin/tar > $out/share/man/man1/tar.1 - ''; - requiredPackages = [ config.nix.package pkgs.acl @@ -34,7 +28,6 @@ let pkgs.xz pkgs.less pkgs.libcap - pkgs.man pkgs.nano pkgs.ncurses pkgs.netcat @@ -47,7 +40,6 @@ let pkgs.time pkgs.texinfoInteractive pkgs.utillinux - extraManpages ]; in @@ -78,8 +70,16 @@ in # to work. default = []; example = ["/"]; - description = "List of directories to be symlinked in `/run/current-system/sw'."; + description = "List of directories to be symlinked in /run/current-system/sw."; }; + + outputsToLink = mkOption { + type = types.listOf types.str; + default = []; + example = [ "doc" ]; + description = "List of package outputs to be symlinked into /run/current-system/sw."; + }; + }; system = { @@ -103,9 +103,7 @@ in [ "/bin" "/etc/xdg" "/info" - "/lib" # FIXME: remove - #"/lib/debug/.build-id" # enables GDB to find separated debug info - "/man" + "/lib" # FIXME: remove and update debug-info.nix "/sbin" "/share/applications" "/share/desktop-directories" @@ -113,7 +111,6 @@ in "/share/emacs" "/share/icons" "/share/info" - "/share/man" "/share/menus" "/share/mime" "/share/nano" @@ -126,7 +123,7 @@ in system.path = pkgs.buildEnv { name = "system-path"; paths = config.environment.systemPackages; - inherit (config.environment) pathsToLink; + inherit (config.environment) pathsToLink outputsToLink; ignoreCollisions = true; # !!! Hacky, should modularise. postBuild = diff --git a/nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix b/nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix index 0ca57a4635f4..15e22fb50d48 100644 --- a/nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix +++ b/nixos/modules/installer/cd-dvd/sd-image-armv7l-multiplatform.nix @@ -22,13 +22,9 @@ in boot.loader.grub.enable = false; boot.loader.generic-extlinux-compatible.enable = true; - # FIXME: change this to linuxPackages_latest once v4.2 is out - boot.kernelPackages = pkgs.linuxPackages_testing; + boot.kernelPackages = pkgs.linuxPackages_latest; boot.kernelParams = ["console=ttyS0,115200n8" "console=ttyAMA0,115200n8" "console=tty0"]; - # FIXME: fix manual evaluation on ARM - services.nixosManual.enable = lib.mkOverride 0 false; - # FIXME: this probably should be in installation-device.nix users.extraUsers.root.initialHashedPassword = ""; diff --git a/nixos/modules/installer/cd-dvd/sd-image-raspberrypi.nix b/nixos/modules/installer/cd-dvd/sd-image-raspberrypi.nix index 199a252ad2b5..e7163f10a3c3 100644 --- a/nixos/modules/installer/cd-dvd/sd-image-raspberrypi.nix +++ b/nixos/modules/installer/cd-dvd/sd-image-raspberrypi.nix @@ -27,9 +27,6 @@ in boot.kernelPackages = pkgs.linuxPackages_rpi; - # FIXME: fix manual evaluation on ARM - services.nixosManual.enable = lib.mkOverride 0 false; - # FIXME: this probably should be in installation-device.nix users.extraUsers.root.initialHashedPassword = ""; diff --git a/nixos/modules/installer/tools/nixos-rebuild.sh b/nixos/modules/installer/tools/nixos-rebuild.sh index af19004cbddb..6792690b4c3b 100644 --- a/nixos/modules/installer/tools/nixos-rebuild.sh +++ b/nixos/modules/installer/tools/nixos-rebuild.sh @@ -235,7 +235,7 @@ fi # default and/or activate it now. if [ "$action" = switch -o "$action" = boot -o "$action" = test -o "$action" = dry-activate ]; then if ! $pathToConfig/bin/switch-to-configuration "$action"; then - echo "warning: error(s) occured while switching to the new configuration" >&2 + echo "warning: error(s) occurred while switching to the new configuration" >&2 exit 1 fi fi diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 2dafd19e0b47..77575867f873 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -1,7 +1,8 @@ [ + ./config/debug-info.nix ./config/fonts/corefonts.nix - ./config/fonts/fontconfig.nix ./config/fonts/fontconfig-ultimate.nix + ./config/fonts/fontconfig.nix ./config/fonts/fontdir.nix ./config/fonts/fonts.nix ./config/fonts/ghostscript.nix @@ -22,9 +23,9 @@ ./config/system-environment.nix ./config/system-path.nix ./config/timezone.nix - ./config/vpnc.nix ./config/unix-odbc-drivers.nix ./config/users-groups.nix + ./config/vpnc.nix ./config/zram.nix ./hardware/all-firmware.nix ./hardware/cpu/amd-microcode.nix @@ -61,9 +62,11 @@ ./programs/command-not-found/command-not-found.nix ./programs/dconf.nix ./programs/environment.nix + ./programs/freetds.nix ./programs/ibus.nix ./programs/kbdlight.nix ./programs/light.nix + ./programs/man.nix ./programs/nano.nix ./programs/screen.nix ./programs/shadow.nix @@ -73,7 +76,6 @@ ./programs/uim.nix ./programs/venus.nix ./programs/wvdial.nix - ./programs/freetds.nix ./programs/xfs_quota.nix ./programs/zsh/zsh.nix ./rename.nix @@ -264,6 +266,7 @@ ./services/networking/atftpd.nix ./services/networking/avahi-daemon.nix ./services/networking/bind.nix + ./services/networking/autossh.nix ./services/networking/bird.nix ./services/networking/bitlbee.nix ./services/networking/btsync.nix diff --git a/nixos/modules/programs/man.nix b/nixos/modules/programs/man.nix new file mode 100644 index 000000000000..b28506538049 --- /dev/null +++ b/nixos/modules/programs/man.nix @@ -0,0 +1,30 @@ +{ config, lib, pkgs, ... }: + +with lib; + +{ + + options = { + + programs.man.enable = mkOption { + type = types.bool; + default = true; + description = '' + Whether to enable manual pages and the man command. + ''; + }; + + }; + + + config = mkIf config.programs.man.enable { + + environment.systemPackages = [ pkgs.man ]; + + environment.pathsToLink = [ "/share/man" ]; + + environment.outputsToLink = [ "man" ]; + + }; + +} diff --git a/nixos/modules/services/databases/postgresql.nix b/nixos/modules/services/databases/postgresql.nix index bae088c6610e..06b9c3fbf4ca 100644 --- a/nixos/modules/services/databases/postgresql.nix +++ b/nixos/modules/services/databases/postgresql.nix @@ -202,6 +202,8 @@ in # For non-root operation. initdb fi + # See postStart! + touch "${cfg.dataDir}/.first_startup" fi ln -sfn "${configFile}" "${cfg.dataDir}/postgresql.conf" diff --git a/nixos/modules/services/misc/nixos-manual.nix b/nixos/modules/services/misc/nixos-manual.nix index c10d8197686f..7534eb0ae6a3 100644 --- a/nixos/modules/services/misc/nixos-manual.nix +++ b/nixos/modules/services/misc/nixos-manual.nix @@ -92,7 +92,9 @@ in system.build.manual = manual; - environment.systemPackages = [ manual.manpages manual.manual help ]; + environment.systemPackages = + [ manual.manual help ] + ++ optional config.programs.man.enable manual.manpages; boot.extraTTYs = mkIf cfg.showManual ["tty${cfg.ttyNumber}"]; diff --git a/nixos/modules/services/monitoring/teamviewer.nix b/nixos/modules/services/monitoring/teamviewer.nix index beba5dcd1b06..533f1ea6644b 100644 --- a/nixos/modules/services/monitoring/teamviewer.nix +++ b/nixos/modules/services/monitoring/teamviewer.nix @@ -29,6 +29,7 @@ in wantedBy = [ "graphical.target" ]; after = [ "NetworkManager-wait-online.service" "network.target" ]; + preStart = "mkdir -pv /var/tmp/teamviewer10/{logs,config}"; serviceConfig = { Type = "forking"; diff --git a/nixos/modules/services/networking/autossh.nix b/nixos/modules/services/networking/autossh.nix new file mode 100644 index 000000000000..9ea17469870d --- /dev/null +++ b/nixos/modules/services/networking/autossh.nix @@ -0,0 +1,114 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + + cfg = config.services.autossh; + +in + +{ + + ###### interface + + options = { + + services.autossh = { + + sessions = mkOption { + type = types.listOf (types.submodule { + options = { + name = mkOption { + type = types.string; + example = "socks-peer"; + description = "Name of the local AutoSSH session"; + }; + user = mkOption { + type = types.string; + example = "bill"; + description = "Name of the user the AutoSSH session should run as"; + }; + monitoringPort = mkOption { + type = types.int; + default = 0; + example = 20000; + description = '' + Port to be used by AutoSSH for peer monitoring. Note, that + AutoSSH also uses mport+1. Value of 0 disables the keep-alive + style monitoring + ''; + }; + extraArguments = mkOption { + type = types.string; + example = "-N -D4343 bill@socks.example.net"; + description = '' + Arguments to be passed to AutoSSH and retransmitted to SSH + process. Some meaningful options include -N (don't run remote + command), -D (open SOCKS proxy on local port), -R (forward + remote port), -L (forward local port), -v (Enable debug). Check + ssh manual for the complete list. + ''; + }; + }; + }); + + default = []; + description = '' + List of AutoSSH sessions to start as systemd services. Each service is + named 'autossh-{session.name}'. + ''; + + example = [ + { + name="socks-peer"; + user="bill"; + monitoringPort = 20000; + extraArguments="-N -D4343 billremote@socks.host.net"; + } + ]; + + }; + }; + + }; + + ###### implementation + + config = mkIf (cfg.sessions != []) { + + systemd.services = + + lib.fold ( s : acc : acc // + { + "autossh-${s.name}" = + let + mport = if s ? monitoringPort then s.monitoringPort else 0; + in + { + description = "AutoSSH session (" + s.name + ")"; + + after = [ "network.target" ]; + wantedBy = [ "multi-user.target" ]; + + # To be able to start the service with no network connection + environment.AUTOSSH_GATETIME="0"; + + # How often AutoSSH checks the network, in seconds + environment.AUTOSSH_POLL="30"; + + serviceConfig = { + User = "${s.user}"; + PermissionsStartOnly = true; + # AutoSSH may exit with 0 code if the SSH session was + # gracefully terminated by either local or remote side. + Restart = "on-success"; + ExecStart = "${pkgs.autossh}/bin/autossh -M ${toString mport} ${s.extraArguments}"; + }; + }; + }) {} cfg.sessions; + + environment.systemPackages = [ pkgs.autossh ]; + + }; +} diff --git a/nixos/modules/services/networking/networkmanager.nix b/nixos/modules/services/networking/networkmanager.nix index adbc6099c95a..96f1e2ded93e 100644 --- a/nixos/modules/services/networking/networkmanager.nix +++ b/nixos/modules/services/networking/networkmanager.nix @@ -40,7 +40,6 @@ let polkit.addRule(function(action, subject) { if ( subject.isInGroup("networkmanager") - && subject.active && (action.id.indexOf("org.freedesktop.NetworkManager.") == 0 || action.id.indexOf("org.freedesktop.ModemManager") == 0 )) @@ -207,10 +206,16 @@ in { environment.systemPackages = cfg.packages; - users.extraGroups = singleton { + users.extraGroups = [{ name = "networkmanager"; gid = config.ids.gids.networkmanager; - }; + } + { + name = "nm-openvpn"; + }]; + users.extraUsers = [{ + name = "nm-openvpn"; + }]; systemd.packages = cfg.packages; diff --git a/nixos/modules/services/x11/display-managers/sddm.nix b/nixos/modules/services/x11/display-managers/sddm.nix index c44383cc6117..4594155ea134 100644 --- a/nixos/modules/services/x11/display-managers/sddm.nix +++ b/nixos/modules/services/x11/display-managers/sddm.nix @@ -35,6 +35,8 @@ let SessionCommand=${dmcfg.session.script} SessionDir=${dmcfg.session.desktops} XauthPath=${pkgs.xorg.xauth}/bin/xauth + + ${cfg.extraConfig} ''; in @@ -50,6 +52,19 @@ in ''; }; + extraConfig = mkOption { + type = types.str; + default = ""; + example = '' + [Autologin] + User=john + Session=plasma.desktop + ''; + description = '' + Extra lines appended to the configuration of SDDM. + ''; + }; + theme = mkOption { type = types.str; default = "maui"; diff --git a/nixos/modules/system/boot/stage-1.nix b/nixos/modules/system/boot/stage-1.nix index ace2d10ec9c1..fe34e8227289 100644 --- a/nixos/modules/system/boot/stage-1.nix +++ b/nixos/modules/system/boot/stage-1.nix @@ -206,7 +206,7 @@ let preLVMCommands postDeviceCommands postMountCommands kernelModules; resumeDevices = map (sd: if sd ? device then sd.device else "/dev/disk/by-label/${sd.label}") - (filter (sd: sd ? label || hasPrefix "/dev/" sd.device) config.swapDevices); + (filter (sd: (sd ? label || hasPrefix "/dev/" sd.device) && !sd.randomEncryption) config.swapDevices); fsInfo = let f = fs: [ fs.mountPoint (if fs.device != null then fs.device else "/dev/disk/by-label/${fs.label}") fs.fsType fs.options ]; diff --git a/nixos/modules/tasks/filesystems.nix b/nixos/modules/tasks/filesystems.nix index 9dd250f140ce..dbe0c9c6e03a 100644 --- a/nixos/modules/tasks/filesystems.nix +++ b/nixos/modules/tasks/filesystems.nix @@ -174,7 +174,7 @@ in # Swap devices. ${flip concatMapStrings config.swapDevices (sw: - "${sw.device} none swap${prioOption sw.priority}\n" + "${sw.realDevice} none swap${prioOption sw.priority}\n" )} ''; diff --git a/nixos/modules/virtualisation/nova-config.nix b/nixos/modules/virtualisation/nova-config.nix deleted file mode 100644 index f8239cdec519..000000000000 --- a/nixos/modules/virtualisation/nova-config.nix +++ /dev/null @@ -1,5 +0,0 @@ -{ config, pkgs, modulesPath, ... }: - -{ - imports = [ "${modulesPath}/virtualisation/nova-image.nix" ]; -} diff --git a/nixos/modules/virtualisation/nova-image.nix b/nixos/modules/virtualisation/nova-image.nix index 20ec6b024e91..44c83aee2732 100644 --- a/nixos/modules/virtualisation/nova-image.nix +++ b/nixos/modules/virtualisation/nova-image.nix @@ -1,90 +1,45 @@ +# Usage: +# $ NIXOS_CONFIG=`pwd`/nixos/modules/virtualisation/nova-image.nix nix-build '' -A config.system.build.novaImage + { config, lib, pkgs, ... }: with lib; { - imports = [ ../profiles/qemu-guest.nix ../profiles/headless.nix ./ec2-data.nix ]; - - system.build.novaImage = - pkgs.vmTools.runInLinuxVM ( - pkgs.runCommand "nova-image" - { preVM = - '' - mkdir $out - diskImage=$out/image - ${pkgs.vmTools.qemu}/bin/qemu-img create -f raw $diskImage "4G" - mv closure xchg/ - ''; - buildInputs = [ pkgs.utillinux pkgs.perl ]; - exportReferencesGraph = - [ "closure" config.system.build.toplevel ]; + system.build.novaImage = import ../../lib/make-disk-image.nix { + inherit pkgs lib config; + partitioned = true; + diskSize = 1 * 1024; + configFile = pkgs.writeText "configuration.nix" + '' + { + imports = [ ]; } - '' - # Create a single / partition. - ${pkgs.parted}/sbin/parted /dev/vda mklabel msdos - ${pkgs.parted}/sbin/parted /dev/vda -- mkpart primary ext2 1M -1s - . /sys/class/block/vda1/uevent - mknod /dev/vda1 b $MAJOR $MINOR + ''; + }; - # Create an empty filesystem and mount it. - ${pkgs.e2fsprogs}/sbin/mkfs.ext3 -L nixos /dev/vda1 - ${pkgs.e2fsprogs}/sbin/tune2fs -c 0 -i 0 /dev/vda1 - mkdir /mnt - mount /dev/vda1 /mnt - - # The initrd expects these directories to exist. - mkdir /mnt/dev /mnt/proc /mnt/sys - mount --bind /proc /mnt/proc - mount --bind /dev /mnt/dev - mount --bind /sys /mnt/sys - - # Copy all paths in the closure to the filesystem. - storePaths=$(perl ${pkgs.pathsFromGraph} /tmp/xchg/closure) - - mkdir -p /mnt/nix/store - ${pkgs.rsync}/bin/rsync -av $storePaths /mnt/nix/store/ - - # Register the paths in the Nix database. - printRegistration=1 perl ${pkgs.pathsFromGraph} /tmp/xchg/closure | \ - chroot /mnt ${config.nix.package}/bin/nix-store --load-db --option build-users-group "" - - # Create the system profile to allow nixos-rebuild to work. - chroot /mnt ${config.nix.package}/bin/nix-env --option build-users-group "" \ - -p /nix/var/nix/profiles/system --set ${config.system.build.toplevel} - - # `nixos-rebuild' requires an /etc/NIXOS. - mkdir -p /mnt/etc - touch /mnt/etc/NIXOS - - # `switch-to-configuration' requires a /bin/sh - mkdir -p /mnt/bin - ln -s ${config.system.build.binsh}/bin/sh /mnt/bin/sh - - # Install a configuration.nix. - mkdir -p /mnt/etc/nixos - cp ${./nova-config.nix} /mnt/etc/nixos/configuration.nix - - # Generate the GRUB menu. - chroot /mnt ${config.system.build.toplevel}/bin/switch-to-configuration boot - - umount /mnt/proc /mnt/dev /mnt/sys - umount /mnt - '' - ); + imports = [ + ../profiles/qemu-guest.nix + ../profiles/headless.nix + ./ec2-data.nix + ]; fileSystems."/".device = "/dev/disk/by-label/nixos"; boot.kernelParams = [ "console=ttyS0" ]; - - boot.loader.grub.version = 2; boot.loader.grub.device = "/dev/vda"; boot.loader.grub.timeout = 0; + # Allow root logins + services.openssh.enable = true; + services.openssh.permitRootLogin = "without-password"; + # Put /tmp and /var on /ephemeral0, which has a lot more space. # Unfortunately we can't do this with the `fileSystems' option # because it has no support for creating the source of a bind # mount. Also, "move" /nix to /ephemeral0 by layering a unionfs-fuse # mount on top of it so we have a lot more space for Nix operations. + /* boot.initrd.postMountCommands = '' @@ -106,10 +61,6 @@ with lib; ''; boot.initrd.supportedFilesystems = [ "unionfs-fuse" ]; - */ + */ - # Allow root logins only using the SSH key that the user specified - # at instance creation time. - services.openssh.enable = true; - services.openssh.permitRootLogin = "without-password"; } diff --git a/pkgs/applications/audio/baudline/default.nix b/pkgs/applications/audio/baudline/default.nix new file mode 100644 index 000000000000..543329ef679b --- /dev/null +++ b/pkgs/applications/audio/baudline/default.nix @@ -0,0 +1,70 @@ +{ stdenv, fetchurl, libXmu, libXt, libX11, libXext, libXxf86vm, jack +, makeWrapper +}: + +let + rpath = stdenv.lib.makeLibraryPath + [ libXmu libXt libX11 libXext libXxf86vm jack ]; +in +stdenv.mkDerivation rec { + name = "baudline-${version}"; + version = "1.08"; + + src = + if stdenv.system == "x86_64-linux" then + fetchurl { + url = "http://www.baudline.com/baudline_${version}_linux_x86_64.tar.gz"; + sha256 = "09fn0046i69in1jpizkzbaq5ggij0mpflcsparyskm3wh71mbzvr"; + } + else if stdenv.system == "i686-linux" then + fetchurl { + url = "http://www.baudline.com/baudline_${version}_linux_i686.tar.gz"; + sha256 = "1waip5pmcf5ffcfvn8lf1rvsaq2ab66imrbfqs777scz7k8fhhjb"; + } + else + throw "baudline isn't supported (yet?) on ${stdenv.system}"; + + buildInputs = [ makeWrapper ]; + + # Prebuilt binary distribution. + # "patchelf --set-rpath" seems to break the application (cannot start), using + # LD_LIBRARY_PATH wrapper script instead. + buildPhase = "true"; + installPhase = '' + mkdir -p "$out/bin" + mkdir -p "$out/libexec/baudline" + + cp -r . "$out/libexec/baudline/" + + interpreter="$(echo ${stdenv.glibc}/lib/ld-linux*)" + for prog in "$out"/libexec/baudline/baudline*; do + patchelf --interpreter "$interpreter" "$prog" + ln -sr "$prog" "$out/bin/" + done + for prog in "$out"/bin/*; do + wrapProgram "$prog" --prefix LD_LIBRARY_PATH : ${rpath} + done + ''; + + meta = with stdenv.lib; { + description = "Scientific signal analysis application"; + longDescription = '' + Baudline is a time-frequency browser designed for scientific + visualization of the spectral domain. Signal analysis is performed by + Fourier, correlation, and raster transforms that create colorful + spectrograms with vibrant detail. Conduct test and measurement + experiments with the built in function generator, or play back audio + files with a multitude of effects and filters. The baudline signal + analyzer combines fast digital signal processing, versatile high speed + displays, and continuous capture tools for hunting down and studying + elusive signal characteristics. + ''; + homepage = http://www.baudline.com/; + # See http://www.baudline.com/faq.html#licensing_terms. + # (Do NOT (re)distribute on hydra.) + license = licenses.unfree; + platforms = [ "x86_64-linux" "i686-linux" ]; + maintainers = [ maintainers.bjornfor ]; + }; + +} diff --git a/pkgs/applications/audio/cd-discid/default.nix b/pkgs/applications/audio/cd-discid/default.nix index 1646f944a830..ecf88859fc7a 100644 --- a/pkgs/applications/audio/cd-discid/default.nix +++ b/pkgs/applications/audio/cd-discid/default.nix @@ -1,31 +1,27 @@ { fetchurl, stdenv }: -let version = "0.9"; -in - stdenv.mkDerivation { - name = "cd-discid-${version}"; - src = fetchurl { - url = "mirror://debian/pool/main/c/cd-discid/cd-discid_${version}.orig.tar.gz"; - sha256 = "1fx2ky1pb07l1r0bldpw16wdsfzw7a0093ib9v66kmilwy2sq5s9"; - }; +stdenv.mkDerivation rec { + name = "cd-discid-${version}"; + version = "1.4"; - patches = [ ./install.patch ]; + src = fetchurl { + url = "http://linukz.org/download/${name}.tar.gz"; + sha256 = "0qrcvn7227qaayjcd5rm7z0k5q89qfy5qkdgwr5pd7ih0va8rmpz"; + }; - configurePhase = '' - sed -i "s|^[[:blank:]]*prefix *=.*$|prefix = $out|g ; - s|^[[:blank:]]*INSTALL *=.*$|INSTALL = install -c|g" \ - "Makefile"; + installFlags = "PREFIX=$(out)"; + + meta = with stdenv.lib; { + homepage = http://linukz.org/cd-discid.shtml; + license = licenses.gpl2Plus; + maintainers = [ maintainers.rycee ]; + platforms = platforms.unix; + description = "command-line utility to get CDDB discid information from a CD-ROM disc"; + + longDescription = '' + cd-discid is a backend utility to get CDDB discid information + from a CD-ROM disc. It was originally designed for cdgrab (now + abcde), but can be used for any purpose requiring CDDB data. ''; - - meta = { - homepage = http://lly.org/~rcw/cd-discid/; - license = stdenv.lib.licenses.gpl2Plus; - description = "cd-discid, a command-line utility to retrieve a disc's CDDB ID"; - - longDescription = '' - cd-discid is a backend utility to get CDDB discid information - from a CD-ROM disc. It was originally designed for cdgrab (now - abcde), but can be used for any purpose requiring CDDB data. - ''; - }; - } + }; +} diff --git a/pkgs/applications/audio/cd-discid/install.patch b/pkgs/applications/audio/cd-discid/install.patch deleted file mode 100644 index 4f0256813ff1..000000000000 --- a/pkgs/applications/audio/cd-discid/install.patch +++ /dev/null @@ -1,14 +0,0 @@ ---- cd-discid-0.9/Makefile 2003-01-05 21:18:07.000000000 +0100 -+++ cd-discid-0.9/Makefile 2008-05-26 22:14:56.000000000 +0200 -@@ -32,9 +32,9 @@ clean: - - install: cd-discid - $(INSTALL) -d -m 755 $(bindir) -- $(INSTALL) -s -m 755 -o 0 cd-discid $(bindir) -+ $(INSTALL) -s -m 755 cd-discid $(bindir) - $(INSTALL) -d -m 755 $(mandir) -- $(INSTALL) -m 644 -o 0 cd-discid.1 $(mandir) -+ $(INSTALL) -m 644 cd-discid.1 $(mandir) - - tarball: - @cd .. && tar czvf cd-discid_$(VERSION).orig.tar.gz \ diff --git a/pkgs/applications/audio/csound/default.nix b/pkgs/applications/audio/csound/default.nix index 693d8e2a6e50..afca63a2a8a2 100644 --- a/pkgs/applications/audio/csound/default.nix +++ b/pkgs/applications/audio/csound/default.nix @@ -12,13 +12,13 @@ }: stdenv.mkDerivation { - name = "csound-6.03.2"; + name = "csound-6.04"; enableParallelBuilding = true; src = fetchurl { - url = mirror://sourceforge/csound/Csound6.03.2.tar.gz; - sha256 = "0w6ij57dbfjljpf05bb9r91jphwaq1v63rh0713vl2n11d73dy7m"; + url = mirror://sourceforge/csound/Csound6.04.tar.gz; + sha256 = "1030w38lxdwjz1irr32m9cl0paqmgr02lab2m7f7j1yihwxj1w0g"; }; buildInputs = [ cmake libsndfile flex bison alsaLib libpulseaudio tcltk ]; diff --git a/pkgs/applications/audio/lash/default.nix b/pkgs/applications/audio/lash/default.nix index 8d1b561cb873..cfe29949e4f6 100644 --- a/pkgs/applications/audio/lash/default.nix +++ b/pkgs/applications/audio/lash/default.nix @@ -15,8 +15,9 @@ stdenv.mkDerivation rec { # http://permalink.gmane.org/gmane.linux.redhat.fedora.extras.cvs/822346 patches = [ ./socket.patch ./gcc-47.patch ]; - buildInputs = [ alsaLib gtk libjack2 libuuid libxml2 makeWrapper + buildInputs = [ alsaLib gtk libjack2 libxml2 makeWrapper pkgconfig readline ]; + propagatedBuildInputs = [ libuuid ]; postInstall = '' for i in lash_control lash_panel diff --git a/pkgs/applications/audio/mp3val/default.nix b/pkgs/applications/audio/mp3val/default.nix new file mode 100644 index 000000000000..0957420b6585 --- /dev/null +++ b/pkgs/applications/audio/mp3val/default.nix @@ -0,0 +1,35 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "mp3val-${version}"; + version = "0.1.8"; + + src = fetchurl { + url = "mirror://sourceforge/mp3val/${name}-src.tar.gz"; + sha256 = "17y3646ghr38r620vkrxin3dksxqig5yb3nn4cfv6arm7kz6x8cm"; + }; + + makefile = "Makefile.linux"; + + installPhase = '' + install -Dv mp3val "$out/bin/mp3val" + ''; + + meta = { + description = "A tool for validating and repairing MPEG audio streams"; + longDescription = '' + MP3val is a small, high-speed, free software tool for checking MPEG audio + files' integrity. It can be useful for finding corrupted files (e.g. + incompletely downloaded, truncated, containing garbage). MP3val is + also able to fix most of the problems. Being a multiplatform application, + MP3val can be runned both under Windows and under Linux (or BSD). The most + common MPEG audio file type is MPEG 1 Layer III (mp3), but MP3val supports + also other MPEG versions and layers. The tool is also aware of the most + common types of tags (ID3v1, ID3v2, APEv2). + ''; + homepage = http://mp3val.sourceforge.net/index.shtml; + license = stdenv.lib.licenses.gpl2; + platforms = stdenv.lib.platforms.unix; + maintainers = [ stdenv.lib.maintainers.devhell ]; + }; +} diff --git a/pkgs/applications/audio/qjackctl/default.nix b/pkgs/applications/audio/qjackctl/default.nix index c200e39887a8..90129d6404b7 100644 --- a/pkgs/applications/audio/qjackctl/default.nix +++ b/pkgs/applications/audio/qjackctl/default.nix @@ -1,24 +1,25 @@ { stdenv, fetchurl, qt4, alsaLib, libjack2, dbus }: stdenv.mkDerivation rec { - version = "0.3.12"; + version = "0.4.0"; name = "qjackctl-${version}"; # some dependencies such as killall have to be installed additionally src = fetchurl { url = "mirror://sourceforge/qjackctl/${name}.tar.gz"; - sha256 = "14yvnc4k3hwsjflg8b2d04bc63pdl0gyqjc7vl6rdn29nbr23zwc"; + sha256 = "0nj8c8vy00524hbjqwsqkliblcf9j7h46adk6v5np645pp2iqrav"; }; buildInputs = [ qt4 alsaLib libjack2 dbus ]; configureFlags = "--enable-jack-version"; - meta = { + meta = with stdenv.lib; { description = "A Qt application to control the JACK sound server daemon"; homepage = http://qjackctl.sourceforge.net/; - license = "GPL"; - platforms = stdenv.lib.platforms.linux; + license = licenses.gpl2Plus; + maintainers = [ maintainers.goibhniu ]; + platforms = platforms.linux; }; } diff --git a/pkgs/applications/audio/renoise/default.nix b/pkgs/applications/audio/renoise/default.nix index 704f3f01c00e..f98f7862475f 100644 --- a/pkgs/applications/audio/renoise/default.nix +++ b/pkgs/applications/audio/renoise/default.nix @@ -15,8 +15,8 @@ stdenv.mkDerivation rec { else requireFile { url = "http://backstage.renoise.com/frontend/app/index.html#/login"; - name = "rns_3_0_1_reg_x86_64.tar.gz"; - sha256 = "1swax2jz0gswdpzz8alwjfd8rhigc2yfspj7p8wvdvylqrf7n8q7"; + name = "rns_3_0_1_linux_x86_64.tar.gz"; + sha256 = "1yb5w5jrg9dk9fg5rfvfk6p0rxn4r4i32vxp2l9lzhbs02pv15wd"; } else if builtins.currentSystem == "i686-linux" then if demo then diff --git a/pkgs/applications/audio/rosegarden/default.nix b/pkgs/applications/audio/rosegarden/default.nix index 5ee15a925821..00d7559cd58c 100644 --- a/pkgs/applications/audio/rosegarden/default.nix +++ b/pkgs/applications/audio/rosegarden/default.nix @@ -4,11 +4,11 @@ withLirc ? false, lirc ? null } : stdenv.mkDerivation (rec { - version = "14.12"; + version = "15.08"; name = "rosegarden-${version}"; src = fetchurl { url = "mirror://sourceforge/rosegarden/${name}.tar.bz2"; - sha256 = "0zhlxr1njyy6837f09l6p75js0j5mxmls6m02bqafv9j32wgnxpq"; + sha256 = "1pk24bhpsmvn6rkqgll31na44w03banra1y7kiqd0gajlnw7wlls"; }; QTDIR=qt4; diff --git a/pkgs/applications/editors/atom/default.nix b/pkgs/applications/editors/atom/default.nix index 9bcad5b7649d..bd1597b02ba6 100644 --- a/pkgs/applications/editors/atom/default.nix +++ b/pkgs/applications/editors/atom/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, buildEnv, makeDesktopItem, makeWrapper, zlib, glib, alsaLib , dbus, gtk, atk, pango, freetype, fontconfig, libgnome_keyring3, gdk_pixbuf -, cairo, cups, expat, libgpgerror, nspr, gconf, nss, xorg, libcap, systemd +, gvfs, cairo, cups, expat, libgpgerror, nspr, gconf, nss, xorg, libcap, systemd }: let @@ -16,15 +16,15 @@ let }; in stdenv.mkDerivation rec { name = "atom-${version}"; - version = "1.0.4"; + version = "1.1.0"; src = fetchurl { url = "https://github.com/atom/atom/releases/download/v${version}/atom-amd64.deb"; - sha256 = "0jki2ca12mazvszy05xc7zy8nfpavl0rnzcyksvvic32l3w2yxj7"; + sha256 = "1rbwwwryhcasqgn2y1d9hvi3n4dag50dh1fd9hmkx4h9nmm3mbi0"; name = "${name}.deb"; }; - buildInputs = [ atomEnv makeWrapper ]; + buildInputs = [ atomEnv gvfs makeWrapper ]; phases = [ "installPhase" "fixupPhase" ]; @@ -41,7 +41,8 @@ in stdenv.mkDerivation rec { patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ $out/share/atom/resources/app/apm/bin/node wrapProgram $out/bin/atom \ - --prefix "LD_LIBRARY_PATH" : "${atomEnv}/lib:${atomEnv}/lib64" + --prefix "LD_LIBRARY_PATH" : "${atomEnv}/lib:${atomEnv}/lib64" \ + --prefix "PATH" : "${gvfs}/bin" wrapProgram $out/bin/apm \ --prefix "LD_LIBRARY_PATH" : "${atomEnv}/lib:${atomEnv}/lib64" ''; diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix index 21456dfcf61b..0d0c9d148149 100644 --- a/pkgs/applications/editors/eclipse/plugins.nix +++ b/pkgs/applications/editors/eclipse/plugins.nix @@ -106,16 +106,16 @@ rec { anyedittools = buildEclipsePlugin rec { name = "anyedit-${version}"; - version = "2.4.15.201504172030"; + version = "2.5.0.201510241327"; srcFeature = fetchurl { url = "http://andrei.gmxhome.de/eclipse/features/AnyEditTools_${version}.jar"; - sha256 = "19hbwgqn02ghflbcp5cw3qy203mym5kwgzq4xrn0xcl8ckl5s2pp"; + sha256 = "01qaxg1b4n7y7g1xdkx1bnmpwqydln270mk14l4pl35q3c88s5nc"; }; srcPlugin = fetchurl { - url = "http://dl.bintray.com/iloveeclipse/plugins/de.loskutov.anyedit.AnyEditTools_${version}.jar"; - sha256 = "1i3ghf2mhdfhify30hlyxqmyqcp40pkd5zhsiyg6finn4w81sxv2"; + url = "https://github.com/iloveeclipse/anyedittools/releases/download/2.5.0/de.loskutov.anyedit.AnyEditTools_${version}.jar"; + sha256 = "0m4qxkscl5xih8x1znbrih4jh28wky4l62spfif9zw0s7mgl117c"; }; meta = with stdenv.lib; { diff --git a/pkgs/applications/editors/emacs-24/default.nix b/pkgs/applications/editors/emacs-24/default.nix index eb814eab6f52..59f9f7110043 100644 --- a/pkgs/applications/editors/emacs-24/default.nix +++ b/pkgs/applications/editors/emacs-24/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, ncurses, xlibsWrapper, libXaw, libXpm, Xaw3d , pkgconfig, gettext, libXft, dbus, libpng, libjpeg, libungif , libtiff, librsvg, texinfo, gconf, libxml2, imagemagick, gnutls -, alsaLib, cairo, acl, gpm, AppKit, Foundation, libobjc +, alsaLib, cairo, acl, gpm, AppKit , withX ? !stdenv.isDarwin , withGTK3 ? false, gtk3 ? null , withGTK2 ? true, gtk2 @@ -47,11 +47,9 @@ stdenv.mkDerivation rec { imagemagick gconf ] ++ stdenv.lib.optional (withX && withGTK2) gtk2 ++ stdenv.lib.optional (withX && withGTK3) gtk3 - ++ stdenv.lib.optional (stdenv.isDarwin && withX) cairo - ++ stdenv.lib.optionals stdenv.isDarwin [ AppKit Foundation libobjc ]; + ++ stdenv.lib.optional (stdenv.isDarwin && withX) cairo; - NIX_LDFLAGS = stdenv.lib.optional stdenv.isDarwin - "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation"; + propagatedBuildInputs = stdenv.lib.optional stdenv.isDarwin AppKit; configureFlags = if stdenv.isDarwin diff --git a/pkgs/applications/editors/emacs-24/macport-24.5.nix b/pkgs/applications/editors/emacs-24/macport-24.5.nix index 13a888484e07..5ba09971675a 100644 --- a/pkgs/applications/editors/emacs-24/macport-24.5.nix +++ b/pkgs/applications/editors/emacs-24/macport-24.5.nix @@ -1,10 +1,10 @@ -{ stdenv, fetchurl, ncurses, pkgconfig, texinfo, libxml2, gnutls, Carbon, Foundation, -libobjc, Cocoa, WebKit, Quartz, ImageCaptureCore, OSAKit +{ stdenv, fetchurl, ncurses, pkgconfig, texinfo, libxml2, gnutls +, Carbon, Cocoa, ImageCaptureCore, OSAKit, Quartz, WebKit }: stdenv.mkDerivation rec { emacsName = "emacs-24.5"; - name = "${emacsName}-mac-5.11"; + name = "${emacsName}-mac-5.12"; #builder = ./builder.sh; @@ -15,18 +15,17 @@ stdenv.mkDerivation rec { macportSrc = fetchurl { url = "ftp://ftp.math.s.chiba-u.ac.jp/emacs/${name}.tar.gz"; - sha256 = "0p4jh6s1qi6jm6zr82grk65x33ix1hb0fbpih4vh3vnx6310iwsb"; + sha256 = "1kryg4xw2jn2jwd9ilm2snjvgmnbbp392ry1skzl4d4xf7ff3vx1"; }; - NIX_CFLAGS_COMPILE = "-Wno-deprecated-declarations"; - NIX_LDFLAGS = stdenv.lib.optional stdenv.isDarwin - "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation"; - enableParallelBuilding = true; buildInputs = [ - ncurses pkgconfig texinfo libxml2 gnutls Carbon Cocoa Foundation libobjc WebKit Quartz - ImageCaptureCore OSAKit + ncurses pkgconfig texinfo libxml2 gnutls + ]; + + propagatedBuildInputs = [ + Carbon Cocoa ImageCaptureCore OSAKit Quartz WebKit ]; postUnpack = '' @@ -36,6 +35,7 @@ stdenv.mkDerivation rec { ''; preConfigure = '' + substituteInPlace lisp/international/mule-cmds.el --replace /usr $TMPDIR substituteInPlace Makefile.in --replace "/bin/pwd" "pwd" substituteInPlace lib-src/Makefile.in --replace "/bin/pwd" "pwd" @@ -102,7 +102,7 @@ stdenv.mkDerivation rec { separately. This is "Mac port" addition to GNU Emacs 24. This provides a native - GUI support for Mac OS X 10.4 - 10.9. Note that Emacs 23 and later + GUI support for Mac OS X 10.4 - 10.11. Note that Emacs 23 and later already contain the official GUI support via the NS (Cocoa) port for Mac OS X 10.4 and later. So if it is good enough for you, then you don't need to try this. diff --git a/pkgs/applications/editors/emacs-modes/dash/default.nix b/pkgs/applications/editors/emacs-modes/dash/default.nix index c71860992daf..09b03ccdba64 100644 --- a/pkgs/applications/editors/emacs-modes/dash/default.nix +++ b/pkgs/applications/editors/emacs-modes/dash/default.nix @@ -1,14 +1,14 @@ {stdenv, fetchurl, emacs}: let - version = "2.11.0"; + version = "2.12.1"; in stdenv.mkDerivation { name = "emacs-dash-${version}"; src = fetchurl { url = "https://github.com/magnars/dash.el/archive/${version}.tar.gz"; - sha256 = "1piwcwilkxcbjxx832mhb7q3pz1fgwp203r581bpqcw6kd5x726q"; + sha256 = "082jl7mp4x063bpj5ad2pc5125k0d6p7rb89gcj7ny3lma9h2ij1"; }; buildInputs = [ emacs ]; diff --git a/pkgs/applications/editors/emacs-modes/magit/default.nix b/pkgs/applications/editors/emacs-modes/magit/default.nix index 8d71ca582022..b5f4ac506cc4 100644 --- a/pkgs/applications/editors/emacs-modes/magit/default.nix +++ b/pkgs/applications/editors/emacs-modes/magit/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, emacs, texinfo, gitModes, git, dash }: let - version = "2.2.1"; + version = "2.3.0"; in stdenv.mkDerivation { name = "magit-${version}"; @@ -10,7 +10,7 @@ stdenv.mkDerivation { owner = "magit"; repo = "magit"; rev = version; - sha256 = "1bq26wrgm4wgif0hj16mkmiz0p1iilxs7dmdd1vq5df8nivmakjz"; + sha256 = "1zbx1ky1481lkvfjr4k23q7jdrk9ji9v5ghj88qib36vbmzfwww8"; }; buildInputs = [ emacs texinfo git ]; @@ -28,15 +28,10 @@ stdenv.mkDerivation { cp lisp/magit-version.el . ''; - doCheck = false; # one out of 5 tests fails, not sure why + doCheck = false; # 2 out of 15 tests fails, not sure why checkTarget = "test"; preCheck = "export EMAIL='Joe Doe '"; - # postInstall = '' - # mkdir -p $out/bin - # mv "bin/"* $out/bin/ - # ''; - meta = { homepage = "https://github.com/magit/magit"; description = "Magit, an Emacs interface to Git"; diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix index 2e0e3a1743c5..252a1e93c642 100644 --- a/pkgs/applications/editors/neovim/default.nix +++ b/pkgs/applications/editors/neovim/default.nix @@ -6,6 +6,7 @@ , withPython3 ? true, python3Packages, extraPython3Packages ? [] , withJemalloc ? true, jemalloc +, withPyGUI ? false , vimAlias ? false , configure ? null }: @@ -45,7 +46,11 @@ let }; pythonEnv = pythonPackages.python.buildEnv.override { - extraLibs = [ pythonPackages.neovim ] ++ extraPythonPackages; + extraLibs = ( + if withPyGUI + then [ pythonPackages.neovim_gui ] + else [ pythonPackages.neovim ] + ) ++ extraPythonPackages; ignoreCollisions = true; }; @@ -103,6 +108,9 @@ let $out/bin/nvim '' + optionalString withPython '' ln -s ${pythonEnv}/bin/python $out/bin/nvim-python + '' + optionalString withPyGUI '' + makeWrapper "${pythonEnv}/bin/pynvim" "$out/bin/pynvim" \ + --prefix PATH : "$out/bin" '' + optionalString withPython3 '' ln -s ${python3Env}/bin/python3 $out/bin/nvim-python3 '' + optionalString (withPython || withPython3) '' diff --git a/pkgs/applications/editors/rstudio/default.nix b/pkgs/applications/editors/rstudio/default.nix index fda51dc24019..8f0c560f47d1 100644 --- a/pkgs/applications/editors/rstudio/default.nix +++ b/pkgs/applications/editors/rstudio/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, cmake, boost155, zlib, openssl, R, qt4, libuuid, hunspellDicts, unzip, ant, jdk }: +{ stdenv, fetchurl, cmake, boost155, zlib, openssl, R, qt4, libuuid, hunspellDicts, unzip, ant, jdk, gnumake, makeWrapper }: let version = "0.98.110"; @@ -8,7 +8,7 @@ in stdenv.mkDerivation { name = "RStudio-${version}"; - buildInputs = [ cmake boost155 zlib openssl R qt4 libuuid unzip ant jdk ]; + buildInputs = [ cmake boost155 zlib openssl R qt4 libuuid unzip ant jdk makeWrapper ]; src = fetchurl { url = "https://github.com/rstudio/rstudio/archive/v${version}.tar.gz"; @@ -61,6 +61,10 @@ stdenv.mkDerivation { cmakeFlags = [ "-DRSTUDIO_TARGET=Desktop" ]; + postInstall = '' + wrapProgram $out/bin/rstudio --suffix PATH : ${gnumake}/bin + ''; + meta = with stdenv.lib; { description = "Set of integrated tools for the R language"; homepage = http://www.rstudio.com/; diff --git a/pkgs/applications/editors/sublime3/default.nix b/pkgs/applications/editors/sublime3/default.nix index b26d27a8bc51..49c30a1f6d60 100644 --- a/pkgs/applications/editors/sublime3/default.nix +++ b/pkgs/applications/editors/sublime3/default.nix @@ -1,10 +1,15 @@ -{ fetchurl, stdenv, glib, xorg, cairo, gtk, pango, makeWrapper, openssl, bzip2 }: +{ fetchurl, stdenv, glib, xorg, cairo, gtk, pango, makeWrapper, openssl, bzip2, + pkexecPath ? "/var/setuid-wrappers/pkexec", libredirect, + gksuSupport ? false, gksu}: assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux"; +assert gksuSupport -> gksu != null; let build = "3083"; libPath = stdenv.lib.makeLibraryPath [glib xorg.libX11 gtk cairo pango]; + redirects = [ "/usr/bin/pkexec=${pkexecPath}" ] + ++ stdenv.lib.optional gksuSupport "/usr/bin/gksudo=${gksu}/bin/gksudo"; in let # package with just the binaries sublime = stdenv.mkDerivation { @@ -35,6 +40,9 @@ in let --set-rpath ${libPath}:${stdenv.cc.cc}/lib${stdenv.lib.optionalString stdenv.is64bit "64"} \ $i done + + # Rewrite pkexec|gksudo argument. Note that we can't delete bytes in binary. + sed -i -e 's,/bin/cp\x00,cp\x00\x00\x00\x00\x00\x00,g' sublime_text ''; installPhase = '' @@ -44,6 +52,10 @@ in let mkdir -p $out cp -prvd * $out/ + wrapProgram $out/sublime_text \ + --set LD_PRELOAD "${libredirect}/lib/libredirect.so" \ + --set NIX_REDIRECTS ${builtins.concatStringsSep ":" redirects} + # Without this, plugin_host crashes, even though it has the rpath wrapProgram $out/plugin_host --prefix LD_PRELOAD : ${stdenv.cc.cc}/lib${stdenv.lib.optionalString stdenv.is64bit "64"}/libgcc_s.so.1:${openssl}/lib/libssl.so:${bzip2}/lib/libbz2.so ''; @@ -64,7 +76,7 @@ in stdenv.mkDerivation { meta = with stdenv.lib; { description = "Sophisticated text editor for code, markup and prose"; homepage = https://www.sublimetext.com/; - maintainers = with maintainers; [ wmertens ]; + maintainers = with maintainers; [ wmertens demin-dmitriy ]; license = licenses.unfree; platforms = platforms.linux; }; diff --git a/pkgs/applications/editors/vim/default.nix b/pkgs/applications/editors/vim/default.nix index cb151548f79d..ab7b08d8186a 100644 --- a/pkgs/applications/editors/vim/default.nix +++ b/pkgs/applications/editors/vim/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, ncurses, gettext, pkgconfig # apple frameworks -, CoreServices, CoreData, Cocoa, Foundation, libobjc, cf-private }: +, Carbon, Cocoa }: stdenv.mkDerivation rec { name = "vim-${version}"; @@ -14,16 +14,10 @@ stdenv.mkDerivation rec { sha256 = "1m34s2hsc5lcish6gmvn2iwaz0k7jc3kg9q4nf30fj9inl7gaybs"; }; - # this makes maintainers very sad - # open source CF doesn't have anything NSArray-related, causing linking errors. the - # missing symbol is in system CoreFoundation. - NIX_LDFLAGS = stdenv.lib.optional stdenv.isDarwin - "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation"; - enableParallelBuilding = true; buildInputs = [ ncurses pkgconfig ] - ++ stdenv.lib.optionals stdenv.isDarwin [ cf-private CoreData CoreServices Cocoa Foundation libobjc ]; + ++ stdenv.lib.optionals stdenv.isDarwin [ Carbon Cocoa ]; nativeBuildInputs = [ gettext ]; configureFlags = [ diff --git a/pkgs/applications/graphics/simple-scan/default.nix b/pkgs/applications/graphics/simple-scan/default.nix index d5f5d6c672c1..7c68e94100f7 100644 --- a/pkgs/applications/graphics/simple-scan/default.nix +++ b/pkgs/applications/graphics/simple-scan/default.nix @@ -1,17 +1,17 @@ { stdenv, fetchurl, cairo, colord, glib, gtk3, gusb, intltool, itstool, libusb -, libxml2, makeWrapper, packagekit, pkgconfig, saneBackends, systemd, vala }: +, libxml2, makeWrapper, pkgconfig, saneBackends, systemd, vala }: -let version = "3.18.1"; in +let version = "3.19.1"; in stdenv.mkDerivation rec { name = "simple-scan-${version}"; src = fetchurl { - sha256 = "1i37j36kbn1h8yfzcvbis6f38xz2nj5512ls3gb0j5na0bvja2cw"; - url = "https://launchpad.net/simple-scan/3.18/${version}/+download/${name}.tar.xz"; + sha256 = "1d2a8cncq36ly60jpz0fzdw1lgxynl6lyrlw0q66yijlxqn81ynr"; + url = "https://launchpad.net/simple-scan/3.19/${version}/+download/${name}.tar.xz"; }; - buildInputs = [ cairo colord glib gusb gtk3 libusb libxml2 packagekit - saneBackends systemd vala ]; + buildInputs = [ cairo colord glib gusb gtk3 libusb libxml2 saneBackends + systemd vala ]; nativeBuildInputs = [ intltool itstool makeWrapper pkgconfig ]; enableParallelBuilding = true; diff --git a/pkgs/applications/kde-apps-15.04/default.nix b/pkgs/applications/kde-apps-15.04/default.nix index 4bae82976af2..b10cca0e7bcb 100644 --- a/pkgs/applications/kde-apps-15.04/default.nix +++ b/pkgs/applications/kde-apps-15.04/default.nix @@ -281,7 +281,7 @@ let buildInputs = [ scope.canberra ]; nativeBuildInputs = [ scope.pkgconfig ]; # cmake does not detect path to `ilmbase` - NIX_CFLAGS_COMPILE = "-I${scope.ilmbase}/include/OpenEXR"; + NIX_CFLAGS_COMPILE = "-I${scope.ilmbase}/include/OpenEXR -I${pkgs.glib}/include/glib-2.0 -I${pkgs.glib}/lib/glib-2.0/include"; # some components of this package have been replaced in other packages meta = { priority = 10; }; }; diff --git a/pkgs/applications/misc/gnuradio/default.nix b/pkgs/applications/misc/gnuradio/default.nix index a5cc1ae09328..e7817dc5b524 100644 --- a/pkgs/applications/misc/gnuradio/default.nix +++ b/pkgs/applications/misc/gnuradio/default.nix @@ -23,11 +23,11 @@ stdenv.mkDerivation rec { name = "gnuradio-${version}"; - version = "3.7.7.1"; + version = "3.7.8"; src = fetchurl { url = "http://gnuradio.org/releases/gnuradio/${name}.tar.gz"; - sha256 = "0kjqav1rdyi60vq85djmigyrgh606ga625icwj15iarlqwzv29rb"; + sha256 = "0wj1rp8fdrmsfqbcaicvfxk71vkd9hcczmb1vrnvfzypnmacn6gy"; }; buildInputs = [ diff --git a/pkgs/applications/misc/gphoto2/default.nix b/pkgs/applications/misc/gphoto2/default.nix index eafa5c104058..4c0e091bf653 100644 --- a/pkgs/applications/misc/gphoto2/default.nix +++ b/pkgs/applications/misc/gphoto2/default.nix @@ -3,11 +3,11 @@ }: stdenv.mkDerivation rec { - name = "gphoto2-2.5.5"; + name = "gphoto2-2.5.8"; src = fetchurl { url = "mirror://sourceforge/gphoto/${name}.tar.bz2"; - sha256 = "1d0lvp5gsrss72597wixhgh8prcw4g7izfg3zdzzsswjgnlsxsal"; + sha256 = "0kgfql6c64ha1gahjdwlqhmkslnfywmc2fkys4c5682zv4awvax9"; }; nativeBuildInputs = [ pkgconfig gettext ]; diff --git a/pkgs/applications/misc/jp2a/default.nix b/pkgs/applications/misc/jp2a/default.nix new file mode 100644 index 000000000000..1a46b7c7afb2 --- /dev/null +++ b/pkgs/applications/misc/jp2a/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, libjpeg }: + +stdenv.mkDerivation rec { + version = "1.0.6"; + name = "jp2a-${version}"; + + src = fetchurl { + url = "mirror://sourceforge/jp2a/${name}.tar.gz"; + sha256 = "076frk3pa16s4r1b10zgy81vdlz0385zh3ykbnkaij25jn5aqc09"; + }; + + makeFlags = "PREFIX=$(out)"; + + buildInputs = [ libjpeg ]; + + meta = with stdenv.lib; { + homepage = https://csl.name/jp2a/; + description = "A small utility that converts JPG images to ASCII."; + license = licenses.gpl2; + }; +} diff --git a/pkgs/applications/misc/khard/default.nix b/pkgs/applications/misc/khard/default.nix index f1e2467362cc..ac566c9609be 100644 --- a/pkgs/applications/misc/khard/default.nix +++ b/pkgs/applications/misc/khard/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, pkgs, pythonPackages }: pythonPackages.buildPythonPackage rec { - version = "0.6.0"; + version = "0.6.3"; name = "khard-${version}"; namePrefix = ""; src = fetchurl { url = "https://github.com/scheibler/khard/archive/v${version}.tar.gz"; - sha256 = "1ag6p416iibwgvijjc8bwyrssxw3s3j559700xfgp10vj0nqk1hb"; + sha256 = "1dn1v4ycgqbq8vknz1dy710asq8cizxmzaynn69xknwkpgda7fm9"; }; propagatedBuildInputs = with pythonPackages; [ diff --git a/pkgs/applications/misc/librecad/2.0.nix b/pkgs/applications/misc/librecad/2.0.nix deleted file mode 100644 index 135291a14905..000000000000 --- a/pkgs/applications/misc/librecad/2.0.nix +++ /dev/null @@ -1,41 +0,0 @@ -{ stdenv, fetchurl, qt4, muparser, which, boost, pkgconfig }: - -stdenv.mkDerivation rec { - version = "2.0.8"; - name = "librecad-${version}"; - - src = fetchurl { - url = "https://github.com/LibreCAD/LibreCAD/tarball/${version}"; - name = name + ".tar.gz"; - sha256 = "110vn1rvzidg8k6ifz1zws2wsn4cd05xl5ha0hbff2ln7izy84zc"; - }; - - patchPhase = '' - sed -i -e s,/bin/bash,`type -P bash`, scripts/postprocess-unix.sh - sed -i -e s,/usr/share,$out/share, librecad/src/lib/engine/rs_system.cpp - ''; - - configurePhase = '' - qmake librecad.pro PREFIX=$out MUPARSER_DIR=${muparser} BOOST_DIR=${boost.dev} - ''; - - installPhase = '' - mkdir -p $out/bin $out/share - cp -R unix/librecad $out/bin - cp -R unix/resources $out/share/librecad - ''; - - buildInputs = [ qt4 muparser which boost ]; - nativeBuildInputs = [ pkgconfig ]; - - enableParallelBuilding = true; - - meta = { - description = "A 2D CAD package based upon Qt"; - homepage = http://librecad.org; - repositories.git = git://github.com/LibreCAD/LibreCAD.git; - license = stdenv.lib.licenses.gpl2; - maintainers = with stdenv.lib.maintainers; [viric]; - platforms = with stdenv.lib.platforms; linux; - }; -} diff --git a/pkgs/applications/misc/librecad/default.nix b/pkgs/applications/misc/librecad/default.nix index b2960e9f47d4..135291a14905 100644 --- a/pkgs/applications/misc/librecad/default.nix +++ b/pkgs/applications/misc/librecad/default.nix @@ -1,20 +1,23 @@ -{ stdenv, fetchurl, qt4, muparser, which}: +{ stdenv, fetchurl, qt4, muparser, which, boost, pkgconfig }: -stdenv.mkDerivation { - name = "librecad-1.0.4"; +stdenv.mkDerivation rec { + version = "2.0.8"; + name = "librecad-${version}"; src = fetchurl { - url = https://github.com/LibreCAD/LibreCAD/tarball/v1.0.4; - name = "librecad-1.0.4.tar.gz"; - sha256 = "00nzbijw7pn1zkj4256da501xcm6rkcvycpa79y6dr2p6c43yc6m"; + url = "https://github.com/LibreCAD/LibreCAD/tarball/${version}"; + name = name + ".tar.gz"; + sha256 = "110vn1rvzidg8k6ifz1zws2wsn4cd05xl5ha0hbff2ln7izy84zc"; }; patchPhase = '' sed -i -e s,/bin/bash,`type -P bash`, scripts/postprocess-unix.sh - sed -i -e s,/usr/share,$out/share, src/lib/engine/rs_system.cpp + sed -i -e s,/usr/share,$out/share, librecad/src/lib/engine/rs_system.cpp ''; - configurePhase = "qmake PREFIX=$out"; + configurePhase = '' + qmake librecad.pro PREFIX=$out MUPARSER_DIR=${muparser} BOOST_DIR=${boost.dev} + ''; installPhase = '' mkdir -p $out/bin $out/share @@ -22,11 +25,15 @@ stdenv.mkDerivation { cp -R unix/resources $out/share/librecad ''; - buildInputs = [ qt4 muparser which ]; + buildInputs = [ qt4 muparser which boost ]; + nativeBuildInputs = [ pkgconfig ]; + + enableParallelBuilding = true; meta = { description = "A 2D CAD package based upon Qt"; homepage = http://librecad.org; + repositories.git = git://github.com/LibreCAD/LibreCAD.git; license = stdenv.lib.licenses.gpl2; maintainers = with stdenv.lib.maintainers; [viric]; platforms = with stdenv.lib.platforms; linux; diff --git a/pkgs/applications/misc/mediainfo-gui/default.nix b/pkgs/applications/misc/mediainfo-gui/default.nix index 55de14257878..dee0f92822a2 100644 --- a/pkgs/applications/misc/mediainfo-gui/default.nix +++ b/pkgs/applications/misc/mediainfo-gui/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, wxGTK, desktop_file_utils, libSM, imagemagick }: stdenv.mkDerivation rec { - version = "0.7.77"; + version = "0.7.78"; name = "mediainfo-gui-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; - sha256 = "0n15z1jlj5s69pwk3mdv4r5c8ncfy7qjbdw5wfwynwypkl5382pn"; + sha256 = "0458rxla3nhw9rbb2psak8qvxwr0drfhdl82k6wvb3a38xb0qij3"; }; buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo wxGTK desktop_file_utils libSM imagemagick ]; diff --git a/pkgs/applications/misc/mediainfo/default.nix b/pkgs/applications/misc/mediainfo/default.nix index 5c6f3f9a148a..1bf10e07ee78 100644 --- a/pkgs/applications/misc/mediainfo/default.nix +++ b/pkgs/applications/misc/mediainfo/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, zlib }: stdenv.mkDerivation rec { - version = "0.7.77"; + version = "0.7.78"; name = "mediainfo-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; - sha256 = "0n15z1jlj5s69pwk3mdv4r5c8ncfy7qjbdw5wfwynwypkl5382pn"; + sha256 = "0458rxla3nhw9rbb2psak8qvxwr0drfhdl82k6wvb3a38xb0qij3"; }; buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo zlib ]; diff --git a/pkgs/applications/misc/printrun/default.nix b/pkgs/applications/misc/printrun/default.nix index d6a0bfcd1205..b407c739c703 100644 --- a/pkgs/applications/misc/printrun/default.nix +++ b/pkgs/applications/misc/printrun/default.nix @@ -1,18 +1,18 @@ -{ stdenv, python27Packages, fetchgit }: -let - py = python27Packages; -in -py.buildPythonPackage rec { - name = "printrun"; +{ stdenv, python27Packages, fetchFromGitHub }: - src = fetchgit { - url = "https://github.com/kliment/Printrun"; - rev = "2299962bb338d3f4335b97211ee609ebaea008f7"; # printrun-20140801 - sha256 = "19nay7xclm36x56hpm87gw4ca6rnygpqaw5ypbmrz0hyxx140abj"; +python27Packages.buildPythonPackage rec { + name = "printrun-20150310"; + + src = fetchFromGitHub { + owner = "kliment"; + repo = "Printrun"; + rev = name; + sha256 = "09ijv8h4k5h15swg64s7igamvynawz7gdi7hiymzrzywdvr0zwsa"; }; - propagatedBuildInputs = with py; [ wxPython30 pyserial dbus psutil - numpy pyopengl pyglet cython ]; + propagatedBuildInputs = with python27Packages; [ + wxPython30 pyserial dbus psutil numpy pyopengl pyglet cython + ]; doCheck = false; diff --git a/pkgs/applications/misc/qtpass/default.nix b/pkgs/applications/misc/qtpass/default.nix index e768a692f594..3d5c93c61a62 100644 --- a/pkgs/applications/misc/qtpass/default.nix +++ b/pkgs/applications/misc/qtpass/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "qtpass-${version}"; - version = "1.0.1"; + version = "1.0.3"; src = fetchurl { url = "https://github.com/IJHack/qtpass/archive/v${version}.tar.gz"; - sha256 = "1mmncvamvwr3hizc1jgpb5kscl9idmrfd2785jhwi87q11wjrwxz"; + sha256 = "a61a29ddd5a874fcdcb915dbc9d91e10787be22d794cc8ebb2ba3cff27030c67"; }; buildInputs = [ git gnupg makeWrapper pass qt5.base ]; diff --git a/pkgs/applications/misc/rofi/default.nix b/pkgs/applications/misc/rofi/default.nix index 454bc48afe9b..5899708a6825 100644 --- a/pkgs/applications/misc/rofi/default.nix +++ b/pkgs/applications/misc/rofi/default.nix @@ -1,18 +1,19 @@ { stdenv, fetchurl, autoconf, automake, pkgconfig -, libX11, libXinerama, libXft, pango -, i3Support ? false, i3 +, libX11, libXinerama, libXft, pango, cairo +, libstartup_notification, i3Support ? false, i3 }: stdenv.mkDerivation rec { name = "rofi-${version}"; - version = "0.15.8"; + version = "0.15.10"; src = fetchurl { url = "https://github.com/DaveDavenport/rofi/archive/${version}.tar.gz"; - sha256 = "1qhj8xrxfnzy16g577w0zxg1cy885rbqydlbbxgfk0dpjvq70lq6"; + sha256 = "0wwdc9dj8qfmqv4pcllq78h38hqmz9s3hqf71fsk71byiid69ln9"; }; buildInputs = [ autoconf automake pkgconfig libX11 libXinerama libXft pango + cairo libstartup_notification ] ++ stdenv.lib.optional i3Support i3; preConfigure = '' diff --git a/pkgs/applications/misc/slic3r/default.nix b/pkgs/applications/misc/slic3r/default.nix index bfbc66cc0b9b..1a5fa03c54ca 100644 --- a/pkgs/applications/misc/slic3r/default.nix +++ b/pkgs/applications/misc/slic3r/default.nix @@ -3,13 +3,13 @@ }: stdenv.mkDerivation rec { - version = "1.2.7"; + version = "1.2.9"; name = "slic3r-${version}"; src = fetchgit { url = "git://github.com/alexrj/Slic3r"; rev = "refs/tags/${version}"; - sha256 = "1bybbl8b0lfh9wkn1k9cxd11hlc5064wzh0fk6zdmc9vnnay399i"; + sha256 = "1xwl8ay5m6pwrrnhbmnmpwyh4wc8hsi4ldzgq98f4bh6szj6jh4z"; }; buildInputs = with perlPackages; [ perl makeWrapper which diff --git a/pkgs/applications/misc/taskwarrior/default.nix b/pkgs/applications/misc/taskwarrior/default.nix index 7f3ca4223235..97acc18211e9 100644 --- a/pkgs/applications/misc/taskwarrior/default.nix +++ b/pkgs/applications/misc/taskwarrior/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "taskwarrior-${version}"; - version = "2.4.4"; + version = "2.5.0"; enableParallelBuilding = true; src = fetchurl { url = "http://www.taskwarrior.org/download/task-${version}.tar.gz"; - sha256 = "7ff406414e0be480f91981831507ac255297aab33d8246f98dbfd2b1b2df8e3b"; + sha256 = "0dj66c4pwdmfnzdlm1r23gqim6banycyzvmq266114v9b90ng3jd"; }; nativeBuildInputs = [ cmake libuuid gnutls ]; diff --git a/pkgs/applications/networking/browsers/chromium/browser.nix b/pkgs/applications/networking/browsers/chromium/browser.nix index 5c8c25553ee1..e662e9bf836b 100644 --- a/pkgs/applications/networking/browsers/chromium/browser.nix +++ b/pkgs/applications/networking/browsers/chromium/browser.nix @@ -37,7 +37,7 @@ mkChromiumDerivation (base: rec { meta = { description = "An open source web browser from Google"; homepage = http://www.chromium.org/; - maintainers = with maintainers; [ goibhniu chaoflow aszlig ]; + maintainers = with maintainers; [ chaoflow aszlig ]; license = licenses.bsd3; platforms = platforms.linux; }; diff --git a/pkgs/applications/networking/browsers/chromium/source/default.nix b/pkgs/applications/networking/browsers/chromium/source/default.nix index 965c7885416c..da962c6b7688 100644 --- a/pkgs/applications/networking/browsers/chromium/source/default.nix +++ b/pkgs/applications/networking/browsers/chromium/source/default.nix @@ -45,10 +45,11 @@ in stdenv.mkDerivation { ''; patches = - if versionOlder version "45.0.0.0" - then singleton ./nix_plugin_paths_44.patch - else singleton ./nix_plugin_paths_46.patch ++ - optional (!versionOlder version "46.0.0.0") ./build_fixes_46.patch; + (if versionOlder version "45.0.0.0" + then singleton ./nix_plugin_paths_44.patch + else singleton ./nix_plugin_paths_46.patch ++ + optional (!versionOlder version "46.0.0.0") ./build_fixes_46.patch) ++ + singleton ./widevine.patch; patchPhase = let diffmod = sym: "/^${sym} /{s/^${sym} //;${transform ""};s/^/${sym} /}"; diff --git a/pkgs/applications/networking/browsers/chromium/source/sources.nix b/pkgs/applications/networking/browsers/chromium/source/sources.nix index 974a4ecf27b2..3ce3dd813c1f 100644 --- a/pkgs/applications/networking/browsers/chromium/source/sources.nix +++ b/pkgs/applications/networking/browsers/chromium/source/sources.nix @@ -13,9 +13,9 @@ sha256bin64 = "1m8vv3qh79an3719afz7n2ijqanf4cyxz2q4bzm512x52z5zipl7"; }; stable = { - version = "46.0.2490.71"; - sha256 = "1dnwhwvn39x8lm1jszjn8y7vy478zy75gm696rr2dvk4kqj1hjyd"; - sha256bin32 = "1v1acg32dzmkydzy7sh6xjbzqar052iw8x8hql2yjz5kxznir4sf"; - sha256bin64 = "15ladhxiym760mid5zq09vp73irzwlp31br9yqslzgv4460ma3np"; + version = "45.0.2454.101"; + sha256 = "1yw5xlgy5hd3iwcyf0sillq5p367fcpvp4mizpmv52cwmv52ss0v"; + sha256bin32 = "1ll8lmkmx7v74naz1vcnrwk5ighh0skfcb66jkq4kgxrb5fjgwm5"; + sha256bin64 = "1cwbd3n77dnbfnrfr8g0qng9xkgvz6y7mx489gpx1wsamgi42bzj"; }; } diff --git a/pkgs/applications/networking/browsers/chromium/source/widevine.patch b/pkgs/applications/networking/browsers/chromium/source/widevine.patch new file mode 100644 index 000000000000..45048cada875 --- /dev/null +++ b/pkgs/applications/networking/browsers/chromium/source/widevine.patch @@ -0,0 +1,12 @@ +diff -upr chromium-42.0.2311.90.orig/third_party/widevine/cdm/widevine_cdm_version.h chromium-42.0.2311.90/third_party/widevine/cdm/widevine_cdm_version.h +--- chromium-42.0.2311.90.orig/third_party/widevine/cdm/widevine_cdm_version.h 2015-04-15 01:18:59.000000000 +0300 ++++ chromium-42.0.2311.90/third_party/widevine/cdm/widevine_cdm_version.h 2015-04-15 09:09:49.157260050 +0300 +@@ -14,4 +14,8 @@ + // - WIDEVINE_CDM_VERSION_STRING (with the version of the CDM that's available + // as a string, e.g., "1.0.123.456"). + ++#include "third_party/widevine/cdm/widevine_cdm_common.h" ++#define WIDEVINE_CDM_AVAILABLE ++#define WIDEVINE_CDM_VERSION_STRING "@WIDEVINE_VERSION@" ++ + #endif // WIDEVINE_CDM_VERSION_H_ diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix index 4b94ecdcf5fa..5f790fc9cead 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix @@ -36,7 +36,7 @@ let # -> http://get.adobe.com/flashplayer/ - version = "11.2.202.535"; + version = "11.2.202.540"; src = if stdenv.system == "x86_64-linux" then @@ -47,7 +47,7 @@ let else rec { inherit version; url = "http://fpdownload.adobe.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.x86_64.tar.gz"; - sha256 = "13fy842plbnv4w081sbhga0jrpbwz8yydg49c2v96l2marmzw9zp"; + sha256 = "0zya9n5h669wbna182ig6dl4yf5sv4lvqk19rqhcwv3i718b0ai6"; } else if stdenv.system == "i686-linux" then if debug then @@ -60,7 +60,7 @@ let else rec { inherit version; url = "http://fpdownload.adobe.com/get/flashplayer/pdc/${version}/install_flash_player_11_linux.i386.tar.gz"; - sha256 = "0z99nz1k0cf86dgs367ddxfnf05m32psidpmdzi5qiqaj10h6j6s"; + sha256 = "1n8ik5f257s388ql7gkmfh1iqil0g4kzxh3zsv2x8r6ssrvpq1by"; } else throw "Flash Player is not supported on this platform"; diff --git a/pkgs/applications/networking/dropbox/default.nix b/pkgs/applications/networking/dropbox/default.nix index 08a4b0dacbd9..2b3296d502d7 100644 --- a/pkgs/applications/networking/dropbox/default.nix +++ b/pkgs/applications/networking/dropbox/default.nix @@ -20,11 +20,11 @@ let # NOTE: When updating, please also update in current stable, as older versions stop working - version = "3.8.9"; + version = "3.10.9"; sha256 = { - "x86_64-linux" = "1mdhf57bqi4vihbzv5lz8zk4n576c1qjm7hzcq4f5qvkdsmp5in2"; - "i686-linux" = "0gighh782jjmlgqgbw2d00a3ri5h3inqdik7v70f1yygvkr7awy8"; + "x86_64-linux" = "1kg6x1z8if63s15464xiz59qwncb5xhv108icicb5s2yhjzzyi29"; + "i686-linux" = "172x9f7x425w5ljr6xa0srvv19qysmvr3gs3jkbmnxfwrfxyxf79"; }."${stdenv.system}" or (throw "system ${stdenv.system} not supported"); arch = diff --git a/pkgs/applications/networking/ftp/filezilla/default.nix b/pkgs/applications/networking/ftp/filezilla/default.nix index 51b5df176ccf..6c8df2fcd65b 100644 --- a/pkgs/applications/networking/ftp/filezilla/default.nix +++ b/pkgs/applications/networking/ftp/filezilla/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext , pkgconfig, xdg_utils, gtk2, sqlite, pugixml }: -let version = "3.14.0"; in +let version = "3.14.1"; in stdenv.mkDerivation { name = "filezilla-${version}"; src = fetchurl { url = "mirror://sourceforge/project/filezilla/FileZilla_Client/${version}/FileZilla_${version}_src.tar.bz2"; - sha256 = "1zbrsmrqnxzj6cnf2y1sx384nv6c8l3338ynazjfbiqbyfs5lf4j"; + sha256 = "0v6lb7miy6jbnswii816na8818xqxlvs1vadnii21xfmrsv7225i"; }; configureFlags = [ diff --git a/pkgs/applications/networking/p2p/freenet/default.nix b/pkgs/applications/networking/p2p/freenet/default.nix index 4e7057116773..80f8eb840f13 100644 --- a/pkgs/applications/networking/p2p/freenet/default.nix +++ b/pkgs/applications/networking/p2p/freenet/default.nix @@ -1,56 +1,67 @@ -{ stdenv, fetchurl, ant, jdk }: +{ stdenv, fetchurl, fetchgit, ant, jdk, makeWrapper }: let - # The .gitmodules in freenet-official-20130413-eccc9b3198 - # points to freenet-contrib-staging-ce3b7d5 freenet_ext = fetchurl { url = https://downloads.freenetproject.org/latest/freenet-ext.jar; - sha1 = "507ab3f6ee91f47c187149136fb6d6e98f9a8c7f"; + sha256 = "17ypljdvazgx2z6hhswny1lxfrknysz3x6igx8vl3xgdpvbb7wij"; }; bcprov = fetchurl { - url = http://www.bouncycastle.org/download/bcprov-jdk15on-148.jar; - sha256 = "12129q8rmqwlvj6z4j0gc3w0hq5ccrkf2gdlsggp3iws7cp7wjw0"; + url = https://downloads.freenetproject.org/latest/bcprov-jdk15on-152.jar; + sha256 = "0wqpdcvcfh939fk8yr033ijzr1vjbp6ydlnv5ly8jiykwj0x3i0d"; }; + seednodes = fetchurl { + url = https://downloads.freenetproject.org/alpha/opennet/seednodes.fref; + sha256 = "109zn9w8axdkjwhkkcm2s8dvib0mq0n8imjgs3r8hvi128cjsmg9"; + }; + version = "build01470"; in stdenv.mkDerivation { - name = "freenet-20130413-eccc9b3198"; + name = "freenet-${version}"; - src = fetchurl { - url = https://github.com/freenet/fred-official/tarball/eccc9b3198; - name = "freenet-official-eccc9b3198.tar.gz"; - sha256 = "0x0s8gmb95770l7968r99sq0588vf0n1687ivc2hixar19cw620y"; + + src = fetchgit { + url = https://github.com/freenet/fred; + rev = "refs/tags/${version}"; + sha256 = "1b6e6fec2b9a729d4a25605fa142df9ea42e59b379ff665f580e32c6178c9746"; }; patchPhase = '' cp ${freenet_ext} lib/freenet/freenet-ext.jar - cp ${bcprov} lib/bcprov.jar + cp ${bcprov} lib/bcprov-jdk15on-152.jar sed '/antcall.*-ext/d' -i build.xml + sed 's/@unknown@/${version}/g' -i build-clean.xml ''; - buildInputs = [ ant jdk ]; + buildInputs = [ ant jdk makeWrapper ]; buildPhase = "ant package-only"; + freenetWrapper = ./freenetWrapper; + installPhase = '' mkdir -p $out/share/freenet $out/bin - cp lib/bcprov.jar $out/share/freenet + cp lib/bcprov-jdk15on-152.jar $out/share/freenet cp lib/freenet/freenet-ext.jar $out/share/freenet cp dist/freenet.jar $out/share/freenet - cat < $out/bin/freenet + cat < $out/bin/freenet.wrapped #!${stdenv.shell} - ${jdk.jre}/bin/java -cp $out/share/freenet/bcprov.jar:$out/share/freenet/freenet-ext.jar:$out/share/freenet/freenet.jar \\ + ${jdk.jre}/bin/java -cp $out/share/freenet/bcprov-jdk15on-152.jar:$out/share/freenet/freenet-ext.jar:$out/share/freenet/freenet.jar \\ -Xmx1024M freenet.node.NodeStarter EOF - chmod +x $out/bin/freenet + chmod +x $out/bin/freenet.wrapped + makeWrapper $freenetWrapper $out/bin/freenet \ + --set FREENET_ROOT "$out" \ + --set FREENET_SEEDNODES "${seednodes}" ''; meta = { description = "Decentralised and censorship-resistant network"; homepage = https://freenetproject.org/; license = stdenv.lib.licenses.gpl2Plus; + maintainers = [ stdenv.lib.maintainers.doublec ]; platforms = with stdenv.lib.platforms; linux; }; } diff --git a/pkgs/applications/networking/p2p/freenet/freenetWrapper b/pkgs/applications/networking/p2p/freenet/freenetWrapper new file mode 100755 index 000000000000..c1667f158b97 --- /dev/null +++ b/pkgs/applications/networking/p2p/freenet/freenetWrapper @@ -0,0 +1,16 @@ +#! /usr/bin/env bash + +export FREENET_HOME="$HOME/.local/share/freenet" +if [ -n "$XDG_DATA_HOME" ] + then export FREENET_HOME="$XDG_DATA_HOME/freenet" +fi + +if [ ! -d $FREENET_HOME ]; then + mkdir -p $FREENET_HOME +fi + +cp -u $FREENET_SEEDNODES $FREENET_HOME/seednodes.fref +chmod u+rw $FREENET_HOME/seednodes.fref + +cd $FREENET_HOME +exec $FREENET_ROOT/bin/freenet.wrapped "$@" diff --git a/pkgs/applications/networking/remote/teamviewer/10.nix b/pkgs/applications/networking/remote/teamviewer/10.nix index 7e97a31c3a92..5de60180c69d 100644 --- a/pkgs/applications/networking/remote/teamviewer/10.nix +++ b/pkgs/applications/networking/remote/teamviewer/10.nix @@ -1,6 +1,5 @@ { stdenv, fetchurl, libX11, libXtst, libXext, libXdamage, libXfixes, -wineUnstable, makeWrapper, libXau , bash, patchelf, config, -acceptLicense ? false }: +wineUnstable, makeWrapper, libXau , patchelf, config }: with stdenv.lib; @@ -30,22 +29,23 @@ stdenv.mkDerivation { rm -R $out/share/teamviewer/tv_bin/wine/{bin,lib,share} cat > $out/bin/teamviewer << EOF - #!${bash}/bin/sh + #!${stdenv.shell} export LD_LIBRARY_PATH=${toldpath}\''${LD_LIBRARY_PATH:+:\$LD_LIBRARY_PATH} export PATH=${topath}\''${PATH:+:\$PATH} $out/share/teamviewer/tv_bin/script/teamviewer "\$@" EOF chmod +x $out/bin/teamviewer - patchelf --set-rpath "${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib:${libX11}/lib:${libXext}/lib:${libXau}/lib:${libXdamage}/lib:${libXfixes}/lib" $out/share/teamviewer/tv_bin/teamviewerd - patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out/share/teamviewer/tv_bin/teamviewerd ln -s $out/share/teamviewer/tv_bin/teamviewerd $out/bin/ - ${optionalString acceptLicense " - cat > $out/share/teamviewer/config/global.conf << EOF - [int32] EulaAccepted = 1 - [int32] EulaAcceptedRevision = 6 - EOF - "} + rm -rf $out/share/teamviewer/logfiles $out/share/teamviewer/config + ln -sv /var/tmp/teamviewer10/logs/ $out/share/teamviewer/logfiles + ln -sv /var/tmp/teamviewer10/config/ $out/share/teamviewer/config + ''; + + # the fixupPhase undoes the rpath patch + postFixup = '' + patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out/share/teamviewer/tv_bin/teamviewerd + patchelf --set-rpath "${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib:${libX11}/lib:${libXext}/lib:${libXau}/lib:${libXdamage}/lib:${libXfixes}/lib" $out/share/teamviewer/tv_bin/teamviewerd ''; meta = { diff --git a/pkgs/applications/office/gnumeric/default.nix b/pkgs/applications/office/gnumeric/default.nix index 8e01d30c44fe..cddde10f9163 100644 --- a/pkgs/applications/office/gnumeric/default.nix +++ b/pkgs/applications/office/gnumeric/default.nix @@ -4,11 +4,11 @@ }: stdenv.mkDerivation rec { - name = "gnumeric-1.12.23"; + name = "gnumeric-1.12.24"; src = fetchurl { url = "mirror://gnome/sources/gnumeric/1.12/${name}.tar.xz"; - sha256 = "0lcmw4jrfg9y2fhx13xw8w85vi7bcmgyn2sdjxi21xkh3szlqiq0"; + sha256 = "0lcm8k0jb8rd5y4ii803f21nv8rx6gc3mmdlrj5h0rkkn9qm57f5"; }; configureFlags = "--disable-component"; diff --git a/pkgs/applications/taxes/aangifte-2013-wa/default.nix b/pkgs/applications/taxes/aangifte-2013-wa/default.nix new file mode 100644 index 000000000000..5ee0edb4b5e5 --- /dev/null +++ b/pkgs/applications/taxes/aangifte-2013-wa/default.nix @@ -0,0 +1,41 @@ +{ stdenv, fetchurl, makeWrapper, xdg_utils, libX11, libXext, libSM }: + +stdenv.mkDerivation { + name = "aangifte2013-wa"; + + src = fetchurl { + url = http://download.belastingdienst.nl/belastingdienst/apps/linux/wa2013_linux.tar.gz; + sha256 = "1bx6qnxikzpzrn8r66qxcind3k9yznwgp05dm549ph0w4rjbhgc9"; + }; + + dontStrip = true; + dontPatchELF = true; + + buildInputs = [ makeWrapper ]; + + buildPhase = + '' + for i in bin/*; do + patchelf \ + --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ + --set-rpath ${stdenv.lib.makeLibraryPath [ libX11 libXext libSM ]}:$(cat $NIX_CC/nix-support/orig-cc)/lib \ + $i + done + ''; + + installPhase = + '' + mkdir -p $out + cp -prvd * $out/ + wrapProgram $out/bin/wa2013ux --prefix PATH : ${xdg_utils}/bin \ + --prefix LD_PRELOAD : $(cat $NIX_CC/nix-support/orig-cc)/lib/libgcc_s.so.1 + ''; + + meta = { + description = "Elektronische aangifte WA 2013 (Dutch Tax Return Program)"; + url = http://www.belastingdienst.nl/wps/wcm/connect/bldcontentnl/themaoverstijgend/programmas_en_formulieren/aangifteprogramma_2013_linux; + license = stdenv.lib.licenses.unfree; + platforms = stdenv.lib.platforms.linux; + hydraPlatforms = []; + }; +} diff --git a/pkgs/applications/taxes/aangifte-2014-wa/default.nix b/pkgs/applications/taxes/aangifte-2014-wa/default.nix new file mode 100644 index 000000000000..78bb8214257f --- /dev/null +++ b/pkgs/applications/taxes/aangifte-2014-wa/default.nix @@ -0,0 +1,41 @@ +{ stdenv, fetchurl, makeWrapper, xdg_utils, libX11, libXext, libSM }: + +stdenv.mkDerivation { + name = "aangifte2014-wa"; + + src = fetchurl { + url = http://download.belastingdienst.nl/belastingdienst/apps/linux/wa2014_linux.tar.gz; + sha256 = "0ckwk190vyvwgv8kq0xxsxvm1kniv3iip4l5aycjx1wcyic2289x"; + }; + + dontStrip = true; + dontPatchELF = true; + + buildInputs = [ makeWrapper ]; + + buildPhase = + '' + for i in bin/*; do + patchelf \ + --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ + --set-rpath ${stdenv.lib.makeLibraryPath [ libX11 libXext libSM ]}:$(cat $NIX_CC/nix-support/orig-cc)/lib \ + $i + done + ''; + + installPhase = + '' + mkdir -p $out + cp -prvd * $out/ + wrapProgram $out/bin/wa2014ux --prefix PATH : ${xdg_utils}/bin \ + --prefix LD_PRELOAD : $(cat $NIX_CC/nix-support/orig-cc)/lib/libgcc_s.so.1 + ''; + + meta = { + description = "Elektronische aangifte WA 2014 (Dutch Tax Return Program)"; + url = http://www.belastingdienst.nl/wps/wcm/connect/bldcontentnl/themaoverstijgend/programmas_en_formulieren/aangifteprogramma_2014_linux; + license = stdenv.lib.licenses.unfree; + platforms = stdenv.lib.platforms.linux; + hydraPlatforms = []; + }; +} diff --git a/pkgs/applications/taxes/aangifte-2014/default.nix b/pkgs/applications/taxes/aangifte-2014/default.nix new file mode 100644 index 000000000000..0151cca52b2c --- /dev/null +++ b/pkgs/applications/taxes/aangifte-2014/default.nix @@ -0,0 +1,41 @@ +{ stdenv, fetchurl, makeWrapper, xdg_utils, libX11, libXext, libSM }: + +stdenv.mkDerivation { + name = "aangifte2014-1"; + + src = fetchurl { + url = http://download.belastingdienst.nl/belastingdienst/apps/linux/ib2014_linux.tar.gz; + sha256 = "1lkpfn9ban122hw27vvscdlg3933i2lqcdhp7lk26f894jbwzq3j"; + }; + + dontStrip = true; + dontPatchELF = true; + + buildInputs = [ makeWrapper ]; + + buildPhase = + '' + for i in bin/*; do + patchelf \ + --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ + --set-rpath ${stdenv.lib.makeLibraryPath [ libX11 libXext libSM ]}:$(cat $NIX_CC/nix-support/orig-cc)/lib \ + $i + done + ''; + + installPhase = + '' + mkdir -p $out + cp -prvd * $out/ + wrapProgram $out/bin/ib2014ux --prefix PATH : ${xdg_utils}/bin \ + --prefix LD_PRELOAD : $(cat $NIX_CC/nix-support/orig-cc)/lib/libgcc_s.so.1 + ''; + + meta = { + description = "Elektronische aangifte IB 2014 (Dutch Tax Return Program)"; + url = http://www.belastingdienst.nl/wps/wcm/connect/bldcontentnl/themaoverstijgend/programmas_en_formulieren/aangifteprogramma_2014_linux; + license = stdenv.lib.licenses.unfree; + platforms = stdenv.lib.platforms.linux; + hydraPlatforms = []; + }; +} diff --git a/pkgs/applications/version-management/git-and-tools/default.nix b/pkgs/applications/version-management/git-and-tools/default.nix index 6a365dc69a51..6d832f9778f0 100644 --- a/pkgs/applications/version-management/git-and-tools/default.nix +++ b/pkgs/applications/version-management/git-and-tools/default.nix @@ -71,6 +71,8 @@ rec { tig = callPackage ./tig { }; + transcrypt = callPackage ./transcrypt { }; + hub = import ./hub { inherit go; inherit stdenv fetchgit; diff --git a/pkgs/applications/version-management/git-and-tools/transcrypt/default.nix b/pkgs/applications/version-management/git-and-tools/transcrypt/default.nix new file mode 100644 index 000000000000..2f42705c2b86 --- /dev/null +++ b/pkgs/applications/version-management/git-and-tools/transcrypt/default.nix @@ -0,0 +1,35 @@ +{ stdenv, fetchurl, git, openssl }: + +stdenv.mkDerivation rec { + name = "transcrypt-0.9.7"; + + src = fetchurl { + url = https://github.com/elasticdog/transcrypt/archive/v0.9.7.tar.gz; + sha256 = "0pgrf74wdc7whvwz7lkkq6qfk38n37dc5668baq7czgckibvjqdh"; + }; + + buildInputs = [ git openssl ]; + + installPhase = '' + install -m 755 -D transcrypt $out/bin/transcrypt + install -m 644 -D man/transcrypt.1 $out/share/man/man1/transcrypt.1 + install -m 644 -D contrib/bash/transcrypt $out/share/bash-completion/completions/transcrypt + install -m 644 -D contrib/zsh/_transcrypt $out/share/zsh/site-functions/_transcrypt + ''; + + meta = with stdenv.lib; { + description = "Transparently encrypt files within a Git repository"; + longDescription = '' + A script to configure transparent encryption of sensitive files stored in + a Git repository. Files that you choose will be automatically encrypted + when you commit them, and automatically decrypted when you check them + out. The process will degrade gracefully, so even people without your + encryption password can safely commit changes to the repository's + non-encrypted files. + ''; + homepage = https://github.com/elasticdog/transcrypt; + license = licenses.mit; + maintainers = [ maintainers.elasticdog ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/applications/video/avidemux/default.nix b/pkgs/applications/video/avidemux/default.nix index 485d8c54eb36..89773be9adaf 100644 --- a/pkgs/applications/video/avidemux/default.nix +++ b/pkgs/applications/video/avidemux/default.nix @@ -7,11 +7,11 @@ assert stdenv ? glibc; assert faacSupport -> faac != null; stdenv.mkDerivation { - name = "avidemux-2.5.6"; + name = "avidemux-2.6.9"; src = fetchurl { - url = mirror://sourceforge/avidemux/avidemux_2.5.6.tar.gz; - sha256 = "12wvxz0n2g85f079d8mdkkp2zm279d34m9v7qgcqndh48cn7znnn"; + url = mirror://sourceforge/avidemux/avidemux_2.6.9.tar.gz; + sha256 = "01jhgricd7m9hdhr22yrdjfrnl41zccm2yxw7gfb02mwcswvswy0"; }; buildInputs = [ cmake pkgconfig libxml2 qt4 gtk gettext SDL libXv @@ -40,7 +40,7 @@ stdenv.mkDerivation { meta = { homepage = http://fixounet.free.fr/avidemux/; description = "Free video editor designed for simple video editing tasks"; - maintainers = with stdenv.lib.maintainers; [viric]; + maintainers = with stdenv.lib.maintainers; [ viric jagajaga ]; platforms = with stdenv.lib.platforms; linux; }; } diff --git a/pkgs/applications/video/kodi/default.nix b/pkgs/applications/video/kodi/default.nix index 142822023fb9..e1dc182ba0b9 100644 --- a/pkgs/applications/video/kodi/default.nix +++ b/pkgs/applications/video/kodi/default.nix @@ -43,11 +43,11 @@ let }; in stdenv.mkDerivation rec { name = "kodi-" + version; - version = "15.1"; + version = "15.2"; src = fetchurl { url = "https://github.com/xbmc/xbmc/archive/${version}-${rel}.tar.gz"; - sha256 = "0187qxzyq4nhzbcwbhi71j4bl5k7pwjryhklil90gy5ziw6n3ckj"; + sha256 = "043i0f1crx9glwxil4xm45z5kxpkrx316gi4ir4d3rbd5safp2nx"; }; buildInputs = [ diff --git a/pkgs/applications/video/kodi/plugins.nix b/pkgs/applications/video/kodi/plugins.nix index f41d0e839ac1..ed2fb0ac8869 100644 --- a/pkgs/applications/video/kodi/plugins.nix +++ b/pkgs/applications/video/kodi/plugins.nix @@ -59,13 +59,13 @@ in plugin = "genesis"; namespace = "plugin.video.genesis"; - version = "4.0.1"; + version = "5.1.3"; src = fetchFromGitHub { owner = "lambda81"; repo = "lambda-addons"; - rev = "34af083980598177684eeb6e1e73da336b84575a"; - sha256 = "1fh3j4ymkrx9flpvnlyjp1q4avfmjv5a6yfwl3cmqnslkkp6kn9n"; + rev = "f2cd04f33af88d60e1330573bbf2ef9cee7f0a56"; + sha256 = "0z0ldckqqif9v5nhnjr5n2495cm3z9grjmrh7czl4xlnq4bvviqq"; }; meta = with stdenv.lib; { @@ -81,13 +81,13 @@ in plugin = "svtplay"; namespace = "plugin.video.svtplay"; - version = "4.0.14"; + version = "4.0.15"; src = fetchFromGitHub { owner = "nilzen"; repo = "xbmc-" + plugin; - rev = "a6041aa6cf8f8461c0ebb093d901320822539094"; - sha256 = "1nxa2855i1if4vsflhb88i9s12flp2yzgan2wzdv2117cmll4pvd"; + rev = "3b926898b7007827b469ecb1c27ede4238fd26f6"; + sha256 = "1bx2c3z8rbkk75hykpmls956hfkwvsm4d8gvlrh53s8zimlwgv7k"; }; meta = with stdenv.lib; { @@ -105,4 +105,4 @@ in }; -} \ No newline at end of file +} diff --git a/pkgs/applications/video/qarte/default.nix b/pkgs/applications/video/qarte/default.nix index 4517f27ce7dc..d4221e8f57eb 100644 --- a/pkgs/applications/video/qarte/default.nix +++ b/pkgs/applications/video/qarte/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchbzr, python, pyqt4, sip, rtmpdump, makeWrapper }: stdenv.mkDerivation { - name = "qarte-2.3.0"; + name = "qarte-2.4.0"; src = fetchbzr { url = http://bazaar.launchpad.net/~vincent-vandevyvre/qarte/trunk; - rev = "148"; - sha256 = "0bp2qbl2g3dygmb31lwlarki9lybkb9zxixda4lwrlz628w93fxh"; + rev = "150"; + sha256 = "0fj11jx9l5qi968c906rrksdic7w4yj414m47k6axlb4v6ghdnar"; }; buildInputs = [ makeWrapper ]; diff --git a/pkgs/applications/virtualization/nova/client.nix b/pkgs/applications/virtualization/nova/client.nix deleted file mode 100644 index bcc72d19bb39..000000000000 --- a/pkgs/applications/virtualization/nova/client.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ fetchurl, pythonPackages }: - -pythonPackages.buildPythonPackage rec { - name = "novaclient-2012.1"; - namePrefix = ""; - - src = fetchurl { - url = "http://pypi.python.org/packages/source/p/python-novaclient/python-${name}.tar.gz"; - md5 = "8f53a308e08b2af4645281917be77ffc"; - }; - - pythonPath = [ pythonPackages.prettytable pythonPackages.argparse pythonPackages.httplib2 ]; - - buildInputs = [ pythonPackages.mock pythonPackages.nose ]; - - meta = { - homepage = https://github.com/rackspace/python-novaclient; - description = "Client library and command line tool for the OpenStack Nova API"; - broken = true; - }; -} diff --git a/pkgs/applications/virtualization/nova/convert.patch b/pkgs/applications/virtualization/nova/convert.patch deleted file mode 100644 index f11c9a7fc4f2..000000000000 --- a/pkgs/applications/virtualization/nova/convert.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ru -x '*~' nova-2011.2-orig//bin/nova-manage nova-2011.2//bin/nova-manage ---- nova-2011.2-orig//bin/nova-manage 2011-04-15 04:57:52.000000000 +0200 -+++ nova-2011.2//bin/nova-manage 2011-06-09 18:28:39.063299654 +0200 -@@ -1009,7 +1009,7 @@ - if (FLAGS.image_service == 'nova.image.local.LocalImageService' - and directory == os.path.abspath(FLAGS.images_path)): - new_dir = "%s_bak" % directory -- os.move(directory, new_dir) -+ os.rename(directory, new_dir) - os.mkdir(directory) - directory = new_dir - for fn in glob.glob("%s/*/info.json" % directory): diff --git a/pkgs/applications/virtualization/nova/default.nix b/pkgs/applications/virtualization/nova/default.nix deleted file mode 100644 index 0023cf44f33b..000000000000 --- a/pkgs/applications/virtualization/nova/default.nix +++ /dev/null @@ -1,95 +0,0 @@ -{ stdenv, fetchurl, pythonPackages, intltool, libvirt, libxml2Python, curl, novaclient }: - -with stdenv.lib; - -let version = "2011.2"; in - -stdenv.mkDerivation rec { - name = "nova-${version}"; - - src = fetchurl { - url = "http://launchpad.net/nova/cactus/${version}/+download/nova-${version}.tar.gz"; - sha256 = "1s2w0rm332y9x34ngjz8sys9sbldg857rx9d6r3nb1ik979fx8p7"; - }; - - patches = - [ ./convert.patch ]; - - pythonPath = with pythonPackages; - [ setuptools eventlet greenlet gflags netaddr sqlalchemy carrot routes - paste_deploy m2crypto ipy twisted sqlalchemy_migrate - distutils_extra simplejson readline glance cheetah lockfile httplib2 - # !!! should libvirt be a build-time dependency? Note that - # libxml2Python is a dependency of libvirt.py. - libvirt libxml2Python - novaclient - ]; - - buildInputs = - [ pythonPackages.python - pythonPackages.wrapPython - pythonPackages.mox - intltool - ] ++ pythonPath; - - PYTHON_EGG_CACHE = "`pwd`/.egg-cache"; - - preConfigure = - '' - # Set the built-in state location to something sensible. - sed -i nova/flags.py \ - -e "/DEFINE.*'state_path'/ s|../|/var/lib/nova|" - - substituteInPlace nova/virt/images.py --replace /usr/bin/curl ${curl}/bin/curl - - substituteInPlace nova/api/ec2/cloud.py \ - --replace 'sh genrootca.sh' $out/libexec/nova/genrootca.sh - ''; - - buildPhase = "python setup.py build"; - - installPhase = - '' - p=$(toPythonPath $out) - export PYTHONPATH=$p:$PYTHONPATH - mkdir -p $p - python setup.py install --prefix=$out - - # Nova doesn't like to be called ".nova-foo-wrapped" because it - # computes some stuff from its own argv[0]. So put the wrapped - # programs in $out/libexec under their original names. - mkdir -p $out/libexec/nova - - wrapProgram() { - local prog="$1" - local hidden=$out/libexec/nova/$(basename "$prog") - mv $prog $hidden - makeWrapper $hidden $prog "$@" - } - - wrapPythonPrograms - - cp -prvd etc $out/etc - - # Nova makes some weird assumptions about where to find its own - # programs relative to the Python directory. - ln -sfn $out/bin $out/lib/${pythonPackages.python.libPrefix}/site-packages/bin - - # Install the certificate generation script. - cp nova/CA/genrootca.sh $out/libexec/nova/ - cp nova/CA/openssl.cnf.tmpl $out/libexec/nova/ - - # Allow nova-manage etc. to find the proper configuration file. - ln -s /etc/nova/nova.conf $out/libexec/nova/nova.conf - ''; - - doCheck = false; # !!! fix - - checkPhase = "python setup.py test"; - - meta = { - homepage = http://nova.openstack.org/; - description = "OpenStack Compute (a.k.a. Nova), a cloud computing fabric controller"; - broken = true; - }; -} diff --git a/pkgs/applications/virtualization/openstack/glance.nix b/pkgs/applications/virtualization/openstack/glance.nix new file mode 100644 index 000000000000..51d58b896d1e --- /dev/null +++ b/pkgs/applications/virtualization/openstack/glance.nix @@ -0,0 +1,67 @@ + +{ stdenv, fetchurl, pythonPackages, sqlite, which, strace }: + +pythonPackages.buildPythonPackage rec { + name = "glance-${version}"; + version = "11.0.0"; + namePrefix = ""; + + PBR_VERSION = "${version}"; + + src = fetchurl { + url = "https://github.com/openstack/glance/archive/${version}.tar.gz"; + sha256 = "05rz1lmzdmpnw8sf87vvi0l6q9g6s840z934zyinw17yfcvmqrdg"; + }; + + # https://github.com/openstack/glance/blob/stable/liberty/requirements.txt + propagatedBuildInputs = with pythonPackages; [ + pbr sqlalchemy_1_0 anyjson eventlet PasteDeploy routes webob sqlalchemy_migrate + httplib2 pycrypto iso8601 stevedore futurist keystonemiddleware paste + jsonschema keystoneclient pyopenssl six retrying semantic-version qpid-python + WSME osprofiler glance_store castellan taskflow cryptography xattr pysendfile + + # oslo componenets + oslo-config oslo-context oslo-concurrency oslo-service oslo-utils oslo-db + oslo-i18n oslo-log oslo-messaging oslo-middleware oslo-policy oslo-serialization + ]; + + buildInputs = with pythonPackages; [ + Babel coverage fixtures mox3 mock oslosphinx requests2 testrepository pep8 + testresources testscenarios testtools psutil_1 oslotest psycopg2 MySQL_python + sqlite which strace + ]; + + patchPhase = '' + # it's not a test, but a class mixin + sed -i 's/ImageCacheTestCase/ImageCacheMixin/' glance/tests/unit/test_image_cache.py + + # these require network access, see https://bugs.launchpad.net/glance/+bug/1508868 + sed -i 's/test_get_image_data_http/noop/' glance/tests/unit/common/scripts/test_scripts_utils.py + sed -i 's/test_set_image_data_http/noop/' glance/tests/unit/common/scripts/image_import/test_main.py + sed -i 's/test_create_image_with_nonexistent_location_url/noop/' glance/tests/unit/v1/test_api.py + sed -i 's/test_upload_image_http_nonexistent_location_url/noop/' glance/tests/unit/v1/test_api.py + + # TODO: couldn't figure out why this test is failing + sed -i 's/test_all_task_api/noop/' glance/tests/integration/v2/test_tasks_api.py + ''; + + postInstall = '' + # check all binaries don't crash + for i in $out/bin/*; do + case "$i" in + *glance-artifacts) # https://bugs.launchpad.net/glance/+bug/1508879 + : + ;; + *) + $i --help + esac + done + ''; + + meta = with stdenv.lib; { + homepage = http://glance.openstack.org/; + description = "Services for discovering, registering, and retrieving virtual machine images"; + license = stdenv.lib.licenses.asl20; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/applications/virtualization/openstack/keystone.nix b/pkgs/applications/virtualization/openstack/keystone.nix new file mode 100644 index 000000000000..42a40f035982 --- /dev/null +++ b/pkgs/applications/virtualization/openstack/keystone.nix @@ -0,0 +1,49 @@ +{ stdenv, fetchurl, pythonPackages, xmlsec, which }: + +pythonPackages.buildPythonPackage rec { + name = "keystone-${version}"; + version = "8.0.0"; + namePrefix = ""; + + PBR_VERSION = "${version}"; + + src = fetchurl { + url = "https://github.com/openstack/keystone/archive/${version}.tar.gz"; + sha256 = "1xbrs7xgwjzrs07zyxxcl2lq18dh582gd6lx1zzzji8c0qmffy0z"; + }; + + # remove on next version bump + patches = [ ./remove-oslo-policy-tests.patch ]; + + # https://github.com/openstack/keystone/blob/stable/liberty/requirements.txt + propagatedBuildInputs = with pythonPackages; [ + pbr webob eventlet greenlet PasteDeploy paste routes cryptography six + sqlalchemy_1_0 sqlalchemy_migrate stevedore passlib keystoneclient memcached + keystonemiddleware oauthlib pysaml2 dogpile_cache jsonschema pycadf msgpack + xmlsec MySQL_python + + # oslo + oslo-cache oslo-concurrency oslo-config oslo-context oslo-messaging oslo-db + oslo-i18n oslo-log oslo-middleware oslo-policy oslo-serialization oslo-service + oslo-utils + ]; + + buildInputs = with pythonPackages; [ + coverage fixtures mock subunit tempest-lib testtools testrepository + ldap ldappool webtest requests2 oslotest pep8 pymongo which + ]; + + postInstall = '' + # check all binaries don't crash + for i in $out/bin/*; do + $i --help + done + ''; + + meta = with stdenv.lib; { + homepage = http://keystone.openstack.org/; + description = "Authentication, authorization and service discovery mechanisms via HTTP"; + license = stdenv.lib.licenses.asl20; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/applications/virtualization/openstack/neutron.nix b/pkgs/applications/virtualization/openstack/neutron.nix new file mode 100644 index 000000000000..bd0892299b32 --- /dev/null +++ b/pkgs/applications/virtualization/openstack/neutron.nix @@ -0,0 +1,60 @@ + +{ stdenv, fetchurl, pythonPackages, xmlsec, which }: + +pythonPackages.buildPythonPackage rec { + name = "neutron-${version}"; + version = "7.0.0"; + namePrefix = ""; + + PBR_VERSION = "${version}"; + + src = fetchurl { + url = "https://github.com/openstack/neutron/archive/${version}.tar.gz"; + sha256 = "02ll081xly7zfjmgkal81fy3aplbnn5zgx8xfy3yy1nv3kfnyi40"; + }; + + # https://github.com/openstack/neutron/blob/stable/liberty/requirements.txt + propagatedBuildInputs = with pythonPackages; [ + pbr paste PasteDeploy routes debtcollector eventlet greenlet httplib2 requests2 + jinja2 keystonemiddleware netaddr retrying sqlalchemy_1_0 webob alembic six + stevedore pecan ryu networking-hyperv MySQL_python + + # clients + keystoneclient neutronclient novaclient + + # oslo components + oslo-concurrency oslo-config oslo-context oslo-db oslo-i18n oslo-log oslo-messaging + oslo-middleware oslo-policy oslo-rootwrap oslo-serialization oslo-service oslo-utils + oslo-versionedobjects + ]; + + buildInputs = with pythonPackages; [ + cliff coverage fixtures mock subunit requests-mock oslosphinx testrepository + testtools testresources testscenarios webtest oslotest os-testr tempest-lib + ddt pep8 + ]; + + postInstall = '' + # requires extra optional dependencies + # TODO: package networking_mlnx, networking_vsphere, bsnstacklib, XenAPI + rm $out/bin/{neutron-mlnx-agent,neutron-ovsvapp-agent,neutron-restproxy-agent,neutron-rootwrap-xen-dom0} + + # check all binaries don't crash + for i in $out/bin/*; do + case "$i" in + *neutron-pd-notify|*neutron-rootwrap-daemon|*neutron-rootwrap) + : + ;; + *) + $i --help + esac + done + ''; + + meta = with stdenv.lib; { + homepage = http://neutron.openstack.org/; + description = "Virtual network service for Openstack"; + license = stdenv.lib.licenses.asl20; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/applications/virtualization/openstack/nova.nix b/pkgs/applications/virtualization/openstack/nova.nix new file mode 100644 index 000000000000..da62f27541c8 --- /dev/null +++ b/pkgs/applications/virtualization/openstack/nova.nix @@ -0,0 +1,63 @@ +{ stdenv, fetchurl, pythonPackages, openssl, openssh }: + +pythonPackages.buildPythonPackage rec { + name = "nova-${version}"; + version = "12.0.0"; + namePrefix = ""; + + PBR_VERSION = "${version}"; + + src = fetchurl { + url = "https://github.com/openstack/nova/archive/${version}.tar.gz"; + sha256 = "175n1znvmy8f5vqvabc2fa4qy8y17685z4gzpq8984mdsdnpv21w"; + }; + + # https://github.com/openstack/nova/blob/stable/liberty/requirements.txt + propagatedBuildInputs = with pythonPackages; [ + pbr sqlalchemy_1_0 boto decorator eventlet jinja2 lxml routes cryptography + webob greenlet PasteDeploy paste prettytable sqlalchemy_migrate netaddr + netifaces paramiko Babel iso8601 jsonschema keystoneclient requests2 six + stevedore websockify rfc3986 os-brick psutil_1 alembic psycopg2 pymysql + keystonemiddleware MySQL_python + + # oslo components + oslo-rootwrap oslo-reports oslo-utils oslo-i18n oslo-config oslo-context + oslo-log oslo-serialization oslo-middleware oslo-db oslo-service oslo-messaging + oslo-concurrency oslo-versionedobjects + + # clients + cinderclient neutronclient glanceclient + ]; + + buildInputs = with pythonPackages; [ + coverage fixtures mock mox3 subunit requests-mock pillow oslosphinx + oslotest testrepository testresources testtools tempest-lib bandit + oslo-vmware pep8 barbicanclient ironicclient openssl openssh + ]; + + postInstall = '' + cp -prvd etc $out/etc + + # check all binaries don't crash + for i in $out/bin/*; do + case "$i" in + *nova-dhcpbridge*) + : + ;; + *nova-rootwrap*) + : + ;; + *) + $i --help + ;; + esac + done + ''; + + meta = with stdenv.lib; { + homepage = http://nova.openstack.org/; + description = "OpenStack Compute (a.k.a. Nova), a cloud computing fabric controller"; + license = stdenv.lib.licenses.asl20; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/applications/virtualization/openstack/remove-oslo-policy-tests.patch b/pkgs/applications/virtualization/openstack/remove-oslo-policy-tests.patch new file mode 100644 index 000000000000..3cdc27a2d2af --- /dev/null +++ b/pkgs/applications/virtualization/openstack/remove-oslo-policy-tests.patch @@ -0,0 +1,61 @@ +From 6016d017004acaae288312b196ef07ea98e9962d Mon Sep 17 00:00:00 2001 +From: Brant Knudson +Date: Mon, 12 Oct 2015 15:12:45 -0500 +Subject: [PATCH] Remove oslo.policy implementation tests from keystone + +oslo.policy 0.12.0 contains a change to use requests to do the http +check rather than urllib. This change caused keystone tests to fail +because the keystone tests were mocking urllib, making assumptions +about how oslo.policy is implemented. Keystone doesn't need to test +internal features of oslo.policy, so these tests are removed. + +Change-Id: I9d6e4950b9fe75cbb94100c8effdcec002642027 +Closes-Bug: 1505374 +--- + keystone/tests/unit/test_policy.py | 24 ------------------------ + 1 file changed, 24 deletions(-) + +diff --git a/keystone/tests/unit/test_policy.py b/keystone/tests/unit/test_policy.py +index b2f0e52..686e2b7 100644 +--- a/keystone/tests/unit/test_policy.py ++++ b/keystone/tests/unit/test_policy.py +@@ -16,10 +16,8 @@ + import json + import os + +-import mock + from oslo_policy import policy as common_policy + import six +-from six.moves.urllib import request as urlrequest + from testtools import matchers + + from keystone import exception +@@ -118,28 +116,6 @@ def test_enforce_good_action(self): + action = "example:allowed" + rules.enforce(self.credentials, action, self.target) + +- def test_enforce_http_true(self): +- +- def fakeurlopen(url, post_data): +- return six.StringIO("True") +- +- action = "example:get_http" +- target = {} +- with mock.patch.object(urlrequest, 'urlopen', fakeurlopen): +- result = rules.enforce(self.credentials, action, target) +- self.assertTrue(result) +- +- def test_enforce_http_false(self): +- +- def fakeurlopen(url, post_data): +- return six.StringIO("False") +- +- action = "example:get_http" +- target = {} +- with mock.patch.object(urlrequest, 'urlopen', fakeurlopen): +- self.assertRaises(exception.ForbiddenAction, rules.enforce, +- self.credentials, action, target) +- + def test_templatized_enforcement(self): + target_mine = {'project_id': 'fake'} + target_not_mine = {'project_id': 'another'} diff --git a/pkgs/applications/virtualization/rkt/default.nix b/pkgs/applications/virtualization/rkt/default.nix index 1d03eece46c8..790afe756450 100644 --- a/pkgs/applications/virtualization/rkt/default.nix +++ b/pkgs/applications/virtualization/rkt/default.nix @@ -2,47 +2,53 @@ , fetchurl, fetchFromGitHub }: let - coreosImageRelease = "738.1.0"; + coreosImageRelease = "794.1.0"; + coreosImageSystemdVersion = "222"; + stage1Flavour = "coreos"; in stdenv.mkDerivation rec { - version = "0.8.0"; + version = "0.10.0"; name = "rkt-${version}"; + BUILDDIR="build-${name}"; src = fetchFromGitHub { rev = "v${version}"; owner = "coreos"; repo = "rkt"; - sha256 = "1abv9psd5w0m8p2kvrwyjnrclzajmrpbwfwmkgpnkydhmsimhnn0"; + sha256 = "1d9n00wkzib4v5mfl46f2mqc8zfpv33kqixifmv8p4azqv78cbxn"; }; - stage1image = fetchurl { + stage1BaseImage = fetchurl { url = "http://alpha.release.core-os.net/amd64-usr/${coreosImageRelease}/coreos_production_pxe_image.cpio.gz"; - sha256 = "1rnb9rwms5g7f142d9yh169a5k2hxiximpgk4y4kqmc1294lqnl0"; + sha256 = "05nzl3av6cawr8v203a8c95c443g6h1nfy2n4jmgvn0j4iyy44ym"; }; buildInputs = [ autoconf automake go file git wget gnupg1 squashfsTools cpio ]; preConfigure = '' ./autogen.sh + configureFlagsArray=( + --with-stage1=${stage1Flavour} + --with-stage1-image-path=$out/stage1-${stage1Flavour}.aci + --with-coreos-local-pxe-image-path=${stage1BaseImage} + --with-coreos-local-pxe-image-systemd-version=v${coreosImageSystemdVersion} + ); ''; preBuild = '' - # hack to avoid downloading image during build, this has been - # improved in rkt master - mkdir -p build-rkt-0.8.0/tmp/usr_from_coreos - cp -v ${stage1image} build-rkt-0.8.0/tmp/usr_from_coreos/pxe.img + export BUILDDIR ''; installPhase = '' mkdir -p $out/bin - cp -Rv build-rkt-${version}/bin/* $out/bin + cp -Rv $BUILDDIR/bin/* $out/bin ''; meta = with lib; { description = "A fast, composable, and secure App Container runtime for Linux"; - homepage = http://rkt.io; + homepage = https://github.com/coreos/rkt; license = licenses.asl20; - maintainers = with maintainers; [ ragge ]; + maintainers = with maintainers; [ ragge steveej ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/applications/virtualization/virt-manager/default.nix b/pkgs/applications/virtualization/virt-manager/default.nix index e3172dcaa3e7..0b1cf9ebc527 100644 --- a/pkgs/applications/virtualization/virt-manager/default.nix +++ b/pkgs/applications/virtualization/virt-manager/default.nix @@ -19,7 +19,7 @@ buildPythonPackage rec { propagatedBuildInputs = [ eventlet greenlet gflags netaddr sqlalchemy carrot routes - paste_deploy m2crypto ipy twisted sqlalchemy_migrate + PasteDeploy m2crypto ipy twisted sqlalchemy_migrate distutils_extra simplejson readline glance cheetah lockfile httplib2 urlgrabber virtinst pyGtkGlade pythonDBus gnome_python pygobject3 libvirt libxml2Python ipaddr vte libosinfo diff --git a/pkgs/applications/virtualization/virtinst/default.nix b/pkgs/applications/virtualization/virtinst/default.nix index 6441bb884234..adcefe6004ac 100644 --- a/pkgs/applications/virtualization/virtinst/default.nix +++ b/pkgs/applications/virtualization/virtinst/default.nix @@ -14,15 +14,15 @@ stdenv.mkDerivation rec { pythonPath = with pythonPackages; [ setuptools eventlet greenlet gflags netaddr sqlalchemy carrot routes - paste_deploy m2crypto ipy twisted sqlalchemy_migrate + PasteDeploy m2crypto ipy twisted sqlalchemy_migrate distutils_extra simplejson readline glance cheetah lockfile httplib2 # !!! should libvirt be a build-time dependency? Note that - # libxml2Python is a dependency of libvirt.py. + # libxml2Python is a dependency of libvirt.py. libvirt libxml2Python urlgrabber ]; buildInputs = - [ pythonPackages.python + [ pythonPackages.python pythonPackages.wrapPython pythonPackages.mox intltool diff --git a/pkgs/applications/window-managers/kbdd/default.nix b/pkgs/applications/window-managers/kbdd/default.nix new file mode 100644 index 000000000000..595f989ff4e8 --- /dev/null +++ b/pkgs/applications/window-managers/kbdd/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchgit, pkgconfig, dbus_glib, autoreconfHook, xorg }: + +stdenv.mkDerivation rec { + name = "kbdd"; + + src = fetchgit { + url = https://github.com/qnikst/kbdd; + rev = "47dee0232f157cd865e43d92005a2ba107f6fd75"; + sha256 = "1b9a66d216326a9759cad26393fbf8259fe7a0c2dd1075047fc989f0e52d969f"; + }; + + buildInputs = [ pkgconfig xorg.libX11 dbus_glib autoreconfHook ]; + + meta = { + description = "Simple daemon and library to make per window layout using XKB"; + homepage = https://github.com/qnikst/kbdd; + license = stdenv.lib.licenses.gpl3; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.wedens ]; + }; +} diff --git a/pkgs/build-support/buildenv/default.nix b/pkgs/build-support/buildenv/default.nix index e7ac87c109f3..5261e9b5a264 100644 --- a/pkgs/build-support/buildenv/default.nix +++ b/pkgs/build-support/buildenv/default.nix @@ -2,7 +2,7 @@ # a fork of the buildEnv in the Nix distribution. Most changes should # eventually be merged back into the Nix distribution. -{ perl, runCommand }: +{ perl, runCommand, lib }: { name @@ -21,6 +21,10 @@ # directories in the list is not symlinked. pathsToLink ? ["/"] +, # The package outputs to include. By default, only the default + # output is included. + outputsToLink ? [] + , # Root the result in directory "$out${extraPrefix}", e.g. "/share". extraPrefix ? "" @@ -34,14 +38,16 @@ }: runCommand name - rec { inherit manifest ignoreCollisions passthru pathsToLink extraPrefix postBuild buildInputs; - pkgs = builtins.toJSON (map (drv: { - paths = [ drv ]; # FIXME: handle multiple outputs - priority = drv.meta.priority or 5; - }) paths); - preferLocalBuild = true; - # XXX: The size is somewhat arbitrary - passAsFile = if builtins.stringLength pkgs >= 128*1024 then [ "pkgs" ] else null; + { inherit manifest ignoreCollisions passthru pathsToLink extraPrefix postBuild buildInputs; + pkgs = builtins.toJSON (map (drv: { + paths = + [ drv ] + ++ lib.concatMap (outputName: lib.optional (drv.${outputName}.outPath or null != null) drv.${outputName}) outputsToLink; + priority = drv.meta.priority or 5; + }) paths); + preferLocalBuild = true; + # XXX: The size is somewhat arbitrary + passAsFile = if builtins.stringLength pkgs >= 128*1024 then [ "pkgs" ] else null; } '' ${perl}/bin/perl -w ${./builder.pl} diff --git a/pkgs/build-support/libredirect/libredirect.c b/pkgs/build-support/libredirect/libredirect.c index 4e0a8245ac1d..c24560a1a493 100644 --- a/pkgs/build-support/libredirect/libredirect.c +++ b/pkgs/build-support/libredirect/libredirect.c @@ -8,6 +8,7 @@ #include #include #include +#include #define MAX_REDIRECTS 128 @@ -103,9 +104,29 @@ int __xstat(int ver, const char * path, struct stat * st) return __xstat_real(ver, rewrite(path, buf), st); } +int __xstat64(int ver, const char * path, struct stat64 * st) +{ + int (*__xstat64_real) (int ver, const char *, struct stat64 *) = dlsym(RTLD_NEXT, "__xstat64"); + char buf[PATH_MAX]; + return __xstat64_real(ver, rewrite(path, buf), st); +} + int * access(const char * path, int mode) { int * (*access_real) (const char *, int mode) = dlsym(RTLD_NEXT, "access"); char buf[PATH_MAX]; return access_real(rewrite(path, buf), mode); } + +int posix_spawn(pid_t * pid, const char * path, + const posix_spawn_file_actions_t * file_actions, + const posix_spawnattr_t * attrp, + char * const argv[], char * const envp[]) +{ + int (*posix_spawn_real) (pid_t *, const char *, + const posix_spawn_file_actions_t *, + const posix_spawnattr_t *, + char * const argv[], char * const envp[]) = dlsym(RTLD_NEXT, "posix_spawn"); + char buf[PATH_MAX]; + return posix_spawn_real(pid, rewrite(path, buf), file_actions, attrp, argv, envp); +} diff --git a/pkgs/build-support/rust/fetch-cargo-deps b/pkgs/build-support/rust/fetch-cargo-deps index ae1ca62050fc..04d33c60d30e 100755 --- a/pkgs/build-support/rust/fetch-cargo-deps +++ b/pkgs/build-support/rust/fetch-cargo-deps @@ -1,5 +1,3 @@ -#! /bin/sh - source $stdenv/setup set -euo pipefail diff --git a/pkgs/build-support/rust/fetchcargo.nix b/pkgs/build-support/rust/fetchcargo.nix index 5dd80bd4aa57..0ce1d0a11d32 100644 --- a/pkgs/build-support/rust/fetchcargo.nix +++ b/pkgs/build-support/rust/fetchcargo.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation { phases = "unpackPhase installPhase"; installPhase = '' - ${./fetch-cargo-deps} . "$out" + bash ${./fetch-cargo-deps} . "$out" ''; outputHashAlgo = "sha256"; diff --git a/pkgs/build-support/vm/default.nix b/pkgs/build-support/vm/default.nix index 5ebb6db8bfe1..1e3cef3e10c3 100644 --- a/pkgs/build-support/vm/default.nix +++ b/pkgs/build-support/vm/default.nix @@ -1837,6 +1837,7 @@ rec { "bzip2" "tar" "grep" + "mawk" "sed" "findutils" "g++" diff --git a/pkgs/data/fonts/terminus-font/default.nix b/pkgs/data/fonts/terminus-font/default.nix index ad5fd1999eda..b30bb307807e 100644 --- a/pkgs/data/fonts/terminus-font/default.nix +++ b/pkgs/data/fonts/terminus-font/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, perl, bdftopcf, mkfontdir, mkfontscale }: stdenv.mkDerivation rec { - name = "terminus-font-4.39"; + name = "terminus-font-4.40"; src = fetchurl { url = "mirror://sourceforge/project/terminus-font/${name}/${name}.tar.gz"; - sha256 = "1gzmn7zakvy6yrvmswyjfklnsvqrjm0imhq8rjws8rdkhqwkh21i"; + sha256 = "0487cyx5h1f0crbny5sg73a22gmym5vk1i7646gy7hgiscj2rxb4"; }; buildInputs = [ perl bdftopcf mkfontdir mkfontscale ]; diff --git a/pkgs/data/fonts/ubuntu-font-family/default.nix b/pkgs/data/fonts/ubuntu-font-family/default.nix index d64a8883d326..61e12848d97e 100644 --- a/pkgs/data/fonts/ubuntu-font-family/default.nix +++ b/pkgs/data/fonts/ubuntu-font-family/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, unzip }: stdenv.mkDerivation rec { - name = "ubuntu-font-family-0.80"; + name = "ubuntu-font-family-0.83"; buildInputs = [unzip]; src = fetchurl { url = "http://font.ubuntu.com/download/${name}.zip"; - sha256 = "0k4f548riq23gmw4zhn30qqkcpaj4g2ab5rbc3lflfxwkc4p0w8h"; + sha256 = "0hjvq2x758dx0sfwqhzflns0ns035qm7h6ygskbx1svzg517sva5"; }; installPhase = diff --git a/pkgs/data/icons/elementary-icon-theme/default.nix b/pkgs/data/icons/elementary-icon-theme/default.nix new file mode 100644 index 000000000000..19b2230eaa8d --- /dev/null +++ b/pkgs/data/icons/elementary-icon-theme/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchzip }: + +stdenv.mkDerivation rec { + version = "3.2.2"; + + package-name = "elementary-icon-theme"; + + name = "${package-name}-${version}"; + + src = fetchzip { + url = "https://launchpad.net/elementaryicons/3.x/${version}/+download/elementary-icon-theme-${version}.tar.xz"; + sha256 = "0b6sgvkzc5h9zm3la6f0ngs9pfjrsj318qcynxd3yydb50cd3hnf"; + }; + + dontBuild = true; + + installPhase = '' + install -dm 755 $out/share/icons + cp -dr --no-preserve='ownership' . $out/share/icons/Elementary/ + ''; + + meta = with stdenv.lib; { + description = "Elementary icon theme"; + homepage = "https://launchpad.net/elementaryicons"; + license = licenses.gpl3; + platforms = platforms.all; + maintainers = with maintainers; [ simonvandel ]; + }; +} diff --git a/pkgs/data/icons/numix-icon-theme-circle/default.nix b/pkgs/data/icons/numix-icon-theme-circle/default.nix index 2fad83d9ec3e..a1594047af6e 100644 --- a/pkgs/data/icons/numix-icon-theme-circle/default.nix +++ b/pkgs/data/icons/numix-icon-theme-circle/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchFromGitHub, unzip }: stdenv.mkDerivation rec { - version = "4727aa5"; + version = "129da4d8036c9ea52ba8b94cdfa0148e4c2cff96"; package-name = "numix-icon-theme-circle"; - name = "${package-name}-20151005"; + name = "${package-name}-20151014"; buildInputs = [ unzip ]; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { owner = "numixproject"; repo = package-name; rev = version; - sha256 = "0khps3il0wyjizzzv8rxznhywp3nqd1hj1zhdvyqzgql3gffylqc"; + sha256 = "1505j63qh96hy04x3ywc6kspavzgjd848cgdkda23kjdbx0fpij4"; }; dontBuild = true; diff --git a/pkgs/data/icons/numix-icon-theme/default.nix b/pkgs/data/icons/numix-icon-theme/default.nix index 6a04e38291a0..ee4e0af93697 100644 --- a/pkgs/data/icons/numix-icon-theme/default.nix +++ b/pkgs/data/icons/numix-icon-theme/default.nix @@ -1,17 +1,17 @@ { stdenv, fetchFromGitHub }: stdenv.mkDerivation rec { - version = "ae57260"; + version = "0f7641b048a07eb614662c502eb209dad5eb6d97"; package-name = "numix-icon-theme"; - name = "${package-name}-20150910"; + name = "${package-name}-20151023"; src = fetchFromGitHub { owner = "numixproject"; repo = package-name; rev = version; - sha256 = "147a8d9wkhrq4f4154gb0l16rj849lsccxl8npicr6zixvsjgqlq"; + sha256 = "16kbasgbb5mgiyl9b240215kivdnl8ynpkxhp5gairba9l4jpbih"; }; dontBuild = true; diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix index 391cbc01c876..3df88b201fc6 100644 --- a/pkgs/data/misc/geolite-legacy/default.nix +++ b/pkgs/data/misc/geolite-legacy/default.nix @@ -8,17 +8,17 @@ let # Annoyingly, these files are updated without a change in URL. This means that # builds will start failing every month or so, until the hashes are updated. - version = "2015-10-19"; + version = "2015-10-27"; in stdenv.mkDerivation { name = "geolite-legacy-${version}"; srcGeoIP = fetchDB "GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz" - "066j1mnpzfyd5cp0knvg13v01fdvgv32ggvab0xwyh1pa0c14dv4"; + "1w0dh8p0zjbrkzm156wy77im4v0yp9d44gygrc10majnyhzkjlff"; srcGeoIPv6 = fetchDB "GeoIPv6.dat.gz" "GeoIPv6.dat.gz" - "1q5vgk522wq5ybhbw86zk8njgg611kc46a22vkrp08vklbni3akz"; + "0bs3p76lwlfbawqn0wj2fnnd52bdmkc35rjkpb7wy6sz6x33p79r"; srcGeoLiteCity = fetchDB "GeoLiteCity.dat.xz" "GeoIPCity.dat.xz" "09w7vs13xzji574bykggh8cph992zc4yajvhjh4qrvwrxjmjilw3"; diff --git a/pkgs/desktops/kde-4.14/kde-runtime.nix b/pkgs/desktops/kde-4.14/kde-runtime.nix index ae4959662626..655555cd140a 100644 --- a/pkgs/desktops/kde-4.14/kde-runtime.nix +++ b/pkgs/desktops/kde-4.14/kde-runtime.nix @@ -1,6 +1,6 @@ { kde, kdelibs, bzip2, libssh, exiv2, attica, qca2, shared_mime_info , libcanberra, virtuoso, samba, libjpeg, ntrack, pkgconfig, xz, libpulseaudio -, networkmanager, kactivities, kdepimlibs, openexr, ilmbase, gpgme +, networkmanager, kactivities, kdepimlibs, openexr, ilmbase, gpgme, glib }: kde { @@ -16,7 +16,7 @@ kde { nativeBuildInputs = [ shared_mime_info ]; - NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR"; + NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR -I${glib}/include/glib-2.0 -I${glib}/lib/glib-2.0/include"; passthru.propagatedUserEnvPackages = [ virtuoso ]; diff --git a/pkgs/development/compilers/gcc/gfortran-darwin.nix b/pkgs/development/compilers/gcc/gfortran-darwin.nix index bd11b1ebc8e2..ee405c6fb655 100644 --- a/pkgs/development/compilers/gcc/gfortran-darwin.nix +++ b/pkgs/development/compilers/gcc/gfortran-darwin.nix @@ -1,20 +1,35 @@ -# This is a derivation specific to OS X (Darwin). It may work on other -# systems as well but has not been tested. -{gmp, mpfr, libmpc, fetchurl, stdenv}: +# This is a derivation specific to OS X (Darwin) +{gmp, mpfr, libmpc, isl_0_14, cloog, zlib, fetchurl, stdenv + +, Libsystem +}: stdenv.mkDerivation rec { name = "gfortran-${version}"; version = "5.1.0"; - buildInputs = [gmp mpfr libmpc]; + buildInputs = [gmp mpfr libmpc isl_0_14 cloog zlib]; src = fetchurl { url = "mirror://gnu/gcc/gcc-${version}/gcc-${version}.tar.bz2"; sha256 = "1bd5vj4px3s8nlakbgrh38ynxq4s654m6nxz7lrj03mvkkwgvnmp"; }; + patches = ./gfortran-darwin.patch; configureFlags = '' - --enable-languages=fortran --enable-checking=release --disable-bootstrap + --disable-bootstrap + --disable-cloog-version-check + --disable-isl-version-check + --disable-multilib + --enable-checking=release + --enable-languages=fortran + --with-cloog=${cloog} --with-gmp=${gmp} - --with-mpfr=${mpfr} + --with-isl=${isl_0_14} --with-mpc=${libmpc} + --with-mpfr=${mpfr} + --with-native-system-header-dir=${Libsystem}/include + --with-system-zlib + ''; + postConfigure = '' + export DYLD_LIBRARY_PATH=`pwd`/`uname -m`-apple-darwin`uname -r`/libgcc ''; makeFlags = ["CC=clang"]; passthru.cc = stdenv.cc.cc; diff --git a/pkgs/development/compilers/gcc/gfortran-darwin.patch b/pkgs/development/compilers/gcc/gfortran-darwin.patch new file mode 100644 index 000000000000..73c5d35153b0 --- /dev/null +++ b/pkgs/development/compilers/gcc/gfortran-darwin.patch @@ -0,0 +1,26 @@ +--- a/gcc/config/darwin-c.c 2015-01-09 22:18:42.000000000 +0200 ++++ b/gcc/config/darwin-c.c 2015-06-27 04:17:58.000000000 +0300 +@@ -490,8 +490,7 @@ + + static const char *framework_defaults [] = + { +- "/System/Library/Frameworks", +- "/Library/Frameworks", ++// stdenvDarwinPure + }; + + /* Register the GNU objective-C runtime include path if STDINC. */ + + /* Register the GNU objective-C runtime include path if STDINC. */ +--- a/gcc/cppdefault.c 2015-01-05 14:33:28.000000000 +0200 ++++ b/gcc/cppdefault.c 2015-06-27 04:16:15.000000000 +0300 +@@ -35,6 +35,9 @@ + # undef CROSS_INCLUDE_DIR + #endif + ++// stdenvDarwinPure ++# undef LOCAL_INCLUDE_DIR ++ + const struct default_include cpp_include_defaults[] + #ifdef INCLUDE_DEFAULTS + = INCLUDE_DEFAULTS; diff --git a/pkgs/development/compilers/mkcl/default.nix b/pkgs/development/compilers/mkcl/default.nix index 2a34a5dc50b1..6d17d5a8b25d 100644 --- a/pkgs/development/compilers/mkcl/default.nix +++ b/pkgs/development/compilers/mkcl/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, gmp }: +{ stdenv, fetchgit, makeWrapper, gmp, gcc }: stdenv.mkDerivation rec { v = "1.1.9"; @@ -10,6 +10,7 @@ stdenv.mkDerivation rec { sha256 = "0ja7vyp5rjidb2a1gah35jqzqn6zjkikz5sd966p0f0wh26l6n03"; }; + buildInputs = [ makeWrapper ]; propagatedBuildInputs = [ gmp ]; configureFlags = [ @@ -17,6 +18,10 @@ stdenv.mkDerivation rec { "GMP_LDFLAGS=-L${gmp}/lib" ]; + postInstall = '' + wrapProgram $out/bin/mkcl --prefix PATH : "${gcc}/bin" + ''; + meta = { description = "ANSI Common Lisp Implementation"; homepage = https://common-lisp.net/project/mkcl/; diff --git a/pkgs/development/compilers/openjdk/7.nix b/pkgs/development/compilers/openjdk/7.nix index 19dec917bf82..8acd7f69cbb8 100644 --- a/pkgs/development/compilers/openjdk/7.nix +++ b/pkgs/development/compilers/openjdk/7.nix @@ -17,9 +17,9 @@ let else throw "openjdk requires i686-linux or x86_64 linux"; - update = "80"; + update = "85"; - build = "32"; + build = "02"; # On x86 for heap sizes over 700MB disable SEGMEXEC and PAGEEXEC as well. paxflags = if stdenv.isi686 then "msp" else "m"; @@ -33,31 +33,31 @@ let repover = "jdk7u${update}-b${build}"; jdk7 = fetchurl { url = "${baseurl}/archive/${repover}.tar.gz"; - sha256 = "1r8xnn87nmqaq2f8i3cp3i9ngq66k0c0wgkdq5cf59lkgs8wkcdi"; + sha256 = "1fs0vphf0z2hi51hzlw3ix80b9byah1mzhy5csh9j5f200q3ykk5"; }; langtools = fetchurl { url = "${baseurl}/langtools/archive/${repover}.tar.gz"; - sha256 = "01alj6pfrjqyf4irll9wg34h4w9nmb3973lvbacs528qm1nxgh9r"; + sha256 = "0n2cp0az2fyhaf34fmhiy57mdyp78596z7426alrww0jrv5491az"; }; hotspot = fetchurl { url = "${baseurl}/hotspot/archive/${repover}.tar.gz"; - sha256 = "14zla8axmg5344zf45i4cj7yyli0kmdjsh9yalmzqaphpkqjqpf2"; + sha256 = "1l38wniq69vqlfk2rz8bmwly9wxrvlizf95x3wm2d0m5fsqsxhri"; }; corba = fetchurl { url = "${baseurl}/corba/archive/${repover}.tar.gz"; - sha256 = "19z3ay3f2q7r2ra03c6wy8b5rbdbrkq5g2dzhrqcg0n4iydd3c40"; + sha256 = "0wys2zs1wvfiggvmqfmmgfamdqm5jln1sflc18w7bfzn4i77yy5j"; }; jdk = fetchurl { url = "${baseurl}/jdk/archive/${repover}.tar.gz"; - sha256 = "1q0r2l9bz2cyx4fq79x6cb2f5xycw83hl5cn1d1mazgsckp590lb"; + sha256 = "094fdj3vlfgd6v8y0x03l6p5byvrskxcdw62xpp2bdp4z41ag79m"; }; jaxws = fetchurl { url = "${baseurl}/jaxws/archive/${repover}.tar.gz"; - sha256 = "1lp0mww2x3b6xavb7idrzckh6iw8jd6s1fvqgfvzs853z4ifksqj"; + sha256 = "0bh61mxxxj8pvg6yjs4w53an6zjyrg242b8j0w4mlsjldrrv1wy4"; }; jaxp = fetchurl { url = "${baseurl}/jaxp/archive/${repover}.tar.gz"; - sha256 = "0pd874dkgxkb7frxg4n9py61kkhhck4x33dcynynwb3vl6k6iy79"; + sha256 = "054qwx67z6ailrr5gx6zhp3090zc607bak7wlfpqbvvqr1dqqq5x"; }; openjdk = stdenv.mkDerivation rec { name = "openjdk-7u${update}b${build}"; @@ -100,7 +100,6 @@ let ./paxctl.patch ./read-truststore-from-env.patch ./currency-date-range.patch - ./linux-4.0.patch ]; NIX_NO_SELF_RPATH = true; diff --git a/pkgs/development/compilers/openjdk/8.nix b/pkgs/development/compilers/openjdk/8.nix index 0e9184e1c628..845aebdc2505 100644 --- a/pkgs/development/compilers/openjdk/8.nix +++ b/pkgs/development/compilers/openjdk/8.nix @@ -17,42 +17,42 @@ let else throw "openjdk requires i686-linux or x86_64 linux"; - update = "60"; - build = "24"; + update = "72"; + build = "04"; baseurl = "http://hg.openjdk.java.net/jdk8u/jdk8u"; repover = "jdk8u${update}-b${build}"; paxflags = if stdenv.isi686 then "msp" else "m"; jdk8 = fetchurl { url = "${baseurl}/archive/${repover}.tar.gz"; - sha256 = "1gxfyz5kdl3xgfmn6gr65hj66zh5p67y1g0hxdbps1h8gcc6iqwp"; + sha256 = "07akz911xr1x28apxpk4vf9d5d76q3kzayjzdmg5czpd25fq122f"; }; langtools = fetchurl { url = "${baseurl}/langtools/archive/${repover}.tar.gz"; - sha256 = "0a8kmfcnw92hvhivmpa9g22k1lvcr64zjw7x1gjj1j6zx7r579ck"; + sha256 = "0d6b213phkrl8mcfydiv1lp9xifwb36rpxlkpkjnamzk4dxsvwwc"; }; hotspot = fetchurl { url = "${baseurl}/hotspot/archive/${repover}.tar.gz"; - sha256 = "0k68wqwg5fz8i2za9dg2zfx4db5zcbls31vk2abrqrwp31ik0y4y"; + sha256 = "12hzkwy0rhpqkj9imh90x6qi6hdg19mib1vnpb76w27p3yfr7x3j"; }; corba = fetchurl { url = "${baseurl}/corba/archive/${repover}.tar.gz"; - sha256 = "0rc8m5jrwjzrbxnzbhxjm265z23ky6v11g8sgcb6flr0l636fwvn"; + sha256 = "1qxs34wl3pm99ryy9hvxhl8dyrsj5cj21ci9rf94x8agmbxrjlak"; }; jdk = fetchurl { url = "${baseurl}/jdk/archive/${repover}.tar.gz"; - sha256 = "11c90zz728p30zc6zas9ip67n9sd09i0v6afxs608k9s451057wr"; + sha256 = "0hcf9azgr7p2ry7n117ba5k4q4h15gjh8nx7n8p45h3rr0a0ixh5"; }; jaxws = fetchurl { url = "${baseurl}/jaxws/archive/${repover}.tar.gz"; - sha256 = "15pzczqwrr47qv51bsisjylilhljban8938n1436hsjd5k1dhhwn"; + sha256 = "0kymcfk3khaj7j0jpbgcbadkhm82mllm7l7nzrilg4kynf2jrxhr"; }; jaxp = fetchurl { url = "${baseurl}/jaxp/archive/${repover}.tar.gz"; - sha256 = "0gcc7pb07yl76drcynpz5gjjv3y6s1c0k4kfp9fayha5f624k1fb"; + sha256 = "1a51qdgam0pmbhaiwvj3p21nlv32q3jw62fjddbjpz0jfx72124p"; }; nashorn = fetchurl { url = "${baseurl}/nashorn/archive/${repover}.tar.gz"; - sha256 = "00g849wwqxljqpml6r7rv3pscj0ma0jaamyvxsxlfxbqvwid93ai"; + sha256 = "1spjlmm0plcg7s9fyrsyf3pljfm5855w3i3yqgp73lgnhn3ihfsd"; }; openjdk8 = stdenv.mkDerivation { name = "openjdk-8u${update}b${build}"; diff --git a/pkgs/development/compilers/ponyc/default.nix b/pkgs/development/compilers/ponyc/default.nix new file mode 100644 index 000000000000..c94ba203c0ff --- /dev/null +++ b/pkgs/development/compilers/ponyc/default.nix @@ -0,0 +1,47 @@ +{stdenv, glibc, fetchFromGitHub, llvm, makeWrapper, openssl, pcre2 }: + +stdenv.mkDerivation { + name = "ponyc-0.2.1"; + + src = fetchFromGitHub { + owner = "CausalityLtd"; + repo = "ponyc"; + rev = "0.2.1"; + sha256 = "1wmvqrj9v2kjqha9fcs10vfnhdxhc3rf67wpn36ldhs1hq0k25jy"; + }; + + buildInputs = [ llvm makeWrapper ]; + + makeFlags = [ "config=release" ]; + doCheck = true; + checkTarget = "test"; + + patchPhase = '' + sed 's|/usr/lib/x86_64-linux-gnu/|${glibc}/lib/|g' -i src/libponyc/codegen/genexe.c + sed 's|/lib/x86_64-linux-gnu/|${stdenv.cc.cc}/lib/|g' -i src/libponyc/codegen/genexe.c + ''; + + preBuild = '' + export LLVM_CONFIG=${llvm}/bin/llvm-config + ''; + + preCheck = '' + export LIBRARY_PATH="$out/lib:${openssl}/lib:${pcre2}/lib" + ''; + + installPhase = '' + make config=release prefix=$out install + mv $out/bin/ponyc $out/bin/ponyc.wrapped + makeWrapper $out/bin/ponyc.wrapped $out/bin/ponyc \ + --prefix LIBRARY_PATH : "$out/lib" \ + --prefix LIBRARY_PATH : "${openssl}/lib" \ + --prefix LIBRARY_PATH : "${pcre2}/lib" + ''; + + meta = { + description = "Pony is an Object-oriented, actor-model, capabilities-secure, high performance programming language"; + homepage = http://www.ponylang.org; + license = stdenv.lib.licenses.bsd2; + maintainers = [ stdenv.lib.maintainers.doublec ]; + }; +} diff --git a/pkgs/development/compilers/sbcl/1.2.0.nix b/pkgs/development/compilers/sbcl/1.2.0.nix index d19edce2c105..975cb7db1bbf 100644 --- a/pkgs/development/compilers/sbcl/1.2.0.nix +++ b/pkgs/development/compilers/sbcl/1.2.0.nix @@ -66,7 +66,7 @@ stdenv.mkDerivation rec { sh make.sh clisp --prefix=$out '' else '' - sh make.sh --prefix=$out --xc-host='${sbclBootstrap}/bin/sbcl --core ${sbclBootstrap}/share/sbcl/sbcl.core --disable-debugger --no-userinit --no-sysinit' + sh make.sh --prefix=$out --xc-host='${sbclBootstrap}/bin/sbcl --disable-debugger --no-userinit --no-sysinit' ''; installPhase = '' diff --git a/pkgs/development/compilers/sbcl/1.2.5.nix b/pkgs/development/compilers/sbcl/1.2.5.nix index 6c0fa874f3eb..68ed58b426f6 100644 --- a/pkgs/development/compilers/sbcl/1.2.5.nix +++ b/pkgs/development/compilers/sbcl/1.2.5.nix @@ -66,7 +66,7 @@ stdenv.mkDerivation rec { sh make.sh clisp --prefix=$out '' else '' - sh make.sh --prefix=$out --xc-host='${sbclBootstrap}/bin/sbcl --core ${sbclBootstrap}/share/sbcl/sbcl.core --disable-debugger --no-userinit --no-sysinit' + sh make.sh --prefix=$out --xc-host='${sbclBootstrap}/bin/sbcl --disable-debugger --no-userinit --no-sysinit' ''; installPhase = '' diff --git a/pkgs/development/compilers/sbcl/default.nix b/pkgs/development/compilers/sbcl/default.nix index a865b7e1d4be..e8aabbbcb8a4 100644 --- a/pkgs/development/compilers/sbcl/default.nix +++ b/pkgs/development/compilers/sbcl/default.nix @@ -65,7 +65,7 @@ stdenv.mkDerivation rec { ''; buildPhase = '' - sh make.sh --prefix=$out --xc-host="${sbclBootstrapHost}" + sh make.sh --prefix=$out --xc-host="${sbclBootstrapHost} --disable-debugger --no-userinit --no-sysinit" ''; installPhase = '' diff --git a/pkgs/development/compilers/uhc/default.nix b/pkgs/development/compilers/uhc/default.nix index b0bd70fab033..acfa0f5e3f9c 100644 --- a/pkgs/development/compilers/uhc/default.nix +++ b/pkgs/development/compilers/uhc/default.nix @@ -50,5 +50,7 @@ in stdenv.mkDerivation rec { # On Darwin, the GNU libtool is used, which does not # support the -static flag and thus breaks the build. platforms = ["x86_64-linux"]; + + broken = true; # http://hydra.cryp.to/build/1344015/log/raw }; } diff --git a/pkgs/development/compilers/urweb/default.nix b/pkgs/development/compilers/urweb/default.nix index dc862940edf2..3e4b0bcae5b9 100644 --- a/pkgs/development/compilers/urweb/default.nix +++ b/pkgs/development/compilers/urweb/default.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { name = "urweb-${version}"; - version = "20150819"; + version = "20151018"; src = fetchurl { url = "http://www.impredicative.com/ur/${name}.tgz"; - sha256 = "0gpdlq3aazx121k3ia94qfa4dyv04q7478x2p6hvcjamn18vk56n"; + sha256 = "08p52p5m1xl2gzdchnayky44mm2b0x8hv0f00iviyyv1gnx3lpy0"; }; buildInputs = [ openssl mlton mysql postgresql sqlite ]; diff --git a/pkgs/development/go-modules/tools/setup-hook.sh b/pkgs/development/go-modules/tools/setup-hook.sh new file mode 100644 index 000000000000..e354e50c35aa --- /dev/null +++ b/pkgs/development/go-modules/tools/setup-hook.sh @@ -0,0 +1 @@ +export GOTOOLDIR=@bin@/bin diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 38efe7ae1add..7d3407a28880 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -63,7 +63,7 @@ self: super: { # all required dependencies are part of Stackage. To comply with Stackage, we # make 'git-annex-without-assistant' our default version, but offer another # build which has the assistant to be used in the top-level. - git-annex_5_20150930 = (disableCabalFlag super.git-annex_5_20150930 "assistant").override { + git-annex_5_20151019 = (disableCabalFlag super.git-annex_5_20151019 "assistant").override { dbus = if pkgs.stdenv.isLinux then self.dbus else null; fdo-notify = if pkgs.stdenv.isLinux then self.fdo-notify else null; hinotify = if pkgs.stdenv.isLinux then self.hinotify else self.fsnotify; @@ -183,13 +183,17 @@ self: super: { # https://github.com/haskell/vector/issues/47 vector = if pkgs.stdenv.isi686 then appendConfigureFlag super.vector "--ghc-options=-msse2" else super.vector; + halive = if pkgs.stdenv.isDarwin + then addBuildDepend super.halive pkgs.darwin.apple_sdk.frameworks.AppKit + else super.halive; + # cabal2nix likes to generate dependencies on hinotify when hfsevents is really required # on darwin: https://github.com/NixOS/cabal2nix/issues/146. hinotify = if pkgs.stdenv.isDarwin then self.hfsevents else super.hinotify; # hfsevents needs CoreServices in scope hfsevents = if pkgs.stdenv.isDarwin - then addBuildTool super.hfsevents pkgs.darwin.apple_sdk.frameworks.CoreServices + then with pkgs.darwin.apple_sdk.frameworks; addBuildTool (addBuildDepends super.hfsevents [Cocoa]) CoreServices else super.hfsevents; # FSEvents API is very buggy and tests are unreliable. See @@ -213,12 +217,12 @@ self: super: { double-conversion = if !pkgs.stdenv.isDarwin then super.double-conversion - else overrideCabal super.double-conversion (drv: + else addBuildDepend (overrideCabal super.double-conversion (drv: { postPatch = '' substituteInPlace double-conversion.cabal --replace stdc++ c++ ''; - }); + })) pkgs.libcxx; # tests don't compile for some odd reason jwt = dontCheck super.jwt; diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 3fc7731ef053..47411be58562 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -1805,7 +1805,6 @@ dont-distribute-packages: HsHaruPDF: [ i686-linux, x86_64-linux, x86_64-darwin ] HSHHelpers: [ i686-linux, x86_64-linux, x86_64-darwin ] HsHyperEstraier: [ i686-linux, x86_64-linux, x86_64-darwin ] - hsignal: [ i686-linux, x86_64-linux, x86_64-darwin ] hSimpleDB: [ i686-linux, x86_64-linux, x86_64-darwin ] hs-java: [ i686-linux, x86_64-linux, x86_64-darwin ] hs-json-rpc: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -3763,3 +3762,76 @@ dont-distribute-packages: zsh-battery: [ i686-linux, x86_64-linux, x86_64-darwin ] ztail: [ i686-linux, x86_64-linux, x86_64-darwin ] Zwaluw: [ i686-linux, x86_64-linux, x86_64-darwin ] + ADPfusion: [ i686-linux, x86_64-linux, x86_64-darwin ] + AlignmentAlgorithms: [ i686-linux, x86_64-linux, x86_64-darwin ] + BiobaseTypes: [ i686-linux, x86_64-linux, x86_64-darwin ] + BiobaseXNA: [ i686-linux, x86_64-linux, x86_64-darwin ] + FormalGrammars: [ i686-linux, x86_64-linux, x86_64-darwin ] + GenussFold: [ i686-linux, x86_64-linux, x86_64-darwin ] + GeocoderOpenCage: [ i686-linux, x86_64-linux, x86_64-darwin ] + GrammarProducts: [ i686-linux, x86_64-linux, x86_64-darwin ] + HaskellLM: [ i686-linux, x86_64-linux, x86_64-darwin ] + LambdaNet: [ i686-linux, x86_64-linux, x86_64-darwin ] + OrderedBits: [ i686-linux, x86_64-linux, x86_64-darwin ] + PrimitiveArray: [ i686-linux, x86_64-linux, x86_64-darwin ] + QuadEdge: [ i686-linux, x86_64-linux, x86_64-darwin ] + Slides: [ i686-linux, x86_64-linux, x86_64-darwin ] + TBit: [ i686-linux, x86_64-linux, x86_64-darwin ] + atomic-primops-vector: [ i686-linux, x86_64-linux, x86_64-darwin ] + bitstream: [ i686-linux, x86_64-linux, x86_64-darwin ] + bitvec: [ i686-linux, x86_64-linux, x86_64-darwin ] + cacophony: [ i686-linux, x86_64-linux, x86_64-darwin ] + compensated: [ i686-linux, x86_64-linux, x86_64-darwin ] + conduit-audio-sndfile: [ i686-linux, x86_64-linux, x86_64-darwin ] + dph-prim-seq: [ i686-linux, x86_64-linux, x86_64-darwin ] + eventloop: [ i686-linux, x86_64-linux, x86_64-darwin ] + fastbayes: [ i686-linux, x86_64-linux, x86_64-darwin ] + flowdock-rest: [ i686-linux, x86_64-linux, x86_64-darwin ] + full-text-search: [ i686-linux, x86_64-linux, x86_64-darwin ] + gloss-banana: [ i686-linux, x86_64-linux, x86_64-darwin ] + haskell-mpi: [ i686-linux, x86_64-linux, x86_64-darwin ] + hfoil: [ i686-linux, x86_64-linux, x86_64-darwin ] + hmatrix-mmap: [ i686-linux, x86_64-linux, x86_64-darwin ] + hmatrix-nipals: [ i686-linux, x86_64-linux, x86_64-darwin ] + hmatrix-repa: [ i686-linux, x86_64-linux, x86_64-darwin ] + hmatrix-svdlibc: [ i686-linux, x86_64-linux, x86_64-darwin ] + hnetcdf: [ i686-linux, x86_64-linux, x86_64-darwin ] + hs-duktape: [ i686-linux, x86_64-linux, x86_64-darwin ] + hsc3-auditor: [ i686-linux, x86_64-linux, x86_64-darwin ] + hsc3-sf-hsndfile: [ i686-linux, x86_64-linux, x86_64-darwin ] + hsndfile-vector: [ i686-linux, x86_64-linux, x86_64-darwin ] + hsndfile: [ i686-linux, x86_64-linux, x86_64-darwin ] + hworker-ses: [ i686-linux, x86_64-linux, x86_64-darwin ] + hworker: [ i686-linux, x86_64-linux, x86_64-darwin ] + inline-r: [ i686-linux, x86_64-linux, x86_64-darwin ] + jacobi-roots: [ i686-linux, x86_64-linux, x86_64-darwin ] + lagrangian: [ i686-linux, x86_64-linux, x86_64-darwin ] + levmar: [ i686-linux, x86_64-linux, x86_64-darwin ] + libssh2: [ i686-linux, x86_64-linux, x86_64-darwin ] + linda: [ i686-linux, x86_64-linux, x86_64-darwin ] + linear-circuit: [ i686-linux, x86_64-linux, x86_64-darwin ] + magico: [ i686-linux, x86_64-linux, x86_64-darwin ] + manifold-random: [ i686-linux, x86_64-linux, x86_64-darwin ] + manifolds: [ i686-linux, x86_64-linux, x86_64-darwin ] + netlink: [ i686-linux, x86_64-linux, x86_64-darwin ] + oidc-client: [ i686-linux, x86_64-linux, x86_64-darwin ] + parser241: [ i686-linux, x86_64-linux, x86_64-darwin ] + phone-numbers: [ i686-linux, x86_64-linux, x86_64-darwin ] + ply-loader: [ i686-linux, x86_64-linux, x86_64-darwin ] + polysoup: [ i686-linux, x86_64-linux, x86_64-darwin ] + prologue: [ i686-linux, x86_64-linux, x86_64-darwin ] + qt: [ i686-linux, x86_64-linux, x86_64-darwin ] + repa-sndfile: [ i686-linux, x86_64-linux, x86_64-darwin ] + repa-stream: [ i686-linux, x86_64-linux, x86_64-darwin ] + resistor-cube: [ i686-linux, x86_64-linux, x86_64-darwin ] + sde-solver: [ i686-linux, x86_64-linux, x86_64-darwin ] + sdr: [ i686-linux, x86_64-linux, x86_64-darwin ] + singleton-nats: [ i686-linux, x86_64-linux, x86_64-darwin ] + spsa: [ i686-linux, x86_64-linux, x86_64-darwin ] + subhask: [ i686-linux, x86_64-linux, x86_64-darwin ] + tip-haskell-frontend: [ i686-linux, x86_64-linux, x86_64-darwin ] + tip-lib: [ i686-linux, x86_64-linux, x86_64-darwin ] + transient: [ i686-linux, x86_64-linux, x86_64-darwin ] + twentefp-eventloop-trees: [ i686-linux, x86_64-linux, x86_64-darwin ] + tz: [ i686-linux, x86_64-linux, x86_64-darwin ] + yesod-content-pdf: [ i686-linux, x86_64-linux, x86_64-darwin ] diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 168b68affb41..bd4da904237f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_2"; @@ -373,6 +374,7 @@ self: super: { "GenericPretty" = dontDistribute super."GenericPretty"; "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"; @@ -632,6 +634,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -656,6 +659,7 @@ self: super: { "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"; @@ -815,6 +819,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -890,6 +895,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -938,6 +944,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -998,6 +1005,7 @@ self: super: { "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"; @@ -1143,6 +1151,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1154,6 +1163,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1212,6 +1222,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1248,6 +1259,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1345,6 +1357,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1567,6 +1580,7 @@ self: super: { "binary-communicator" = dontDistribute super."binary-communicator"; "binary-conduit" = dontDistribute super."binary-conduit"; "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"; @@ -1859,6 +1873,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2142,10 +2157,12 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_8"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2219,6 +2236,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2232,6 +2250,7 @@ self: super: { "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"; @@ -2427,8 +2446,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2739,6 +2760,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3100,6 +3122,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3313,6 +3337,7 @@ self: super: { "ghc-syb-utils" = doDistribute super."ghc-syb-utils_0_2_2"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3414,6 +3439,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3737,6 +3851,7 @@ self: super: { "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"; @@ -3752,6 +3867,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -4039,6 +4155,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_23_3"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4454,6 +4571,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4981,6 +5100,7 @@ self: super: { "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5254,6 +5374,7 @@ self: super: { "mandrill" = dontDistribute super."mandrill"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -5455,6 +5576,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3"; "monadiccp" = dontDistribute super."monadiccp"; @@ -5817,6 +5939,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5848,6 +5971,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5909,6 +6033,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_4"; @@ -5934,6 +6059,7 @@ self: super: { "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"; @@ -5944,6 +6070,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -6049,6 +6176,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6290,6 +6419,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6472,6 +6602,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6619,6 +6750,7 @@ self: super: { "resource-embed" = dontDistribute super."resource-embed"; "resource-pool" = doDistribute super."resource-pool_0_2_3_1"; "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_3_1"; "respond" = dontDistribute super."respond"; @@ -6724,6 +6856,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6732,6 +6865,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_3"; @@ -6853,6 +6987,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6937,6 +7072,7 @@ self: super: { "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"; @@ -7354,7 +7490,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7368,6 +7506,7 @@ self: super: { "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"; @@ -7474,6 +7613,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7521,6 +7661,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7836,6 +7977,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7859,8 +8001,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -8080,6 +8224,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_0"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8116,6 +8262,7 @@ self: super: { "wai-app-static" = doDistribute super."wai-app-static_3_0_0_3"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_2_2"; @@ -8165,6 +8312,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 7c4a66ea63bd..fc125bbd3ebe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_2"; @@ -373,6 +374,7 @@ self: super: { "GenericPretty" = dontDistribute super."GenericPretty"; "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"; @@ -632,6 +634,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -656,6 +659,7 @@ self: super: { "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"; @@ -815,6 +819,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -890,6 +895,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -938,6 +944,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -998,6 +1005,7 @@ self: super: { "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"; @@ -1143,6 +1151,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1154,6 +1163,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1212,6 +1222,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1248,6 +1259,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1345,6 +1357,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1567,6 +1580,7 @@ self: super: { "binary-communicator" = dontDistribute super."binary-communicator"; "binary-conduit" = dontDistribute super."binary-conduit"; "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"; @@ -1859,6 +1873,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2141,10 +2156,12 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2218,6 +2235,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2231,6 +2249,7 @@ self: super: { "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"; @@ -2426,8 +2445,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2738,6 +2759,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3099,6 +3121,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3312,6 +3336,7 @@ self: super: { "ghc-syb-utils" = doDistribute super."ghc-syb-utils_0_2_2"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3413,6 +3438,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3736,6 +3850,7 @@ self: super: { "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"; @@ -3751,6 +3866,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -4038,6 +4154,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_23_3"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4453,6 +4570,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4980,6 +5099,7 @@ self: super: { "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5253,6 +5373,7 @@ self: super: { "mandrill" = dontDistribute super."mandrill"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -5454,6 +5575,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3"; "monadiccp" = dontDistribute super."monadiccp"; @@ -5816,6 +5938,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5847,6 +5970,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5908,6 +6032,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_4"; @@ -5933,6 +6058,7 @@ self: super: { "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"; @@ -5943,6 +6069,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -6048,6 +6175,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6289,6 +6418,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6471,6 +6601,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6618,6 +6749,7 @@ self: super: { "resource-embed" = dontDistribute super."resource-embed"; "resource-pool" = doDistribute super."resource-pool_0_2_3_1"; "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_3_1"; "respond" = dontDistribute super."respond"; @@ -6723,6 +6855,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6731,6 +6864,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_3"; @@ -6852,6 +6986,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6936,6 +7071,7 @@ self: super: { "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"; @@ -7353,7 +7489,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7367,6 +7505,7 @@ self: super: { "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"; @@ -7473,6 +7612,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7520,6 +7660,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7835,6 +7976,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7858,8 +8000,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -8079,6 +8223,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_0"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8115,6 +8261,7 @@ self: super: { "wai-app-static" = doDistribute super."wai-app-static_3_0_0_3"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_2_2"; @@ -8164,6 +8311,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 9d55147000e4..ae160678cc88 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_2"; @@ -373,6 +374,7 @@ self: super: { "GenericPretty" = dontDistribute super."GenericPretty"; "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"; @@ -632,6 +634,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -656,6 +659,7 @@ self: super: { "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"; @@ -815,6 +819,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -890,6 +895,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -938,6 +944,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -998,6 +1005,7 @@ self: super: { "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"; @@ -1143,6 +1151,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1154,6 +1163,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1212,6 +1222,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1248,6 +1259,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1345,6 +1357,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1567,6 +1580,7 @@ self: super: { "binary-communicator" = dontDistribute super."binary-communicator"; "binary-conduit" = dontDistribute super."binary-conduit"; "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"; @@ -1859,6 +1873,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2141,10 +2156,12 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2218,6 +2235,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2231,6 +2249,7 @@ self: super: { "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"; @@ -2426,8 +2445,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2738,6 +2759,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3099,6 +3121,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3312,6 +3336,7 @@ self: super: { "ghc-syb-utils" = doDistribute super."ghc-syb-utils_0_2_2"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3413,6 +3438,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3736,6 +3850,7 @@ self: super: { "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"; @@ -3751,6 +3866,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -4038,6 +4154,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_23_3"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4453,6 +4570,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4980,6 +5099,7 @@ self: super: { "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5253,6 +5373,7 @@ self: super: { "mandrill" = dontDistribute super."mandrill"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -5454,6 +5575,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3"; "monadiccp" = dontDistribute super."monadiccp"; @@ -5816,6 +5938,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5847,6 +5970,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5908,6 +6032,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_4"; @@ -5933,6 +6058,7 @@ self: super: { "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"; @@ -5943,6 +6069,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -6048,6 +6175,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6289,6 +6418,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6471,6 +6601,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6618,6 +6749,7 @@ self: super: { "resource-embed" = dontDistribute super."resource-embed"; "resource-pool" = doDistribute super."resource-pool_0_2_3_1"; "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_3_1"; "respond" = dontDistribute super."respond"; @@ -6723,6 +6855,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6731,6 +6864,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_3"; @@ -6852,6 +6986,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6936,6 +7071,7 @@ self: super: { "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"; @@ -7353,7 +7489,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7367,6 +7505,7 @@ self: super: { "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"; @@ -7473,6 +7612,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7520,6 +7660,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7835,6 +7976,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7858,8 +8000,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -8079,6 +8223,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_0"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8115,6 +8261,7 @@ self: super: { "wai-app-static" = doDistribute super."wai-app-static_3_0_0_3"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_3"; @@ -8164,6 +8311,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 4216561cca18..f14e02ca957e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_2"; @@ -373,6 +374,7 @@ self: super: { "GenericPretty" = dontDistribute super."GenericPretty"; "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"; @@ -632,6 +634,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -656,6 +659,7 @@ self: super: { "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"; @@ -815,6 +819,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -890,6 +895,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -938,6 +944,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -998,6 +1005,7 @@ self: super: { "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"; @@ -1143,6 +1151,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1154,6 +1163,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1212,6 +1222,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1248,6 +1259,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1345,6 +1357,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1567,6 +1580,7 @@ self: super: { "binary-communicator" = dontDistribute super."binary-communicator"; "binary-conduit" = dontDistribute super."binary-conduit"; "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"; @@ -1859,6 +1873,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2141,10 +2156,12 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2218,6 +2235,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2231,6 +2249,7 @@ self: super: { "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"; @@ -2426,8 +2445,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2738,6 +2759,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3099,6 +3121,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3312,6 +3336,7 @@ self: super: { "ghc-syb-utils" = doDistribute super."ghc-syb-utils_0_2_2"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3413,6 +3438,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3736,6 +3850,7 @@ self: super: { "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"; @@ -3751,6 +3866,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -4038,6 +4154,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_23_3"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4453,6 +4570,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4980,6 +5099,7 @@ self: super: { "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5253,6 +5373,7 @@ self: super: { "mandrill" = dontDistribute super."mandrill"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -5454,6 +5575,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3"; "monadiccp" = dontDistribute super."monadiccp"; @@ -5816,6 +5938,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5847,6 +5970,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5908,6 +6032,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_4"; @@ -5933,6 +6058,7 @@ self: super: { "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"; @@ -5943,6 +6069,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -6048,6 +6175,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6289,6 +6418,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6471,6 +6601,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6618,6 +6749,7 @@ self: super: { "resource-embed" = dontDistribute super."resource-embed"; "resource-pool" = doDistribute super."resource-pool_0_2_3_1"; "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_3_1"; "respond" = dontDistribute super."respond"; @@ -6723,6 +6855,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6731,6 +6864,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_3"; @@ -6852,6 +6986,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6936,6 +7071,7 @@ self: super: { "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"; @@ -7353,7 +7489,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7367,6 +7505,7 @@ self: super: { "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"; @@ -7473,6 +7612,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7520,6 +7660,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7835,6 +7976,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7858,8 +8000,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -8079,6 +8223,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_0"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8115,6 +8261,7 @@ self: super: { "wai-app-static" = doDistribute super."wai-app-static_3_0_0_3"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_3"; @@ -8164,6 +8311,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index dceb79d4edda..82849d88bee9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_2"; @@ -373,6 +374,7 @@ self: super: { "GenericPretty" = dontDistribute super."GenericPretty"; "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"; @@ -632,6 +634,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -656,6 +659,7 @@ self: super: { "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"; @@ -815,6 +819,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -890,6 +895,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -938,6 +944,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -998,6 +1005,7 @@ self: super: { "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"; @@ -1143,6 +1151,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1154,6 +1163,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1212,6 +1222,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1248,6 +1259,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1345,6 +1357,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1567,6 +1580,7 @@ self: super: { "binary-communicator" = dontDistribute super."binary-communicator"; "binary-conduit" = dontDistribute super."binary-conduit"; "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"; @@ -1859,6 +1873,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2141,10 +2156,12 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2218,6 +2235,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2231,6 +2249,7 @@ self: super: { "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"; @@ -2426,8 +2445,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2737,6 +2758,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3098,6 +3120,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3311,6 +3335,7 @@ self: super: { "ghc-syb-utils" = doDistribute super."ghc-syb-utils_0_2_2"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3412,6 +3437,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3733,6 +3847,7 @@ self: super: { "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"; @@ -3748,6 +3863,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -4035,6 +4151,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_23_3"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4450,6 +4567,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4977,6 +5096,7 @@ self: super: { "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5250,6 +5370,7 @@ self: super: { "mandrill" = dontDistribute super."mandrill"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -5451,6 +5572,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3"; "monadiccp" = dontDistribute super."monadiccp"; @@ -5813,6 +5935,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5844,6 +5967,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5905,6 +6029,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_4"; @@ -5930,6 +6055,7 @@ self: super: { "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"; @@ -5940,6 +6066,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -6045,6 +6172,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6286,6 +6415,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6468,6 +6598,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6614,6 +6745,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_3_3"; "respond" = dontDistribute super."respond"; @@ -6719,6 +6851,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6727,6 +6860,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_3"; @@ -6848,6 +6982,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6932,6 +7067,7 @@ self: super: { "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"; @@ -7348,7 +7484,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7362,6 +7500,7 @@ self: super: { "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"; @@ -7468,6 +7607,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7515,6 +7655,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7830,6 +7971,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7853,8 +7995,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -8074,6 +8218,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_0"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8110,6 +8256,7 @@ self: super: { "wai-app-static" = doDistribute super."wai-app-static_3_0_0_4"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_3"; @@ -8159,6 +8306,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 18bbaa883555..565e76d132a1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_2"; @@ -373,6 +374,7 @@ self: super: { "GenericPretty" = dontDistribute super."GenericPretty"; "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"; @@ -632,6 +634,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -656,6 +659,7 @@ self: super: { "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"; @@ -815,6 +819,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -890,6 +895,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -938,6 +944,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -998,6 +1005,7 @@ self: super: { "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"; @@ -1143,6 +1151,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1154,6 +1163,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1212,6 +1222,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1248,6 +1259,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1345,6 +1357,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1567,6 +1580,7 @@ self: super: { "binary-communicator" = dontDistribute super."binary-communicator"; "binary-conduit" = dontDistribute super."binary-conduit"; "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"; @@ -1859,6 +1873,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2141,10 +2156,12 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2218,6 +2235,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2231,6 +2249,7 @@ self: super: { "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"; @@ -2426,8 +2445,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2737,6 +2758,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3098,6 +3120,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3311,6 +3335,7 @@ self: super: { "ghc-syb-utils" = doDistribute super."ghc-syb-utils_0_2_2"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3412,6 +3437,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3733,6 +3847,7 @@ self: super: { "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"; @@ -3748,6 +3863,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -4035,6 +4151,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_23_3"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4450,6 +4567,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4977,6 +5096,7 @@ self: super: { "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5250,6 +5370,7 @@ self: super: { "mandrill" = dontDistribute super."mandrill"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -5451,6 +5572,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3"; "monadiccp" = dontDistribute super."monadiccp"; @@ -5813,6 +5935,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5844,6 +5967,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5905,6 +6029,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_4"; @@ -5930,6 +6055,7 @@ self: super: { "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"; @@ -5940,6 +6066,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -6045,6 +6172,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6286,6 +6415,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6468,6 +6598,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6614,6 +6745,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_3_3"; "respond" = dontDistribute super."respond"; @@ -6719,6 +6851,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6727,6 +6860,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_3"; @@ -6848,6 +6982,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6932,6 +7067,7 @@ self: super: { "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"; @@ -7348,7 +7484,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7362,6 +7500,7 @@ self: super: { "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"; @@ -7468,6 +7607,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7515,6 +7655,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7830,6 +7971,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7853,8 +7995,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -8073,6 +8217,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_0"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8109,6 +8255,7 @@ self: super: { "wai-app-static" = doDistribute super."wai-app-static_3_0_0_4"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_3"; @@ -8158,6 +8305,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 4f6e916ed231..edb06cde7096 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_2"; @@ -373,6 +374,7 @@ self: super: { "GenericPretty" = dontDistribute super."GenericPretty"; "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"; @@ -632,6 +634,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -656,6 +659,7 @@ self: super: { "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"; @@ -814,6 +818,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -889,6 +894,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -937,6 +943,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -997,6 +1004,7 @@ self: super: { "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"; @@ -1142,6 +1150,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1153,6 +1162,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1211,6 +1221,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1247,6 +1258,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1344,6 +1356,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1564,6 +1577,7 @@ self: super: { "binary-communicator" = dontDistribute super."binary-communicator"; "binary-conduit" = dontDistribute super."binary-conduit"; "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"; @@ -1856,6 +1870,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2138,10 +2153,12 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2215,6 +2232,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2228,6 +2246,7 @@ self: super: { "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"; @@ -2423,8 +2442,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2734,6 +2755,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3095,6 +3117,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3308,6 +3332,7 @@ self: super: { "ghc-syb-utils" = doDistribute super."ghc-syb-utils_0_2_2"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3409,6 +3434,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3730,6 +3844,7 @@ self: super: { "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"; @@ -3745,6 +3860,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -4031,6 +4147,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_23_3"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4446,6 +4563,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4973,6 +5092,7 @@ self: super: { "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5246,6 +5366,7 @@ self: super: { "mandrill" = dontDistribute super."mandrill"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -5447,6 +5568,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3"; "monadiccp" = dontDistribute super."monadiccp"; @@ -5808,6 +5930,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5839,6 +5962,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5900,6 +6024,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_5"; @@ -5925,6 +6050,7 @@ self: super: { "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"; @@ -5935,6 +6061,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -6040,6 +6167,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6281,6 +6410,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6463,6 +6593,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6608,6 +6739,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_3_3"; "respond" = dontDistribute super."respond"; @@ -6713,6 +6845,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6721,6 +6854,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_3"; @@ -6842,6 +6976,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6926,6 +7061,7 @@ self: super: { "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"; @@ -7342,7 +7478,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7356,6 +7494,7 @@ self: super: { "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"; @@ -7462,6 +7601,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7509,6 +7649,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7824,6 +7965,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7847,8 +7989,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -8067,6 +8211,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_0"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8102,6 +8248,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_5"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_3_1"; @@ -8151,6 +8298,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 11462a249780..4a18599e7891 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_2"; @@ -373,6 +374,7 @@ self: super: { "GenericPretty" = dontDistribute super."GenericPretty"; "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"; @@ -632,6 +634,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -656,6 +659,7 @@ self: super: { "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"; @@ -814,6 +818,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -889,6 +894,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -937,6 +943,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -997,6 +1004,7 @@ self: super: { "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"; @@ -1142,6 +1150,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1153,6 +1162,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1211,6 +1221,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1247,6 +1258,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1344,6 +1356,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1564,6 +1577,7 @@ self: super: { "binary-communicator" = dontDistribute super."binary-communicator"; "binary-conduit" = dontDistribute super."binary-conduit"; "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"; @@ -1856,6 +1870,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2138,10 +2153,12 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2215,6 +2232,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2228,6 +2246,7 @@ self: super: { "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"; @@ -2423,8 +2442,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2734,6 +2755,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3095,6 +3117,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3308,6 +3332,7 @@ self: super: { "ghc-syb-utils" = doDistribute super."ghc-syb-utils_0_2_2"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3409,6 +3434,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3730,6 +3844,7 @@ self: super: { "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"; @@ -3745,6 +3860,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -4031,6 +4147,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_23_3"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4446,6 +4563,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4973,6 +5092,7 @@ self: super: { "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5246,6 +5366,7 @@ self: super: { "mandrill" = dontDistribute super."mandrill"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -5447,6 +5568,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3"; "monadiccp" = dontDistribute super."monadiccp"; @@ -5808,6 +5930,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5839,6 +5962,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5900,6 +6024,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_5"; @@ -5925,6 +6050,7 @@ self: super: { "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"; @@ -5935,6 +6061,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -6040,6 +6167,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6281,6 +6410,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6463,6 +6593,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6608,6 +6739,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_3_3"; "respond" = dontDistribute super."respond"; @@ -6713,6 +6845,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6721,6 +6854,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_3"; @@ -6842,6 +6976,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6926,6 +7061,7 @@ self: super: { "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"; @@ -7342,7 +7478,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7356,6 +7494,7 @@ self: super: { "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"; @@ -7462,6 +7601,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7509,6 +7649,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7824,6 +7965,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7847,8 +7989,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -8067,6 +8211,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_0"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8102,6 +8248,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_5"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_3_1"; @@ -8151,6 +8298,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 3d3f8a986a55..6b23e833a95d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_2"; @@ -371,6 +372,7 @@ self: super: { "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"; @@ -629,6 +631,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -653,6 +656,7 @@ self: super: { "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"; @@ -810,6 +814,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -886,6 +891,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -933,6 +939,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -993,6 +1000,7 @@ self: super: { "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"; @@ -1138,6 +1146,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1149,6 +1158,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1207,6 +1217,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1243,6 +1254,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1340,6 +1352,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1559,6 +1572,7 @@ self: super: { "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"; @@ -1849,6 +1863,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2130,10 +2145,12 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2207,6 +2224,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2220,6 +2238,7 @@ self: super: { "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"; @@ -2414,8 +2433,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2725,6 +2746,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3085,6 +3107,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3298,6 +3322,7 @@ self: super: { "ghc-syb-utils" = doDistribute super."ghc-syb-utils_0_2_2"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3398,6 +3423,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3720,6 +3834,7 @@ self: super: { "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"; @@ -3735,6 +3850,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -4020,6 +4136,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4434,6 +4551,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4961,6 +5080,7 @@ self: super: { "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5234,6 +5354,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_1_1_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13"; @@ -5435,6 +5556,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3"; "monadiccp" = dontDistribute super."monadiccp"; @@ -5796,6 +5918,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5827,6 +5950,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5888,6 +6012,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_5"; @@ -5912,6 +6037,7 @@ self: super: { "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"; @@ -5922,6 +6048,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -6027,6 +6154,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6268,6 +6397,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6449,6 +6579,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6593,6 +6724,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_3_3"; "respond" = dontDistribute super."respond"; @@ -6698,6 +6830,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6706,6 +6839,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_3"; @@ -6827,6 +6961,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6911,6 +7046,7 @@ self: super: { "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"; @@ -7326,7 +7462,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7340,6 +7478,7 @@ self: super: { "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"; @@ -7446,6 +7585,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7493,6 +7633,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7808,6 +7949,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7831,8 +7973,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -8050,6 +8194,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_0"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8085,6 +8231,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_5"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_3_2"; @@ -8134,6 +8281,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 58b390203f10..aa584a8b7bb2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_2"; @@ -371,6 +372,7 @@ self: super: { "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"; @@ -629,6 +631,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -653,6 +656,7 @@ self: super: { "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"; @@ -810,6 +814,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -886,6 +891,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -933,6 +939,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -993,6 +1000,7 @@ self: super: { "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"; @@ -1138,6 +1146,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1149,6 +1158,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1206,6 +1216,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1242,6 +1253,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1339,6 +1351,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1558,6 +1571,7 @@ self: super: { "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"; @@ -1847,6 +1861,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2127,10 +2142,12 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2203,6 +2220,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2216,6 +2234,7 @@ self: super: { "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"; @@ -2409,8 +2428,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2719,6 +2740,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3079,6 +3101,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3292,6 +3316,7 @@ self: super: { "ghc-syb-utils" = doDistribute super."ghc-syb-utils_0_2_2"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3392,6 +3417,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3712,6 +3826,7 @@ self: super: { "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"; @@ -3727,6 +3842,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -4010,6 +4126,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4423,6 +4540,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4949,6 +5068,7 @@ self: super: { "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5222,6 +5342,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_1_1_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5422,6 +5543,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3"; "monadiccp" = dontDistribute super."monadiccp"; @@ -5783,6 +5905,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5814,6 +5937,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5875,6 +5999,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_5"; @@ -5899,6 +6024,7 @@ self: super: { "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"; @@ -5909,6 +6035,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -6014,6 +6141,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6255,6 +6384,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6436,6 +6566,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6580,6 +6711,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_3_3"; "respond" = dontDistribute super."respond"; @@ -6685,6 +6817,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6693,6 +6826,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_3"; @@ -6814,6 +6948,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6897,6 +7032,7 @@ self: super: { "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"; @@ -7311,7 +7447,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7325,6 +7463,7 @@ self: super: { "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"; @@ -7431,6 +7570,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7478,6 +7618,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7790,6 +7931,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7813,8 +7955,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -8031,6 +8175,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_0"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8066,6 +8212,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_5"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_4_1"; @@ -8115,6 +8262,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 884e249219bc..729e39ebfd34 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -371,6 +372,7 @@ self: super: { "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"; @@ -628,6 +630,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -652,6 +655,7 @@ self: super: { "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"; @@ -809,6 +813,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -885,6 +890,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -932,6 +938,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -992,6 +999,7 @@ self: super: { "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"; @@ -1137,6 +1145,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1148,6 +1157,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1205,6 +1215,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1241,6 +1252,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1338,6 +1350,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1557,6 +1570,7 @@ self: super: { "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"; @@ -1844,6 +1858,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2122,10 +2137,12 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2198,6 +2215,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2211,6 +2229,7 @@ self: super: { "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"; @@ -2403,8 +2422,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2713,6 +2734,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3070,6 +3092,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3281,6 +3305,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3381,6 +3406,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3700,6 +3814,7 @@ self: super: { "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"; @@ -3715,6 +3830,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3997,6 +4113,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4408,6 +4525,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4927,6 +5046,7 @@ self: super: { "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5199,6 +5319,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_1_1_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5399,6 +5520,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3"; "monadiccp" = dontDistribute super."monadiccp"; @@ -5758,6 +5880,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5789,6 +5912,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5848,6 +5972,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_5"; @@ -5872,6 +5997,7 @@ self: super: { "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"; @@ -5882,6 +6008,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5987,6 +6114,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6226,6 +6355,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6406,6 +6536,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6550,6 +6681,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_4_1"; "respond" = dontDistribute super."respond"; @@ -6655,6 +6787,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6663,6 +6796,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_4"; @@ -6784,6 +6918,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6866,6 +7001,7 @@ self: super: { "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"; @@ -7279,7 +7415,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7293,6 +7431,7 @@ self: super: { "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"; @@ -7398,6 +7537,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7444,6 +7584,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7752,6 +7893,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7775,8 +7917,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7992,6 +8136,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8027,6 +8173,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_4_5"; @@ -8076,6 +8223,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index e04808a0d6d6..d0f2ad1cc0d7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -371,6 +372,7 @@ self: super: { "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"; @@ -628,6 +630,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -652,6 +655,7 @@ self: super: { "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"; @@ -809,6 +813,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -885,6 +890,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -932,6 +938,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -992,6 +999,7 @@ self: super: { "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"; @@ -1137,6 +1145,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1148,6 +1157,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1205,6 +1215,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1241,6 +1252,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1338,6 +1350,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1557,6 +1570,7 @@ self: super: { "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"; @@ -1844,6 +1858,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2122,10 +2137,12 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2198,6 +2215,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2211,6 +2229,7 @@ self: super: { "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"; @@ -2403,8 +2422,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2713,6 +2734,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3069,6 +3091,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3280,6 +3304,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3380,6 +3405,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3699,6 +3813,7 @@ self: super: { "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"; @@ -3714,6 +3829,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3996,6 +4112,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4407,6 +4524,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4923,6 +5042,7 @@ self: super: { "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5195,6 +5315,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_1_1_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5395,6 +5516,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3"; "monadiccp" = dontDistribute super."monadiccp"; @@ -5754,6 +5876,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5785,6 +5908,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5844,6 +5968,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_5"; @@ -5868,6 +5993,7 @@ self: super: { "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"; @@ -5878,6 +6004,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5983,6 +6110,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6222,6 +6351,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6402,6 +6532,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6546,6 +6677,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_4_1"; "respond" = dontDistribute super."respond"; @@ -6651,6 +6783,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6659,6 +6792,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_4"; @@ -6779,6 +6913,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6861,6 +6996,7 @@ self: super: { "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"; @@ -7274,7 +7410,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7288,6 +7426,7 @@ self: super: { "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"; @@ -7393,6 +7532,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7439,6 +7579,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7747,6 +7888,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7770,8 +7912,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7987,6 +8131,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8022,6 +8168,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_4_5"; @@ -8071,6 +8218,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 43e68e1cb117..3de8227f7fcf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -371,6 +372,7 @@ self: super: { "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"; @@ -628,6 +630,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -652,6 +655,7 @@ self: super: { "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"; @@ -809,6 +813,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -885,6 +890,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -932,6 +938,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -992,6 +999,7 @@ self: super: { "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"; @@ -1137,6 +1145,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1148,6 +1157,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1205,6 +1215,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1241,6 +1252,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1338,6 +1350,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1557,6 +1570,7 @@ self: super: { "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"; @@ -1844,6 +1858,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2122,10 +2137,12 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2198,6 +2215,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2211,6 +2229,7 @@ self: super: { "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"; @@ -2403,8 +2422,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2713,6 +2734,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3069,6 +3091,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3280,6 +3304,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3380,6 +3405,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3699,6 +3813,7 @@ self: super: { "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"; @@ -3714,6 +3829,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3995,6 +4111,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4406,6 +4523,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4922,6 +5041,7 @@ self: super: { "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5194,6 +5314,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_1_1_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5394,6 +5515,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3"; "monadiccp" = dontDistribute super."monadiccp"; @@ -5753,6 +5875,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5784,6 +5907,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5843,6 +5967,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_5"; @@ -5867,6 +5992,7 @@ self: super: { "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"; @@ -5877,6 +6003,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5982,6 +6109,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6221,6 +6350,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6401,6 +6531,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6545,6 +6676,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_4_1"; "respond" = dontDistribute super."respond"; @@ -6650,6 +6782,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6658,6 +6791,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_4"; @@ -6778,6 +6912,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6860,6 +6995,7 @@ self: super: { "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"; @@ -7272,7 +7408,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7286,6 +7424,7 @@ self: super: { "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"; @@ -7391,6 +7530,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7437,6 +7577,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7744,6 +7885,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7767,8 +7909,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7984,6 +8128,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8019,6 +8165,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_4_5"; @@ -8068,6 +8215,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8353,6 +8501,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 96da709234e7..c53362b5b2ab 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -371,6 +372,7 @@ self: super: { "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"; @@ -628,6 +630,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -652,6 +655,7 @@ self: super: { "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"; @@ -809,6 +813,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -885,6 +890,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -932,6 +938,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -992,6 +999,7 @@ self: super: { "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"; @@ -1137,6 +1145,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1148,6 +1157,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1205,6 +1215,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1241,6 +1252,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1338,6 +1350,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1557,6 +1570,7 @@ self: super: { "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"; @@ -1844,6 +1858,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2122,10 +2137,12 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2198,6 +2215,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2211,6 +2229,7 @@ self: super: { "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"; @@ -2403,8 +2422,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2712,6 +2733,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3068,6 +3090,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3279,6 +3303,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3379,6 +3404,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3697,6 +3811,7 @@ self: super: { "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"; @@ -3712,6 +3827,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3993,6 +4109,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4404,6 +4521,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4920,6 +5039,7 @@ self: super: { "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5192,6 +5312,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_1_1_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5392,6 +5513,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3"; "monadiccp" = dontDistribute super."monadiccp"; @@ -5751,6 +5873,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5782,6 +5905,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5841,6 +5965,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_5"; @@ -5865,6 +5990,7 @@ self: super: { "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"; @@ -5875,6 +6001,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5980,6 +6107,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6219,6 +6348,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6399,6 +6529,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6543,6 +6674,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_4_1"; "respond" = dontDistribute super."respond"; @@ -6648,6 +6780,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6656,6 +6789,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_4"; @@ -6776,6 +6910,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6858,6 +6993,7 @@ self: super: { "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"; @@ -7270,7 +7406,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7284,6 +7422,7 @@ self: super: { "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"; @@ -7389,6 +7528,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7434,6 +7574,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7741,6 +7882,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7764,8 +7906,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7981,6 +8125,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8016,6 +8162,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_4_5"; @@ -8065,6 +8212,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8350,6 +8498,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 1f7c7229ded5..c739f825fb55 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -370,6 +371,7 @@ self: super: { "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"; @@ -627,6 +629,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -651,6 +654,7 @@ self: super: { "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"; @@ -808,6 +812,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -884,6 +889,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -931,6 +937,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -991,6 +998,7 @@ self: super: { "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"; @@ -1136,6 +1144,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1147,6 +1156,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1204,6 +1214,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1240,6 +1251,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1337,6 +1349,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1555,6 +1568,7 @@ self: super: { "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"; @@ -1842,6 +1856,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2120,10 +2135,12 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2196,6 +2213,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2209,6 +2227,7 @@ self: super: { "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"; @@ -2400,8 +2419,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2709,6 +2730,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3065,6 +3087,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3276,6 +3300,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3376,6 +3401,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3694,6 +3808,7 @@ self: super: { "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"; @@ -3709,6 +3824,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3989,6 +4105,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4400,6 +4517,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4915,6 +5034,7 @@ self: super: { "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5187,6 +5307,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_1_1_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5386,6 +5507,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5744,6 +5866,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5775,6 +5898,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5834,6 +5958,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_5"; @@ -5858,6 +5983,7 @@ self: super: { "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"; @@ -5868,6 +5994,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5973,6 +6100,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6212,6 +6341,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6391,6 +6521,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6535,6 +6666,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_4_1"; "respond" = dontDistribute super."respond"; @@ -6640,6 +6772,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6648,6 +6781,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_4"; @@ -6768,6 +6902,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6850,6 +6985,7 @@ self: super: { "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"; @@ -7262,7 +7398,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7276,6 +7414,7 @@ self: super: { "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"; @@ -7381,6 +7520,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7426,6 +7566,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7733,6 +7874,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7756,8 +7898,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7973,6 +8117,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8008,6 +8154,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_4_6"; @@ -8057,6 +8204,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8342,6 +8490,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 86d7f12eb94a..76b3767ffdf0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -370,6 +371,7 @@ self: super: { "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"; @@ -627,6 +629,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -651,6 +654,7 @@ self: super: { "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"; @@ -808,6 +812,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -883,6 +888,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -930,6 +936,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -990,6 +997,7 @@ self: super: { "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"; @@ -1135,6 +1143,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1146,6 +1155,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1203,6 +1213,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1239,6 +1250,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1336,6 +1348,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1554,6 +1567,7 @@ self: super: { "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"; @@ -1841,6 +1855,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2118,9 +2133,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2193,6 +2210,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2206,6 +2224,7 @@ self: super: { "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"; @@ -2396,8 +2415,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2705,6 +2726,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3060,6 +3082,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3218,6 +3242,7 @@ self: super: { "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = dontDistribute super."generic-xmlpickler"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3270,6 +3295,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3370,6 +3396,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3688,6 +3803,7 @@ self: super: { "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"; @@ -3703,6 +3819,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3983,6 +4100,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4394,6 +4512,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4909,6 +5029,7 @@ self: super: { "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5181,6 +5302,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_1_1_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5380,6 +5502,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5736,6 +5859,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5767,6 +5891,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5826,6 +5951,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_5"; @@ -5850,6 +5976,7 @@ self: super: { "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"; @@ -5860,6 +5987,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5965,6 +6093,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6204,6 +6334,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6381,6 +6512,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6525,6 +6657,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_4_1"; "respond" = dontDistribute super."respond"; @@ -6630,6 +6763,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6638,6 +6772,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_4"; @@ -6758,6 +6893,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6840,6 +6976,7 @@ self: super: { "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"; @@ -7250,7 +7387,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7264,6 +7403,7 @@ self: super: { "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"; @@ -7369,6 +7509,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7414,6 +7555,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7721,6 +7863,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7744,8 +7887,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7937,6 +8082,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_3"; "vector-binary" = dontDistribute super."vector-binary"; "vector-buffer" = dontDistribute super."vector-buffer"; @@ -7960,6 +8106,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7995,6 +8143,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_5"; @@ -8044,6 +8193,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8328,6 +8478,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 8755a2b37581..73d8cf4c8fd4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_2"; @@ -371,6 +372,7 @@ self: super: { "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"; @@ -629,6 +631,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -653,6 +656,7 @@ self: super: { "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"; @@ -810,6 +814,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -886,6 +891,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -933,6 +939,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -993,6 +1000,7 @@ self: super: { "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"; @@ -1138,6 +1146,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1149,6 +1158,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1206,6 +1216,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1242,6 +1253,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1339,6 +1351,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1558,6 +1571,7 @@ self: super: { "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"; @@ -1847,6 +1861,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2126,10 +2141,12 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2202,6 +2219,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2215,6 +2233,7 @@ self: super: { "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"; @@ -2407,8 +2426,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2717,6 +2738,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3077,6 +3099,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3289,6 +3313,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3389,6 +3414,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3709,6 +3823,7 @@ self: super: { "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"; @@ -3724,6 +3839,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -4007,6 +4123,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4420,6 +4537,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4946,6 +5065,7 @@ self: super: { "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5219,6 +5339,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_1_1_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5419,6 +5540,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3"; "monadiccp" = dontDistribute super."monadiccp"; @@ -5780,6 +5902,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5811,6 +5934,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5871,6 +5995,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_5"; @@ -5895,6 +6020,7 @@ self: super: { "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"; @@ -5905,6 +6031,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -6010,6 +6137,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6251,6 +6380,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6431,6 +6561,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6575,6 +6706,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_3_3"; "respond" = dontDistribute super."respond"; @@ -6680,6 +6812,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6688,6 +6821,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_3"; @@ -6809,6 +6943,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6891,6 +7026,7 @@ self: super: { "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"; @@ -7305,7 +7441,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7319,6 +7457,7 @@ self: super: { "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"; @@ -7425,6 +7564,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7472,6 +7612,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7784,6 +7925,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7807,8 +7949,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -8025,6 +8169,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8060,6 +8206,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_4_1"; @@ -8109,6 +8256,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 03e967ba7802..207541f7ab8a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -371,6 +372,7 @@ self: super: { "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"; @@ -628,6 +630,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -652,6 +655,7 @@ self: super: { "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"; @@ -809,6 +813,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -885,6 +890,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -932,6 +938,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -992,6 +999,7 @@ self: super: { "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"; @@ -1137,6 +1145,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1148,6 +1157,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1205,6 +1215,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1241,6 +1252,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1338,6 +1350,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1557,6 +1570,7 @@ self: super: { "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"; @@ -1846,6 +1860,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2125,10 +2140,12 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2201,6 +2218,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2214,6 +2232,7 @@ self: super: { "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"; @@ -2406,8 +2425,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2716,6 +2737,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3075,6 +3097,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3287,6 +3311,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3387,6 +3412,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3707,6 +3821,7 @@ self: super: { "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"; @@ -3722,6 +3837,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -4004,6 +4120,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4417,6 +4534,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4943,6 +5062,7 @@ self: super: { "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5216,6 +5336,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_1_1_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5416,6 +5537,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3"; "monadiccp" = dontDistribute super."monadiccp"; @@ -5776,6 +5898,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5807,6 +5930,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5867,6 +5991,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_5"; @@ -5891,6 +6016,7 @@ self: super: { "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"; @@ -5901,6 +6027,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -6006,6 +6133,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6246,6 +6375,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6426,6 +6556,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6570,6 +6701,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_3_3"; "respond" = dontDistribute super."respond"; @@ -6675,6 +6807,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6683,6 +6816,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_3"; @@ -6804,6 +6938,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6886,6 +7021,7 @@ self: super: { "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"; @@ -7300,7 +7436,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7314,6 +7452,7 @@ self: super: { "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"; @@ -7420,6 +7559,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7466,6 +7606,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7778,6 +7919,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7801,8 +7943,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -8019,6 +8163,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8054,6 +8200,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_4_1"; @@ -8103,6 +8250,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index b95a544f6b0c..15ae194a8eb4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -371,6 +372,7 @@ self: super: { "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"; @@ -628,6 +630,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -652,6 +655,7 @@ self: super: { "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"; @@ -809,6 +813,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -885,6 +890,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -932,6 +938,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -992,6 +999,7 @@ self: super: { "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"; @@ -1137,6 +1145,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1148,6 +1157,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1205,6 +1215,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1241,6 +1252,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1338,6 +1350,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1557,6 +1570,7 @@ self: super: { "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"; @@ -1845,6 +1859,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2124,10 +2139,12 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2200,6 +2217,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2213,6 +2231,7 @@ self: super: { "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"; @@ -2405,8 +2424,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2715,6 +2736,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3074,6 +3096,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3286,6 +3310,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3386,6 +3411,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3706,6 +3820,7 @@ self: super: { "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"; @@ -3721,6 +3836,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -4003,6 +4119,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4416,6 +4533,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4941,6 +5060,7 @@ self: super: { "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5214,6 +5334,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_1_1_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5414,6 +5535,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3"; "monadiccp" = dontDistribute super."monadiccp"; @@ -5774,6 +5896,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5805,6 +5928,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5865,6 +5989,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_5"; @@ -5889,6 +6014,7 @@ self: super: { "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"; @@ -5899,6 +6025,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -6004,6 +6131,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6244,6 +6373,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6424,6 +6554,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6568,6 +6699,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_3_3"; "respond" = dontDistribute super."respond"; @@ -6673,6 +6805,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6681,6 +6814,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_3"; @@ -6802,6 +6936,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6884,6 +7019,7 @@ self: super: { "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"; @@ -7298,7 +7434,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7312,6 +7450,7 @@ self: super: { "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"; @@ -7418,6 +7557,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7464,6 +7604,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7775,6 +7916,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7798,8 +7940,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -8015,6 +8159,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8050,6 +8196,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_4_1"; @@ -8099,6 +8246,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index f00d1f629b9c..d2958805f39b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -371,6 +372,7 @@ self: super: { "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"; @@ -628,6 +630,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -652,6 +655,7 @@ self: super: { "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"; @@ -809,6 +813,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -885,6 +890,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -932,6 +938,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -992,6 +999,7 @@ self: super: { "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"; @@ -1137,6 +1145,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1148,6 +1157,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1205,6 +1215,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1241,6 +1252,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1338,6 +1350,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1557,6 +1570,7 @@ self: super: { "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"; @@ -1845,6 +1859,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2124,10 +2139,12 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2200,6 +2217,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2213,6 +2231,7 @@ self: super: { "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"; @@ -2405,8 +2424,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2715,6 +2736,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3074,6 +3096,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3286,6 +3310,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3386,6 +3411,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3706,6 +3820,7 @@ self: super: { "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"; @@ -3721,6 +3836,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -4003,6 +4119,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4416,6 +4533,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4935,6 +5054,7 @@ self: super: { "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5208,6 +5328,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_1_1_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5408,6 +5529,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3"; "monadiccp" = dontDistribute super."monadiccp"; @@ -5768,6 +5890,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5799,6 +5922,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5859,6 +5983,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_5"; @@ -5883,6 +6008,7 @@ self: super: { "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"; @@ -5893,6 +6019,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5998,6 +6125,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6238,6 +6367,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6418,6 +6548,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6562,6 +6693,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_3_3"; "respond" = dontDistribute super."respond"; @@ -6667,6 +6799,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6675,6 +6808,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_3"; @@ -6796,6 +6930,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6878,6 +7013,7 @@ self: super: { "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"; @@ -7292,7 +7428,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7306,6 +7444,7 @@ self: super: { "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"; @@ -7412,6 +7551,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7458,6 +7598,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7769,6 +7910,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7792,8 +7934,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -8009,6 +8153,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8044,6 +8190,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_4_1"; @@ -8093,6 +8240,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 931695a1957f..83a02ceb1598 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -371,6 +372,7 @@ self: super: { "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"; @@ -628,6 +630,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -652,6 +655,7 @@ self: super: { "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"; @@ -809,6 +813,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -885,6 +890,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -932,6 +938,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -992,6 +999,7 @@ self: super: { "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"; @@ -1137,6 +1145,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1148,6 +1157,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1205,6 +1215,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1241,6 +1252,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1338,6 +1350,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1557,6 +1570,7 @@ self: super: { "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"; @@ -1845,6 +1859,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2124,10 +2139,12 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2200,6 +2217,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2213,6 +2231,7 @@ self: super: { "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"; @@ -2405,8 +2424,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2715,6 +2736,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3072,6 +3094,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3284,6 +3308,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3384,6 +3409,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3703,6 +3817,7 @@ self: super: { "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"; @@ -3718,6 +3833,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -4000,6 +4116,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4412,6 +4529,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4931,6 +5050,7 @@ self: super: { "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5203,6 +5323,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_1_1_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5403,6 +5524,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3"; "monadiccp" = dontDistribute super."monadiccp"; @@ -5763,6 +5885,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5794,6 +5917,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5854,6 +5978,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_5"; @@ -5878,6 +6003,7 @@ self: super: { "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"; @@ -5888,6 +6014,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5993,6 +6120,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6233,6 +6362,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6413,6 +6543,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6557,6 +6688,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_3_3"; "respond" = dontDistribute super."respond"; @@ -6662,6 +6794,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6670,6 +6803,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_3"; @@ -6791,6 +6925,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6873,6 +7008,7 @@ self: super: { "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"; @@ -7287,7 +7423,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7301,6 +7439,7 @@ self: super: { "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"; @@ -7407,6 +7546,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7453,6 +7593,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7763,6 +7904,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7786,8 +7928,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -8003,6 +8147,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8038,6 +8184,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_4_1"; @@ -8087,6 +8234,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 9bdc456652c4..dd1ac4a8a746 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -169,6 +169,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -371,6 +372,7 @@ self: super: { "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"; @@ -628,6 +630,7 @@ self: super: { "List" = dontDistribute super."List"; "ListLike" = dontDistribute super."ListLike"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -652,6 +655,7 @@ self: super: { "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"; @@ -809,6 +813,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = dontDistribute super."RSA"; "Raincat" = dontDistribute super."Raincat"; @@ -885,6 +890,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -932,6 +938,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -992,6 +999,7 @@ self: super: { "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"; @@ -1137,6 +1145,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1148,6 +1157,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_2_2_1"; "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"; @@ -1205,6 +1215,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; "amazonka-cloudfront" = dontDistribute super."amazonka-cloudfront"; @@ -1241,6 +1252,7 @@ self: super: { "amazonka-importexport" = dontDistribute super."amazonka-importexport"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = dontDistribute super."amazonka-kinesis"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = dontDistribute super."amazonka-kms"; @@ -1338,6 +1350,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1557,6 +1570,7 @@ self: super: { "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"; @@ -1845,6 +1859,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2124,10 +2139,12 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; "concurrent-supply" = doDistribute super."concurrent-supply_0_1_7"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; "concurrentoutput" = dontDistribute super."concurrentoutput"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2200,6 +2217,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2213,6 +2231,7 @@ self: super: { "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"; @@ -2405,8 +2424,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2715,6 +2736,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3072,6 +3094,8 @@ self: super: { "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; "fmlist" = dontDistribute super."fmlist"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "focus" = doDistribute super."focus_0_1_3"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; @@ -3283,6 +3307,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3383,6 +3408,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3702,6 +3816,7 @@ self: super: { "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"; @@ -3717,6 +3832,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3999,6 +4115,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = dontDistribute super."hledger-web"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4410,6 +4527,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4929,6 +5048,7 @@ self: super: { "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; "lens-family-th" = doDistribute super."lens-family-th_0_4_0_0"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5201,6 +5321,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_1_1_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5401,6 +5522,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadic-arrays" = doDistribute super."monadic-arrays_0_2_1_3"; "monadiccp" = dontDistribute super."monadiccp"; @@ -5761,6 +5883,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5792,6 +5915,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5851,6 +5975,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_1"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_5"; @@ -5875,6 +6000,7 @@ self: super: { "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"; @@ -5885,6 +6011,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5990,6 +6117,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6230,6 +6359,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6410,6 +6540,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6554,6 +6685,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_4_1"; "respond" = dontDistribute super."respond"; @@ -6659,6 +6791,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6667,6 +6800,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_4"; @@ -6788,6 +6922,7 @@ self: super: { "semiring" = dontDistribute super."semiring"; "semiring-simple" = dontDistribute super."semiring-simple"; "semver" = dontDistribute super."semver"; + "semver-range" = dontDistribute super."semver-range"; "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6870,6 +7005,7 @@ self: super: { "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"; @@ -7284,7 +7420,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7298,6 +7436,7 @@ self: super: { "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"; @@ -7404,6 +7543,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7450,6 +7590,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7760,6 +7901,7 @@ self: super: { "type-eq" = doDistribute super."type-eq_0_4_2"; "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"; @@ -7783,8 +7925,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -8000,6 +8144,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -8035,6 +8181,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_4_1"; @@ -8084,6 +8231,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 40e4f440bf81..00fda01d3a1f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -368,6 +369,7 @@ self: super: { "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"; @@ -621,6 +623,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -645,6 +648,7 @@ self: super: { "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"; @@ -800,6 +804,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -875,6 +880,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -921,6 +927,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -981,6 +988,7 @@ self: super: { "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"; @@ -1126,6 +1134,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1137,6 +1146,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_3"; "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"; @@ -1194,6 +1204,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_3_1"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_3"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_3"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_3"; @@ -1230,6 +1241,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_3"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_3"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_3"; @@ -1326,6 +1338,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1542,6 +1555,7 @@ self: super: { "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"; @@ -1826,6 +1840,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2102,9 +2117,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2176,6 +2193,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2189,6 +2207,7 @@ self: super: { "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"; @@ -2377,8 +2396,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2686,6 +2707,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3038,6 +3060,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_9"; @@ -3195,6 +3219,7 @@ self: super: { "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3247,6 +3272,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3346,6 +3372,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3660,6 +3775,7 @@ self: super: { "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"; @@ -3675,6 +3791,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3954,6 +4071,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4362,6 +4480,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4864,6 +4984,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5133,6 +5254,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_1_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5326,6 +5448,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5676,6 +5799,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5707,6 +5831,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5766,6 +5891,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_5"; @@ -5789,6 +5915,7 @@ self: super: { "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"; @@ -5799,6 +5926,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5817,6 +5945,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5903,6 +6032,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6044,6 +6175,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -6139,6 +6271,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6316,6 +6449,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6460,6 +6594,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_4_1"; "respond" = dontDistribute super."respond"; @@ -6564,6 +6699,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6572,6 +6708,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_4"; @@ -6691,6 +6828,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6773,6 +6911,7 @@ self: super: { "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"; @@ -7178,7 +7317,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7192,6 +7333,7 @@ self: super: { "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"; @@ -7295,6 +7437,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7340,6 +7483,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7646,6 +7790,7 @@ self: super: { "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"; @@ -7669,8 +7814,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7862,6 +8009,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7884,6 +8032,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7919,6 +8069,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_0_6"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_5"; @@ -7967,6 +8118,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8247,6 +8399,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index f562b38259f8..7da5c483609e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -368,6 +369,7 @@ self: super: { "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"; @@ -621,6 +623,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -645,6 +648,7 @@ self: super: { "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"; @@ -800,6 +804,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -875,6 +880,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -921,6 +927,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -981,6 +988,7 @@ self: super: { "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"; @@ -1126,6 +1134,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1137,6 +1146,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_3"; "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"; @@ -1194,6 +1204,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_3_1"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_3"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_3"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_3"; @@ -1230,6 +1241,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_3"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_3"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_3"; @@ -1326,6 +1338,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1542,6 +1555,7 @@ self: super: { "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"; @@ -1825,6 +1839,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2101,9 +2116,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2175,6 +2192,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2188,6 +2206,7 @@ self: super: { "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"; @@ -2376,8 +2395,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2685,6 +2706,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3037,6 +3059,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_9"; @@ -3194,6 +3218,7 @@ self: super: { "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3246,6 +3271,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3345,6 +3371,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3659,6 +3774,7 @@ self: super: { "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"; @@ -3674,6 +3790,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3952,6 +4069,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4360,6 +4478,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4862,6 +4982,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5131,6 +5252,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_1_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5324,6 +5446,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5674,6 +5797,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5705,6 +5829,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5764,6 +5889,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "pango" = doDistribute super."pango_0_13_0_5"; @@ -5787,6 +5913,7 @@ self: super: { "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"; @@ -5797,6 +5924,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5815,6 +5943,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5901,6 +6030,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6042,6 +6173,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -6137,6 +6269,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6314,6 +6447,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6458,6 +6592,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_4_1"; "respond" = dontDistribute super."respond"; @@ -6562,6 +6697,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6570,6 +6706,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_4"; @@ -6689,6 +6826,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6771,6 +6909,7 @@ self: super: { "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"; @@ -7176,7 +7315,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7190,6 +7331,7 @@ self: super: { "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"; @@ -7293,6 +7435,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7338,6 +7481,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7644,6 +7788,7 @@ self: super: { "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"; @@ -7667,8 +7812,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7860,6 +8007,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7881,6 +8029,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7916,6 +8066,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_6_1"; @@ -7964,6 +8115,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8244,6 +8396,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 7d76520dfd28..2dabb3ce88f3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -367,6 +368,7 @@ self: super: { "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"; @@ -620,6 +622,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -644,6 +647,7 @@ self: super: { "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"; @@ -798,6 +802,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -872,6 +877,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -918,6 +924,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -978,6 +985,7 @@ self: super: { "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"; @@ -1121,6 +1129,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1132,6 +1141,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_3_0_1"; "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"; @@ -1189,6 +1199,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_4"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; @@ -1225,6 +1236,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_4"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; @@ -1321,6 +1333,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1534,6 +1547,7 @@ self: super: { "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"; @@ -1814,6 +1828,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1916,6 +1931,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2087,9 +2103,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2161,6 +2179,7 @@ self: super: { "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"; @@ -2173,6 +2192,7 @@ self: super: { "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"; @@ -2360,8 +2380,10 @@ self: super: { "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-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"; @@ -2668,6 +2690,7 @@ self: super: { "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"; @@ -3016,6 +3039,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_10"; @@ -3173,6 +3198,7 @@ self: super: { "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3225,6 +3251,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3322,6 +3349,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3634,6 +3750,7 @@ self: super: { "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"; @@ -3649,6 +3766,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3926,6 +4044,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4330,6 +4449,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4827,6 +4948,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5090,6 +5212,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_2_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5281,6 +5404,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5630,6 +5754,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5661,6 +5786,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5719,6 +5845,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5741,6 +5868,7 @@ self: super: { "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"; @@ -5751,6 +5879,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5769,6 +5898,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5826,6 +5956,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_5_3"; @@ -5853,6 +5984,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5992,6 +6125,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -6086,6 +6220,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6262,6 +6397,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6405,6 +6541,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_5"; "respond" = dontDistribute super."respond"; @@ -6508,6 +6645,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6515,8 +6653,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6633,6 +6773,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6715,6 +6856,7 @@ self: super: { "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"; @@ -7112,7 +7254,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7126,6 +7270,7 @@ self: super: { "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"; @@ -7227,6 +7372,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7272,6 +7418,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7576,6 +7723,7 @@ self: super: { "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"; @@ -7599,8 +7747,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7792,6 +7942,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7813,6 +7964,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7848,6 +8001,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_7_1"; @@ -7896,6 +8050,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8173,6 +8328,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index f94c4d8d81e1..06501352c5ab 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -367,6 +368,7 @@ self: super: { "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"; @@ -620,6 +622,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -644,6 +647,7 @@ self: super: { "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"; @@ -798,6 +802,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -872,6 +877,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -918,6 +924,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -978,6 +985,7 @@ self: super: { "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"; @@ -1121,6 +1129,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1131,6 +1140,7 @@ self: super: { "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"; @@ -1188,6 +1198,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_4"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; @@ -1224,6 +1235,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_4"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; @@ -1320,6 +1332,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1533,6 +1546,7 @@ self: super: { "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"; @@ -1813,6 +1827,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1915,6 +1930,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2086,9 +2102,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2160,6 +2178,7 @@ self: super: { "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"; @@ -2172,6 +2191,7 @@ self: super: { "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"; @@ -2359,8 +2379,10 @@ self: super: { "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-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"; @@ -2667,6 +2689,7 @@ self: super: { "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"; @@ -3015,6 +3038,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_10"; @@ -3172,6 +3197,7 @@ self: super: { "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3223,6 +3249,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3320,6 +3347,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3632,6 +3748,7 @@ self: super: { "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"; @@ -3647,6 +3764,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3923,12 +4041,14 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibsass" = dontDistribute super."hlibsass"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4325,6 +4445,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4821,6 +4943,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5084,6 +5207,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_2_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5274,6 +5398,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5623,6 +5748,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5654,6 +5780,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5711,6 +5838,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_3"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5733,6 +5861,7 @@ self: super: { "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"; @@ -5743,6 +5872,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5761,6 +5891,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5818,6 +5949,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_6"; @@ -5845,6 +5977,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5984,6 +6118,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -6078,6 +6213,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6254,6 +6390,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6397,6 +6534,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_5"; "respond" = dontDistribute super."respond"; @@ -6499,6 +6637,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6506,8 +6645,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6624,6 +6765,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6706,6 +6848,7 @@ self: super: { "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"; @@ -7102,7 +7245,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7116,6 +7261,7 @@ self: super: { "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"; @@ -7216,6 +7362,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7261,6 +7408,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7564,6 +7712,7 @@ self: super: { "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"; @@ -7587,8 +7736,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7780,6 +7931,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7801,6 +7953,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7836,6 +7990,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_7_1"; @@ -7884,6 +8039,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8161,6 +8317,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index a0d7d45d98ed..1a9f26da4810 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -367,6 +368,7 @@ self: super: { "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"; @@ -620,6 +622,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -644,6 +647,7 @@ self: super: { "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"; @@ -798,6 +802,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -872,6 +877,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -918,6 +924,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -978,6 +985,7 @@ self: super: { "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"; @@ -1121,6 +1129,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1131,6 +1140,7 @@ self: super: { "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"; @@ -1188,6 +1198,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_4"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; @@ -1224,6 +1235,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_4"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; @@ -1320,6 +1332,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1533,6 +1546,7 @@ self: super: { "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"; @@ -1813,6 +1827,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1915,6 +1930,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2086,9 +2102,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2160,6 +2178,7 @@ self: super: { "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"; @@ -2172,6 +2191,7 @@ self: super: { "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"; @@ -2359,8 +2379,10 @@ self: super: { "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-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"; @@ -2667,6 +2689,7 @@ self: super: { "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"; @@ -3015,6 +3038,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_10"; @@ -3172,6 +3197,7 @@ self: super: { "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3223,6 +3249,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3320,6 +3347,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3632,6 +3748,7 @@ self: super: { "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"; @@ -3647,6 +3764,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3923,12 +4041,14 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibsass" = dontDistribute super."hlibsass"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4325,6 +4445,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4821,6 +4943,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5084,6 +5207,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_2_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5274,6 +5398,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5623,6 +5748,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5654,6 +5780,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5711,6 +5838,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_3"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5733,6 +5861,7 @@ self: super: { "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"; @@ -5743,6 +5872,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5761,6 +5891,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5818,6 +5949,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_6"; @@ -5845,6 +5977,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5984,6 +6118,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -6078,6 +6213,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6254,6 +6390,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6397,6 +6534,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_5"; "respond" = dontDistribute super."respond"; @@ -6499,6 +6637,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6506,8 +6645,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6623,6 +6764,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6705,6 +6847,7 @@ self: super: { "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"; @@ -7101,7 +7244,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7115,6 +7260,7 @@ self: super: { "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"; @@ -7215,6 +7361,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7260,6 +7407,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7563,6 +7711,7 @@ self: super: { "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"; @@ -7586,8 +7735,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7779,6 +7930,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7800,6 +7952,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7835,6 +7989,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_7_1"; @@ -7883,6 +8038,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8160,6 +8316,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index a397f18e51c2..3c0c0934c986 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -367,6 +368,7 @@ self: super: { "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"; @@ -620,6 +622,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -644,6 +647,7 @@ self: super: { "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"; @@ -798,6 +802,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -872,6 +877,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -918,6 +924,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -978,6 +985,7 @@ self: super: { "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"; @@ -1121,6 +1129,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1131,6 +1140,7 @@ self: super: { "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"; @@ -1188,6 +1198,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1224,6 +1235,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1320,6 +1332,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1533,6 +1546,7 @@ self: super: { "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"; @@ -1813,6 +1827,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1915,6 +1930,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2086,9 +2102,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2160,6 +2178,7 @@ self: super: { "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"; @@ -2172,6 +2191,7 @@ self: super: { "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"; @@ -2359,8 +2379,10 @@ self: super: { "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-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"; @@ -2667,6 +2689,7 @@ self: super: { "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"; @@ -3015,6 +3038,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_11"; @@ -3172,6 +3197,7 @@ self: super: { "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3223,6 +3249,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3320,6 +3347,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3631,6 +3747,7 @@ self: super: { "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"; @@ -3646,6 +3763,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3922,12 +4040,14 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibsass" = dontDistribute super."hlibsass"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4324,6 +4444,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4819,6 +4941,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5082,6 +5205,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_2_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5272,6 +5396,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5620,6 +5745,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5651,6 +5777,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5708,6 +5835,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_4"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5730,6 +5858,7 @@ self: super: { "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"; @@ -5740,6 +5869,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5758,6 +5888,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5815,6 +5946,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_6"; @@ -5842,6 +5974,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5981,6 +6115,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -6075,6 +6210,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6251,6 +6387,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6394,6 +6531,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_5"; "respond" = dontDistribute super."respond"; @@ -6496,6 +6634,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6503,8 +6642,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6620,6 +6761,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6702,6 +6844,7 @@ self: super: { "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"; @@ -6785,6 +6928,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7097,7 +7241,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7111,6 +7257,7 @@ self: super: { "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"; @@ -7211,6 +7358,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7256,6 +7404,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7559,6 +7708,7 @@ self: super: { "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"; @@ -7582,8 +7732,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7775,6 +7927,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7796,6 +7949,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7831,6 +7986,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_7_1"; @@ -7879,6 +8035,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8156,6 +8313,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 0ac25cfd46d9..96dc55251493 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -367,6 +368,7 @@ self: super: { "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"; @@ -620,6 +622,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -644,6 +647,7 @@ self: super: { "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"; @@ -798,6 +802,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -872,6 +877,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -918,6 +924,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -978,6 +985,7 @@ self: super: { "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"; @@ -1121,6 +1129,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1131,6 +1140,7 @@ self: super: { "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"; @@ -1187,6 +1197,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1223,6 +1234,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1319,6 +1331,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1532,6 +1545,7 @@ self: super: { "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"; @@ -1812,6 +1826,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1914,6 +1929,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2085,9 +2101,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2159,6 +2177,7 @@ self: super: { "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"; @@ -2171,6 +2190,7 @@ self: super: { "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"; @@ -2358,8 +2378,10 @@ self: super: { "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-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"; @@ -2666,6 +2688,7 @@ self: super: { "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"; @@ -3013,6 +3036,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_11"; @@ -3170,6 +3195,7 @@ self: super: { "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3221,6 +3247,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3318,6 +3345,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3629,6 +3745,7 @@ self: super: { "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"; @@ -3644,6 +3761,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3920,12 +4038,14 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibsass" = dontDistribute super."hlibsass"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4321,6 +4441,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4816,6 +4938,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5079,6 +5202,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_2_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5269,6 +5393,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5617,6 +5742,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5648,6 +5774,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5705,6 +5832,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_4"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5727,6 +5855,7 @@ self: super: { "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"; @@ -5737,6 +5866,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5755,6 +5885,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5812,6 +5943,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_6"; @@ -5839,6 +5971,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5978,6 +6112,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -6071,6 +6206,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6247,6 +6383,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6390,6 +6527,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_5"; "respond" = dontDistribute super."respond"; @@ -6492,6 +6630,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6499,8 +6638,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6616,6 +6757,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6698,6 +6840,7 @@ self: super: { "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"; @@ -6780,6 +6923,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7092,7 +7236,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7106,6 +7252,7 @@ self: super: { "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"; @@ -7206,6 +7353,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7251,6 +7399,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7554,6 +7703,7 @@ self: super: { "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"; @@ -7577,8 +7727,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7770,6 +7922,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7791,6 +7944,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7826,6 +7981,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_7_1"; @@ -7873,6 +8029,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8148,6 +8305,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index aad05783d8b9..b512d97e5927 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -367,6 +368,7 @@ self: super: { "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"; @@ -620,6 +622,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -644,6 +647,7 @@ self: super: { "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"; @@ -798,6 +802,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -872,6 +877,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -918,6 +924,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -978,6 +985,7 @@ self: super: { "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"; @@ -1121,6 +1129,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1131,6 +1140,7 @@ self: super: { "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"; @@ -1187,6 +1197,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1223,6 +1234,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1319,6 +1331,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1532,6 +1545,7 @@ self: super: { "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"; @@ -1812,6 +1826,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1914,6 +1929,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2085,9 +2101,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2159,6 +2177,7 @@ self: super: { "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"; @@ -2171,6 +2190,7 @@ self: super: { "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"; @@ -2358,8 +2378,10 @@ self: super: { "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-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"; @@ -2665,6 +2687,7 @@ self: super: { "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"; @@ -3011,6 +3034,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_11"; @@ -3168,6 +3193,7 @@ self: super: { "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3219,6 +3245,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3316,6 +3343,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3627,6 +3743,7 @@ self: super: { "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"; @@ -3642,6 +3759,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3918,12 +4036,14 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibsass" = dontDistribute super."hlibsass"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4319,6 +4439,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4814,6 +4936,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5077,6 +5200,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_2_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5266,6 +5390,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5612,6 +5737,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5643,6 +5769,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5700,6 +5827,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_4"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5722,6 +5850,7 @@ self: super: { "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"; @@ -5732,6 +5861,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5750,6 +5880,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5807,6 +5938,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_6"; @@ -5834,6 +5966,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5973,6 +6107,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -6066,6 +6201,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6242,6 +6378,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6385,6 +6522,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_5"; "respond" = dontDistribute super."respond"; @@ -6487,6 +6625,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6494,8 +6633,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6611,6 +6752,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6693,6 +6835,7 @@ self: super: { "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"; @@ -6775,6 +6918,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7086,7 +7230,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7100,6 +7246,7 @@ self: super: { "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"; @@ -7200,6 +7347,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7245,6 +7393,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7548,6 +7697,7 @@ self: super: { "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"; @@ -7571,8 +7721,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7764,6 +7916,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7785,6 +7938,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7820,6 +7975,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_7_1"; @@ -7867,6 +8023,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8142,6 +8299,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index f957fb121f30..c745ae62bef5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -366,6 +367,7 @@ self: super: { "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"; @@ -618,6 +620,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -642,6 +645,7 @@ self: super: { "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"; @@ -796,6 +800,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -870,6 +875,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -916,6 +922,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -976,6 +983,7 @@ self: super: { "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"; @@ -1119,6 +1127,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1129,6 +1138,7 @@ self: super: { "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"; @@ -1185,6 +1195,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1221,6 +1232,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1317,6 +1329,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1530,6 +1543,7 @@ self: super: { "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"; @@ -1810,6 +1824,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1912,6 +1927,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2082,9 +2098,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2156,6 +2174,7 @@ self: super: { "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"; @@ -2167,6 +2186,7 @@ self: super: { "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"; @@ -2354,8 +2374,10 @@ self: super: { "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-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"; @@ -2660,6 +2682,7 @@ self: super: { "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"; @@ -3004,6 +3027,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_11"; @@ -3161,6 +3186,7 @@ self: super: { "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_2"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3212,6 +3238,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3309,6 +3336,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3618,6 +3734,7 @@ self: super: { "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"; @@ -3633,6 +3750,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3909,12 +4027,14 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibsass" = dontDistribute super."hlibsass"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4310,6 +4430,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4804,6 +4926,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5067,6 +5190,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_2_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5256,6 +5380,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5602,6 +5727,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5633,6 +5759,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5678,6 +5805,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5689,6 +5817,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_4"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5711,6 +5840,7 @@ self: super: { "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"; @@ -5721,6 +5851,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5739,6 +5870,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5796,6 +5928,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_6"; @@ -5823,6 +5956,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5962,6 +6097,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -6055,6 +6191,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6231,6 +6368,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6374,6 +6512,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_5"; "respond" = dontDistribute super."respond"; @@ -6476,6 +6615,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6483,8 +6623,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6600,6 +6742,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6682,6 +6825,7 @@ self: super: { "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"; @@ -6764,6 +6908,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7074,7 +7219,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7088,6 +7235,7 @@ self: super: { "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"; @@ -7188,6 +7336,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7233,6 +7382,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7536,6 +7686,7 @@ self: super: { "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"; @@ -7559,8 +7710,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7752,6 +7905,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7773,6 +7927,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7808,6 +7964,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_7_1"; @@ -7855,6 +8012,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8130,6 +8288,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 5a63175b692b..5db571c5aa28 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -366,6 +367,7 @@ self: super: { "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"; @@ -618,6 +620,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -642,6 +645,7 @@ self: super: { "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"; @@ -796,6 +800,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -870,6 +875,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -916,6 +922,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -976,6 +983,7 @@ self: super: { "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"; @@ -1119,6 +1127,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1129,6 +1138,7 @@ self: super: { "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"; @@ -1185,6 +1195,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1221,6 +1232,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1317,6 +1329,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1528,6 +1541,7 @@ self: super: { "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"; @@ -1807,6 +1821,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1909,6 +1924,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2079,9 +2095,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2153,6 +2171,7 @@ self: super: { "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"; @@ -2164,6 +2183,7 @@ self: super: { "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"; @@ -2351,8 +2371,10 @@ self: super: { "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-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"; @@ -2657,6 +2679,7 @@ self: super: { "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"; @@ -2999,6 +3022,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_11"; @@ -3154,6 +3179,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3205,6 +3231,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3302,6 +3329,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3611,6 +3727,7 @@ self: super: { "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"; @@ -3625,6 +3742,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3901,12 +4019,14 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibsass" = dontDistribute super."hlibsass"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4302,6 +4422,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4796,6 +4918,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5059,6 +5182,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_2_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5248,6 +5372,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5593,6 +5718,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5624,6 +5750,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5669,6 +5796,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5680,6 +5808,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_4"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5702,6 +5831,7 @@ self: super: { "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"; @@ -5712,6 +5842,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5730,6 +5861,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5787,6 +5919,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_6"; @@ -5814,6 +5947,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5953,6 +6088,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -6046,6 +6182,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6222,6 +6359,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6364,6 +6502,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_5"; "respond" = dontDistribute super."respond"; @@ -6466,6 +6605,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6473,8 +6613,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6590,6 +6732,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6672,6 +6815,7 @@ self: super: { "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"; @@ -6754,6 +6898,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7064,7 +7209,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7078,6 +7225,7 @@ self: super: { "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"; @@ -7178,6 +7326,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7223,6 +7372,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7526,6 +7676,7 @@ self: super: { "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"; @@ -7549,8 +7700,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7742,6 +7895,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7763,6 +7917,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7798,6 +7954,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_7_1"; @@ -7845,6 +8002,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8119,6 +8277,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index a498cf4ed0fb..f0e079ca50b0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -366,6 +367,7 @@ self: super: { "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"; @@ -617,6 +619,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -641,6 +644,7 @@ self: super: { "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"; @@ -795,6 +799,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -869,6 +874,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -915,6 +921,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -975,6 +982,7 @@ self: super: { "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"; @@ -1118,6 +1126,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1128,6 +1137,7 @@ self: super: { "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"; @@ -1184,6 +1194,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1220,6 +1231,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1304,6 +1316,7 @@ self: super: { "applicative-parsec" = dontDistribute super."applicative-parsec"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate" = doDistribute super."approximate_0_2_2_1"; "approximate-equality" = dontDistribute super."approximate-equality"; "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; @@ -1315,6 +1328,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1526,6 +1540,7 @@ self: super: { "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"; @@ -1802,6 +1817,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1904,6 +1920,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2074,9 +2091,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2148,6 +2167,7 @@ self: super: { "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"; @@ -2159,6 +2179,7 @@ self: super: { "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"; @@ -2346,8 +2367,10 @@ self: super: { "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-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"; @@ -2652,6 +2675,7 @@ self: super: { "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"; @@ -2993,6 +3017,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_11"; @@ -3148,6 +3174,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3199,6 +3226,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3296,6 +3324,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3604,6 +3721,7 @@ self: super: { "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"; @@ -3618,6 +3736,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3893,12 +4012,14 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibsass" = dontDistribute super."hlibsass"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4294,6 +4415,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4788,6 +4911,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5051,6 +5175,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_2_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5240,6 +5365,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5584,6 +5710,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5615,6 +5742,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5660,6 +5788,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5671,6 +5800,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_4"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5693,6 +5823,7 @@ self: super: { "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"; @@ -5703,6 +5834,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5721,6 +5853,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5778,6 +5911,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_6"; @@ -5805,6 +5939,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5943,6 +6079,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -6036,6 +6173,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6212,6 +6350,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6354,6 +6493,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_5"; "respond" = dontDistribute super."respond"; @@ -6456,6 +6596,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6463,8 +6604,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6580,6 +6723,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6662,6 +6806,7 @@ self: super: { "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"; @@ -6744,6 +6889,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7053,7 +7199,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7067,6 +7215,7 @@ self: super: { "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"; @@ -7167,6 +7316,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7212,6 +7362,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7515,6 +7666,7 @@ self: super: { "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"; @@ -7538,8 +7690,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7731,6 +7885,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7752,6 +7907,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7787,6 +7944,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_8_2"; @@ -7833,6 +7991,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8106,6 +8265,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 1669d1f95a4b..4f2aa9e0198e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -366,6 +367,7 @@ self: super: { "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"; @@ -617,6 +619,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -641,6 +644,7 @@ self: super: { "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"; @@ -795,6 +799,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -869,6 +874,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -915,6 +921,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -975,6 +982,7 @@ self: super: { "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"; @@ -1118,6 +1126,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1128,6 +1137,7 @@ self: super: { "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"; @@ -1184,6 +1194,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1220,6 +1231,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1304,6 +1316,7 @@ self: super: { "applicative-parsec" = dontDistribute super."applicative-parsec"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate" = doDistribute super."approximate_0_2_2_1"; "approximate-equality" = dontDistribute super."approximate-equality"; "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; @@ -1315,6 +1328,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1526,6 +1540,7 @@ self: super: { "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"; @@ -1802,6 +1817,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1904,6 +1920,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2074,9 +2091,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2148,6 +2167,7 @@ self: super: { "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"; @@ -2159,6 +2179,7 @@ self: super: { "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"; @@ -2346,8 +2367,10 @@ self: super: { "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-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"; @@ -2652,6 +2675,7 @@ self: super: { "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"; @@ -2993,6 +3017,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_11"; @@ -3147,6 +3173,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3198,6 +3225,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3295,6 +3323,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3603,6 +3720,7 @@ self: super: { "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"; @@ -3617,6 +3735,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3892,12 +4011,14 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibsass" = dontDistribute super."hlibsass"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4293,6 +4414,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4787,6 +4910,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5050,6 +5174,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_2_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5238,6 +5363,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5581,6 +5707,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5612,6 +5739,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5657,6 +5785,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5668,6 +5797,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5690,6 +5820,7 @@ self: super: { "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"; @@ -5700,6 +5831,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5718,6 +5850,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5775,6 +5908,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_6"; @@ -5802,6 +5936,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5940,6 +6076,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -6033,6 +6170,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6209,6 +6347,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6351,6 +6490,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_5"; "respond" = dontDistribute super."respond"; @@ -6453,6 +6593,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6460,8 +6601,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6577,6 +6720,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6659,6 +6803,7 @@ self: super: { "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"; @@ -6741,6 +6886,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7048,7 +7194,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7062,6 +7210,7 @@ self: super: { "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"; @@ -7162,6 +7311,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7207,6 +7357,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7510,6 +7661,7 @@ self: super: { "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"; @@ -7533,8 +7685,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7726,6 +7880,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7747,6 +7902,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7782,6 +7939,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_8_2"; @@ -7828,6 +7986,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8100,6 +8259,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 29e024d239fc..e115ed55db2f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -368,6 +369,7 @@ self: super: { "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"; @@ -621,6 +623,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -645,6 +648,7 @@ self: super: { "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"; @@ -800,6 +804,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -874,6 +879,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -920,6 +926,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -980,6 +987,7 @@ self: super: { "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"; @@ -1125,6 +1133,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1136,6 +1145,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_3"; "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"; @@ -1193,6 +1203,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_3_1"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_3"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_3"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_3"; @@ -1229,6 +1240,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_3"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_3"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_3"; @@ -1325,6 +1337,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1541,6 +1554,7 @@ self: super: { "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"; @@ -1822,6 +1836,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2098,9 +2113,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2172,6 +2189,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2185,6 +2203,7 @@ self: super: { "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"; @@ -2373,8 +2392,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2682,6 +2703,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3034,6 +3056,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_9"; @@ -3191,6 +3215,7 @@ self: super: { "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3243,6 +3268,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3341,6 +3367,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3655,6 +3770,7 @@ self: super: { "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"; @@ -3670,6 +3786,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3948,6 +4065,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4356,6 +4474,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4858,6 +4978,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5127,6 +5248,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_1_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5320,6 +5442,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5670,6 +5793,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5701,6 +5825,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5760,6 +5885,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5782,6 +5908,7 @@ self: super: { "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"; @@ -5792,6 +5919,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5810,6 +5938,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5896,6 +6025,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6037,6 +6168,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -6132,6 +6264,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6309,6 +6442,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6453,6 +6587,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_4_1"; "respond" = dontDistribute super."respond"; @@ -6557,6 +6692,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6565,6 +6701,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_4"; @@ -6684,6 +6821,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6766,6 +6904,7 @@ self: super: { "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"; @@ -7171,7 +7310,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7185,6 +7326,7 @@ self: super: { "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"; @@ -7288,6 +7430,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7333,6 +7476,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7639,6 +7783,7 @@ self: super: { "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"; @@ -7662,8 +7807,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7855,6 +8002,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7876,6 +8024,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7911,6 +8061,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_6_1"; @@ -7959,6 +8110,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8238,6 +8390,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index a00c7ec820b4..427c3af7b373 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -366,6 +367,7 @@ self: super: { "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"; @@ -617,6 +619,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -641,6 +644,7 @@ self: super: { "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"; @@ -795,6 +799,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -869,6 +874,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -915,6 +921,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -975,6 +982,7 @@ self: super: { "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"; @@ -1118,6 +1126,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1128,6 +1137,7 @@ self: super: { "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"; @@ -1184,6 +1194,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1220,6 +1231,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1304,6 +1316,7 @@ self: super: { "applicative-parsec" = dontDistribute super."applicative-parsec"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate" = doDistribute super."approximate_0_2_2_1"; "approximate-equality" = dontDistribute super."approximate-equality"; "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; @@ -1315,6 +1328,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1526,6 +1540,7 @@ self: super: { "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"; @@ -1802,6 +1817,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1904,6 +1920,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2073,9 +2090,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2083,6 +2102,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_5"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2145,6 +2165,7 @@ self: super: { "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"; @@ -2156,6 +2177,7 @@ self: super: { "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"; @@ -2343,8 +2365,10 @@ self: super: { "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-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"; @@ -2649,6 +2673,7 @@ self: super: { "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"; @@ -2989,6 +3014,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_11"; @@ -3143,6 +3170,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3194,6 +3222,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3291,6 +3320,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3598,6 +3716,7 @@ self: super: { "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"; @@ -3612,6 +3731,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3887,12 +4007,14 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibsass" = dontDistribute super."hlibsass"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4288,6 +4410,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4782,6 +4906,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5045,6 +5170,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_2_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5233,6 +5359,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5576,6 +5703,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5607,6 +5735,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5652,6 +5781,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5663,6 +5793,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5685,6 +5816,7 @@ self: super: { "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"; @@ -5695,6 +5827,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5713,6 +5846,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5770,6 +5904,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_6"; @@ -5797,6 +5932,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5934,6 +6071,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -6027,6 +6165,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6203,6 +6342,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6345,6 +6485,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_5"; "respond" = dontDistribute super."respond"; @@ -6447,6 +6588,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6454,8 +6596,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6571,6 +6715,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6653,6 +6798,7 @@ self: super: { "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"; @@ -6734,6 +6880,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7041,7 +7188,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7055,6 +7204,7 @@ self: super: { "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"; @@ -7155,6 +7305,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7200,6 +7351,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7503,6 +7655,7 @@ self: super: { "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"; @@ -7526,8 +7679,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7719,6 +7874,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7740,6 +7896,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7775,6 +7933,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_10"; @@ -7821,6 +7980,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8093,6 +8253,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; @@ -8129,6 +8290,7 @@ self: super: { "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets" = doDistribute super."yesod-websockets_0_2_3"; "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 146ed7c6e2b2..99b1366bdfda 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -366,6 +367,7 @@ self: super: { "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"; @@ -617,6 +619,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -641,6 +644,7 @@ self: super: { "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"; @@ -795,6 +799,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -869,6 +874,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -915,6 +921,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -975,6 +982,7 @@ self: super: { "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"; @@ -1118,6 +1126,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1128,6 +1137,7 @@ self: super: { "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"; @@ -1184,6 +1194,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1220,6 +1231,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1304,6 +1316,7 @@ self: super: { "applicative-parsec" = dontDistribute super."applicative-parsec"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate" = doDistribute super."approximate_0_2_2_1"; "approximate-equality" = dontDistribute super."approximate-equality"; "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; @@ -1315,6 +1328,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1526,6 +1540,7 @@ self: super: { "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"; @@ -1802,6 +1817,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1904,6 +1920,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2073,9 +2090,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2083,6 +2102,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_5"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2145,6 +2165,7 @@ self: super: { "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"; @@ -2156,6 +2177,7 @@ self: super: { "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"; @@ -2343,8 +2365,10 @@ self: super: { "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-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"; @@ -2649,6 +2673,7 @@ self: super: { "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"; @@ -2989,6 +3014,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_11"; @@ -3143,6 +3170,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3194,6 +3222,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3290,6 +3319,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3597,6 +3715,7 @@ self: super: { "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"; @@ -3611,6 +3730,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3886,12 +4006,14 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibsass" = dontDistribute super."hlibsass"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4287,6 +4409,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4780,6 +4904,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5043,6 +5168,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_2_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5231,6 +5357,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5574,6 +5701,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5605,6 +5733,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5650,6 +5779,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5661,6 +5791,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5683,6 +5814,7 @@ self: super: { "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"; @@ -5693,6 +5825,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5711,6 +5844,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5768,6 +5902,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_6"; @@ -5795,6 +5930,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5931,6 +6068,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -6023,6 +6161,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6199,6 +6338,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6341,6 +6481,7 @@ self: super: { "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_35_1"; @@ -6442,6 +6583,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6449,8 +6591,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6566,6 +6710,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6648,6 +6793,7 @@ self: super: { "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"; @@ -6729,6 +6875,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7036,7 +7183,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7050,6 +7199,7 @@ self: super: { "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"; @@ -7150,6 +7300,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7195,6 +7346,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7498,6 +7650,7 @@ self: super: { "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"; @@ -7521,8 +7674,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7712,6 +7867,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7733,6 +7889,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7768,6 +7926,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_10"; @@ -7814,6 +7973,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8085,6 +8245,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; @@ -8121,6 +8282,7 @@ self: super: { "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets" = doDistribute super."yesod-websockets_0_2_3"; "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 6462f02aaa71..6f759aa51685 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -366,6 +367,7 @@ self: super: { "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"; @@ -617,6 +619,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -641,6 +644,7 @@ self: super: { "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"; @@ -795,6 +799,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -869,6 +874,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -914,6 +920,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -974,6 +981,7 @@ self: super: { "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"; @@ -1117,6 +1125,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1127,6 +1136,7 @@ self: super: { "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"; @@ -1183,6 +1193,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1219,6 +1230,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1303,6 +1315,7 @@ self: super: { "applicative-parsec" = dontDistribute super."applicative-parsec"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate" = doDistribute super."approximate_0_2_2_1"; "approximate-equality" = dontDistribute super."approximate-equality"; "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; @@ -1314,6 +1327,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1525,6 +1539,7 @@ self: super: { "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"; @@ -1801,6 +1816,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1903,6 +1919,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2072,9 +2089,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2082,6 +2101,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_5"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2144,6 +2164,7 @@ self: super: { "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"; @@ -2155,6 +2176,7 @@ self: super: { "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"; @@ -2342,8 +2364,10 @@ self: super: { "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-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"; @@ -2648,6 +2672,7 @@ self: super: { "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"; @@ -2988,6 +3013,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_11"; @@ -3142,6 +3169,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3193,6 +3221,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3289,6 +3318,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3596,6 +3714,7 @@ self: super: { "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"; @@ -3610,6 +3729,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3884,12 +4004,14 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; "hlibsass" = dontDistribute super."hlibsass"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4285,6 +4407,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4777,6 +4901,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5040,6 +5165,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_2_1"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5227,6 +5353,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5570,6 +5697,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5601,6 +5729,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5646,6 +5775,7 @@ self: super: { "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; "pager" = dontDistribute super."pager"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5657,6 +5787,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5679,6 +5810,7 @@ self: super: { "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"; @@ -5689,6 +5821,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5707,6 +5840,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5764,6 +5898,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_6"; @@ -5791,6 +5926,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5927,6 +6064,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -6019,6 +6157,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6195,6 +6334,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6337,6 +6477,7 @@ self: super: { "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_35_1"; @@ -6438,6 +6579,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6445,8 +6587,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6562,6 +6706,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6644,6 +6789,7 @@ self: super: { "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"; @@ -6725,6 +6871,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7032,7 +7179,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7046,6 +7195,7 @@ self: super: { "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"; @@ -7146,6 +7296,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7191,6 +7342,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7494,6 +7646,7 @@ self: super: { "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"; @@ -7517,8 +7670,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7708,6 +7863,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7729,6 +7885,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7764,6 +7922,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_10"; @@ -7810,6 +7969,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8081,6 +8241,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; @@ -8117,6 +8278,7 @@ self: super: { "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets" = doDistribute super."yesod-websockets_0_2_3"; "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index e5f8c1e6d306..ffc265ac99fd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -368,6 +369,7 @@ self: super: { "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"; @@ -621,6 +623,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -645,6 +648,7 @@ self: super: { "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"; @@ -800,6 +804,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -874,6 +879,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -920,6 +926,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -980,6 +987,7 @@ self: super: { "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"; @@ -1125,6 +1133,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1136,6 +1145,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_3"; "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"; @@ -1193,6 +1203,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_3_1"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_3"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_3"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_3"; @@ -1229,6 +1240,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_3"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_3"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_3"; @@ -1325,6 +1337,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1541,6 +1554,7 @@ self: super: { "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"; @@ -1822,6 +1836,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2098,9 +2113,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2172,6 +2189,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2185,6 +2203,7 @@ self: super: { "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"; @@ -2373,8 +2392,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2682,6 +2703,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3033,6 +3055,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_9"; @@ -3190,6 +3214,7 @@ self: super: { "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3242,6 +3267,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3340,6 +3366,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3654,6 +3769,7 @@ self: super: { "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"; @@ -3669,6 +3785,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3947,6 +4064,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4355,6 +4473,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4856,6 +4976,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5125,6 +5246,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_1_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5318,6 +5440,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5668,6 +5791,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5699,6 +5823,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5758,6 +5883,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5780,6 +5906,7 @@ self: super: { "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"; @@ -5790,6 +5917,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5808,6 +5936,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5894,6 +6023,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6035,6 +6166,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -6130,6 +6262,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6307,6 +6440,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6451,6 +6585,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_4_1"; "respond" = dontDistribute super."respond"; @@ -6555,6 +6690,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6563,6 +6699,7 @@ self: super: { "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"; "safecopy" = doDistribute super."safecopy_0_8_4"; @@ -6682,6 +6819,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6764,6 +6902,7 @@ self: super: { "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"; @@ -7168,7 +7307,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7182,6 +7323,7 @@ self: super: { "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"; @@ -7285,6 +7427,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7330,6 +7473,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7636,6 +7780,7 @@ self: super: { "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"; @@ -7659,8 +7804,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7852,6 +7999,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7873,6 +8021,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7908,6 +8058,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_7"; @@ -7956,6 +8107,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8235,6 +8387,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index d12aac87096e..ac7b3dc3c2bc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -368,6 +369,7 @@ self: super: { "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"; @@ -621,6 +623,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -645,6 +648,7 @@ self: super: { "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"; @@ -800,6 +804,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -874,6 +879,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -920,6 +926,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -980,6 +987,7 @@ self: super: { "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"; @@ -1125,6 +1133,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1136,6 +1145,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_3"; "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"; @@ -1193,6 +1203,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_4"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; @@ -1229,6 +1240,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_4"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; @@ -1325,6 +1337,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1541,6 +1554,7 @@ self: super: { "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"; @@ -1821,6 +1835,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2097,9 +2112,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2171,6 +2188,7 @@ self: super: { "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" = doDistribute super."convertible_1_1_0_0"; "convertible-ascii" = dontDistribute super."convertible-ascii"; "convertible-text" = dontDistribute super."convertible-text"; @@ -2184,6 +2202,7 @@ self: super: { "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"; @@ -2372,8 +2391,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2681,6 +2702,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3032,6 +3054,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_9"; @@ -3189,6 +3213,7 @@ self: super: { "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3241,6 +3266,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3339,6 +3365,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3653,6 +3768,7 @@ self: super: { "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"; @@ -3668,6 +3784,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3946,6 +4063,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4354,6 +4472,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4855,6 +4975,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5124,6 +5245,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_1_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5316,6 +5438,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5666,6 +5789,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5697,6 +5821,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5755,6 +5880,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5777,6 +5903,7 @@ self: super: { "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"; @@ -5787,6 +5914,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5805,6 +5933,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5890,6 +6019,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6031,6 +6162,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -6126,6 +6258,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6303,6 +6436,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6446,6 +6580,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_4_1"; "respond" = dontDistribute super."respond"; @@ -6550,6 +6685,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6558,8 +6694,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6676,6 +6814,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6758,6 +6897,7 @@ self: super: { "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"; @@ -7162,7 +7302,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7176,6 +7318,7 @@ self: super: { "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"; @@ -7279,6 +7422,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7324,6 +7468,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7630,6 +7775,7 @@ self: super: { "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"; @@ -7653,8 +7799,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7846,6 +7994,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7867,6 +8016,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7902,6 +8053,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_7"; @@ -7950,6 +8102,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8229,6 +8382,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 8e93b819e9ff..38fdae29f82c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -368,6 +369,7 @@ self: super: { "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"; @@ -621,6 +623,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -645,6 +648,7 @@ self: super: { "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"; @@ -800,6 +804,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -874,6 +879,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -920,6 +926,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -980,6 +987,7 @@ self: super: { "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"; @@ -1125,6 +1133,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1136,6 +1145,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_3"; "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"; @@ -1193,6 +1203,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_4"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; @@ -1229,6 +1240,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_4"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; @@ -1325,6 +1337,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1541,6 +1554,7 @@ self: super: { "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"; @@ -1821,6 +1835,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -2097,9 +2112,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2171,6 +2188,7 @@ self: super: { "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"; @@ -2183,6 +2201,7 @@ self: super: { "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"; @@ -2371,8 +2390,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2679,6 +2700,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3030,6 +3052,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_9"; @@ -3187,6 +3211,7 @@ self: super: { "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3239,6 +3264,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3337,6 +3363,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3651,6 +3766,7 @@ self: super: { "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"; @@ -3666,6 +3782,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3944,6 +4061,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4352,6 +4470,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4853,6 +4973,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5121,6 +5242,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_1_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5313,6 +5435,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5663,6 +5786,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5694,6 +5818,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5752,6 +5877,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5774,6 +5900,7 @@ self: super: { "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"; @@ -5784,6 +5911,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5802,6 +5930,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5887,6 +6016,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6028,6 +6159,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -6123,6 +6255,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6300,6 +6433,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6443,6 +6577,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_4_1"; "respond" = dontDistribute super."respond"; @@ -6547,6 +6682,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6555,8 +6691,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6673,6 +6811,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6755,6 +6894,7 @@ self: super: { "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"; @@ -7158,7 +7298,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7172,6 +7314,7 @@ self: super: { "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"; @@ -7275,6 +7418,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7320,6 +7464,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7626,6 +7771,7 @@ self: super: { "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"; @@ -7649,8 +7795,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7842,6 +7990,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7863,6 +8012,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7898,6 +8049,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_7_1"; @@ -7946,6 +8098,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8225,6 +8378,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index da7cdc8c387e..3ad61dca8ce5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -368,6 +369,7 @@ self: super: { "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"; @@ -621,6 +623,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -645,6 +648,7 @@ self: super: { "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"; @@ -800,6 +804,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -874,6 +879,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -920,6 +926,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -980,6 +987,7 @@ self: super: { "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"; @@ -1123,6 +1131,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1134,6 +1143,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_3"; "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"; @@ -1191,6 +1201,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_4"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; @@ -1227,6 +1238,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_4"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; @@ -1323,6 +1335,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1538,6 +1551,7 @@ self: super: { "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"; @@ -1818,6 +1832,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1921,6 +1936,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2093,9 +2109,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2167,6 +2185,7 @@ self: super: { "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"; @@ -2179,6 +2198,7 @@ self: super: { "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"; @@ -2367,8 +2387,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2675,6 +2697,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3026,6 +3049,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_9"; @@ -3183,6 +3208,7 @@ self: super: { "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3235,6 +3261,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3333,6 +3360,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3645,6 +3761,7 @@ self: super: { "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"; @@ -3660,6 +3777,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3938,6 +4056,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4346,6 +4465,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4847,6 +4968,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5115,6 +5237,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_2_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5307,6 +5430,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5656,6 +5780,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5687,6 +5812,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5745,6 +5871,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5767,6 +5894,7 @@ self: super: { "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"; @@ -5777,6 +5905,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5795,6 +5924,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5880,6 +6010,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6021,6 +6153,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -6116,6 +6249,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6293,6 +6427,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6436,6 +6571,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_4_1"; "respond" = dontDistribute super."respond"; @@ -6540,6 +6676,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6548,8 +6685,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6666,6 +6805,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6748,6 +6888,7 @@ self: super: { "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"; @@ -7151,7 +7292,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7165,6 +7308,7 @@ self: super: { "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"; @@ -7268,6 +7412,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7313,6 +7458,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7617,6 +7763,7 @@ self: super: { "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"; @@ -7640,8 +7787,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7833,6 +7982,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7854,6 +8004,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7889,6 +8041,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_7_1"; @@ -7937,6 +8090,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8215,6 +8369,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 97eacfad40c1..18d62afe7bb9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -367,6 +368,7 @@ self: super: { "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"; @@ -620,6 +622,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -644,6 +647,7 @@ self: super: { "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"; @@ -799,6 +803,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -873,6 +878,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -919,6 +925,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -979,6 +986,7 @@ self: super: { "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"; @@ -1122,6 +1130,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1133,6 +1142,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_3"; "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"; @@ -1190,6 +1200,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_4"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; @@ -1226,6 +1237,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_4"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; @@ -1322,6 +1334,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1537,6 +1550,7 @@ self: super: { "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"; @@ -1817,6 +1831,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1920,6 +1935,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2092,9 +2108,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2166,6 +2184,7 @@ self: super: { "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"; @@ -2178,6 +2197,7 @@ self: super: { "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"; @@ -2366,8 +2386,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2674,6 +2696,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3025,6 +3048,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_9"; @@ -3182,6 +3207,7 @@ self: super: { "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3234,6 +3260,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3332,6 +3359,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3644,6 +3760,7 @@ self: super: { "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"; @@ -3659,6 +3776,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3937,6 +4055,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4345,6 +4464,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4846,6 +4967,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5114,6 +5236,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_2_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5306,6 +5429,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5655,6 +5779,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5686,6 +5811,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5744,6 +5870,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5766,6 +5893,7 @@ self: super: { "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"; @@ -5776,6 +5904,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5794,6 +5923,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5879,6 +6009,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6020,6 +6152,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -6115,6 +6248,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6292,6 +6426,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6435,6 +6570,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_4_1"; "respond" = dontDistribute super."respond"; @@ -6539,6 +6675,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe" = doDistribute super."safe_0_3_8"; "safe-access" = dontDistribute super."safe-access"; @@ -6547,8 +6684,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6665,6 +6804,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6747,6 +6887,7 @@ self: super: { "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"; @@ -7150,7 +7291,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7164,6 +7307,7 @@ self: super: { "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"; @@ -7267,6 +7411,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7312,6 +7457,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7616,6 +7762,7 @@ self: super: { "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"; @@ -7639,8 +7786,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7832,6 +7981,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7853,6 +8003,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7888,6 +8040,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_7_1"; @@ -7936,6 +8089,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8214,6 +8368,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 778abcbae4c4..4278dd84271d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -367,6 +368,7 @@ self: super: { "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"; @@ -620,6 +622,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -644,6 +647,7 @@ self: super: { "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"; @@ -798,6 +802,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -872,6 +877,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -918,6 +924,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -978,6 +985,7 @@ self: super: { "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"; @@ -1121,6 +1129,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1132,6 +1141,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_3"; "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"; @@ -1189,6 +1199,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_4"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; @@ -1225,6 +1236,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_4"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; @@ -1321,6 +1333,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1536,6 +1549,7 @@ self: super: { "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"; @@ -1816,6 +1830,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1919,6 +1934,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2091,9 +2107,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2165,6 +2183,7 @@ self: super: { "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"; @@ -2177,6 +2196,7 @@ self: super: { "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"; @@ -2365,8 +2385,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2673,6 +2695,7 @@ self: super: { "dzen-utils" = dontDistribute super."dzen-utils"; "eager-sockets" = dontDistribute super."eager-sockets"; "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; "easy-file" = doDistribute super."easy-file_0_2_0"; "easyjson" = dontDistribute super."easyjson"; "easyplot" = dontDistribute super."easyplot"; @@ -3023,6 +3046,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_10"; @@ -3180,6 +3205,7 @@ self: super: { "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3232,6 +3258,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3330,6 +3357,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3642,6 +3758,7 @@ self: super: { "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"; @@ -3657,6 +3774,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3935,6 +4053,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4342,6 +4461,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4842,6 +4963,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5110,6 +5232,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_2_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown" = doDistribute super."markdown_0_1_13_1"; @@ -5302,6 +5425,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5651,6 +5775,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5682,6 +5807,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5740,6 +5866,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5762,6 +5889,7 @@ self: super: { "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"; @@ -5772,6 +5900,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_1_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5790,6 +5919,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5875,6 +6005,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6016,6 +6148,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_5_2"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -6111,6 +6244,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6288,6 +6422,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6431,6 +6566,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_4_1"; "respond" = dontDistribute super."respond"; @@ -6535,6 +6671,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6542,8 +6679,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6660,6 +6799,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6742,6 +6882,7 @@ self: super: { "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"; @@ -7142,7 +7283,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7156,6 +7299,7 @@ self: super: { "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"; @@ -7259,6 +7403,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7304,6 +7449,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7608,6 +7754,7 @@ self: super: { "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"; @@ -7631,8 +7778,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7824,6 +7973,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7845,6 +7995,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7880,6 +8032,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_7_1"; @@ -7928,6 +8081,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8206,6 +8360,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 32065d25f22a..63b673ca3bb5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -168,6 +168,7 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_3_3"; @@ -367,6 +368,7 @@ self: super: { "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"; @@ -620,6 +622,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -644,6 +647,7 @@ self: super: { "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"; @@ -798,6 +802,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -872,6 +877,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -918,6 +924,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -978,6 +985,7 @@ self: super: { "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"; @@ -1121,6 +1129,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_7_4"; @@ -1132,6 +1141,7 @@ self: super: { "aeson-toolkit" = dontDistribute super."aeson-toolkit"; "aeson-utils" = doDistribute super."aeson-utils_0_3_0_1"; "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"; @@ -1189,6 +1199,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_4"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_4"; @@ -1225,6 +1236,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_4"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_4"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_4"; @@ -1321,6 +1333,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1534,6 +1547,7 @@ self: super: { "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"; @@ -1814,6 +1828,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1916,6 +1931,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -2088,9 +2104,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2162,6 +2180,7 @@ self: super: { "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"; @@ -2174,6 +2193,7 @@ self: super: { "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"; @@ -2362,8 +2382,10 @@ self: super: { "data-ref" = dontDistribute super."data-ref"; "data-reify" = doDistribute super."data-reify_0_6"; "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; "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"; @@ -2670,6 +2692,7 @@ self: super: { "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"; @@ -3018,6 +3041,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_0_10"; @@ -3175,6 +3200,7 @@ self: super: { "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; "generic-xmlpickler" = doDistribute super."generic-xmlpickler_0_1_0_0"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3227,6 +3253,7 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-tcplugins-extra" = dontDistribute super."ghc-tcplugins-extra"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; @@ -3324,6 +3351,95 @@ self: super: { "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3636,6 +3752,7 @@ self: super: { "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"; @@ -3651,6 +3768,7 @@ self: super: { "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-spacegoo" = dontDistribute super."haskell-spacegoo"; @@ -3929,6 +4047,7 @@ self: super: { "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; "hledger-lib" = doDistribute super."hledger-lib_0_24_1"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hledger-web" = doDistribute super."hledger-web_0_24_1"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4334,6 +4453,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4834,6 +4955,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = dontDistribute super."lens-simple"; @@ -5101,6 +5223,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_2_2_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5292,6 +5415,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5641,6 +5765,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5672,6 +5797,7 @@ self: super: { "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-class" = dontDistribute super."operational-class"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; @@ -5730,6 +5856,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_2"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5752,6 +5879,7 @@ self: super: { "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"; @@ -5762,6 +5890,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5780,6 +5909,7 @@ self: super: { "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; "path" = dontDistribute super."path"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5837,6 +5967,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_1_3_1"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_1_5_3"; @@ -5864,6 +5995,8 @@ self: super: { "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -6004,6 +6137,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -6098,6 +6232,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "prometheus-client" = dontDistribute super."prometheus-client"; "prometheus-metrics-ghc" = dontDistribute super."prometheus-metrics-ghc"; "promise" = dontDistribute super."promise"; @@ -6275,6 +6410,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6418,6 +6554,7 @@ self: super: { "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"; "resourcet" = doDistribute super."resourcet_1_1_4_1"; "respond" = dontDistribute super."respond"; @@ -6522,6 +6659,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6529,8 +6667,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6647,6 +6787,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6729,6 +6870,7 @@ self: super: { "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"; @@ -7127,7 +7269,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -7141,6 +7285,7 @@ self: super: { "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"; @@ -7242,6 +7387,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -7287,6 +7433,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7591,6 +7738,7 @@ self: super: { "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"; @@ -7614,8 +7762,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7807,6 +7957,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_6_0_4"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7828,6 +7979,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7863,6 +8016,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_0_1_1"; "wai-cors" = dontDistribute super."wai-cors"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_7_1"; @@ -7911,6 +8065,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -8188,6 +8343,7 @@ self: super: { "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; "yesod-fay" = doDistribute super."yesod-fay_0_7_1"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0"; "yesod-gitrev" = dontDistribute super."yesod-gitrev"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index a426a4f10668..5a4c3ac5dd15 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -159,9 +159,11 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_5_1"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -355,6 +357,7 @@ self: super: { "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"; @@ -602,6 +605,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -627,6 +631,7 @@ self: super: { "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"; @@ -778,6 +783,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -847,6 +853,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -891,6 +898,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -950,6 +958,7 @@ self: super: { "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"; @@ -1090,6 +1099,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-qq" = doDistribute super."aeson-qq_0_8_0"; @@ -1100,6 +1110,7 @@ self: super: { "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"; @@ -1155,6 +1166,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1191,6 +1203,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1262,6 +1275,7 @@ self: super: { "applicative-parsec" = dontDistribute super."applicative-parsec"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate" = doDistribute super."approximate_0_2_2_1"; "approximate-equality" = dontDistribute super."approximate-equality"; "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; @@ -1273,6 +1287,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1473,6 +1488,7 @@ self: super: { "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"; @@ -1733,6 +1749,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1833,6 +1850,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -1998,9 +2016,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2008,6 +2028,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_5"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2066,6 +2087,7 @@ self: super: { "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"; @@ -2077,6 +2099,7 @@ self: super: { "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"; @@ -2259,8 +2282,10 @@ self: super: { "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-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"; @@ -2552,6 +2577,7 @@ self: super: { "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"; @@ -2680,6 +2706,7 @@ self: super: { "estreps" = dontDistribute super."estreps"; "etcd" = dontDistribute super."etcd"; "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_0_0"; "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; "ethereum-rlp" = dontDistribute super."ethereum-rlp"; @@ -2703,6 +2730,7 @@ self: super: { "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; "exception-transformers" = doDistribute super."exception-transformers_0_4_0_1"; + "exhaustive" = doDistribute super."exhaustive_1_1_1"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2874,6 +2902,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_1_1"; @@ -3025,6 +3055,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3074,6 +3105,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3159,11 +3192,101 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3466,6 +3589,7 @@ self: super: { "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"; @@ -3479,6 +3603,7 @@ self: super: { "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"; @@ -3741,10 +3866,12 @@ self: super: { "hledger-diff" = dontDistribute super."hledger-diff"; "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4130,6 +4257,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4168,6 +4297,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4586,6 +4716,7 @@ self: super: { "lendingclub" = dontDistribute super."lendingclub"; "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = doDistribute super."lens-simple_0_1_0_7"; @@ -4838,6 +4969,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_3_0_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = doDistribute super."mangopay_1_11_4"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5012,6 +5144,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5200,6 +5333,7 @@ self: super: { "netwire-input" = dontDistribute super."netwire-input"; "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; "network-address" = dontDistribute super."network-address"; + "network-anonymous-tor" = doDistribute super."network-anonymous-tor_0_9_2"; "network-api-support" = dontDistribute super."network-api-support"; "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; @@ -5344,6 +5478,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5374,6 +5509,7 @@ self: super: { "opentheory-probability" = dontDistribute super."opentheory-probability"; "opentheory-stream" = dontDistribute super."opentheory-stream"; "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; "opn" = dontDistribute super."opn"; @@ -5416,6 +5552,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5427,6 +5564,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5449,6 +5587,7 @@ self: super: { "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"; @@ -5459,6 +5598,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5475,6 +5615,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5531,6 +5672,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2"; @@ -5555,6 +5697,8 @@ self: super: { "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5683,6 +5827,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -5773,6 +5918,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -5947,6 +6093,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6053,6 +6200,8 @@ self: super: { "renderable" = dontDistribute super."renderable"; "reord" = dontDistribute super."reord"; "reorderable" = dontDistribute super."reorderable"; + "repa" = doDistribute super."repa_3_4_0_1"; + "repa-algorithms" = doDistribute super."repa-algorithms_3_4_0_1"; "repa-array" = dontDistribute super."repa-array"; "repa-bytestring" = dontDistribute super."repa-bytestring"; "repa-convert" = dontDistribute super."repa-convert"; @@ -6060,6 +6209,7 @@ self: super: { "repa-examples" = dontDistribute super."repa-examples"; "repa-fftw" = dontDistribute super."repa-fftw"; "repa-flow" = dontDistribute super."repa-flow"; + "repa-io" = doDistribute super."repa-io_3_4_0_1"; "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; "repa-plugin" = dontDistribute super."repa-plugin"; "repa-scalar" = dontDistribute super."repa-scalar"; @@ -6084,6 +6234,7 @@ self: super: { "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_36_0_5"; @@ -6184,6 +6335,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6191,8 +6343,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6305,6 +6459,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6376,6 +6531,7 @@ self: super: { "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"; @@ -6456,6 +6612,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -6752,7 +6909,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -6766,6 +6925,7 @@ self: super: { "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"; @@ -6863,6 +7023,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -6872,6 +7033,7 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; @@ -6905,6 +7067,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7195,6 +7358,7 @@ self: super: { "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"; @@ -7217,8 +7381,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7398,6 +7564,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-algorithms" = doDistribute super."vector-algorithms_0_7"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; @@ -7417,6 +7584,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7450,6 +7619,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_10"; @@ -7492,6 +7662,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -7752,6 +7923,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; @@ -7786,6 +7958,7 @@ self: super: { "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets" = doDistribute super."yesod-websockets_0_2_3"; "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 236806515012..07b0b53e83bc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -159,9 +159,11 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_5_1"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -355,6 +357,7 @@ self: super: { "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"; @@ -602,6 +605,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -627,6 +631,7 @@ self: super: { "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"; @@ -778,6 +783,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -847,6 +853,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -891,6 +898,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -950,6 +958,7 @@ self: super: { "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"; @@ -1089,6 +1098,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; @@ -1098,6 +1108,7 @@ self: super: { "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"; @@ -1153,6 +1164,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1189,6 +1201,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1260,6 +1273,7 @@ self: super: { "applicative-parsec" = dontDistribute super."applicative-parsec"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate" = doDistribute super."approximate_0_2_2_1"; "approximate-equality" = dontDistribute super."approximate-equality"; "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; @@ -1271,6 +1285,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1470,6 +1485,7 @@ self: super: { "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"; @@ -1730,6 +1746,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1830,6 +1847,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -1995,9 +2013,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2005,6 +2025,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_5"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2063,6 +2084,7 @@ self: super: { "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"; @@ -2074,6 +2096,7 @@ self: super: { "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"; @@ -2256,8 +2279,10 @@ self: super: { "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-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"; @@ -2549,6 +2574,7 @@ self: super: { "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"; @@ -2677,6 +2703,7 @@ self: super: { "estreps" = dontDistribute super."estreps"; "etcd" = dontDistribute super."etcd"; "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_0_0"; "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; "ethereum-rlp" = dontDistribute super."ethereum-rlp"; @@ -2700,6 +2727,7 @@ self: super: { "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; "exception-transformers" = doDistribute super."exception-transformers_0_4_0_1"; + "exhaustive" = doDistribute super."exhaustive_1_1_1"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2868,6 +2896,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_1_1"; @@ -3019,6 +3049,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3068,6 +3099,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3153,11 +3186,101 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3460,6 +3583,7 @@ self: super: { "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"; @@ -3473,6 +3597,7 @@ self: super: { "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"; @@ -3734,10 +3859,12 @@ self: super: { "hledger-diff" = dontDistribute super."hledger-diff"; "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4123,6 +4250,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4161,6 +4290,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4579,6 +4709,7 @@ self: super: { "lendingclub" = dontDistribute super."lendingclub"; "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-simple" = doDistribute super."lens-simple_0_1_0_7"; @@ -4830,6 +4961,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_3_0_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = doDistribute super."mangopay_1_11_4"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -5004,6 +5136,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5191,6 +5324,7 @@ self: super: { "netwire-input" = dontDistribute super."netwire-input"; "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; "network-address" = dontDistribute super."network-address"; + "network-anonymous-tor" = doDistribute super."network-anonymous-tor_0_9_2"; "network-api-support" = dontDistribute super."network-api-support"; "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; @@ -5335,6 +5469,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5365,6 +5500,7 @@ self: super: { "opentheory-probability" = dontDistribute super."opentheory-probability"; "opentheory-stream" = dontDistribute super."opentheory-stream"; "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; "opn" = dontDistribute super."opn"; @@ -5407,6 +5543,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5418,6 +5555,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5440,6 +5578,7 @@ self: super: { "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"; @@ -5450,6 +5589,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5466,6 +5606,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5522,6 +5663,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2"; @@ -5546,6 +5688,8 @@ self: super: { "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5673,6 +5817,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -5763,6 +5908,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -5937,6 +6083,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6043,6 +6190,8 @@ self: super: { "renderable" = dontDistribute super."renderable"; "reord" = dontDistribute super."reord"; "reorderable" = dontDistribute super."reorderable"; + "repa" = doDistribute super."repa_3_4_0_1"; + "repa-algorithms" = doDistribute super."repa-algorithms_3_4_0_1"; "repa-array" = dontDistribute super."repa-array"; "repa-bytestring" = dontDistribute super."repa-bytestring"; "repa-convert" = dontDistribute super."repa-convert"; @@ -6050,6 +6199,7 @@ self: super: { "repa-examples" = dontDistribute super."repa-examples"; "repa-fftw" = dontDistribute super."repa-fftw"; "repa-flow" = dontDistribute super."repa-flow"; + "repa-io" = doDistribute super."repa-io_3_4_0_1"; "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; "repa-plugin" = dontDistribute super."repa-plugin"; "repa-scalar" = dontDistribute super."repa-scalar"; @@ -6073,6 +6223,7 @@ self: super: { "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_36_0_5"; @@ -6173,6 +6324,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6180,8 +6332,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6294,6 +6448,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6365,6 +6520,7 @@ self: super: { "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"; @@ -6445,6 +6601,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -6741,7 +6898,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -6755,6 +6914,7 @@ self: super: { "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"; @@ -6852,6 +7012,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -6861,6 +7022,7 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; @@ -6894,6 +7056,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7184,6 +7347,7 @@ self: super: { "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"; @@ -7206,8 +7370,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7387,6 +7553,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; @@ -7405,6 +7572,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7438,6 +7607,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_10"; @@ -7480,6 +7650,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -7740,6 +7911,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; @@ -7774,6 +7946,7 @@ self: super: { "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets" = doDistribute super."yesod-websockets_0_2_3"; "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 152b516cd33b..631e7476a625 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -157,8 +157,10 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; "CheatSheet" = dontDistribute super."CheatSheet"; @@ -350,6 +352,7 @@ self: super: { "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"; @@ -593,6 +596,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -618,6 +622,7 @@ self: super: { "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"; @@ -769,6 +774,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_3"; "Raincat" = dontDistribute super."Raincat"; @@ -838,6 +844,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -882,6 +889,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -941,6 +949,7 @@ self: super: { "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"; @@ -1076,6 +1085,7 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; @@ -1085,6 +1095,7 @@ self: super: { "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"; @@ -1140,6 +1151,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1176,6 +1188,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1244,6 +1257,7 @@ self: super: { "applicative-parsec" = dontDistribute super."applicative-parsec"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate" = doDistribute super."approximate_0_2_2_1"; "approximate-equality" = dontDistribute super."approximate-equality"; "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; @@ -1254,6 +1268,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1448,6 +1463,7 @@ self: super: { "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"; @@ -1459,6 +1475,7 @@ self: super: { "binary-store" = dontDistribute super."binary-store"; "binary-streams" = dontDistribute super."binary-streams"; "binary-strict" = dontDistribute super."binary-strict"; + "binary-tagged" = doDistribute super."binary-tagged_0_1_2_0"; "binary-typed" = dontDistribute super."binary-typed"; "binarydefer" = dontDistribute super."binarydefer"; "bind-marshal" = dontDistribute super."bind-marshal"; @@ -1702,6 +1719,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1798,6 +1816,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -1890,6 +1909,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_3_0_10"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -1957,9 +1977,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -1967,6 +1989,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_5"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2024,6 +2047,7 @@ self: super: { "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"; @@ -2035,6 +2059,7 @@ self: super: { "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"; @@ -2213,8 +2238,10 @@ self: super: { "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-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"; @@ -2490,6 +2517,7 @@ self: super: { "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"; @@ -2615,7 +2643,6 @@ self: super: { "estreps" = dontDistribute super."estreps"; "etcd" = dontDistribute super."etcd"; "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"; @@ -2637,6 +2664,7 @@ self: super: { "exception-mailer" = dontDistribute super."exception-mailer"; "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exhaustive" = doDistribute super."exhaustive_1_1_1"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2798,6 +2826,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl-incremental" = dontDistribute super."foldl-incremental"; @@ -2947,6 +2977,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -2995,6 +3026,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3078,11 +3111,101 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3269,6 +3392,7 @@ self: super: { "hake" = dontDistribute super."hake"; "hakismet" = dontDistribute super."hakismet"; "hako" = dontDistribute super."hako"; + "hakyll" = doDistribute super."hakyll_4_7_3_1"; "hakyll-R" = dontDistribute super."hakyll-R"; "hakyll-agda" = dontDistribute super."hakyll-agda"; "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; @@ -3381,6 +3505,7 @@ self: super: { "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"; @@ -3393,6 +3518,7 @@ self: super: { "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"; @@ -3649,10 +3775,12 @@ self: super: { "hledger-diff" = dontDistribute super."hledger-diff"; "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4033,6 +4161,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4071,6 +4201,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4478,6 +4609,7 @@ self: super: { "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-regex" = dontDistribute super."lens-regex"; "lens-sop" = dontDistribute super."lens-sop"; @@ -4723,6 +4855,7 @@ self: super: { "mancala" = dontDistribute super."mancala"; "mandrill" = doDistribute super."mandrill_0_3_0_0"; "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -4870,6 +5003,7 @@ self: super: { "monad-gen" = dontDistribute super."monad-gen"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-logger" = doDistribute super."monad-logger_0_3_14"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -4894,6 +5028,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5076,6 +5211,7 @@ self: super: { "netwire-input" = dontDistribute super."netwire-input"; "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; "network-address" = dontDistribute super."network-address"; + "network-anonymous-tor" = doDistribute super."network-anonymous-tor_0_9_2"; "network-api-support" = dontDistribute super."network-api-support"; "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; @@ -5217,6 +5353,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5247,6 +5384,7 @@ self: super: { "opentheory-probability" = dontDistribute super."opentheory-probability"; "opentheory-stream" = dontDistribute super."opentheory-stream"; "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; "opn" = dontDistribute super."opn"; @@ -5289,6 +5427,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5299,6 +5438,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "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"; @@ -5320,6 +5460,7 @@ self: super: { "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"; @@ -5330,6 +5471,7 @@ self: super: { "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"; @@ -5345,6 +5487,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5395,16 +5538,19 @@ self: super: { "permute" = dontDistribute super."permute"; "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; + "persistent" = doDistribute super."persistent_2_2_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; "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-template" = doDistribute super."persistent-template_2_1_3_7"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5422,6 +5568,8 @@ self: super: { "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5545,6 +5693,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -5629,6 +5778,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -5673,6 +5823,7 @@ self: super: { "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_4_1"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -5796,6 +5947,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -5901,6 +6053,8 @@ self: super: { "renderable" = dontDistribute super."renderable"; "reord" = dontDistribute super."reord"; "reorderable" = dontDistribute super."reorderable"; + "repa" = doDistribute super."repa_3_4_0_1"; + "repa-algorithms" = doDistribute super."repa-algorithms_3_4_0_1"; "repa-array" = dontDistribute super."repa-array"; "repa-bytestring" = dontDistribute super."repa-bytestring"; "repa-convert" = dontDistribute super."repa-convert"; @@ -5908,6 +6062,7 @@ self: super: { "repa-examples" = dontDistribute super."repa-examples"; "repa-fftw" = dontDistribute super."repa-fftw"; "repa-flow" = dontDistribute super."repa-flow"; + "repa-io" = doDistribute super."repa-io_3_4_0_1"; "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; "repa-plugin" = dontDistribute super."repa-plugin"; "repa-scalar" = dontDistribute super."repa-scalar"; @@ -5931,6 +6086,7 @@ self: super: { "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_36_0_6"; @@ -6030,6 +6186,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6037,8 +6194,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6148,6 +6307,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6204,6 +6364,7 @@ self: super: { "shake-minify" = dontDistribute super."shake-minify"; "shake-pack" = dontDistribute super."shake-pack"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_6"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; "shakespeare-js" = dontDistribute super."shakespeare-js"; @@ -6211,6 +6372,7 @@ self: super: { "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"; @@ -6289,6 +6451,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -6577,7 +6740,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -6590,6 +6755,7 @@ self: super: { "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"; @@ -6686,6 +6852,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -6695,6 +6862,7 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; @@ -6723,6 +6891,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -6956,6 +7125,7 @@ self: super: { "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; "ttrie" = dontDistribute super."ttrie"; + "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; "tup-functor" = dontDistribute super."tup-functor"; @@ -7006,6 +7176,7 @@ self: super: { "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"; @@ -7028,8 +7199,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7130,6 +7303,7 @@ self: super: { "ureader" = dontDistribute super."ureader"; "urembed" = dontDistribute super."urembed"; "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9"; "uri-conduit" = dontDistribute super."uri-conduit"; "uri-enumerator" = dontDistribute super."uri-enumerator"; "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; @@ -7206,6 +7380,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; @@ -7223,6 +7398,8 @@ self: super: { "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"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7254,6 +7431,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "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"; @@ -7292,6 +7470,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -7301,6 +7480,7 @@ self: super: { "warp" = doDistribute super."warp_3_1_3_1"; "warp-dynamic" = dontDistribute super."warp-dynamic"; "warp-static" = dontDistribute super."warp-static"; + "warp-tls" = doDistribute super."warp-tls_3_1_3"; "warp-tls-uid" = dontDistribute super."warp-tls-uid"; "watchdog" = dontDistribute super."watchdog"; "watcher" = dontDistribute super."watcher"; @@ -7330,6 +7510,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_6_3_1"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webidl" = dontDistribute super."webidl"; "webify" = dontDistribute super."webify"; @@ -7534,6 +7715,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; @@ -7565,6 +7747,7 @@ self: super: { "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets" = doDistribute super."yesod-websockets_0_2_3"; "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix new file mode 100644 index 000000000000..25ce8f6299b7 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -0,0 +1,7803 @@ +{ 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-3.11 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "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"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; + "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"; + "ClustalParser" = dontDistribute super."ClustalParser"; + "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"; + "DAV" = doDistribute super."DAV_1_0_7"; + "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_9_0"; + "Ebnf2ps" = dontDistribute super."Ebnf2ps"; + "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"; + "EntrezHTTP" = dontDistribute super."EntrezHTTP"; + "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"; + "FindBin" = dontDistribute super."FindBin"; + "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"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = dontDistribute super."Frames"; + "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" = dontDistribute super."GLFW-b"; + "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"; + "GLURaw" = dontDistribute super."GLURaw"; + "GLUT" = dontDistribute super."GLUT"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe" = dontDistribute super."GPipe"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-GLFW" = dontDistribute super."GPipe-GLFW"; + "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"; + "Genbank" = dontDistribute super."Genbank"; + "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"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "H" = dontDistribute super."H"; + "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" = dontDistribute super."HDBC"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql" = dontDistribute super."HDBC-postgresql"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDBC-sqlite3" = dontDistribute super."HDBC-sqlite3"; + "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"; + "HPDF" = dontDistribute super."HPDF"; + "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"; + "HaRe" = dontDistribute super."HaRe"; + "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"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet-SSL" = dontDistribute super."HaskellNet-SSL"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "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"; + "HsSyck" = dontDistribute super."HsSyck"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "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"; + "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"; + "IntervalMap" = dontDistribute super."IntervalMap"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; + "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; + "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"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "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"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "LibZip" = dontDistribute super."LibZip"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "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"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MFlow" = dontDistribute super."MFlow"; + "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" = dontDistribute super."MusicBrainz"; + "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"; + "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"; + "ObjectName" = dontDistribute super."ObjectName"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGL" = dontDistribute super."OpenGL"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw" = dontDistribute super."OpenGLRaw"; + "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"; + "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"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "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" = dontDistribute super."RNAlien"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "RSA" = doDistribute super."RSA_2_1_0_3"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "SegmentTree" = dontDistribute super."SegmentTree"; + "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"; + "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" = doDistribute super."Spock_0_8_1_0"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-digestive" = doDistribute super."Spock-digestive_0_1_0_1"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "Strafunski-StrategyLib" = dontDistribute super."Strafunski-StrategyLib"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; + "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"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "ViennaRNAParser" = dontDistribute super."ViennaRNAParser"; + "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-extras" = dontDistribute super."Win32-extras"; + "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"; + "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"; + "Xauth" = dontDistribute super."Xauth"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_12_4"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "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_8_0_2"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-casing" = dontDistribute super."aeson-casing"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; + "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"; + "agda-server" = dontDistribute super."agda-server"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "airship" = dontDistribute super."airship"; + "aivika" = dontDistribute super."aivika"; + "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"; + "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_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_0_3_6"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_0_3_6"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_0_3_6"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_0_3_6"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_0_3_6"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_0_3_6"; + "amazonka-codecommit" = dontDistribute super."amazonka-codecommit"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_6"; + "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_6"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_6"; + "amazonka-config" = doDistribute super."amazonka-config_0_3_6"; + "amazonka-core" = doDistribute super."amazonka-core_0_3_6"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; + "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-ds" = dontDistribute super."amazonka-ds"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; + "amazonka-dynamodb-streams" = dontDistribute super."amazonka-dynamodb-streams"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_0_3_6_1"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_0_3_6"; + "amazonka-efs" = dontDistribute super."amazonka-efs"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_0_3_6"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_0_3_6"; + "amazonka-elasticsearch" = dontDistribute super."amazonka-elasticsearch"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_0_3_6"; + "amazonka-elb" = doDistribute super."amazonka-elb_0_3_6"; + "amazonka-emr" = doDistribute super."amazonka-emr_0_3_6"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_0_3_6"; + "amazonka-iam" = doDistribute super."amazonka-iam_0_3_6"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; + "amazonka-inspector" = dontDistribute super."amazonka-inspector"; + "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; + "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; + "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_0_3_6"; + "amazonka-marketplace-analytics" = dontDistribute super."amazonka-marketplace-analytics"; + "amazonka-ml" = doDistribute super."amazonka-ml_0_3_6"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_0_3_6"; + "amazonka-rds" = doDistribute super."amazonka-rds_0_3_6"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_0_3_6"; + "amazonka-route53" = doDistribute super."amazonka-route53_0_3_6_1"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_0_3_6"; + "amazonka-s3" = doDistribute super."amazonka-s3_0_3_6"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_0_3_6"; + "amazonka-ses" = doDistribute super."amazonka-ses_0_3_6"; + "amazonka-sns" = doDistribute super."amazonka-sns_0_3_6"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_0_3_6"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_0_3_6"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_0_3_6"; + "amazonka-sts" = doDistribute super."amazonka-sts_0_3_6"; + "amazonka-support" = doDistribute super."amazonka-support_0_3_6"; + "amazonka-swf" = doDistribute super."amazonka-swf_0_3_6"; + "amazonka-test" = dontDistribute super."amazonka-test"; + "amazonka-waf" = dontDistribute super."amazonka-waf"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_0_3_6"; + "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"; + "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; + "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; + "ansi-pretty" = dontDistribute super."ansi-pretty"; + "ansigraph" = dontDistribute super."ansigraph"; + "antagonist" = dontDistribute super."antagonist"; + "antfarm" = dontDistribute super."antfarm"; + "anticiv" = dontDistribute super."anticiv"; + "antigate" = dontDistribute super."antigate"; + "antimirov" = dontDistribute super."antimirov"; + "antiquoter" = dontDistribute super."antiquoter"; + "antisplice" = dontDistribute super."antisplice"; + "antlrc" = dontDistribute super."antlrc"; + "anydbm" = dontDistribute super."anydbm"; + "aosd" = dontDistribute super."aosd"; + "ap-reflect" = dontDistribute super."ap-reflect"; + "apache-md5" = dontDistribute super."apache-md5"; + "apelsin" = dontDistribute super."apelsin"; + "api-builder" = dontDistribute super."api-builder"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-purescript" = dontDistribute super."apiary-purescript"; + "apis" = dontDistribute super."apis"; + "apotiki" = dontDistribute super."apotiki"; + "app-lens" = dontDistribute super."app-lens"; + "app-settings" = dontDistribute super."app-settings"; + "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"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; + "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"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-extras" = dontDistribute super."async-extras"; + "async-manager" = dontDistribute super."async-manager"; + "async-pool" = dontDistribute super."async-pool"; + "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions"; + "aterm" = dontDistribute super."aterm"; + "aterm-utils" = dontDistribute super."aterm-utils"; + "atl" = dontDistribute super."atl"; + "atlassian-connect-core" = dontDistribute super."atlassian-connect-core"; + "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor"; + "atmos" = dontDistribute super."atmos"; + "atmos-dimensional" = dontDistribute super."atmos-dimensional"; + "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = 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"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec" = doDistribute super."attoparsec_0_12_1_6"; + "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"; + "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" = dontDistribute super."avers"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "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"; + "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" = dontDistribute super."barrier"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = dontDistribute super."base-noprelude"; + "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"; + "bcrypt" = doDistribute super."bcrypt_0_0_6"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "benchpress" = dontDistribute super."benchpress"; + "bencoding" = dontDistribute super."bencoding"; + "berkeleydb" = dontDistribute super."berkeleydb"; + "berp" = dontDistribute super."berp"; + "bert" = dontDistribute super."bert"; + "besout" = dontDistribute super."besout"; + "bet" = dontDistribute super."bet"; + "betacode" = dontDistribute super."betacode"; + "between" = dontDistribute super."between"; + "bf-cata" = dontDistribute super."bf-cata"; + "bff" = dontDistribute super."bff"; + "bff-mono" = dontDistribute super."bff-mono"; + "bgmax" = dontDistribute super."bgmax"; + "bgzf" = dontDistribute super."bgzf"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "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"; + "bimap" = dontDistribute super."bimap"; + "bimap-server" = dontDistribute super."bimap-server"; + "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"; + "binary-typed" = dontDistribute super."binary-typed"; + "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-GLFW" = dontDistribute super."bindings-GLFW"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-libzip" = dontDistribute super."bindings-libzip"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-posix" = dontDistribute super."bindings-posix"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bio" = dontDistribute super."bio"; + "biophd" = dontDistribute super."biophd"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blank-canvas" = dontDistribute super."blank-canvas"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blaze" = dontDistribute super."blaze"; + "blaze-bootstrap" = dontDistribute super."blaze-bootstrap"; + "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" = doDistribute super."bloodhound_0_7_0_1"; + "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"; + "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"; + "boomerang" = dontDistribute super."boomerang"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "both" = dontDistribute super."both"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bpann" = dontDistribute super."bpann"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brick" = dontDistribute super."brick"; + "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-lens" = dontDistribute super."bson-lens"; + "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"; + "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"; + "bustle" = dontDistribute super."bustle"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "byteset" = dontDistribute super."byteset"; + "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"; + "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_25_2"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-debian" = doDistribute super."cabal-debian_4_30_2"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-helper" = dontDistribute super."cabal-helper"; + "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-sort" = dontDistribute super."cabal-sort"; + "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" = dontDistribute super."cacophony"; + "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"; + "calculator" = dontDistribute super."calculator"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-log" = dontDistribute super."canteven-log"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "carray" = dontDistribute super."carray"; + "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"; + "cased" = dontDistribute super."cased"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "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"; + "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"; + "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-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"; + "charsetdetect-ae" = dontDistribute super."charsetdetect-ae"; + "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" = dontDistribute super."cheapskate"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "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"; + "circ" = dontDistribute super."circ"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clanki" = dontDistribute super."clanki"; + "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_5_15"; + "clash-lib" = doDistribute super."clash-lib_0_5_13"; + "clash-prelude" = doDistribute super."clash-prelude_0_9_3"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "clash-systemverilog" = doDistribute super."clash-systemverilog_0_5_10"; + "clash-verilog" = doDistribute super."clash-verilog_0_5_10"; + "clash-vhdl" = doDistribute super."clash-vhdl_0_5_12"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks" = dontDistribute super."clckwrks"; + "clckwrks-cli" = dontDistribute super."clckwrks-cli"; + "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-plugin-media" = dontDistribute super."clckwrks-plugin-media"; + "clckwrks-plugin-page" = dontDistribute super."clckwrks-plugin-page"; + "clckwrks-theme-bootstrap" = dontDistribute super."clckwrks-theme-bootstrap"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_3_0_10"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "commutative" = dontDistribute super."commutative"; + "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"; + "compactmap" = dontDistribute super."compactmap"; + "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"; + "composition-extra" = doDistribute super."composition-extra_1_1_0"; + "composition-tree" = dontDistribute super."composition-tree"; + "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-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; + "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"; + "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-connection" = dontDistribute super."conduit-connection"; + "conduit-iconv" = dontDistribute super."conduit-iconv"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-parse" = dontDistribute super."conduit-parse"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conf" = dontDistribute super."conf"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consumers" = dontDistribute super."consumers"; + "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"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "crc16" = dontDistribute super."crc16"; + "crc16-table" = dontDistribute super."crc16-table"; + "creatur" = dontDistribute super."creatur"; + "crf-chain1" = dontDistribute super."crf-chain1"; + "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained"; + "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; + "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; + "critbit" = dontDistribute super."critbit"; + "criterion-plus" = dontDistribute super."criterion-plus"; + "criterion-to-html" = dontDistribute super."criterion-to-html"; + "crockford" = dontDistribute super."crockford"; + "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_0"; + "cron-compat" = dontDistribute super."cron-compat"; + "cruncher-types" = dontDistribute super."cruncher-types"; + "crunghc" = dontDistribute super."crunghc"; + "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks"; + "crypto-classical" = dontDistribute super."crypto-classical"; + "crypto-conduit" = dontDistribute super."crypto-conduit"; + "crypto-enigma" = dontDistribute super."crypto-enigma"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptonite" = doDistribute super."cryptonite_0_6"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "css-syntax" = dontDistribute super."css-syntax"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-to-qif" = dontDistribute super."csv-to-qif"; + "ctemplate" = dontDistribute super."ctemplate"; + "ctkl" = dontDistribute super."ctkl"; + "ctpl" = dontDistribute super."ctpl"; + "ctrie" = dontDistribute super."ctrie"; + "cube" = dontDistribute super."cube"; + "cubical" = dontDistribute super."cubical"; + "cubicbezier" = dontDistribute super."cubicbezier"; + "cubicspline" = doDistribute super."cubicspline_0_1_1"; + "cublas" = dontDistribute super."cublas"; + "cuboid" = dontDistribute super."cuboid"; + "cuda" = dontDistribute super."cuda"; + "cudd" = dontDistribute super."cudd"; + "cufft" = dontDistribute super."cufft"; + "curl-aeson" = dontDistribute super."curl-aeson"; + "curlhs" = dontDistribute super."curlhs"; + "currency" = dontDistribute super."currency"; + "current-locale" = dontDistribute super."current-locale"; + "curry-base" = dontDistribute super."curry-base"; + "curry-frontend" = dontDistribute super."curry-frontend"; + "cursedcsv" = dontDistribute super."cursedcsv"; + "curve25519" = dontDistribute super."curve25519"; + "curves" = dontDistribute super."curves"; + "custom-prelude" = dontDistribute super."custom-prelude"; + "cv-combinators" = dontDistribute super."cv-combinators"; + "cyclotomic" = dontDistribute super."cyclotomic"; + "cypher" = dontDistribute super."cypher"; + "d-bus" = dontDistribute super."d-bus"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs" = dontDistribute super."darcs"; + "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-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-cycle" = dontDistribute super."data-cycle"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-endian" = dontDistribute super."data-endian"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-kiln" = dontDistribute super."data-kiln"; + "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-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"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = dontDistribute super."dbmigrations"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian" = doDistribute super."debian_3_87_2"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "decepticons" = dontDistribute super."decepticons"; + "declarative" = dontDistribute super."declarative"; + "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" = dontDistribute super."dejafu"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "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-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-canvas" = dontDistribute super."diagrams-canvas"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-gtk" = dontDistribute super."diagrams-gtk"; + "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-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "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-bootstrap" = dontDistribute super."digestive-bootstrap"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-blaze" = dontDistribute super."digestive-functors-blaze"; + "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-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"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-process" = dontDistribute super."distributed-process"; + "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-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "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"; + "distributed-static" = dontDistribute super."distributed-static"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "diversity" = dontDistribute super."diversity"; + "dixi" = dontDistribute super."dixi"; + "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"; + "docopt" = dontDistribute super."docopt"; + "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-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = dontDistribute super."dotenv"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "drawille" = dontDistribute super."drawille"; + "drifter" = dontDistribute super."drifter"; + "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "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"; + "dynamic-state" = dontDistribute super."dynamic-state"; + "dynobud" = dontDistribute super."dynobud"; + "dyre" = dontDistribute super."dyre"; + "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"; + "edit-distance-vector" = dontDistribute super."edit-distance-vector"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "either-unwrap" = dontDistribute super."either-unwrap"; + "eithers" = dontDistribute super."eithers"; + "ekg" = dontDistribute super."ekg"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-json" = dontDistribute super."ekg-json"; + "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"; + "elm-bridge" = dontDistribute super."elm-bridge"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engine-io-wai" = dontDistribute super."engine-io-wai"; + "engine-io-yesod" = dontDistribute super."engine-io-yesod"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envparse" = dontDistribute super."envparse"; + "envy" = dontDistribute super."envy"; + "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-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"; + "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"; + "etcd" = dontDistribute super."etcd"; + "eternal" = dontDistribute super."eternal"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventstore" = dontDistribute super."eventstore"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exact-pi" = dontDistribute super."exact-pi"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "exists" = dontDistribute super."exists"; + "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-exception" = dontDistribute super."explicit-exception"; + "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"; + "extensible-effects" = dontDistribute super."extensible-effects"; + "external-sort" = dontDistribute super."external-sort"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "farmhash" = dontDistribute super."farmhash"; + "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"; + "fasta" = dontDistribute super."fasta"; + "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"; + "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"; + "fft" = dontDistribute super."fft"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-arbitrary" = dontDistribute super."fgl-arbitrary"; + "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"; + "filecache" = dontDistribute super."filecache"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "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"; + "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-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-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "forecast-io" = dontDistribute super."forecast-io"; + "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"; + "forth-hll" = dontDistribute super."forth-hll"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "freekick2" = dontDistribute super."freekick2"; + "freenect" = doDistribute super."freenect_1_2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friendly-time" = dontDistribute super."friendly-time"; + "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"; + "funcmp" = dontDistribute super."funcmp"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "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"; + "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-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-trie" = dontDistribute super."generic-trie"; + "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; + "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"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-generics" = doDistribute super."getopt-generics_0_10_0_1"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = dontDistribute super."ghc-exactprint"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = dontDistribute super."ghc-heap-view"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-mod" = dontDistribute super."ghc-mod"; + "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-typelits-extra" = dontDistribute super."ghc-typelits-extra"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "gipeda" = doDistribute super."gipeda_0_1_2_1"; + "gist" = dontDistribute super."gist"; + "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-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"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github" = dontDistribute super."github"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-types" = dontDistribute super."github-types"; + "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = dontDistribute super."github-webhook-handler"; + "github-webhook-handler-snap" = dontDistribute super."github-webhook-handler-snap"; + "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"; + "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"; + "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"; + "gnuidn" = doDistribute super."gnuidn_0_2_1"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "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-cloud" = dontDistribute super."google-cloud"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "google-translate" = dontDistribute super."google-translate"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "graphviz" = dontDistribute super."graphviz"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "grid" = dontDistribute super."grid"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groom" = dontDistribute super."groom"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "grouped-list" = dontDistribute super."grouped-list"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackmanager" = dontDistribute super."hackmanager"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "haddocset" = dontDistribute super."haddocset"; + "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"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-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"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "hapistrano" = dontDistribute super."hapistrano"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-authenticate" = dontDistribute super."happstack-authenticate"; + "happstack-clientsession" = dontDistribute super."happstack-clientsession"; + "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-hsp" = dontDistribute super."happstack-hsp"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-jmacro" = dontDistribute super."happstack-jmacro"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls" = dontDistribute super."happstack-server-tls"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harp" = dontDistribute super."harp"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashable-time" = dontDistribute super."hashable-time"; + "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_1"; + "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-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "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-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"; + "haskintex" = doDistribute super."haskintex_0_5_1_0"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "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-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hasty-hamiltonian" = dontDistribute super."hasty-hamiltonian"; + "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" = dontDistribute super."haxl"; + "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"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "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"; + "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"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "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"; + "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"; + "hfoil" = dontDistribute super."hfoil"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgettext" = dontDistribute super."hgettext"; + "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"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hidapi" = dontDistribute super."hidapi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; + "hinduce-classifier" = dontDistribute super."hinduce-classifier"; + "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; + "hinduce-examples" = dontDistribute super."hinduce-examples"; + "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hipbot" = dontDistribute super."hipbot"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "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-ui" = dontDistribute super."hledger-ui"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_21"; + "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" = doDistribute super."hmatrix_0_16_1_5"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3"; + "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_4_1_1"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "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" = dontDistribute super."hopenpgp-tools"; + "hopenssl" = dontDistribute super."hopenssl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpack" = dontDistribute super."hpack"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsexif" = dontDistribute super."hsexif"; + "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"; + "hsignal" = doDistribute super."hsignal_0_2_7_1"; + "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" = dontDistribute super."hsndfile"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsndfile-vector" = dontDistribute super."hsndfile-vector"; + "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" = dontDistribute super."hsp"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec" = doDistribute super."hspec_2_1_10"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-core" = doDistribute super."hspec-core_2_1_10"; + "hspec-discover" = doDistribute super."hspec-discover_2_1_10"; + "hspec-expectations" = doDistribute super."hspec-expectations_0_7_1"; + "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-expectations-pretty-diff" = dontDistribute super."hspec-expectations-pretty-diff"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-meta" = doDistribute super."hspec-meta_2_1_7"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-smallcheck" = doDistribute super."hspec-smallcheck_0_3_0"; + "hspec-snap" = doDistribute super."hspec-snap_0_3_3_0"; + "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-webdriver" = doDistribute super."hspec-webdriver_1_0_3"; + "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"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hstatistics" = doDistribute super."hstatistics_0_2_5_2"; + "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-jmacro" = dontDistribute super."hsx-jmacro"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = dontDistribute super."hsx2hs"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-accept" = dontDistribute super."http-accept"; + "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-openssl" = dontDistribute super."http-client-openssl"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kit" = dontDistribute super."http-kit"; + "http-link-header" = dontDistribute super."http-link-header"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_0_4"; + "httpd-shed" = dontDistribute super."httpd-shed"; + "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"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "human-readable-duration" = dontDistribute super."human-readable-duration"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hvect" = doDistribute super."hvect_0_2_0_0"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; + "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"; + "hybrid-vectors" = dontDistribute super."hybrid-vectors"; + "hydra-hs" = dontDistribute super."hydra-hs"; + "hydra-print" = dontDistribute super."hydra-print"; + "hydrogen" = dontDistribute super."hydrogen"; + "hydrogen-cli" = dontDistribute super."hydrogen-cli"; + "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args"; + "hydrogen-data" = dontDistribute super."hydrogen-data"; + "hydrogen-multimap" = dontDistribute super."hydrogen-multimap"; + "hydrogen-parsing" = dontDistribute super."hydrogen-parsing"; + "hydrogen-prelude" = dontDistribute super."hydrogen-prelude"; + "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec"; + "hydrogen-syntax" = dontDistribute super."hydrogen-syntax"; + "hydrogen-util" = dontDistribute super."hydrogen-util"; + "hydrogen-version" = dontDistribute super."hydrogen-version"; + "hyena" = dontDistribute super."hyena"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzk" = dontDistribute super."hzk"; + "hzulip" = dontDistribute super."hzulip"; + "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"; + "iconv" = dontDistribute super."iconv"; + "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" = dontDistribute super."ig"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell" = doDistribute super."ihaskell_0_6_5_0"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "implicit" = dontDistribute super."implicit"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "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"; + "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" = dontDistribute super."inline-c"; + "inline-c-cpp" = dontDistribute super."inline-c-cpp"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-r" = dontDistribute super."inline-r"; + "inquire" = dontDistribute super."inquire"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "invertible-syntax" = dontDistribute super."invertible-syntax"; + "io-capture" = dontDistribute super."io-capture"; + "io-reactive" = dontDistribute super."io-reactive"; + "io-region" = dontDistribute super."io-region"; + "io-storage" = dontDistribute super."io-storage"; + "io-streams-http" = dontDistribute super."io-streams-http"; + "io-throttle" = dontDistribute super."io-throttle"; + "ioctl" = dontDistribute super."ioctl"; + "ioref-stable" = dontDistribute super."ioref-stable"; + "iothread" = dontDistribute super."iothread"; + "iotransaction" = dontDistribute super."iotransaction"; + "ip-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iproute" = doDistribute super."iproute_1_5_0"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "ipython-kernel" = doDistribute super."ipython-kernel_0_6_1_3"; + "irc" = dontDistribute super."irc"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = dontDistribute super."irc-client"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-conduit" = dontDistribute super."irc-conduit"; + "irc-core" = dontDistribute super."irc-core"; + "irc-ctcp" = dontDistribute super."irc-ctcp"; + "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"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "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"; + "iso8601-time" = dontDistribute super."iso8601-time"; + "isohunt" = dontDistribute super."isohunt"; + "itanium-abi" = dontDistribute super."itanium-abi"; + "iter-stats" = dontDistribute super."iter-stats"; + "iterIO" = dontDistribute super."iterIO"; + "iteratee" = dontDistribute super."iteratee"; + "iteratee-compress" = dontDistribute super."iteratee-compress"; + "iteratee-mtl" = dontDistribute super."iteratee-mtl"; + "iteratee-parsec" = dontDistribute super."iteratee-parsec"; + "iteratee-stm" = dontDistribute super."iteratee-stm"; + "iterio-server" = dontDistribute super."iterio-server"; + "ivar-simple" = dontDistribute super."ivar-simple"; + "ivor" = dontDistribute super."ivor"; + "ivory" = dontDistribute super."ivory"; + "ivory-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-examples" = dontDistribute super."ivory-examples"; + "ivory-hw" = dontDistribute super."ivory-hw"; + "ivory-opts" = dontDistribute super."ivory-opts"; + "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ix-shapable" = dontDistribute super."ix-shapable"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = dontDistribute super."ixset"; + "ixset-typed" = dontDistribute super."ixset-typed"; + "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-reflect" = dontDistribute super."java-reflect"; + "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"; + "jose-jwt" = doDistribute super."jose-jwt_0_6_2"; + "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-b" = dontDistribute super."json-b"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kansas-comet" = dontDistribute super."kansas-comet"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katt" = dontDistribute super."katt"; + "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-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "kraken" = dontDistribute super."kraken"; + "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-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "lambdiff" = dontDistribute super."lambdiff"; + "lame-tester" = dontDistribute super."lame-tester"; + "language-asn1" = dontDistribute super."language-asn1"; + "language-bash" = dontDistribute super."language-bash"; + "language-boogie" = dontDistribute super."language-boogie"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-lua2" = dontDistribute super."language-lua2"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = dontDistribute super."language-nix"; + "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" = dontDistribute super."language-thrift"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "lattices" = doDistribute super."lattices_1_3"; + "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"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-regex" = dontDistribute super."lens-regex"; + "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"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lentil" = dontDistribute super."lentil"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell" = dontDistribute super."leveldb-haskell"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "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"; + "libinfluxdb" = dontDistribute super."libinfluxdb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libsystemd-journal" = dontDistribute super."libsystemd-journal"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "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"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "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"; + "load-env" = dontDistribute super."load-env"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "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-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop" = doDistribute super."loop_0_2_0"; + "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"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luka" = dontDistribute super."luka"; + "luminance" = dontDistribute super."luminance"; + "luminance-samples" = dontDistribute super."luminance-samples"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_3_0_0"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown-unlit" = dontDistribute super."markdown-unlit"; + "markdown2svg" = dontDistribute super."markdown2svg"; + "marked-pretty" = dontDistribute super."marked-pretty"; + "markov" = dontDistribute super."markov"; + "markov-chain" = dontDistribute super."markov-chain"; + "markov-processes" = dontDistribute super."markov-processes"; + "markup-preview" = dontDistribute super."markup-preview"; + "marmalade-upload" = dontDistribute super."marmalade-upload"; + "marquise" = dontDistribute super."marquise"; + "marxup" = dontDistribute super."marxup"; + "masakazu-bot" = dontDistribute super."masakazu-bot"; + "mastermind" = dontDistribute super."mastermind"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcmc-types" = dontDistribute super."mcmc-types"; + "mcpi" = dontDistribute super."mcpi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = dontDistribute super."megaparsec"; + "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_7"; + "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-parser" = dontDistribute super."microformats2-parser"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens" = doDistribute super."microlens_0_2_0_0"; + "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_1_0_1"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; + "microlens-platform" = dontDistribute super."microlens-platform"; + "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mighty-metropolis" = dontDistribute super."mighty-metropolis"; + "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"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "moan" = dontDistribute super."moan"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "moesocks" = dontDistribute super."moesocks"; + "mohws" = dontDistribute super."mohws"; + "mole" = dontDistribute super."mole"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-logger" = doDistribute super."monad-logger_0_3_14"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-time" = dontDistribute super."monad-time"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; + "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" = dontDistribute super."monadloc"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "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" = dontDistribute super."morte"; + "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"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "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"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate" = dontDistribute super."multiplate"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache" = dontDistribute super."mustache"; + "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" = dontDistribute super."mwc-probability"; + "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-check" = dontDistribute super."nagios-check"; + "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-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"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "nationstates" = doDistribute super."nationstates_0_2_0_3"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-sort" = dontDistribute super."natural-sort"; + "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" = dontDistribute super."nettle"; + "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-anonymous-tor" = doDistribute super."network-anonymous-tor_0_9_2"; + "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-house" = dontDistribute super."network-house"; + "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-composed" = dontDistribute super."network-transport-composed"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = dontDistribute super."network-transport-tcp"; + "network-transport-tests" = dontDistribute super."network-transport-tests"; + "network-transport-zeromq" = dontDistribute super."network-transport-zeromq"; + "network-uri-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"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicify-lib" = dontDistribute super."nicify-lib"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nix-paths" = dontDistribute super."nix-paths"; + "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-role-annots" = dontDistribute super."no-role-annots"; + "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"; + "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"; + "number" = dontDistribute super."number"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-extras" = doDistribute super."numeric-extras_0_0_3"; + "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-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype-dk" = dontDistribute super."numtype-dk"; + "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"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "off-simple" = dontDistribute super."off-simple"; + "ofx" = dontDistribute super."ofx"; + "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"; + "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "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"; + "opengles" = dontDistribute super."opengles"; + "openid" = dontDistribute super."openid"; + "openpgp" = dontDistribute super."openpgp"; + "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; + "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; + "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "openssh-github-keys" = dontDistribute super."openssh-github-keys"; + "openssl-createkey" = dontDistribute super."openssl-createkey"; + "opentheory" = dontDistribute super."opentheory"; + "opentheory-bits" = dontDistribute super."opentheory-bits"; + "opentheory-byte" = dontDistribute super."opentheory-byte"; + "opentheory-char" = dontDistribute super."opentheory-char"; + "opentheory-divides" = dontDistribute super."opentheory-divides"; + "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci"; + "opentheory-parser" = dontDistribute super."opentheory-parser"; + "opentheory-prime" = dontDistribute super."opentheory-prime"; + "opentheory-primitive" = dontDistribute super."opentheory-primitive"; + "opentheory-probability" = dontDistribute super."opentheory-probability"; + "opentheory-stream" = dontDistribute super."opentheory-stream"; + "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; + "opml" = dontDistribute super."opml"; + "opml-conduit" = dontDistribute super."opml-conduit"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "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-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-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"; + "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"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; + "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_15_1_1"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_7_4"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parseerror-eq" = dontDistribute super."parseerror-eq"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partial" = dontDistribute super."partial"; + "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; + "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"; + "patches-vector" = dontDistribute super."patches-vector"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "pathwalk" = dontDistribute super."pathwalk"; + "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" = dontDistribute super."pcap"; + "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-heavy" = doDistribute super."pcre-heavy_0_2_5"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = dontDistribute super."pcre-utils"; + "pdf-toolbox-content" = dontDistribute super."pdf-toolbox-content"; + "pdf-toolbox-core" = dontDistribute super."pdf-toolbox-core"; + "pdf-toolbox-document" = dontDistribute super."pdf-toolbox-document"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgp-wordlist" = dontDistribute super."pgp-wordlist"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "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"; + "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-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-csv" = dontDistribute super."pipes-csv"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = dontDistribute super."pipes-extras"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-mongodb" = dontDistribute super."pipes-mongodb"; + "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-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"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plivo" = dontDistribute super."plivo"; + "plot" = doDistribute super."plot_0_2_3_4"; + "plot-gtk" = doDistribute super."plot-gtk_0_2_0_2"; + "plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; + "plot-gtk3" = doDistribute super."plot-gtk3_0_1_0_1"; + "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"; + "pointedlist" = dontDistribute super."pointedlist"; + "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"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "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"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-orm" = dontDistribute super."postgresql-orm"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-schema" = dontDistribute super."postgresql-schema"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "pred-trie" = doDistribute super."pred-trie_0_2_0"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-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"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "prompt" = dontDistribute super."prompt"; + "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" = dontDistribute super."protobuf"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = dontDistribute super."psc-ide"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = dontDistribute super."publicsuffix"; + "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-cdb" = dontDistribute super."pure-cdb"; + "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_4_1"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pusher-http-haskell" = dontDistribute super."pusher-http-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pwstore-purehaskell" = dontDistribute super."pwstore-purehaskell"; + "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"; + "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"; + "questioner" = dontDistribute super."questioner"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "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-text" = dontDistribute super."quickcheck-text"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-http" = dontDistribute super."quiver-http"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-set-list" = dontDistribute super."range-set-list"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rascal" = dontDistribute super."rascal"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "reaction-logic" = dontDistribute super."reaction-logic"; + "reactive" = dontDistribute super."reactive"; + "reactive-bacon" = dontDistribute super."reactive-bacon"; + "reactive-balsa" = dontDistribute super."reactive-balsa"; + "reactive-banana" = dontDistribute super."reactive-banana"; + "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl"; + "reactive-banana-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"; + "reactor" = dontDistribute super."reactor"; + "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; + "readable" = dontDistribute super."readable"; + "readline" = dontDistribute super."readline"; + "readline-statevar" = dontDistribute super."readline-statevar"; + "readpyc" = dontDistribute super."readpyc"; + "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; + "reasonable-lens" = dontDistribute super."reasonable-lens"; + "reasonable-operational" = dontDistribute super."reasonable-operational"; + "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"; + "recursion-schemes" = dontDistribute super."recursion-schemes"; + "recursive-line-count" = dontDistribute super."recursive-line-count"; + "redHandlers" = dontDistribute super."redHandlers"; + "reddit" = dontDistribute super."reddit"; + "redis" = dontDistribute super."redis"; + "redis-hs" = dontDistribute super."redis-hs"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reducers" = doDistribute super."reducers_3_10_3_2"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform" = dontDistribute super."reform"; + "reform-blaze" = dontDistribute super."reform-blaze"; + "reform-hamlet" = dontDistribute super."reform-hamlet"; + "reform-happstack" = dontDistribute super."reform-happstack"; + "reform-hsp" = dontDistribute super."reform-hsp"; + "regex-applicative-text" = dontDistribute super."regex-applicative-text"; + "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-text" = dontDistribute super."regex-tdfa-text"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-xmlschema" = dontDistribute super."regex-xmlschema"; + "regexchar" = dontDistribute super."regexchar"; + "regexdot" = dontDistribute super."regexdot"; + "regexp-tries" = dontDistribute super."regexp-tries"; + "regexpr" = dontDistribute super."regexpr"; + "regexpr-symbolic" = dontDistribute super."regexpr-symbolic"; + "regexqq" = dontDistribute super."regexqq"; + "regional-pointers" = dontDistribute super."regional-pointers"; + "regions" = dontDistribute super."regions"; + "regions-monadsfd" = dontDistribute super."regions-monadsfd"; + "regions-monadstf" = dontDistribute super."regions-monadstf"; + "regions-mtl" = dontDistribute super."regions-mtl"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "reinterpret-cast" = dontDistribute super."reinterpret-cast"; + "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"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa" = doDistribute super."repa_3_4_0_1"; + "repa-algorithms" = doDistribute super."repa-algorithms_3_4_0_1"; + "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-io" = doDistribute super."repa-io_3_4_0_1"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resolve-trivial-conflicts" = dontDistribute super."resolve-trivial-conflicts"; + "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_36_0_6"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; + "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; + "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = dontDistribute super."rethinkdb"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = dontDistribute super."riak"; + "riak-protobuf" = dontDistribute super."riak-protobuf"; + "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"; + "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-trees" = dontDistribute super."rose-trees"; + "rosezipper" = dontDistribute super."rosezipper"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss2irc" = dontDistribute super."rss2irc"; + "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"; + "s3-signer" = dontDistribute super."s3-signer"; + "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"; + "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"; + "sandman" = dontDistribute super."sandman"; + "sarasvati" = dontDistribute super."sarasvati"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "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-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-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrypt" = dontDistribute super."scrypt"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2" = doDistribute super."sdl2_1_3_1"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "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_6_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"; + "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"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-blaze" = dontDistribute super."servant-blaze"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servius" = dontDistribute super."servius"; + "ses-html" = dontDistribute super."ses-html"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setops" = dontDistribute super."setops"; + "sets" = dontDistribute super."sets"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "shivers-cfg" = dontDistribute super."shivers-cfg"; + "shoap" = dontDistribute super."shoap"; + "shortcircuit" = dontDistribute super."shortcircuit"; + "shorten-strings" = dontDistribute super."shorten-strings"; + "should-not-typecheck" = dontDistribute super."should-not-typecheck"; + "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"; + "signal" = dontDistribute super."signal"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "simple" = dontDistribute super."simple"; + "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-postgresql-orm" = dontDistribute super."simple-postgresql-orm"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-session" = dontDistribute super."simple-session"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-smt" = dontDistribute super."simple-smt"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-templates" = dontDistribute super."simple-templates"; + "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"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; + "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"; + "skeletons" = dontDistribute super."skeletons"; + "skell" = dontDistribute super."skell"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcaps" = dontDistribute super."smallcaps"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smsaero" = dontDistribute super."smsaero"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-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-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "soap" = dontDistribute super."soap"; + "soap-openssl" = dontDistribute super."soap-openssl"; + "soap-tls" = dontDistribute super."soap-tls"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket" = dontDistribute super."socket"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "soegtk" = dontDistribute super."soegtk"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorted-list" = dontDistribute super."sorted-list"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "speedy-slice" = dontDistribute super."speedy-slice"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack-prism" = dontDistribute super."stack-prism"; + "stackage-curator" = dontDistribute super."stackage-curator"; + "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-plus" = dontDistribute super."state-plus"; + "state-record" = dontDistribute super."state-record"; + "stateWriter" = dontDistribute super."stateWriter"; + "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-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming" = dontDistribute super."streaming"; + "streaming-bytestring" = dontDistribute super."streaming-bytestring"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streamproc" = dontDistribute super."streamproc"; + "strict-base-types" = dontDistribute super."strict-base-types"; + "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-qq" = dontDistribute super."string-qq"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; + "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "suspend" = dontDistribute super."suspend"; + "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"; + "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" = dontDistribute super."syb-with-class"; + "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"; + "sync" = dontDistribute super."sync"; + "sync-mht" = dontDistribute super."sync-mht"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "syz" = dontDistribute super."syz"; + "t-regex" = dontDistribute super."t-regex"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "table-tennis" = dontDistribute super."table-tennis"; + "tableaux" = dontDistribute super."tableaux"; + "tables" = dontDistribute super."tables"; + "tablestorage" = dontDistribute super."tablestorage"; + "tabloid" = dontDistribute super."tabloid"; + "taffybar" = dontDistribute super."taffybar"; + "tag-bits" = dontDistribute super."tag-bits"; + "tag-stream" = dontDistribute super."tag-stream"; + "tagchup" = dontDistribute super."tagchup"; + "tagged-exception-core" = dontDistribute super."tagged-exception-core"; + "tagged-list" = dontDistribute super."tagged-list"; + "tagged-th" = dontDistribute super."tagged-th"; + "tagged-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "taskpool" = dontDistribute super."taskpool"; + "tasty" = doDistribute super."tasty_0_10_1_2"; + "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; + "tasty-html" = dontDistribute super."tasty-html"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tasty-tap" = dontDistribute super."tasty-tap"; + "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"; + "tellbot" = dontDistribute super."tellbot"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_1"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-smallcheck" = dontDistribute super."test-framework-smallcheck"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-framework-th-prime" = dontDistribute super."test-framework-th-prime"; + "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"; + "test-simple" = dontDistribute super."test-simple"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texrunner" = dontDistribute super."texrunner"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show" = doDistribute super."text-show_2"; + "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" = dontDistribute super."text-zipper"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "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-context" = dontDistribute super."th-context"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "these" = dontDistribute super."these"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-extras" = dontDistribute super."time-extras"; + "time-exts" = dontDistribute super."time-exts"; + "time-http" = dontDistribute super."time-http"; + "time-interval" = dontDistribute super."time-interval"; + "time-io-access" = dontDistribute super."time-io-access"; + "time-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-units" = dontDistribute super."time-units"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "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"; + "tinytemplate" = dontDistribute super."tinytemplate"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls" = doDistribute super."tls_1_3_2"; + "tls-debug" = doDistribute super."tls-debug_0_4_0"; + "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-map" = dontDistribute super."total-map"; + "total-maps" = dontDistribute super."total-maps"; + "touched" = dontDistribute super."touched"; + "toysolver" = dontDistribute super."toysolver"; + "tpdb" = dontDistribute super."tpdb"; + "trace" = dontDistribute super."trace"; + "trace-call" = dontDistribute super."trace-call"; + "trace-function-call" = dontDistribute super."trace-function-call"; + "traced" = dontDistribute super."traced"; + "tracer" = dontDistribute super."tracer"; + "tracker" = dontDistribute super."tracker"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "tries" = dontDistribute super."tries"; + "trimpolya" = dontDistribute super."trimpolya"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "true-name" = dontDistribute super."true-name"; + "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"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "ttrie" = dontDistribute super."ttrie"; + "tttool" = doDistribute super."tttool_1_4_0_5"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tuple-th" = dontDistribute super."tuple-th"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "tweak" = dontDistribute super."tweak"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = dontDistribute super."twitter-conduit"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-types" = dontDistribute super."twitter-types"; + "twitter-types-lens" = dontDistribute super."twitter-types-lens"; + "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-aligned" = dontDistribute super."type-aligned"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-list" = doDistribute super."type-list_0_2_0_0"; + "type-natural" = dontDistribute super."type-natural"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = dontDistribute super."tz"; + "tzdata" = dontDistribute super."tzdata"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "uberlast" = dontDistribute super."uberlast"; + "uconv" = dontDistribute super."uconv"; + "udbus" = dontDistribute super."udbus"; + "udbus-model" = dontDistribute super."udbus-model"; + "udcode" = dontDistribute super."udcode"; + "udev" = dontDistribute super."udev"; + "uglymemo" = dontDistribute super."uglymemo"; + "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"; + "unexceptionalio" = dontDistribute super."unexceptionalio"; + "unfoldable" = dontDistribute super."unfoldable"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "unification-fd" = dontDistribute super."unification-fd"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe" = dontDistribute super."universe"; + "universe-base" = dontDistribute super."universe-base"; + "universe-instances-base" = dontDistribute super."universe-instances-base"; + "universe-instances-extended" = dontDistribute super."universe-instances-extended"; + "universe-instances-trans" = dontDistribute super."universe-instances-trans"; + "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; + "universe-th" = dontDistribute super."universe-th"; + "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "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"; + "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"; + "userid" = dontDistribute super."userid"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "utility-ht" = dontDistribute super."utility-ht"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-orphans" = dontDistribute super."uuid-orphans"; + "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"; + "validate-input" = doDistribute super."validate-input_0_2_0_0"; + "validated-literals" = dontDistribute super."validated-literals"; + "validation" = dontDistribute super."validation"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; + "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-fftw" = dontDistribute super."vector-fftw"; + "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-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "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"; + "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" = dontDistribute super."vinyl"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "virthualenv" = dontDistribute super."virthualenv"; + "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"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty" = dontDistribute super."vty"; + "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"; + "waddle" = dontDistribute super."waddle"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-metrics" = dontDistribute super."wai-middleware-metrics"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static" = doDistribute super."wai-middleware-static_0_7_0_1"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-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-routes" = doDistribute super."wai-routes_0_7_3"; + "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"; + "wai-transformers" = dontDistribute super."wai-transformers"; + "wai-util" = dontDistribute super."wai-util"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_1_3_1"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls" = doDistribute super."warp-tls_3_1_3"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavefront" = dontDistribute super."wavefront"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-plugins" = dontDistribute super."web-plugins"; + "web-routes" = dontDistribute super."web-routes"; + "web-routes-boomerang" = dontDistribute super."web-routes-boomerang"; + "web-routes-happstack" = dontDistribute super."web-routes-happstack"; + "web-routes-hsp" = dontDistribute super."web-routes-hsp"; + "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-th" = dontDistribute super."web-routes-th"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "web-routes-wai" = dontDistribute super."web-routes-wai"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_6_3_1"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "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"; + "websockets-snap" = dontDistribute super."websockets-snap"; + "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"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "withdependencies" = dontDistribute super."withdependencies"; + "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-trie" = dontDistribute super."word-trie"; + "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"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-basedir" = dontDistribute super."xdg-basedir"; + "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-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit-parse" = dontDistribute super."xml-conduit-parse"; + "xml-conduit-writer" = dontDistribute super."xml-conduit-writer"; + "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"; + "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" = dontDistribute super."xmonad"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light" = dontDistribute super."yaml-light"; + "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"; + "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"; + "yes-precure5-command" = dontDistribute super."yes-precure5-command"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-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-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-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_4_0_1"; + "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-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-table" = doDistribute super."yesod-table_1_0_6"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_4_4"; + "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" = doDistribute super."yesod-websockets_0_2_3"; + "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" = dontDistribute super."yi"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-fuzzy-open" = dontDistribute super."yi-fuzzy-open"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = dontDistribute super."yi-language"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-rope" = dontDistribute super."yi-rope"; + "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"; + "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"; + "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" = dontDistribute super."zim-parser"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "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-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 88d949c84aa9..4fd801614d69 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -159,9 +159,11 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_5_3"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -354,6 +356,7 @@ self: super: { "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"; @@ -600,6 +603,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -625,6 +629,7 @@ self: super: { "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"; @@ -776,6 +781,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -845,6 +851,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -889,6 +896,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -948,6 +956,7 @@ self: super: { "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"; @@ -1087,6 +1096,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; @@ -1096,6 +1106,7 @@ self: super: { "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"; @@ -1151,6 +1162,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1187,6 +1199,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1257,6 +1270,7 @@ self: super: { "applicative-parsec" = dontDistribute super."applicative-parsec"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate" = doDistribute super."approximate_0_2_2_1"; "approximate-equality" = dontDistribute super."approximate-equality"; "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; @@ -1268,6 +1282,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1467,6 +1482,7 @@ self: super: { "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"; @@ -1727,6 +1743,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1827,6 +1844,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -1992,9 +2010,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -2002,6 +2022,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_5"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2060,6 +2081,7 @@ self: super: { "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"; @@ -2071,6 +2093,7 @@ self: super: { "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"; @@ -2253,8 +2276,10 @@ self: super: { "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-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"; @@ -2545,6 +2570,7 @@ self: super: { "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"; @@ -2673,6 +2699,7 @@ self: super: { "estreps" = dontDistribute super."estreps"; "etcd" = dontDistribute super."etcd"; "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_0_0"; "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; "ethereum-rlp" = dontDistribute super."ethereum-rlp"; @@ -2696,6 +2723,7 @@ self: super: { "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; "exception-transformers" = doDistribute super."exception-transformers_0_4_0_1"; + "exhaustive" = doDistribute super."exhaustive_1_1_1"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2864,6 +2892,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_1_1"; @@ -3015,6 +3045,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3063,6 +3094,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3148,11 +3181,101 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3454,6 +3577,7 @@ self: super: { "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"; @@ -3467,6 +3591,7 @@ self: super: { "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"; @@ -3728,10 +3853,12 @@ self: super: { "hledger-diff" = dontDistribute super."hledger-diff"; "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4117,6 +4244,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4155,6 +4284,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4572,6 +4702,7 @@ self: super: { "lendingclub" = dontDistribute super."lendingclub"; "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-sop" = dontDistribute super."lens-sop"; @@ -4822,6 +4953,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_3_0_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = doDistribute super."mangopay_1_11_4"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -4996,6 +5128,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5183,6 +5316,7 @@ self: super: { "netwire-input" = dontDistribute super."netwire-input"; "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; "network-address" = dontDistribute super."network-address"; + "network-anonymous-tor" = doDistribute super."network-anonymous-tor_0_9_2"; "network-api-support" = dontDistribute super."network-api-support"; "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; @@ -5327,6 +5461,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5357,6 +5492,7 @@ self: super: { "opentheory-probability" = dontDistribute super."opentheory-probability"; "opentheory-stream" = dontDistribute super."opentheory-stream"; "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; "opn" = dontDistribute super."opn"; @@ -5399,6 +5535,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5410,6 +5547,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5432,6 +5570,7 @@ self: super: { "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"; @@ -5442,6 +5581,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5458,6 +5598,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5514,6 +5655,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2"; @@ -5538,6 +5680,8 @@ self: super: { "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5664,6 +5808,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -5754,6 +5899,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -5927,6 +6073,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6033,6 +6180,8 @@ self: super: { "renderable" = dontDistribute super."renderable"; "reord" = dontDistribute super."reord"; "reorderable" = dontDistribute super."reorderable"; + "repa" = doDistribute super."repa_3_4_0_1"; + "repa-algorithms" = doDistribute super."repa-algorithms_3_4_0_1"; "repa-array" = dontDistribute super."repa-array"; "repa-bytestring" = dontDistribute super."repa-bytestring"; "repa-convert" = dontDistribute super."repa-convert"; @@ -6040,6 +6189,7 @@ self: super: { "repa-examples" = dontDistribute super."repa-examples"; "repa-fftw" = dontDistribute super."repa-fftw"; "repa-flow" = dontDistribute super."repa-flow"; + "repa-io" = doDistribute super."repa-io_3_4_0_1"; "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; "repa-plugin" = dontDistribute super."repa-plugin"; "repa-scalar" = dontDistribute super."repa-scalar"; @@ -6063,6 +6213,7 @@ self: super: { "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_36_0_5"; @@ -6162,6 +6313,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6169,8 +6321,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6282,6 +6436,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6353,6 +6508,7 @@ self: super: { "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"; @@ -6432,6 +6588,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -6727,7 +6884,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -6741,6 +6900,7 @@ self: super: { "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"; @@ -6837,6 +6997,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -6846,6 +7007,7 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; @@ -6879,6 +7041,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7169,6 +7332,7 @@ self: super: { "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"; @@ -7191,8 +7355,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7372,6 +7538,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; @@ -7390,6 +7557,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7423,6 +7592,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_10"; @@ -7464,6 +7634,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -7723,6 +7894,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; @@ -7757,6 +7929,7 @@ self: super: { "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets" = doDistribute super."yesod-websockets_0_2_3"; "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index a65db0029e48..75fbfa34d5ad 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -159,9 +159,11 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_5_3"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -354,6 +356,7 @@ self: super: { "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"; @@ -599,6 +602,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -624,6 +628,7 @@ self: super: { "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"; @@ -775,6 +780,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -844,6 +850,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -888,6 +895,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -947,6 +955,7 @@ self: super: { "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"; @@ -1086,6 +1095,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; @@ -1095,6 +1105,7 @@ self: super: { "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"; @@ -1150,6 +1161,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1186,6 +1198,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1255,6 +1268,7 @@ self: super: { "applicative-parsec" = dontDistribute super."applicative-parsec"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate" = doDistribute super."approximate_0_2_2_1"; "approximate-equality" = dontDistribute super."approximate-equality"; "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; @@ -1266,6 +1280,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1465,6 +1480,7 @@ self: super: { "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"; @@ -1725,6 +1741,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1825,6 +1842,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -1989,9 +2007,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -1999,6 +2019,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_5"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2057,6 +2078,7 @@ self: super: { "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"; @@ -2068,6 +2090,7 @@ self: super: { "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"; @@ -2248,8 +2271,10 @@ self: super: { "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-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"; @@ -2540,6 +2565,7 @@ self: super: { "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"; @@ -2668,6 +2694,7 @@ self: super: { "estreps" = dontDistribute super."estreps"; "etcd" = dontDistribute super."etcd"; "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_0_0"; "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; "ethereum-rlp" = dontDistribute super."ethereum-rlp"; @@ -2691,6 +2718,7 @@ self: super: { "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; "exception-transformers" = doDistribute super."exception-transformers_0_4_0_1"; + "exhaustive" = doDistribute super."exhaustive_1_1_1"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2858,6 +2886,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_1_1"; @@ -3009,6 +3039,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3057,6 +3088,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3142,11 +3175,101 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3448,6 +3571,7 @@ self: super: { "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"; @@ -3461,6 +3585,7 @@ self: super: { "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"; @@ -3721,10 +3846,12 @@ self: super: { "hledger-diff" = dontDistribute super."hledger-diff"; "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4109,6 +4236,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4147,6 +4276,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4564,6 +4694,7 @@ self: super: { "lendingclub" = dontDistribute super."lendingclub"; "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-sop" = dontDistribute super."lens-sop"; @@ -4814,6 +4945,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_3_0_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = doDistribute super."mangopay_1_11_4"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -4988,6 +5120,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5174,6 +5307,7 @@ self: super: { "netwire-input" = dontDistribute super."netwire-input"; "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; "network-address" = dontDistribute super."network-address"; + "network-anonymous-tor" = doDistribute super."network-anonymous-tor_0_9_2"; "network-api-support" = dontDistribute super."network-api-support"; "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; @@ -5318,6 +5452,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5348,6 +5483,7 @@ self: super: { "opentheory-probability" = dontDistribute super."opentheory-probability"; "opentheory-stream" = dontDistribute super."opentheory-stream"; "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; "opn" = dontDistribute super."opn"; @@ -5390,6 +5526,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5401,6 +5538,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5423,6 +5561,7 @@ self: super: { "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"; @@ -5433,6 +5572,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5449,6 +5589,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5505,6 +5646,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2"; @@ -5529,6 +5671,8 @@ self: super: { "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5655,6 +5799,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -5745,6 +5890,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -5792,6 +5938,7 @@ self: super: { "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_4_1"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -5917,6 +6064,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6022,6 +6170,8 @@ self: super: { "renderable" = dontDistribute super."renderable"; "reord" = dontDistribute super."reord"; "reorderable" = dontDistribute super."reorderable"; + "repa" = doDistribute super."repa_3_4_0_1"; + "repa-algorithms" = doDistribute super."repa-algorithms_3_4_0_1"; "repa-array" = dontDistribute super."repa-array"; "repa-bytestring" = dontDistribute super."repa-bytestring"; "repa-convert" = dontDistribute super."repa-convert"; @@ -6029,6 +6179,7 @@ self: super: { "repa-examples" = dontDistribute super."repa-examples"; "repa-fftw" = dontDistribute super."repa-fftw"; "repa-flow" = dontDistribute super."repa-flow"; + "repa-io" = doDistribute super."repa-io_3_4_0_1"; "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; "repa-plugin" = dontDistribute super."repa-plugin"; "repa-scalar" = dontDistribute super."repa-scalar"; @@ -6052,6 +6203,7 @@ self: super: { "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_36_0_5"; @@ -6151,6 +6303,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6158,8 +6311,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6271,6 +6426,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6342,6 +6498,7 @@ self: super: { "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"; @@ -6421,6 +6578,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -6715,7 +6873,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -6729,6 +6889,7 @@ self: super: { "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"; @@ -6825,6 +6986,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -6834,6 +6996,7 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; @@ -6866,6 +7029,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7156,6 +7320,7 @@ self: super: { "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"; @@ -7178,8 +7343,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7358,6 +7525,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; @@ -7376,6 +7544,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7409,6 +7579,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_10"; @@ -7450,6 +7621,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -7708,6 +7880,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; @@ -7742,6 +7915,7 @@ self: super: { "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets" = doDistribute super."yesod-websockets_0_2_3"; "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index d1b70b80eff0..04865afb3c0a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -159,9 +159,11 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_5_3"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -354,6 +356,7 @@ self: super: { "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"; @@ -599,6 +602,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -624,6 +628,7 @@ self: super: { "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"; @@ -775,6 +780,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_1"; "Raincat" = dontDistribute super."Raincat"; @@ -844,6 +850,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -888,6 +895,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -947,6 +955,7 @@ self: super: { "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"; @@ -1086,6 +1095,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; @@ -1095,6 +1105,7 @@ self: super: { "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"; @@ -1150,6 +1161,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1186,6 +1198,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1255,6 +1268,7 @@ self: super: { "applicative-parsec" = dontDistribute super."applicative-parsec"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate" = doDistribute super."approximate_0_2_2_1"; "approximate-equality" = dontDistribute super."approximate-equality"; "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; @@ -1266,6 +1280,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1465,6 +1480,7 @@ self: super: { "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"; @@ -1725,6 +1741,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1824,6 +1841,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -1988,9 +2006,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -1998,6 +2018,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_5"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2056,6 +2077,7 @@ self: super: { "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"; @@ -2067,6 +2089,7 @@ self: super: { "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"; @@ -2247,8 +2270,10 @@ self: super: { "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-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"; @@ -2539,6 +2564,7 @@ self: super: { "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"; @@ -2667,6 +2693,7 @@ self: super: { "estreps" = dontDistribute super."estreps"; "etcd" = dontDistribute super."etcd"; "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_0_0"; "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; "ethereum-rlp" = dontDistribute super."ethereum-rlp"; @@ -2690,6 +2717,7 @@ self: super: { "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; "exception-transformers" = doDistribute super."exception-transformers_0_4_0_1"; + "exhaustive" = doDistribute super."exhaustive_1_1_1"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2857,6 +2885,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_1_1"; @@ -3008,6 +3038,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3056,6 +3087,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3141,11 +3174,101 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3447,6 +3570,7 @@ self: super: { "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"; @@ -3460,6 +3584,7 @@ self: super: { "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"; @@ -3720,10 +3845,12 @@ self: super: { "hledger-diff" = dontDistribute super."hledger-diff"; "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4108,6 +4235,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4146,6 +4275,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4563,6 +4693,7 @@ self: super: { "lendingclub" = dontDistribute super."lendingclub"; "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-sop" = dontDistribute super."lens-sop"; @@ -4813,6 +4944,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_3_0_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = doDistribute super."mangopay_1_11_4"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -4987,6 +5119,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5173,6 +5306,7 @@ self: super: { "netwire-input" = dontDistribute super."netwire-input"; "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; "network-address" = dontDistribute super."network-address"; + "network-anonymous-tor" = doDistribute super."network-anonymous-tor_0_9_2"; "network-api-support" = dontDistribute super."network-api-support"; "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; @@ -5317,6 +5451,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5347,6 +5482,7 @@ self: super: { "opentheory-probability" = dontDistribute super."opentheory-probability"; "opentheory-stream" = dontDistribute super."opentheory-stream"; "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; "opn" = dontDistribute super."opn"; @@ -5389,6 +5525,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5400,6 +5537,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5422,6 +5560,7 @@ self: super: { "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"; @@ -5432,6 +5571,7 @@ self: super: { "parsek" = dontDistribute super."parsek"; "parsely" = dontDistribute super."parsely"; "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; "parsergen" = dontDistribute super."parsergen"; "parsers" = doDistribute super."parsers_0_12_2_1"; "parsestar" = dontDistribute super."parsestar"; @@ -5448,6 +5588,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5504,6 +5645,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2"; @@ -5528,6 +5670,8 @@ self: super: { "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5654,6 +5798,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -5744,6 +5889,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -5791,6 +5937,7 @@ self: super: { "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_4_1"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -5916,6 +6063,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6021,6 +6169,8 @@ self: super: { "renderable" = dontDistribute super."renderable"; "reord" = dontDistribute super."reord"; "reorderable" = dontDistribute super."reorderable"; + "repa" = doDistribute super."repa_3_4_0_1"; + "repa-algorithms" = doDistribute super."repa-algorithms_3_4_0_1"; "repa-array" = dontDistribute super."repa-array"; "repa-bytestring" = dontDistribute super."repa-bytestring"; "repa-convert" = dontDistribute super."repa-convert"; @@ -6028,6 +6178,7 @@ self: super: { "repa-examples" = dontDistribute super."repa-examples"; "repa-fftw" = dontDistribute super."repa-fftw"; "repa-flow" = dontDistribute super."repa-flow"; + "repa-io" = doDistribute super."repa-io_3_4_0_1"; "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; "repa-plugin" = dontDistribute super."repa-plugin"; "repa-scalar" = dontDistribute super."repa-scalar"; @@ -6051,6 +6202,7 @@ self: super: { "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_36_0_5"; @@ -6150,6 +6302,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6157,8 +6310,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6269,6 +6424,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6340,6 +6496,7 @@ self: super: { "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"; @@ -6419,6 +6576,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -6712,7 +6870,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -6726,6 +6886,7 @@ self: super: { "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"; @@ -6822,6 +6983,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -6831,6 +6993,7 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; @@ -6863,6 +7026,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7153,6 +7317,7 @@ self: super: { "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"; @@ -7175,8 +7340,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7355,6 +7522,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; @@ -7373,6 +7541,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7406,6 +7576,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_10"; @@ -7447,6 +7618,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -7704,6 +7876,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; @@ -7738,6 +7911,7 @@ self: super: { "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets" = doDistribute super."yesod-websockets_0_2_3"; "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 561fa5e879cc..0b3235a0cb6c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -159,9 +159,11 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_5_3"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -354,6 +356,7 @@ self: super: { "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"; @@ -599,6 +602,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -624,6 +628,7 @@ self: super: { "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"; @@ -775,6 +780,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_3"; "Raincat" = dontDistribute super."Raincat"; @@ -844,6 +850,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -888,6 +895,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -947,6 +955,7 @@ self: super: { "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"; @@ -1086,6 +1095,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; @@ -1095,6 +1105,7 @@ self: super: { "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"; @@ -1150,6 +1161,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1186,6 +1198,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1254,6 +1267,7 @@ self: super: { "applicative-parsec" = dontDistribute super."applicative-parsec"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate" = doDistribute super."approximate_0_2_2_1"; "approximate-equality" = dontDistribute super."approximate-equality"; "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; @@ -1265,6 +1279,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1464,6 +1479,7 @@ self: super: { "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"; @@ -1724,6 +1740,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1822,6 +1839,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -1986,9 +2004,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -1996,6 +2016,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_5"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2053,6 +2074,7 @@ self: super: { "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"; @@ -2064,6 +2086,7 @@ self: super: { "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"; @@ -2244,8 +2267,10 @@ self: super: { "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-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"; @@ -2536,6 +2561,7 @@ self: super: { "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"; @@ -2664,6 +2690,7 @@ self: super: { "estreps" = dontDistribute super."estreps"; "etcd" = dontDistribute super."etcd"; "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_0_0"; "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; "ethereum-rlp" = dontDistribute super."ethereum-rlp"; @@ -2687,6 +2714,7 @@ self: super: { "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; "exception-transformers" = doDistribute super."exception-transformers_0_4_0_1"; + "exhaustive" = doDistribute super."exhaustive_1_1_1"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2852,6 +2880,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_1_1"; @@ -3003,6 +3033,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3051,6 +3082,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3136,11 +3169,101 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3442,6 +3565,7 @@ self: super: { "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"; @@ -3454,6 +3578,7 @@ self: super: { "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"; @@ -3713,10 +3838,12 @@ self: super: { "hledger-diff" = dontDistribute super."hledger-diff"; "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4100,6 +4227,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4138,6 +4267,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4552,6 +4682,7 @@ self: super: { "lendingclub" = dontDistribute super."lendingclub"; "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; "lens-properties" = dontDistribute super."lens-properties"; "lens-regex" = dontDistribute super."lens-regex"; "lens-sop" = dontDistribute super."lens-sop"; @@ -4801,6 +4932,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_3_0_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = doDistribute super."mangopay_1_11_4"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -4975,6 +5107,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5160,6 +5293,7 @@ self: super: { "netwire-input" = dontDistribute super."netwire-input"; "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; "network-address" = dontDistribute super."network-address"; + "network-anonymous-tor" = doDistribute super."network-anonymous-tor_0_9_2"; "network-api-support" = dontDistribute super."network-api-support"; "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; @@ -5304,6 +5438,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5334,6 +5469,7 @@ self: super: { "opentheory-probability" = dontDistribute super."opentheory-probability"; "opentheory-stream" = dontDistribute super."opentheory-stream"; "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; "opn" = dontDistribute super."opn"; @@ -5376,6 +5512,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5387,6 +5524,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5409,6 +5547,7 @@ self: super: { "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"; @@ -5419,6 +5558,7 @@ self: super: { "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"; @@ -5434,6 +5574,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5490,6 +5631,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2"; @@ -5514,6 +5656,8 @@ self: super: { "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5639,6 +5783,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -5727,6 +5872,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -5774,6 +5920,7 @@ self: super: { "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_4_1"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -5899,6 +6046,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -6004,6 +6152,8 @@ self: super: { "renderable" = dontDistribute super."renderable"; "reord" = dontDistribute super."reord"; "reorderable" = dontDistribute super."reorderable"; + "repa" = doDistribute super."repa_3_4_0_1"; + "repa-algorithms" = doDistribute super."repa-algorithms_3_4_0_1"; "repa-array" = dontDistribute super."repa-array"; "repa-bytestring" = dontDistribute super."repa-bytestring"; "repa-convert" = dontDistribute super."repa-convert"; @@ -6011,6 +6161,7 @@ self: super: { "repa-examples" = dontDistribute super."repa-examples"; "repa-fftw" = dontDistribute super."repa-fftw"; "repa-flow" = dontDistribute super."repa-flow"; + "repa-io" = doDistribute super."repa-io_3_4_0_1"; "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; "repa-plugin" = dontDistribute super."repa-plugin"; "repa-scalar" = dontDistribute super."repa-scalar"; @@ -6034,6 +6185,7 @@ self: super: { "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_36_0_6"; @@ -6133,6 +6285,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6140,8 +6293,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6252,6 +6407,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6322,6 +6478,7 @@ self: super: { "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"; @@ -6401,6 +6558,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -6694,7 +6852,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -6708,6 +6868,7 @@ self: super: { "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"; @@ -6804,6 +6965,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -6813,6 +6975,7 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; @@ -6843,6 +7006,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7131,6 +7295,7 @@ self: super: { "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"; @@ -7153,8 +7318,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7333,6 +7500,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; @@ -7351,6 +7519,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7384,6 +7554,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_10"; @@ -7425,6 +7596,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -7434,6 +7606,7 @@ self: super: { "warp" = doDistribute super."warp_3_1_3"; "warp-dynamic" = dontDistribute super."warp-dynamic"; "warp-static" = dontDistribute super."warp-static"; + "warp-tls" = doDistribute super."warp-tls_3_1_3"; "warp-tls-uid" = dontDistribute super."warp-tls-uid"; "watchdog" = dontDistribute super."watchdog"; "watcher" = dontDistribute super."watcher"; @@ -7678,6 +7851,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; @@ -7710,6 +7884,7 @@ self: super: { "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets" = doDistribute super."yesod-websockets_0_2_3"; "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 7ff7b92e69d1..0a3a2a39c794 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -159,9 +159,11 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_5_3"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -354,6 +356,7 @@ self: super: { "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"; @@ -599,6 +602,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -624,6 +628,7 @@ self: super: { "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"; @@ -775,6 +780,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_3"; "Raincat" = dontDistribute super."Raincat"; @@ -844,6 +850,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -888,6 +895,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -947,6 +955,7 @@ self: super: { "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"; @@ -1084,6 +1093,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; @@ -1093,6 +1103,7 @@ self: super: { "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"; @@ -1148,6 +1159,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1184,6 +1196,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1252,6 +1265,7 @@ self: super: { "applicative-parsec" = dontDistribute super."applicative-parsec"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate" = doDistribute super."approximate_0_2_2_1"; "approximate-equality" = dontDistribute super."approximate-equality"; "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; @@ -1263,6 +1277,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1462,6 +1477,7 @@ self: super: { "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"; @@ -1722,6 +1738,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1819,6 +1836,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -1983,9 +2001,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -1993,6 +2013,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_5"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2050,6 +2071,7 @@ self: super: { "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"; @@ -2061,6 +2083,7 @@ self: super: { "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"; @@ -2241,8 +2264,10 @@ self: super: { "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-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"; @@ -2531,6 +2556,7 @@ self: super: { "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"; @@ -2658,6 +2684,7 @@ self: super: { "estreps" = dontDistribute super."estreps"; "etcd" = dontDistribute super."etcd"; "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_0_0"; "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; "ethereum-rlp" = dontDistribute super."ethereum-rlp"; @@ -2680,6 +2707,7 @@ self: super: { "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; "exception-transformers" = doDistribute super."exception-transformers_0_4_0_1"; + "exhaustive" = doDistribute super."exhaustive_1_1_1"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2844,6 +2872,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl" = doDistribute super."foldl_1_1_1"; @@ -2994,6 +3024,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3042,6 +3073,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3125,11 +3158,101 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3430,6 +3553,7 @@ self: super: { "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"; @@ -3442,6 +3566,7 @@ self: super: { "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"; @@ -3701,10 +3826,12 @@ self: super: { "hledger-diff" = dontDistribute super."hledger-diff"; "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4087,6 +4214,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4125,6 +4254,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4535,6 +4665,7 @@ self: super: { "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-regex" = dontDistribute super."lens-regex"; "lens-sop" = dontDistribute super."lens-sop"; @@ -4783,6 +4914,7 @@ self: super: { "mandrill" = doDistribute super."mandrill_0_3_0_0"; "mandulia" = dontDistribute super."mandulia"; "mangopay" = doDistribute super."mangopay_1_11_4"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -4957,6 +5089,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5140,6 +5273,7 @@ self: super: { "netwire-input" = dontDistribute super."netwire-input"; "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; "network-address" = dontDistribute super."network-address"; + "network-anonymous-tor" = doDistribute super."network-anonymous-tor_0_9_2"; "network-api-support" = dontDistribute super."network-api-support"; "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; @@ -5284,6 +5418,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5314,6 +5449,7 @@ self: super: { "opentheory-probability" = dontDistribute super."opentheory-probability"; "opentheory-stream" = dontDistribute super."opentheory-stream"; "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; "opn" = dontDistribute super."opn"; @@ -5356,6 +5492,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5367,6 +5504,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "pandoc-lens" = dontDistribute super."pandoc-lens"; "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_5"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; "papillon" = dontDistribute super."papillon"; @@ -5389,6 +5527,7 @@ self: super: { "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"; @@ -5399,6 +5538,7 @@ self: super: { "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"; @@ -5414,6 +5554,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5470,6 +5611,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-protobuf" = dontDistribute super."persistent-protobuf"; @@ -5493,6 +5635,8 @@ self: super: { "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5617,6 +5761,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -5705,6 +5850,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -5750,6 +5896,7 @@ self: super: { "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_4_1"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -5875,6 +6022,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -5980,6 +6128,8 @@ self: super: { "renderable" = dontDistribute super."renderable"; "reord" = dontDistribute super."reord"; "reorderable" = dontDistribute super."reorderable"; + "repa" = doDistribute super."repa_3_4_0_1"; + "repa-algorithms" = doDistribute super."repa-algorithms_3_4_0_1"; "repa-array" = dontDistribute super."repa-array"; "repa-bytestring" = dontDistribute super."repa-bytestring"; "repa-convert" = dontDistribute super."repa-convert"; @@ -5987,6 +6137,7 @@ self: super: { "repa-examples" = dontDistribute super."repa-examples"; "repa-fftw" = dontDistribute super."repa-fftw"; "repa-flow" = dontDistribute super."repa-flow"; + "repa-io" = doDistribute super."repa-io_3_4_0_1"; "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; "repa-plugin" = dontDistribute super."repa-plugin"; "repa-scalar" = dontDistribute super."repa-scalar"; @@ -6010,6 +6161,7 @@ self: super: { "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_36_0_6"; @@ -6109,6 +6261,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6116,8 +6269,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6228,6 +6383,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6290,6 +6446,7 @@ self: super: { "shake-minify" = dontDistribute super."shake-minify"; "shake-pack" = dontDistribute super."shake-pack"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_6"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; "shakespeare-js" = dontDistribute super."shakespeare-js"; @@ -6297,6 +6454,7 @@ self: super: { "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"; @@ -6376,6 +6534,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -6669,7 +6828,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -6683,6 +6844,7 @@ self: super: { "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"; @@ -6779,6 +6941,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -6788,6 +6951,7 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; @@ -6818,6 +6982,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7105,6 +7270,7 @@ self: super: { "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"; @@ -7127,8 +7293,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7230,6 +7398,7 @@ self: super: { "ureader" = dontDistribute super."ureader"; "urembed" = dontDistribute super."urembed"; "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9"; "uri-conduit" = dontDistribute super."uri-conduit"; "uri-enumerator" = dontDistribute super."uri-enumerator"; "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; @@ -7306,6 +7475,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; @@ -7324,6 +7494,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7356,6 +7528,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_10"; @@ -7396,6 +7569,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -7405,6 +7579,7 @@ self: super: { "warp" = doDistribute super."warp_3_1_3"; "warp-dynamic" = dontDistribute super."warp-dynamic"; "warp-static" = dontDistribute super."warp-static"; + "warp-tls" = doDistribute super."warp-tls_3_1_3"; "warp-tls-uid" = dontDistribute super."warp-tls-uid"; "watchdog" = dontDistribute super."watchdog"; "watcher" = dontDistribute super."watcher"; @@ -7648,6 +7823,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; @@ -7680,6 +7856,7 @@ self: super: { "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets" = doDistribute super."yesod-websockets_0_2_3"; "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 0502247f2b72..faab7eb52f24 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -158,9 +158,11 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_5_3"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -353,6 +355,7 @@ self: super: { "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"; @@ -598,6 +601,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -623,6 +627,7 @@ self: super: { "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"; @@ -774,6 +779,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_3"; "Raincat" = dontDistribute super."Raincat"; @@ -843,6 +849,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -887,6 +894,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -946,6 +954,7 @@ self: super: { "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"; @@ -1083,6 +1092,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; @@ -1092,6 +1102,7 @@ self: super: { "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"; @@ -1147,6 +1158,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1183,6 +1195,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1251,6 +1264,7 @@ self: super: { "applicative-parsec" = dontDistribute super."applicative-parsec"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate" = doDistribute super."approximate_0_2_2_1"; "approximate-equality" = dontDistribute super."approximate-equality"; "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; @@ -1261,6 +1275,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1457,6 +1472,7 @@ self: super: { "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"; @@ -1717,6 +1733,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1814,6 +1831,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -1975,9 +1993,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -1985,6 +2005,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_5"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2042,6 +2063,7 @@ self: super: { "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"; @@ -2053,6 +2075,7 @@ self: super: { "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"; @@ -2232,8 +2255,10 @@ self: super: { "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-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"; @@ -2518,6 +2543,7 @@ self: super: { "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"; @@ -2645,6 +2671,7 @@ self: super: { "estreps" = dontDistribute super."estreps"; "etcd" = dontDistribute super."etcd"; "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_0_0"; "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; "ethereum-rlp" = dontDistribute super."ethereum-rlp"; @@ -2667,6 +2694,7 @@ self: super: { "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; "exception-transformers" = doDistribute super."exception-transformers_0_4_0_1"; + "exhaustive" = doDistribute super."exhaustive_1_1_1"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2830,6 +2858,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl-incremental" = dontDistribute super."foldl-incremental"; @@ -2979,6 +3009,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3027,6 +3058,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3110,11 +3143,101 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3415,6 +3538,7 @@ self: super: { "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"; @@ -3427,6 +3551,7 @@ self: super: { "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"; @@ -3684,10 +3809,12 @@ self: super: { "hledger-diff" = dontDistribute super."hledger-diff"; "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4069,6 +4196,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4107,6 +4236,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4516,6 +4646,7 @@ self: super: { "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-regex" = dontDistribute super."lens-regex"; "lens-sop" = dontDistribute super."lens-sop"; @@ -4762,6 +4893,7 @@ self: super: { "mancala" = dontDistribute super."mancala"; "mandrill" = doDistribute super."mandrill_0_3_0_0"; "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -4936,6 +5068,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5119,6 +5252,7 @@ self: super: { "netwire-input" = dontDistribute super."netwire-input"; "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; "network-address" = dontDistribute super."network-address"; + "network-anonymous-tor" = doDistribute super."network-anonymous-tor_0_9_2"; "network-api-support" = dontDistribute super."network-api-support"; "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; @@ -5263,6 +5397,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5293,6 +5428,7 @@ self: super: { "opentheory-probability" = dontDistribute super."opentheory-probability"; "opentheory-stream" = dontDistribute super."opentheory-stream"; "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; "opn" = dontDistribute super."opn"; @@ -5335,6 +5471,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5346,6 +5483,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "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"; @@ -5367,6 +5505,7 @@ self: super: { "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"; @@ -5377,6 +5516,7 @@ self: super: { "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"; @@ -5392,6 +5532,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5448,6 +5589,7 @@ self: super: { "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-protobuf" = dontDistribute super."persistent-protobuf"; @@ -5471,6 +5613,8 @@ self: super: { "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5594,6 +5738,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -5681,6 +5826,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -5725,6 +5871,7 @@ self: super: { "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_4_1"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -5849,6 +5996,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -5954,6 +6102,8 @@ self: super: { "renderable" = dontDistribute super."renderable"; "reord" = dontDistribute super."reord"; "reorderable" = dontDistribute super."reorderable"; + "repa" = doDistribute super."repa_3_4_0_1"; + "repa-algorithms" = doDistribute super."repa-algorithms_3_4_0_1"; "repa-array" = dontDistribute super."repa-array"; "repa-bytestring" = dontDistribute super."repa-bytestring"; "repa-convert" = dontDistribute super."repa-convert"; @@ -5961,6 +6111,7 @@ self: super: { "repa-examples" = dontDistribute super."repa-examples"; "repa-fftw" = dontDistribute super."repa-fftw"; "repa-flow" = dontDistribute super."repa-flow"; + "repa-io" = doDistribute super."repa-io_3_4_0_1"; "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; "repa-plugin" = dontDistribute super."repa-plugin"; "repa-scalar" = dontDistribute super."repa-scalar"; @@ -5984,6 +6135,7 @@ self: super: { "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_36_0_6"; @@ -6083,6 +6235,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6090,8 +6243,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6202,6 +6357,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6264,6 +6420,7 @@ self: super: { "shake-minify" = dontDistribute super."shake-minify"; "shake-pack" = dontDistribute super."shake-pack"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_6"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; "shakespeare-js" = dontDistribute super."shakespeare-js"; @@ -6271,6 +6428,7 @@ self: super: { "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"; @@ -6349,6 +6507,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -6640,7 +6799,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -6654,6 +6815,7 @@ self: super: { "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"; @@ -6750,6 +6912,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -6759,6 +6922,7 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; @@ -6789,6 +6953,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -7023,6 +7188,7 @@ self: super: { "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; "ttrie" = dontDistribute super."ttrie"; + "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; "tup-functor" = dontDistribute super."tup-functor"; @@ -7074,6 +7240,7 @@ self: super: { "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"; @@ -7096,8 +7263,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7199,6 +7368,7 @@ self: super: { "ureader" = dontDistribute super."ureader"; "urembed" = dontDistribute super."urembed"; "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9"; "uri-conduit" = dontDistribute super."uri-conduit"; "uri-enumerator" = dontDistribute super."uri-enumerator"; "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; @@ -7275,6 +7445,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; @@ -7293,6 +7464,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7325,6 +7498,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai" = doDistribute super."wai_3_0_3_0"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_10"; @@ -7364,6 +7538,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -7373,6 +7548,7 @@ self: super: { "warp" = doDistribute super."warp_3_1_3"; "warp-dynamic" = dontDistribute super."warp-dynamic"; "warp-static" = dontDistribute super."warp-static"; + "warp-tls" = doDistribute super."warp-tls_3_1_3"; "warp-tls-uid" = dontDistribute super."warp-tls-uid"; "watchdog" = dontDistribute super."watchdog"; "watcher" = dontDistribute super."watcher"; @@ -7402,6 +7578,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_6_3_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webidl" = dontDistribute super."webidl"; @@ -7613,6 +7790,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; @@ -7644,6 +7822,7 @@ self: super: { "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets" = doDistribute super."yesod-websockets_0_2_3"; "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 309fbb64bad1..f6dd1ed5a8c5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -158,9 +158,11 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_5_3"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -353,6 +355,7 @@ self: super: { "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"; @@ -598,6 +601,7 @@ self: super: { "LinkChecker" = dontDistribute super."LinkChecker"; "ListLike" = doDistribute super."ListLike_4_2_0"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -623,6 +627,7 @@ self: super: { "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"; @@ -774,6 +779,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_3"; "Raincat" = dontDistribute super."Raincat"; @@ -843,6 +849,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -887,6 +894,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -946,6 +954,7 @@ self: super: { "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"; @@ -1082,6 +1091,7 @@ self: super: { "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = dontDistribute super."aeson-extra"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; @@ -1091,6 +1101,7 @@ self: super: { "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"; @@ -1146,6 +1157,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1182,6 +1194,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1250,6 +1263,7 @@ self: super: { "applicative-parsec" = dontDistribute super."applicative-parsec"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate" = doDistribute super."approximate_0_2_2_1"; "approximate-equality" = dontDistribute super."approximate-equality"; "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; @@ -1260,6 +1274,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1456,6 +1471,7 @@ self: super: { "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"; @@ -1713,6 +1729,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1809,6 +1826,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -1969,9 +1987,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -1979,6 +1999,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_5"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2036,6 +2057,7 @@ self: super: { "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"; @@ -2047,6 +2069,7 @@ self: super: { "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"; @@ -2225,8 +2248,10 @@ self: super: { "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-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"; @@ -2504,6 +2529,7 @@ self: super: { "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"; @@ -2631,6 +2657,7 @@ self: super: { "estreps" = dontDistribute super."estreps"; "etcd" = dontDistribute super."etcd"; "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_0_0"; "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; "ethereum-rlp" = dontDistribute super."ethereum-rlp"; @@ -2653,6 +2680,7 @@ self: super: { "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; "exception-transformers" = doDistribute super."exception-transformers_0_4_0_1"; + "exhaustive" = doDistribute super."exhaustive_1_1_1"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2816,6 +2844,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl-incremental" = dontDistribute super."foldl-incremental"; @@ -2965,6 +2995,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3013,6 +3044,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3096,11 +3129,101 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3401,6 +3524,7 @@ self: super: { "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"; @@ -3413,6 +3537,7 @@ self: super: { "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"; @@ -3669,10 +3794,12 @@ self: super: { "hledger-diff" = dontDistribute super."hledger-diff"; "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4054,6 +4181,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4092,6 +4221,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4501,6 +4631,7 @@ self: super: { "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-regex" = dontDistribute super."lens-regex"; "lens-sop" = dontDistribute super."lens-sop"; @@ -4746,6 +4877,7 @@ self: super: { "mancala" = dontDistribute super."mancala"; "mandrill" = doDistribute super."mandrill_0_3_0_0"; "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -4893,6 +5025,7 @@ self: super: { "monad-gen" = dontDistribute super."monad-gen"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-logger" = doDistribute super."monad-logger_0_3_14"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -4918,6 +5051,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5101,6 +5235,7 @@ self: super: { "netwire-input" = dontDistribute super."netwire-input"; "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; "network-address" = dontDistribute super."network-address"; + "network-anonymous-tor" = doDistribute super."network-anonymous-tor_0_9_2"; "network-api-support" = dontDistribute super."network-api-support"; "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; @@ -5245,6 +5380,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5275,6 +5411,7 @@ self: super: { "opentheory-probability" = dontDistribute super."opentheory-probability"; "opentheory-stream" = dontDistribute super."opentheory-stream"; "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; "opn" = dontDistribute super."opn"; @@ -5317,6 +5454,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5328,6 +5466,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "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"; @@ -5349,6 +5488,7 @@ self: super: { "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"; @@ -5359,6 +5499,7 @@ self: super: { "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"; @@ -5374,6 +5515,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5424,11 +5566,13 @@ self: super: { "permute" = dontDistribute super."permute"; "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; + "persistent" = doDistribute super."persistent_2_2_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-protobuf" = dontDistribute super."persistent-protobuf"; @@ -5452,6 +5596,8 @@ self: super: { "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5575,6 +5721,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -5660,6 +5807,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -5704,6 +5852,7 @@ self: super: { "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_4_1"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -5827,6 +5976,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -5932,6 +6082,8 @@ self: super: { "renderable" = dontDistribute super."renderable"; "reord" = dontDistribute super."reord"; "reorderable" = dontDistribute super."reorderable"; + "repa" = doDistribute super."repa_3_4_0_1"; + "repa-algorithms" = doDistribute super."repa-algorithms_3_4_0_1"; "repa-array" = dontDistribute super."repa-array"; "repa-bytestring" = dontDistribute super."repa-bytestring"; "repa-convert" = dontDistribute super."repa-convert"; @@ -5939,6 +6091,7 @@ self: super: { "repa-examples" = dontDistribute super."repa-examples"; "repa-fftw" = dontDistribute super."repa-fftw"; "repa-flow" = dontDistribute super."repa-flow"; + "repa-io" = doDistribute super."repa-io_3_4_0_1"; "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; "repa-plugin" = dontDistribute super."repa-plugin"; "repa-scalar" = dontDistribute super."repa-scalar"; @@ -5962,6 +6115,7 @@ self: super: { "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_36_0_6"; @@ -6061,6 +6215,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6068,8 +6223,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6180,6 +6337,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6242,6 +6400,7 @@ self: super: { "shake-minify" = dontDistribute super."shake-minify"; "shake-pack" = dontDistribute super."shake-pack"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_6"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; "shakespeare-js" = dontDistribute super."shakespeare-js"; @@ -6249,6 +6408,7 @@ self: super: { "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"; @@ -6327,6 +6487,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -6617,7 +6778,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -6630,6 +6793,7 @@ self: super: { "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"; @@ -6726,6 +6890,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -6735,6 +6900,7 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; @@ -6763,6 +6929,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -6997,6 +7164,7 @@ self: super: { "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; "ttrie" = dontDistribute super."ttrie"; + "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; "tup-functor" = dontDistribute super."tup-functor"; @@ -7047,6 +7215,7 @@ self: super: { "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"; @@ -7069,8 +7238,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7172,6 +7343,7 @@ self: super: { "ureader" = dontDistribute super."ureader"; "urembed" = dontDistribute super."urembed"; "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9"; "uri-conduit" = dontDistribute super."uri-conduit"; "uri-enumerator" = dontDistribute super."uri-enumerator"; "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; @@ -7248,6 +7420,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; @@ -7266,6 +7439,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7297,6 +7472,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_10"; @@ -7336,6 +7512,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -7345,6 +7522,7 @@ self: super: { "warp" = doDistribute super."warp_3_1_3_1"; "warp-dynamic" = dontDistribute super."warp-dynamic"; "warp-static" = dontDistribute super."warp-static"; + "warp-tls" = doDistribute super."warp-tls_3_1_3"; "warp-tls-uid" = dontDistribute super."warp-tls-uid"; "watchdog" = dontDistribute super."watchdog"; "watcher" = dontDistribute super."watcher"; @@ -7374,6 +7552,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_6_3_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webidl" = dontDistribute super."webidl"; @@ -7584,6 +7763,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; @@ -7615,6 +7795,7 @@ self: super: { "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets" = doDistribute super."yesod-websockets_0_2_3"; "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index e57050cface0..ca6d81e6fbb4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -158,9 +158,11 @@ self: super: { "Cardinality" = dontDistribute super."Cardinality"; "CarneadesDSL" = dontDistribute super."CarneadesDSL"; "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; "Cascade" = dontDistribute super."Cascade"; "Catana" = dontDistribute super."Catana"; "Chart" = doDistribute super."Chart_1_5_3"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_1"; "Chart-diagrams" = doDistribute super."Chart-diagrams_1_5_1"; "Chart-gtk" = dontDistribute super."Chart-gtk"; "Chart-simple" = dontDistribute super."Chart-simple"; @@ -353,6 +355,7 @@ self: super: { "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"; @@ -596,6 +599,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinkChecker" = dontDistribute super."LinkChecker"; "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; "Logic" = dontDistribute super."Logic"; "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; @@ -621,6 +625,7 @@ self: super: { "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"; @@ -772,6 +777,7 @@ self: super: { "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; "RNAdesign" = dontDistribute super."RNAdesign"; "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = dontDistribute super."RNAlien"; "RNAwolf" = dontDistribute super."RNAwolf"; "RSA" = doDistribute super."RSA_2_1_0_3"; "Raincat" = dontDistribute super."Raincat"; @@ -841,6 +847,7 @@ self: super: { "SimpleH" = dontDistribute super."SimpleH"; "SimpleLog" = dontDistribute super."SimpleLog"; "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; "Smooth" = dontDistribute super."Smooth"; "SmtLib" = dontDistribute super."SmtLib"; "Snusmumrik" = dontDistribute super."Snusmumrik"; @@ -885,6 +892,7 @@ self: super: { "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; "Taxonomy" = dontDistribute super."Taxonomy"; + "TaxonomyTools" = dontDistribute super."TaxonomyTools"; "TeaHS" = dontDistribute super."TeaHS"; "Tensor" = dontDistribute super."Tensor"; "TernaryTrees" = dontDistribute super."TernaryTrees"; @@ -944,6 +952,7 @@ self: super: { "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"; @@ -1079,6 +1088,7 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-casing" = dontDistribute super."aeson-casing"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-schema" = doDistribute super."aeson-schema_0_3_0_7"; @@ -1088,6 +1098,7 @@ self: super: { "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"; @@ -1143,6 +1154,7 @@ self: super: { "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; + "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_0_3_6"; @@ -1179,6 +1191,7 @@ self: super: { "amazonka-importexport" = doDistribute super."amazonka-importexport_0_3_6"; "amazonka-inspector" = dontDistribute super."amazonka-inspector"; "amazonka-iot" = dontDistribute super."amazonka-iot"; + "amazonka-iot-dataplane" = dontDistribute super."amazonka-iot-dataplane"; "amazonka-kinesis" = doDistribute super."amazonka-kinesis_0_3_6"; "amazonka-kinesis-firehose" = dontDistribute super."amazonka-kinesis-firehose"; "amazonka-kms" = doDistribute super."amazonka-kms_0_3_6"; @@ -1247,6 +1260,7 @@ self: super: { "applicative-parsec" = dontDistribute super."applicative-parsec"; "apportionment" = dontDistribute super."apportionment"; "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate" = doDistribute super."approximate_0_2_2_1"; "approximate-equality" = dontDistribute super."approximate-equality"; "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; @@ -1257,6 +1271,7 @@ self: super: { "archlinux-web" = dontDistribute super."archlinux-web"; "archnews" = dontDistribute super."archnews"; "arff" = dontDistribute super."arff"; + "argon" = dontDistribute super."argon"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; "ariadne" = dontDistribute super."ariadne"; @@ -1453,6 +1468,7 @@ self: super: { "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"; @@ -1464,6 +1480,7 @@ self: super: { "binary-store" = dontDistribute super."binary-store"; "binary-streams" = dontDistribute super."binary-streams"; "binary-strict" = dontDistribute super."binary-strict"; + "binary-tagged" = doDistribute super."binary-tagged_0_1_2_0"; "binary-typed" = dontDistribute super."binary-typed"; "binarydefer" = dontDistribute super."binarydefer"; "bind-marshal" = dontDistribute super."bind-marshal"; @@ -1707,6 +1724,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "cached-io" = dontDistribute super."cached-io"; "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = dontDistribute super."cacophony"; "caf" = dontDistribute super."caf"; "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; "caffegraph" = dontDistribute super."caffegraph"; @@ -1803,6 +1821,7 @@ self: super: { "cheapskate" = dontDistribute super."cheapskate"; "check-pvp" = dontDistribute super."check-pvp"; "checked" = dontDistribute super."checked"; + "checkers" = doDistribute super."checkers_0_4_3"; "chell-hunit" = dontDistribute super."chell-hunit"; "chesshs" = dontDistribute super."chesshs"; "chevalier-common" = dontDistribute super."chevalier-common"; @@ -1963,9 +1982,11 @@ self: super: { "concurrent-barrier" = dontDistribute super."concurrent-barrier"; "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-output" = dontDistribute super."concurrent-output"; "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"; "condor" = dontDistribute super."condor"; "condorcet" = dontDistribute super."condorcet"; @@ -1973,6 +1994,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_5"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2030,6 +2052,7 @@ self: super: { "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"; @@ -2041,6 +2064,7 @@ self: super: { "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"; @@ -2219,8 +2243,10 @@ self: super: { "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-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"; @@ -2497,6 +2523,7 @@ self: super: { "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"; @@ -2623,6 +2650,7 @@ self: super: { "estreps" = dontDistribute super."estreps"; "etcd" = dontDistribute super."etcd"; "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_0_0"; "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; "ethereum-rlp" = dontDistribute super."ethereum-rlp"; @@ -2644,6 +2672,7 @@ self: super: { "exception-mailer" = dontDistribute super."exception-mailer"; "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exhaustive" = doDistribute super."exhaustive_1_1_1"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2806,6 +2835,8 @@ self: super: { "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; "fluidsynth" = dontDistribute super."fluidsynth"; "fmark" = dontDistribute super."fmark"; + "fn" = dontDistribute super."fn"; + "fn-extra" = dontDistribute super."fn-extra"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; "foldl-incremental" = dontDistribute super."foldl-incremental"; @@ -2955,6 +2986,7 @@ self: super: { "generic-tree" = dontDistribute super."generic-tree"; "generic-trie" = dontDistribute super."generic-trie"; "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop" = doDistribute super."generics-sop_0_1_1_2"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; "geni-gui" = dontDistribute super."geni-gui"; @@ -3003,6 +3035,8 @@ self: super: { "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; + "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; @@ -3086,11 +3120,101 @@ self: super: { "gnome-desktop" = dontDistribute super."gnome-desktop"; "gnome-keyring" = dontDistribute super."gnome-keyring"; "gnomevfs" = dontDistribute super."gnomevfs"; + "gnuidn" = doDistribute super."gnuidn_0_2_1"; "gnuplot" = dontDistribute super."gnuplot"; "goa" = dontDistribute super."goa"; "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-cloud" = dontDistribute super."google-cloud"; "google-dictionary" = dontDistribute super."google-dictionary"; @@ -3391,6 +3515,7 @@ self: super: { "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"; @@ -3403,6 +3528,7 @@ self: super: { "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"; @@ -3659,10 +3785,12 @@ self: super: { "hledger-diff" = dontDistribute super."hledger-diff"; "hledger-interest" = dontDistribute super."hledger-interest"; "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-ui" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_21"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -4043,6 +4171,8 @@ self: super: { "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hworker" = dontDistribute super."hworker"; + "hworker-ses" = dontDistribute super."hworker-ses"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; @@ -4081,6 +4211,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4490,6 +4621,7 @@ self: super: { "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-regex" = dontDistribute super."lens-regex"; "lens-sop" = dontDistribute super."lens-sop"; @@ -4735,6 +4867,7 @@ self: super: { "mancala" = dontDistribute super."mancala"; "mandrill" = doDistribute super."mandrill_0_3_0_0"; "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; "marionetta" = dontDistribute super."marionetta"; "markdown-kate" = dontDistribute super."markdown-kate"; @@ -4882,6 +5015,7 @@ self: super: { "monad-gen" = dontDistribute super."monad-gen"; "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; + "monad-logger" = doDistribute super."monad-logger_0_3_14"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; "monad-memo" = dontDistribute super."monad-memo"; @@ -4907,6 +5041,7 @@ self: super: { "monadLib-compose" = dontDistribute super."monadLib-compose"; "monadacme" = dontDistribute super."monadacme"; "monadbi" = dontDistribute super."monadbi"; + "monadcryptorandom" = doDistribute super."monadcryptorandom_0_6_1"; "monadfibre" = dontDistribute super."monadfibre"; "monadiccp" = dontDistribute super."monadiccp"; "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; @@ -5089,6 +5224,7 @@ self: super: { "netwire-input" = dontDistribute super."netwire-input"; "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; "network-address" = dontDistribute super."network-address"; + "network-anonymous-tor" = doDistribute super."network-anonymous-tor_0_9_2"; "network-api-support" = dontDistribute super."network-api-support"; "network-bitcoin" = dontDistribute super."network-bitcoin"; "network-builder" = dontDistribute super."network-builder"; @@ -5232,6 +5368,7 @@ self: super: { "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; "open-browser" = dontDistribute super."open-browser"; + "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-symbology" = dontDistribute super."open-symbology"; "open-typerep" = dontDistribute super."open-typerep"; @@ -5262,6 +5399,7 @@ self: super: { "opentheory-probability" = dontDistribute super."opentheory-probability"; "opentheory-stream" = dontDistribute super."opentheory-stream"; "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; "opml" = dontDistribute super."opml"; "opml-conduit" = dontDistribute super."opml-conduit"; "opn" = dontDistribute super."opn"; @@ -5304,6 +5442,7 @@ self: super: { "pacman-memcache" = dontDistribute super."pacman-memcache"; "padKONTROL" = dontDistribute super."padKONTROL"; "pagarme" = dontDistribute super."pagarme"; + "pagerduty" = doDistribute super."pagerduty_0_0_3_2"; "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; @@ -5315,6 +5454,7 @@ self: super: { "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; "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"; @@ -5336,6 +5476,7 @@ self: super: { "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"; @@ -5346,6 +5487,7 @@ self: super: { "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"; @@ -5361,6 +5503,7 @@ self: super: { "patch-combinators" = dontDistribute super."patch-combinators"; "patch-image" = dontDistribute super."patch-image"; "patches-vector" = dontDistribute super."patches-vector"; + "path-pieces" = doDistribute super."path-pieces_0_2_0"; "pathfinding" = dontDistribute super."pathfinding"; "pathfindingcore" = dontDistribute super."pathfindingcore"; "pathtype" = dontDistribute super."pathtype"; @@ -5411,16 +5554,19 @@ self: super: { "permute" = dontDistribute super."permute"; "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; + "persistent" = doDistribute super."persistent_2_2_1"; "persistent-cereal" = dontDistribute super."persistent-cereal"; "persistent-equivalence" = dontDistribute super."persistent-equivalence"; "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_2_2"; "persistent-mysql" = doDistribute super."persistent-mysql_2_2"; "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-template" = doDistribute super."persistent-template_2_1_3_7"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; "persona" = dontDistribute super."persona"; @@ -5438,6 +5584,8 @@ self: super: { "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phone-numbers" = dontDistribute super."phone-numbers"; "phone-push" = dontDistribute super."phone-push"; "phonetic-code" = dontDistribute super."phonetic-code"; "phooey" = dontDistribute super."phooey"; @@ -5561,6 +5709,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_1_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-config" = dontDistribute super."postgresql-config"; "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; @@ -5646,6 +5795,7 @@ self: super: { "prolog" = dontDistribute super."prolog"; "prolog-graph" = dontDistribute super."prolog-graph"; "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; "prompt" = dontDistribute super."prompt"; @@ -5690,6 +5840,7 @@ self: super: { "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_4_1"; "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; "push-notify" = dontDistribute super."push-notify"; "push-notify-ccs" = dontDistribute super."push-notify-ccs"; @@ -5813,6 +5964,7 @@ self: super: { "reactive-thread" = dontDistribute super."reactive-thread"; "reactor" = dontDistribute super."reactor"; "read-bounded" = dontDistribute super."read-bounded"; + "read-editor" = dontDistribute super."read-editor"; "readable" = dontDistribute super."readable"; "readline" = dontDistribute super."readline"; "readline-statevar" = dontDistribute super."readline-statevar"; @@ -5918,6 +6070,8 @@ self: super: { "renderable" = dontDistribute super."renderable"; "reord" = dontDistribute super."reord"; "reorderable" = dontDistribute super."reorderable"; + "repa" = doDistribute super."repa_3_4_0_1"; + "repa-algorithms" = doDistribute super."repa-algorithms_3_4_0_1"; "repa-array" = dontDistribute super."repa-array"; "repa-bytestring" = dontDistribute super."repa-bytestring"; "repa-convert" = dontDistribute super."repa-convert"; @@ -5925,6 +6079,7 @@ self: super: { "repa-examples" = dontDistribute super."repa-examples"; "repa-fftw" = dontDistribute super."repa-fftw"; "repa-flow" = dontDistribute super."repa-flow"; + "repa-io" = doDistribute super."repa-io_3_4_0_1"; "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; "repa-plugin" = dontDistribute super."repa-plugin"; "repa-scalar" = dontDistribute super."repa-scalar"; @@ -5948,6 +6103,7 @@ self: super: { "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_36_0_6"; @@ -6047,6 +6203,7 @@ self: super: { "runghc" = dontDistribute super."runghc"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; "s3-signer" = dontDistribute super."s3-signer"; "safe-access" = dontDistribute super."safe-access"; "safe-failure" = dontDistribute super."safe-failure"; @@ -6054,8 +6211,10 @@ self: super: { "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"; + "safecopy" = doDistribute super."safecopy_0_8_5"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6165,6 +6324,7 @@ self: super: { "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"; "sensenet" = dontDistribute super."sensenet"; "sentry" = dontDistribute super."sentry"; @@ -6227,6 +6387,7 @@ self: super: { "shake-minify" = dontDistribute super."shake-minify"; "shake-pack" = dontDistribute super."shake-pack"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_6"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; "shakespeare-js" = dontDistribute super."shakespeare-js"; @@ -6234,6 +6395,7 @@ self: super: { "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"; @@ -6312,6 +6474,7 @@ self: super: { "simtreelo" = dontDistribute super."simtreelo"; "sindre" = dontDistribute super."sindre"; "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_1_1_2_1"; "sink" = dontDistribute super."sink"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -6602,7 +6765,9 @@ self: super: { "stringtable-atom" = dontDistribute super."stringtable-atom"; "strio" = dontDistribute super."strio"; "stripe" = dontDistribute super."stripe"; + "stripe-core" = dontDistribute super."stripe-core"; "stripe-haskell" = dontDistribute super."stripe-haskell"; + "stripe-http-streams" = dontDistribute super."stripe-http-streams"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; "structs" = dontDistribute super."structs"; @@ -6615,6 +6780,7 @@ self: super: { "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"; @@ -6711,6 +6877,7 @@ self: super: { "taglib" = dontDistribute super."taglib"; "taglib-api" = dontDistribute super."taglib-api"; "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup" = doDistribute super."tagsoup_0_13_3"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "takahashi" = dontDistribute super."takahashi"; @@ -6720,6 +6887,7 @@ self: super: { "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; "tamper" = dontDistribute super."tamper"; + "tar" = doDistribute super."tar_0_4_2_1"; "target" = dontDistribute super."target"; "task" = dontDistribute super."task"; "taskpool" = dontDistribute super."taskpool"; @@ -6748,6 +6916,7 @@ self: super: { "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; "templatepg" = dontDistribute super."templatepg"; "templater" = dontDistribute super."templater"; "tempodb" = dontDistribute super."tempodb"; @@ -6982,6 +7151,7 @@ self: super: { "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; "ttrie" = dontDistribute super."ttrie"; + "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; "tup-functor" = dontDistribute super."tup-functor"; @@ -7032,6 +7202,7 @@ self: super: { "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"; @@ -7054,8 +7225,10 @@ self: super: { "type-sub-th" = dontDistribute super."type-sub-th"; "type-unary" = dontDistribute super."type-unary"; "typeable-th" = dontDistribute super."typeable-th"; + "typed-wire" = dontDistribute super."typed-wire"; "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"; @@ -7157,6 +7330,7 @@ self: super: { "ureader" = dontDistribute super."ureader"; "urembed" = dontDistribute super."urembed"; "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9"; "uri-conduit" = dontDistribute super."uri-conduit"; "uri-enumerator" = dontDistribute super."uri-enumerator"; "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; @@ -7233,6 +7407,7 @@ self: super: { "vect-floating" = dontDistribute super."vect-floating"; "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; "vect-opengl" = dontDistribute super."vect-opengl"; + "vector" = doDistribute super."vector_0_10_12_3"; "vector-binary" = dontDistribute super."vector-binary"; "vector-bytestring" = dontDistribute super."vector-bytestring"; "vector-clock" = dontDistribute super."vector-clock"; @@ -7251,6 +7426,8 @@ self: super: { "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_2"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; "verilog" = dontDistribute super."verilog"; "vhdl" = dontDistribute super."vhdl"; "views" = dontDistribute super."views"; @@ -7282,6 +7459,7 @@ self: super: { "vty-ui-extras" = dontDistribute super."vty-ui-extras"; "waddle" = dontDistribute super."waddle"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; "wai-extra" = doDistribute super."wai-extra_3_0_11_1"; @@ -7321,6 +7499,7 @@ self: super: { "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"; "wai-transformers" = dontDistribute super."wai-transformers"; "wai-util" = dontDistribute super."wai-util"; @@ -7330,6 +7509,7 @@ self: super: { "warp" = doDistribute super."warp_3_1_3_1"; "warp-dynamic" = dontDistribute super."warp-dynamic"; "warp-static" = dontDistribute super."warp-static"; + "warp-tls" = doDistribute super."warp-tls_3_1_3"; "warp-tls-uid" = dontDistribute super."warp-tls-uid"; "watchdog" = dontDistribute super."watchdog"; "watcher" = dontDistribute super."watcher"; @@ -7359,6 +7539,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_6_3_1"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_7"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webidl" = dontDistribute super."webidl"; @@ -7567,6 +7748,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_4_1"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-goodies" = dontDistribute super."yesod-goodies"; "yesod-json" = dontDistribute super."yesod-json"; @@ -7598,6 +7780,7 @@ self: super: { "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets" = doDistribute super."yesod-websockets_0_2_3"; "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 822ef9a6a026..56caf73380db 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -270,9 +270,11 @@ self: { base QuickCheck test-framework test-framework-quickcheck2 test-framework-th ]; + jailbreak = true; homepage = "https://github.com/choener/ADPfusion"; description = "Efficient, high-level dynamic programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Basics" = callPackage @@ -811,9 +813,11 @@ self: { ADPfusion base containers fmlist FormalGrammars GrammarProducts PrimitiveArray vector ]; + jailbreak = true; homepage = "https://github.com/choener/AlignmentAlgorithms"; description = "Collection of alignment algorithms"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Allure" = callPackage @@ -1194,8 +1198,8 @@ self: { }: mkDerivation { pname = "Bang"; - version = "0.1.1.0"; - sha256 = "dc953a29b7273972b512306ac334de63e6555ce368950fced7d389ae7b98c8f8"; + version = "0.1.1.1"; + sha256 = "aa544019d45ec93139e6253f2d1b812516107f6d7ba7ceeab7f14c3be3b9876f"; libraryHaskellDepends = [ base bifunctors hmidi mtl stm time transformers ]; @@ -1264,6 +1268,7 @@ self: { libraryHaskellDepends = [ base bytestring cassava deepseq directory statistics time vector ]; + jailbreak = true; homepage = "https://github.com/choener/BenchmarkHistory"; description = "Benchmark functions with history"; license = stdenv.lib.licenses.gpl3; @@ -1521,9 +1526,11 @@ self: { base QuickCheck test-framework test-framework-quickcheck2 test-framework-th ]; + jailbreak = true; homepage = "https://github.com/choener/BiobaseTypes"; description = "Collection of types for bioinformatics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseVienna" = callPackage @@ -1566,6 +1573,7 @@ self: { homepage = "https://github.com/choener/BiobaseXNA"; description = "Efficient RNA/DNA representations"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BirdPP" = callPackage @@ -1584,17 +1592,15 @@ self: { }) {}; "BitSyntax" = callPackage - ({ mkDerivation, base, bytestring, haskell98, QuickCheck - , template-haskell - }: + ({ mkDerivation, base, bytestring, QuickCheck, template-haskell }: mkDerivation { pname = "BitSyntax"; - version = "0.3.2"; - sha256 = "7449e639e8e46cdff2355e0d643f0f5d275f3fe27eef7313ffb8ac025ed2e9cf"; + version = "0.3.2.1"; + sha256 = "19e112bd41c6092739d5a71850ded01b2bcd0adb19ffbd8242c62e6febb68031"; libraryHaskellDepends = [ - base bytestring haskell98 QuickCheck template-haskell + base bytestring QuickCheck template-haskell ]; - homepage = "http://www.imperialviolet.org/bitsyntax"; + homepage = "https://github.com/joecrayne/hs-bitsyntax"; description = "A module to aid in the (de)serialisation of binary data"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -2535,6 +2541,17 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "Cartesian" = callPackage + ({ mkDerivation, base, lens }: + mkDerivation { + pname = "Cartesian"; + version = "0.1.0.1"; + sha256 = "9946acea26007b5d5c5a5ee7a7f5e9e093687893535b2f38f9a803ac6fff374b"; + libraryHaskellDepends = [ base lens ]; + description = "Coordinate systems"; + license = stdenv.lib.licenses.mit; + }) {}; + "Cascade" = callPackage ({ mkDerivation, base, comonad, ghc-prim, mtl, void }: mkDerivation { @@ -2611,6 +2628,7 @@ self: { array base colour data-default-class lens mtl old-locale operational time vector ]; + jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "A library for generating 2D Charts and Plots"; license = stdenv.lib.licenses.bsd3; @@ -2652,7 +2670,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "Chart-cairo" = callPackage + "Chart-cairo_1_5_1" = callPackage ({ mkDerivation, array, base, cairo, Chart, colour , data-default-class, lens, mtl, old-locale, operational, time }: @@ -2667,6 +2685,24 @@ self: { homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Cairo backend for Charts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "Chart-cairo" = callPackage + ({ mkDerivation, array, base, cairo, Chart, colour + , data-default-class, lens, mtl, old-locale, operational, time + }: + mkDerivation { + pname = "Chart-cairo"; + version = "1.5.4"; + sha256 = "f5c0fbeaedcc6680e53d6d9c76a387360be4fd23048a42122ad2dc6a17bcbc44"; + libraryHaskellDepends = [ + array base cairo Chart colour data-default-class lens mtl + old-locale operational time + ]; + homepage = "https://github.com/timbod7/haskell-chart/wiki"; + description = "Cairo backend for Charts"; + license = stdenv.lib.licenses.bsd3; }) {}; "Chart-diagrams_1_3_2" = callPackage @@ -3337,8 +3373,8 @@ self: { ({ mkDerivation, base, containers, lattices, multiset }: mkDerivation { pname = "ContextAlgebra"; - version = "0.2.0.0"; - sha256 = "2d694370cc51c4a8b1703639d30c39ee90b28e3a85be6b6d2b9508b33d5211c0"; + version = "0.2.0.1"; + sha256 = "5b2e0503f9bb506a2aa5e160a49b598de7aeea34c187f3550ab5dbc5967d14d1"; libraryHaskellDepends = [ base containers lattices multiset ]; jailbreak = true; description = "Context Algebra"; @@ -3415,8 +3451,8 @@ self: { ({ mkDerivation, base, ghc, pretty, pretty-show }: mkDerivation { pname = "CoreDump"; - version = "0.1.1.0"; - sha256 = "15ea46cd71654079a42d2839d7161429c5e58ba6a12b3cf6deb34d98d16a3308"; + version = "0.1.2.0"; + sha256 = "240a9a03ba1643cd48a3eaab22825d0ab88931c9da0022d165fab30e23e4e0e4"; libraryHaskellDepends = [ base ghc pretty pretty-show ]; description = "A GHC plugin for printing GHC's internal Core data structures"; license = stdenv.lib.licenses.bsd3; @@ -5781,9 +5817,11 @@ self: { text transformers trifecta unordered-containers vector ]; executableHaskellDepends = [ ansi-wl-pprint base cmdargs ]; + jailbreak = true; homepage = "https://github.com/choener/FormalGrammars"; description = "(Context-free) grammars in formal language theory"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Foster" = callPackage @@ -6554,10 +6592,11 @@ self: { base QuickCheck test-framework test-framework-quickcheck2 test-framework-th ]; + jailbreak = true; homepage = "https://github.com/choener/GenussFold"; description = "MCFGs for Genus-1 RNA Pseudoknots"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GeoIp" = callPackage @@ -6572,6 +6611,19 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "GeocoderOpenCage" = callPackage + ({ mkDerivation, aeson, base, bytestring, HTTP, text }: + mkDerivation { + pname = "GeocoderOpenCage"; + version = "0.1.0.1"; + sha256 = "ab70cbd8a73d45b6ed8c4d692e39e54180def339f29ff1ba9671f24d07e7bab0"; + libraryHaskellDepends = [ aeson base bytestring HTTP text ]; + homepage = "https://github.com/juergenhah/Haskell-Geocoder-OpenCage.git"; + description = "Geocoder and Reverse Geocoding Service Wrapper"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Geodetic" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -6800,6 +6852,7 @@ self: { homepage = "https://github.com/choener/GrammarProducts"; description = "Grammar products and higher-dimensional grammars"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Graph500" = callPackage @@ -7054,7 +7107,6 @@ self: { base bytestring directory inline-r process singletons tasty tasty-golden tasty-hunit text vector ]; - doCheck = false; description = "The Haskell/R mixed programming environment"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -9443,6 +9495,7 @@ self: { libraryHaskellDepends = [ base hmatrix ]; description = "Pure Haskell implementation of the Levenberg-Marquardt algorithm"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskellNN" = callPackage @@ -9534,8 +9587,8 @@ self: { }: mkDerivation { pname = "HaskellNet-SSL"; - version = "0.3.0.0"; - sha256 = "ee8a9ff0e8d20920028a6fc01efd0cac4c4dfdd22b404ff874b59970bba532d8"; + version = "0.3.1.0"; + sha256 = "f8985280962368feb863ab1279543e61604d01cd3fcf05fbf0bb4aa3752e281b"; libraryHaskellDepends = [ base bytestring connection data-default HaskellNet network tls ]; @@ -9798,15 +9851,22 @@ self: { }) {}; "Hish" = callPackage - ({ mkDerivation, base, MissingH, process }: + ({ mkDerivation, base, directory, MissingH, process, regex-tdfa + , time + }: mkDerivation { pname = "Hish"; - version = "0.0.1"; - sha256 = "3c701417d5abd2e7742d40f5ec01982a0175b75f11b023662502398f8cbaaf36"; + version = "0.1.2.1"; + sha256 = "fd3d404e8ea165e3011f5580d4f6556a596d7a24e6510e2ce5902779e29b6ca4"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base MissingH process ]; - executableHaskellDepends = [ base MissingH process ]; + libraryHaskellDepends = [ + base directory MissingH process regex-tdfa time + ]; + executableHaskellDepends = [ + base directory MissingH process regex-tdfa time + ]; + jailbreak = true; homepage = "https://github.com/jaiyalas/Hish"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -10833,6 +10893,7 @@ self: { base binary bytestring containers deepseq mtl primitive transformers vector zlib ]; + jailbreak = true; homepage = "https://github.com/Twinside/Juicy.Pixels"; description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; license = stdenv.lib.licenses.bsd3; @@ -10853,6 +10914,7 @@ self: { base binary bytestring containers deepseq mtl primitive transformers vector zlib ]; + jailbreak = true; homepage = "https://github.com/Twinside/Juicy.Pixels"; description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; license = stdenv.lib.licenses.bsd3; @@ -10871,6 +10933,7 @@ self: { base binary bytestring containers deepseq mtl primitive transformers vector zlib ]; + jailbreak = true; homepage = "https://github.com/Twinside/Juicy.Pixels"; description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; license = stdenv.lib.licenses.bsd3; @@ -10889,6 +10952,7 @@ self: { base binary bytestring containers deepseq mtl primitive transformers vector zlib ]; + jailbreak = true; homepage = "https://github.com/Twinside/Juicy.Pixels"; description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; license = stdenv.lib.licenses.bsd3; @@ -11394,6 +11458,7 @@ self: { jailbreak = true; description = "A configurable and extensible neural network library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LambdaPrettyQuote" = callPackage @@ -11635,6 +11700,7 @@ self: { array base bytestring containers dlist fmlist HUnit QuickCheck random text vector ]; + jailbreak = true; homepage = "http://software.complete.org/listlike"; description = "Generic support for list-like structures"; license = stdenv.lib.licenses.bsd3; @@ -11675,6 +11741,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "ListWriter" = callPackage + ({ mkDerivation, base, hspec, mtl }: + mkDerivation { + pname = "ListWriter"; + version = "0.1.0.0"; + sha256 = "48cc8ad0a69b47f5cfcbea55f2b221eda39403b31fec620392d721a572f500c3"; + libraryHaskellDepends = [ base mtl ]; + testHaskellDepends = [ base hspec ]; + homepage = "https://github.com/YLiLarry/ListWriter"; + description = "define a list constant using Monadic syntax other than overhead [,]"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "ListZipper" = callPackage ({ mkDerivation, base, QuickCheck }: mkDerivation { @@ -11992,8 +12071,8 @@ self: { }: mkDerivation { pname = "MagicHaskeller"; - version = "0.9.6.4.3"; - sha256 = "6faf49eaf1585691166907501fc066a1e3dbfa0419c67237e07a997c01b144d6"; + version = "0.9.6.4.5"; + sha256 = "35a3fd7e5a5e6b45aac064dc2b28c9a220badd56c30101a59e68c19df65f86ec"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -12189,6 +12268,22 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "Michelangelo" = callPackage + ({ mkDerivation, base, bytestring, containers, GLUtil, lens, linear + , OpenGL, OpenGLRaw, WaveFront + }: + mkDerivation { + pname = "Michelangelo"; + version = "0.1.0.3"; + sha256 = "e8f55ed9d3cc667f4545d2468f98a61f9f5fd90efeadf9d80822ee1a91a8bfd1"; + libraryHaskellDepends = [ + base bytestring containers GLUtil lens linear OpenGL OpenGLRaw + WaveFront + ]; + description = "OpenGL for dummies"; + license = stdenv.lib.licenses.mit; + }) {}; + "MicrosoftTranslator" = callPackage ({ mkDerivation, aeson, base, bytestring, datetime, exceptions , http-client, lens, text, transformers, url, wreq, xml @@ -12948,8 +13043,8 @@ self: { }: mkDerivation { pname = "NearContextAlgebra"; - version = "0.1.0.1"; - sha256 = "17606089a7f236d79f8b6c60ff3531953210d17de4e5b6f9e19cccc6fd766f03"; + version = "0.1.0.2"; + sha256 = "77e6bd6cb609bc8730c72cca98d04f78292ebd8fe52c2a0c903cfe2950629b5b"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -13521,11 +13616,10 @@ self: { ({ mkDerivation, base, QuickCheck }: mkDerivation { pname = "OddWord"; - version = "1.0.0.2"; - sha256 = "5b52180a6abb09928839cba9485f790e7fd0ebefcc838f0794c1fa19a75b9db0"; + version = "1.0.1.0"; + sha256 = "a143467e9491fdf3b7149b381bb41d6720b946ebd33231ccb0adad1dc5bd4329"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base QuickCheck ]; - jailbreak = true; homepage = "http://www.gekkou.co.uk/"; description = "Provides a wrapper for deriving word types with fewer bits"; license = stdenv.lib.licenses.bsd3; @@ -13938,9 +14032,11 @@ self: { base QuickCheck test-framework test-framework-quickcheck2 test-framework-th ]; + jailbreak = true; homepage = "https://github.com/choener/OrderedBits"; description = "Efficient ordered (by popcount) enumeration of bits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Ordinals" = callPackage @@ -14507,9 +14603,11 @@ self: { base QuickCheck test-framework test-framework-quickcheck2 test-framework-th ]; + jailbreak = true; homepage = "https://github.com/choener/PrimitiveArray"; description = "Efficient multidimensional arrays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Printf-TH" = callPackage @@ -14716,6 +14814,7 @@ self: { libraryHaskellDepends = [ base random vector ]; description = "QuadEdge structure for representing triangulations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "QuadTree" = callPackage @@ -15071,6 +15170,34 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "RNAlien" = callPackage + ({ mkDerivation, base, biocore, biofasta, BlastHTTP, blastxml + , bytestring, cassava, ClustalParser, cmdargs, containers + , directory, edit-distance, either-unwrap, EntrezHTTP, filepath + , hierarchical-clustering, HTTP, matrix, parsec, process, random + , split, Taxonomy, time, vector, ViennaRNAParser + }: + mkDerivation { + pname = "RNAlien"; + version = "1.0.0"; + sha256 = "5d621c19cf3a27cc29a2d80de97d9434b861799d87f743f25878771f907954c3"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base biocore biofasta BlastHTTP blastxml bytestring cassava + ClustalParser cmdargs containers directory edit-distance + either-unwrap EntrezHTTP filepath hierarchical-clustering HTTP + matrix parsec process random split Taxonomy vector ViennaRNAParser + ]; + executableHaskellDepends = [ + base biocore biofasta bytestring cassava cmdargs containers + directory either-unwrap filepath process random split time vector + ViennaRNAParser + ]; + description = "Unsupervized construction of RNA family models"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "RNAwolf" = callPackage ({ mkDerivation, base, BiobaseTrainingData, BiobaseXNA, bytestring , cmdargs, containers, deepseq, directory, parallel, PrimitiveArray @@ -16479,6 +16606,24 @@ self: { license = "GPL"; }) {}; + "Slides" = callPackage + ({ mkDerivation, base, colour, diagrams-lib, diagrams-svg + , file-embed, regexpr, utf8-string + }: + mkDerivation { + pname = "Slides"; + version = "0.1.0.6"; + sha256 = "b8bc88708a6bb7ec886e74ffd8bbc9c93f57deb75ee0d4770050557138ad3bd6"; + libraryHaskellDepends = [ + base colour diagrams-lib diagrams-svg file-embed regexpr + utf8-string + ]; + jailbreak = true; + description = "Generate slides from Haskell code"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Smooth" = callPackage ({ mkDerivation, base, containers, DifferenceLogic , FirstOrderTheory, HUnit, Proper @@ -17353,6 +17498,7 @@ self: { jailbreak = true; description = "Utilities for condensed matter physics tight binding calculations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TCache" = callPackage @@ -17523,6 +17669,25 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "TaxonomyTools" = callPackage + ({ mkDerivation, aeson, base, bytestring, cassava, cmdargs + , directory, either-unwrap, EntrezHTTP, fgl, hxt, parsec, process + , Taxonomy, vector + }: + mkDerivation { + pname = "TaxonomyTools"; + version = "1.0.0"; + sha256 = "6019493009c6b720fdabae83c939460780dca06ec67251160814f1dca842f26a"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson base bytestring cassava cmdargs directory either-unwrap + EntrezHTTP fgl hxt parsec process Taxonomy vector + ]; + description = "Tool for parsing, processing, comparing and visualizing taxonomy data"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "TeaHS" = callPackage ({ mkDerivation, array, base, containers, mtl, SDL, SDL-image , SDL-mixer, SFont, Sprig @@ -18426,6 +18591,21 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "WaveFront" = callPackage + ({ mkDerivation, base, containers, filepath, GLUtil, lens, linear + , OpenGL + }: + mkDerivation { + pname = "WaveFront"; + version = "0.1.0.0"; + sha256 = "4516fbe7c034da2a05e4967222fdedf86dee4e10eef4589764889557004692be"; + libraryHaskellDepends = [ + base containers filepath GLUtil lens linear OpenGL + ]; + description = "Parsers and utilities for the OBJ WaveFront 3D model format"; + license = stdenv.lib.licenses.mit; + }) {}; + "Weather" = callPackage ({ mkDerivation, aeson, base, bytestring, HTTP, text , unordered-containers @@ -19746,17 +19926,36 @@ self: { }) {}; "accelerate-examples" = callPackage - ({ mkDerivation, accelerate-cuda, ekg }: + ({ mkDerivation, accelerate, accelerate-cuda, accelerate-fft + , accelerate-io, ansi-wl-pprint, array, attoparsec, base, binary + , bmp, bytestring, bytestring-lexing, cereal, containers, criterion + , directory, ekg, fclabels, filepath, gloss, gloss-accelerate + , gloss-raster-accelerate, gloss-rendering, HUnit, mwc-random + , normaldistribution, primitive, QuickCheck, random, repa, repa-io + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , vector, vector-algorithms + }: mkDerivation { pname = "accelerate-examples"; - version = "0.15.0.0"; - sha256 = "381fcfb49b51216579f96596422c06e350780c0c8bb11798742da2e53358dcc9"; - revision = "1"; - editedCabalFile = "2cf8a02096ae9902b9336ce9d0665b3233abb20381d0cb4585efc53357d795cc"; + version = "0.15.1.0"; + sha256 = "2191601709da693aedb29f570e44b899b5132d2bc05fe618bc93608a43fec4a2"; configureFlags = [ "-f-opencl" ]; - isLibrary = false; + isLibrary = true; isExecutable = true; - executableHaskellDepends = [ accelerate-cuda ekg ]; + libraryHaskellDepends = [ + accelerate accelerate-cuda ansi-wl-pprint base containers criterion + directory ekg fclabels HUnit mwc-random QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 + ]; + executableHaskellDepends = [ + accelerate accelerate-cuda accelerate-fft accelerate-io array + attoparsec base binary bmp bytestring bytestring-lexing cereal + containers criterion directory fclabels filepath gloss + gloss-accelerate gloss-raster-accelerate gloss-rendering HUnit + mwc-random normaldistribution primitive QuickCheck random repa + repa-io test-framework test-framework-hunit + test-framework-quickcheck2 vector vector-algorithms + ]; homepage = "https://github.com/AccelerateHS/accelerate-examples"; description = "Examples using the Accelerate library"; license = stdenv.lib.licenses.bsd3; @@ -19956,8 +20155,8 @@ self: { }: mkDerivation { pname = "acid-state"; - version = "0.13.0"; - sha256 = "127adb9833be5b1cb6eb25f21d48dd976a0e39a4b5919095b6d03af314b85637"; + version = "0.13.1"; + sha256 = "114fd57ee31529fcde7b7fcdb70face4095fd0aa879655b1b47ceb1cba6591b3"; libraryHaskellDepends = [ array base bytestring cereal containers directory extensible-exceptions filepath mtl network safecopy stm @@ -21197,6 +21396,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "aeson-filthy" = callPackage + ({ mkDerivation, aeson, base, bytestring, doctest, text + , unordered-containers + }: + mkDerivation { + pname = "aeson-filthy"; + version = "0.1"; + sha256 = "d4dc207915fca4e65a2de331898ea870c9e09247a93dd0bc0abe159b932ee0b4"; + libraryHaskellDepends = [ + aeson base bytestring text unordered-containers + ]; + testHaskellDepends = [ base doctest ]; + homepage = "https://github.com/deviant-logic/aeson-filthy"; + description = "Several newtypes and combinators for dealing with less-than-cleanly JSON input"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "aeson-lens" = callPackage ({ mkDerivation, aeson, base, bytestring, doctest, lens, text , unordered-containers, vector @@ -21548,6 +21764,18 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "aeson-yak" = callPackage + ({ mkDerivation, aeson, base }: + mkDerivation { + pname = "aeson-yak"; + version = "0.1.0.2"; + sha256 = "aac0088282da8912febf886c8ebc7496c51e928e590ebfecaf8c8fc7d2fc9265"; + libraryHaskellDepends = [ aeson base ]; + homepage = "https://github.com/tejon/aeson-yak"; + description = "Handle JSON that may or may not be a list, or exist"; + license = stdenv.lib.licenses.mit; + }) {}; + "affine-invariant-ensemble-mcmc" = callPackage ({ mkDerivation, base, containers, mwc-random, primitive, split , vector @@ -22670,8 +22898,8 @@ self: { }: mkDerivation { pname = "amazonka"; - version = "1.3.3.1"; - sha256 = "27d9a615e8a92c8ced1c15519881632ccc4cceb33c6bb3a3a196fbe4fe18211e"; + version = "1.3.5"; + sha256 = "8f1f75ac5609f7149b177f9e27319116f7a2757bc18eeb53a55b63622ed7bce1"; libraryHaskellDepends = [ amazonka-core base bytestring conduit conduit-extra directory exceptions http-conduit ini lens mmorph monad-control mtl resourcet @@ -22683,6 +22911,24 @@ self: { license = "unknown"; }) {}; + "amazonka-apigateway" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , lens, tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-apigateway"; + version = "1.3.5"; + sha256 = "ea994081797bd6ecd1e202863421528199a73282724d313243a5121995c72e09"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring lens tasty tasty-hunit + text time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon API Gateway SDK"; + license = "unknown"; + }) {}; + "amazonka-autoscaling_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -22731,8 +22977,8 @@ self: { }: mkDerivation { pname = "amazonka-autoscaling"; - version = "1.3.3.1"; - sha256 = "041574babec4fc0a203ac406e94bcbaca58aaf0b85675c96559c1f12f4151908"; + version = "1.3.5"; + sha256 = "44e4d2fbaa4ff6cbc223dea51e4deac5bb37ee7ec4d932e80a0c0ff8ca9cf1d0"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -22791,8 +23037,8 @@ self: { }: mkDerivation { pname = "amazonka-cloudformation"; - version = "1.3.3.1"; - sha256 = "f3bab8e79227fefacbf57026df6458d390ebef26b4614080bdf19109c281ca57"; + version = "1.3.5"; + sha256 = "bf56d6e0ed7e2f166e7c250ad5873c74374d9f479a5734f4822482556f9598d5"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -22851,8 +23097,8 @@ self: { }: mkDerivation { pname = "amazonka-cloudfront"; - version = "1.3.3.1"; - sha256 = "0e9aaba03d4cc1376531f733a8420fbeb152bbf02c93f87380e9acafe7e29d9a"; + version = "1.3.5"; + sha256 = "6fe3a44979687a1b6d6624924fd237dc22eb842f43e6c490a73075da31b5b734"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -22911,8 +23157,8 @@ self: { }: mkDerivation { pname = "amazonka-cloudhsm"; - version = "1.3.3.1"; - sha256 = "08f6a0753b99bae50dd180d148f922ab6a9ec7dcac63d03b7be927f25d5fd3ed"; + version = "1.3.5"; + sha256 = "9b2103b20cbd62dd43bacad9c37e265312bdbc18da544d947e16e07bc325ecd3"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -22971,8 +23217,8 @@ self: { }: mkDerivation { pname = "amazonka-cloudsearch"; - version = "1.3.3.1"; - sha256 = "dc28e155c14c9d3c2a80fdd678022572141b95e0d046413f02576af37d6c3448"; + version = "1.3.5"; + sha256 = "a8943c444acb8f82facecd8f1da290e0ec0018e13599730cd871325e8b127f88"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23031,8 +23277,8 @@ self: { }: mkDerivation { pname = "amazonka-cloudsearch-domains"; - version = "1.3.3.1"; - sha256 = "59107a12c03c4141756c528149d5de75a979b49292eae19ec2e283abab32af19"; + version = "1.3.5"; + sha256 = "d36f3ee550fc80513623a566b75b0a0eba06b30a2aa54848997f56e371d3c3c4"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23091,8 +23337,8 @@ self: { }: mkDerivation { pname = "amazonka-cloudtrail"; - version = "1.3.3.1"; - sha256 = "198dc20a1952fad99ea4f9a889de6bed901581aa89dd49ba37e0acd864cede3c"; + version = "1.3.5"; + sha256 = "bbbe8345cbc0a214157b42570528902adcc5078a9a459c8fa66a8dd9a3897941"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23151,8 +23397,8 @@ self: { }: mkDerivation { pname = "amazonka-cloudwatch"; - version = "1.3.3.1"; - sha256 = "29cc7465272e0de75b87aaff10f04485801183502f0355c59f46041b7ae8bbe3"; + version = "1.3.5"; + sha256 = "e5f4b1aaa761fdefa154cb7bb919bb24aa05d1e6bd01435216f6700f449e3213"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23211,8 +23457,8 @@ self: { }: mkDerivation { pname = "amazonka-cloudwatch-logs"; - version = "1.3.3.1"; - sha256 = "c368fdeb5196f880c168bc611f4e2dbd5a7287d1c1001a71d5f132280faacb65"; + version = "1.3.5"; + sha256 = "56068fc2720966da3042a6ec03049e9ad97ed1ee8ab047a870fbef135577601a"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23229,8 +23475,8 @@ self: { }: mkDerivation { pname = "amazonka-codecommit"; - version = "1.3.3.1"; - sha256 = "3491e980696cb106c4d2fc6d154b1d9d10909e9bd4550edfa017e4b4ae8ba4e4"; + version = "1.3.5"; + sha256 = "f857e99df916c7de580eaed343f08524bd316f359f1decf7a1c4d1933db704b1"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23289,8 +23535,8 @@ self: { }: mkDerivation { pname = "amazonka-codedeploy"; - version = "1.3.3.1"; - sha256 = "107082997acf929b39299ba2e0f469ea57bdf75aef8430269c396199d0e961ad"; + version = "1.3.5"; + sha256 = "0fd75582517dff6c290640eb41e117baa626c9f4134de867e8534db1746c5442"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23307,8 +23553,8 @@ self: { }: mkDerivation { pname = "amazonka-codepipeline"; - version = "1.3.3.1"; - sha256 = "fb56978365d97a1cf8d663639b909394df035726ec988564c9aa5a271539683a"; + version = "1.3.5"; + sha256 = "57df1e51da45a6bc413d750e163b2af29f18cae6cc04c4a5d296e566728f4b9f"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23367,8 +23613,8 @@ self: { }: mkDerivation { pname = "amazonka-cognito-identity"; - version = "1.3.3.1"; - sha256 = "f85a01b2559ea16185513c1882067eae2749083667aefdaf2e56df9855fac2ef"; + version = "1.3.5"; + sha256 = "28ddaf8d06125be07068d324b21b66387d9cb424acba957a7c8d1e4ad04e1a72"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23427,8 +23673,8 @@ self: { }: mkDerivation { pname = "amazonka-cognito-sync"; - version = "1.3.3.1"; - sha256 = "f7295b707efc5b2df6936df227021b10dd13b79537038073897b919b0df10e8e"; + version = "1.3.5"; + sha256 = "d172d06e115f86d1ef349f944233edf0377c0d737f7f4e72a8edbd1fdf537eb2"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23487,8 +23733,8 @@ self: { }: mkDerivation { pname = "amazonka-config"; - version = "1.3.3.1"; - sha256 = "8959b2d5f38cb04015e82a30bb898be619f39114103b98e629baeb18dd12708c"; + version = "1.3.5"; + sha256 = "43e9d8103d40b13b77ba7d07c6bcbf6ab7e1419ae38aacebb3816caf039c49f1"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23601,8 +23847,8 @@ self: { }: mkDerivation { pname = "amazonka-core"; - version = "1.3.3.1"; - sha256 = "97cff5c193b02afc6b71e058bce76577382f52894f88f3b66344c2531d72db68"; + version = "1.3.5"; + sha256 = "bc8e8ac8e4a5b9c8c62127faa44df6e517c8954ba32e2ea4e4031f28ae6a23b6"; libraryHaskellDepends = [ aeson attoparsec base bifunctors bytestring case-insensitive conduit conduit-extra cryptonite exceptions hashable http-conduit @@ -23668,8 +23914,8 @@ self: { }: mkDerivation { pname = "amazonka-datapipeline"; - version = "1.3.3.1"; - sha256 = "de5692b7d72e3eb66a29a5b10c4e8a83fc4014121d4a1478281601c130ea4647"; + version = "1.3.5"; + sha256 = "febf62885892f38a92dc133e2c1a8bcfd3cfde981378200f5c1083869862d277"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23686,8 +23932,8 @@ self: { }: mkDerivation { pname = "amazonka-devicefarm"; - version = "1.3.3.1"; - sha256 = "3b341f588739d82556b092f8f2a96321be321a30d4450d905a168baf8899122a"; + version = "1.3.5"; + sha256 = "9c9de88c3074368aeb66c4ebff9aea751d87f3afbc6b181a9b601fc4acffb922"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23746,8 +23992,8 @@ self: { }: mkDerivation { pname = "amazonka-directconnect"; - version = "1.3.3.1"; - sha256 = "6fbbecc0263e1a734fd22c93aeede32912f10ba7cd2cf660d6fcae05d8d8de03"; + version = "1.3.5"; + sha256 = "17c84e6dffda69ab92d608982c42cc08b5bbb99ace263d91d0f5469e6d1e9b94"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23764,8 +24010,8 @@ self: { }: mkDerivation { pname = "amazonka-ds"; - version = "1.3.3.1"; - sha256 = "8260c4fbc7c4e37d6b1aa8dbf1e6fb32562e5930754a9e3609bcde398eec5ca5"; + version = "1.3.5"; + sha256 = "90182a5a1b0e21a4fb79a6be7a138b9550e7da8af0a6cf2f0644997c1203d7b5"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23824,8 +24070,8 @@ self: { }: mkDerivation { pname = "amazonka-dynamodb"; - version = "1.3.3.1"; - sha256 = "cb80a5fecc7bdb35c87aff89438e1c64352cb19942acca100b09d74eacbd9895"; + version = "1.3.5"; + sha256 = "3377fafd4871e7cbcd596835cd0757fc5536ce69951f1384ecd9f762f5910730"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23842,8 +24088,8 @@ self: { }: mkDerivation { pname = "amazonka-dynamodb-streams"; - version = "1.3.3.1"; - sha256 = "415e1b4608ed2ca9b9a26570020ac503511b16a06503e3aa26274bdec1fd2780"; + version = "1.3.5"; + sha256 = "678f9d544bfef5f868d49c45cb94873786b045689b2ea996b62adf2b7d317035"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23916,8 +24162,8 @@ self: { }: mkDerivation { pname = "amazonka-ec2"; - version = "1.3.3.1"; - sha256 = "4988024f87f5c8f4b2c19ace1d2b33c782f580cb662ca6e1b3e747350eadd94e"; + version = "1.3.5"; + sha256 = "48f4dbfff89de077e2affa034582f84adeb4e3062dbe1c441bce16000f991702"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23977,8 +24223,8 @@ self: { }: mkDerivation { pname = "amazonka-ecs"; - version = "1.3.3.1"; - sha256 = "f9a6baa97c182c497c41c0eb3a1805e5d5e376deee17c069ae15173d176b6c62"; + version = "1.3.5"; + sha256 = "98c59a07297ca26db89b316855176fab1b02e4e899eb973bfd527cc0bb503ed4"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -23995,8 +24241,8 @@ self: { }: mkDerivation { pname = "amazonka-efs"; - version = "1.3.3.1"; - sha256 = "658728b594a32a5071acf085b1db2323cff6ed76161447c30ee9df9acd57e6e5"; + version = "1.3.5"; + sha256 = "c0e531ab119e260af63805287b30aec2e616d2e4fd530262ef8c91db1795b59f"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24055,8 +24301,8 @@ self: { }: mkDerivation { pname = "amazonka-elasticache"; - version = "1.3.3.1"; - sha256 = "6bdc54b61a918e326079d76bfda045da725ff68236b22fcae40454eb0b32ee1f"; + version = "1.3.5"; + sha256 = "a835c08c622896ed353aca1ec7b838015cf8801706f48edcc8666e7330338e18"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24115,8 +24361,8 @@ self: { }: mkDerivation { pname = "amazonka-elasticbeanstalk"; - version = "1.3.3.1"; - sha256 = "5f04dd638e81b3f878776b9c9df514e53281600e208b09932054a528c62edbee"; + version = "1.3.5"; + sha256 = "d76cf25be30f257610680f904eb4a845bcac685d0f3c88eb6f798c7c29685497"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24133,8 +24379,8 @@ self: { }: mkDerivation { pname = "amazonka-elasticsearch"; - version = "1.3.3.1"; - sha256 = "22349ad33c4cc7c445a2e6945fbbdb375f906d222bb3336bacef16d9c9a8f06b"; + version = "1.3.5"; + sha256 = "f0039f4947daed7ebb4381bea5a0c583bc6aa690cda4a98d967508b897cd08d6"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24193,8 +24439,8 @@ self: { }: mkDerivation { pname = "amazonka-elastictranscoder"; - version = "1.3.3.1"; - sha256 = "ca7a8c367e09a283e6bcb0d428b6b58c55f24d9f05374fd6ee51de21abb8a5b5"; + version = "1.3.5"; + sha256 = "1dd28ac053a64d7fe3a56fa832b7468ddcf49da96c469863596cfb8b3813aa26"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24253,8 +24499,8 @@ self: { }: mkDerivation { pname = "amazonka-elb"; - version = "1.3.3.1"; - sha256 = "a346dfb8a16e3324da285695dd35fc84a1c7327151b99990dab07ff0c51c729a"; + version = "1.3.5"; + sha256 = "4af94742aedea95dd8ecccf22a03010a21b83149b0872f03e84cd14f3807c40b"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24313,8 +24559,8 @@ self: { }: mkDerivation { pname = "amazonka-emr"; - version = "1.3.3.1"; - sha256 = "b5ae30499d2f1b8e7538015143b13164ccf853a20913e95054ed2110d38ad790"; + version = "1.3.5"; + sha256 = "c54a824b3f1550dcad56e24e2dc718dbacfd06681e2434967736f3c1a2c210fa"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24373,8 +24619,8 @@ self: { }: mkDerivation { pname = "amazonka-glacier"; - version = "1.3.3.1"; - sha256 = "f1f3b1c37774f96ee6c528a4799e706ae09e8d5ab0d8004d201903775943ad72"; + version = "1.3.5"; + sha256 = "7cfe2bfd39cc47de89b2cb342acb647fdf9881738badf64c999dc25d8ec30114"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24433,8 +24679,8 @@ self: { }: mkDerivation { pname = "amazonka-iam"; - version = "1.3.3.1"; - sha256 = "5cacaf7c2ae198f1441e4c6a3ae026f5c34c7d6b22685342a453e3207fffc8e2"; + version = "1.3.5"; + sha256 = "15f9d6801c6510fcdbb9e187a94aa12101ef204ad55ccc68fe672fc8754f86e0"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24493,8 +24739,8 @@ self: { }: mkDerivation { pname = "amazonka-importexport"; - version = "1.3.3.1"; - sha256 = "78f0970f803bd2898268ef9aa93b977325d8b12d7bb2710bbdc33b2268483974"; + version = "1.3.5"; + sha256 = "7eed51439110b782d2eafe5c96cad66760dbb840e3c3dcfec71936853327cb9e"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24511,8 +24757,8 @@ self: { }: mkDerivation { pname = "amazonka-inspector"; - version = "1.3.3.1"; - sha256 = "f954450339f70ad4865c1f1936eefa4537596f70b77cf02c44a77eeb99a702ef"; + version = "1.3.5"; + sha256 = "dd4b1dd1366dd2b68977a33b67afad10848c528124cf9bcd2240ea8924ad8500"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24529,8 +24775,8 @@ self: { }: mkDerivation { pname = "amazonka-iot"; - version = "1.3.3.1"; - sha256 = "203fcecd3c6b01d4979a565f7a8202533b589e8907fd4c627823a190cd7e2c98"; + version = "1.3.5"; + sha256 = "de13c663eb5a92da27af230ce26635c0ce09273edb84638560758c2baf4909a9"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24541,6 +24787,24 @@ self: { license = "unknown"; }) {}; + "amazonka-iot-dataplane" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , lens, tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-iot-dataplane"; + version = "1.3.5"; + sha256 = "9e1375a3dbd7c841b21159a26588b18b686ee532f5c0d985982236edb681a043"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring lens tasty tasty-hunit + text time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon IoT Data Plane SDK"; + license = "unknown"; + }) {}; + "amazonka-kinesis_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -24589,8 +24853,8 @@ self: { }: mkDerivation { pname = "amazonka-kinesis"; - version = "1.3.3.1"; - sha256 = "5309e46a928d3220ae7bfe59469b81589d2cc779456af20d1a4e0d5d80ab0008"; + version = "1.3.5"; + sha256 = "0a25ca25d4e598d2135367a030cc541f4fefe263dc0ab480518dbbe4e1732b89"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24607,8 +24871,8 @@ self: { }: mkDerivation { pname = "amazonka-kinesis-firehose"; - version = "1.3.3.1"; - sha256 = "ab9fc9aa1e0d8909aacee7647a03e6c49a6fe85e90b0df8bf62a2c0a8769c7d3"; + version = "1.3.5"; + sha256 = "b7aa0244668978d34dd810262127112c7b74de51208a0df24677d77d3c36c3c8"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24667,8 +24931,8 @@ self: { }: mkDerivation { pname = "amazonka-kms"; - version = "1.3.3.1"; - sha256 = "1903e0712f83495b03ecf83556b5d637d7dd654e2d92bddc41710d7c77708781"; + version = "1.3.5"; + sha256 = "183bb82076688c1a5f49cc7984a08918bf154dcfbc26c2f6f05445d265026475"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24727,8 +24991,8 @@ self: { }: mkDerivation { pname = "amazonka-lambda"; - version = "1.3.3.1"; - sha256 = "042b8a6faf4beaa4f73477e276a30426b0dbe86cd334246171b82b126846f35f"; + version = "1.3.5"; + sha256 = "985cd7c7534a170c35e088eecff8ec207d56547a5d07cbb1b65b335698d09485"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24745,8 +25009,8 @@ self: { }: mkDerivation { pname = "amazonka-marketplace-analytics"; - version = "1.3.3.1"; - sha256 = "0658b545153116a6a0ec3afaf04bf3a7e4f0c76c2a3dcb1f9c02efcee186a06f"; + version = "1.3.5"; + sha256 = "1c619d6983eb690fb40cf4ea93fd41c1d837efa487394e586181098a12de13c2"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24777,8 +25041,8 @@ self: { }: mkDerivation { pname = "amazonka-ml"; - version = "1.3.3.1"; - sha256 = "a7937abccfa33d09deb09087cef856fad1540874926123defa3ce293fa5faae5"; + version = "1.3.5"; + sha256 = "023de596b18762c6d26f9bdd35fa2311a35d6c556872cec7705506c4cb117e5e"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24837,8 +25101,8 @@ self: { }: mkDerivation { pname = "amazonka-opsworks"; - version = "1.3.3.1"; - sha256 = "23a3c5eefcbcf31aecb7900a8d5e05377f22a4588241221bdf47283aa38f0e24"; + version = "1.3.5"; + sha256 = "23b381594282c319a4125cb79a95a82b75fdeecc15541b89ff12bbdb47c27ee8"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24897,8 +25161,8 @@ self: { }: mkDerivation { pname = "amazonka-rds"; - version = "1.3.3.1"; - sha256 = "9b0f5edd0bc807700cfceda7f5be95fc0883e65dac719dd52dda55c630f4fe45"; + version = "1.3.5"; + sha256 = "4866dfe6d701f1b8bf01d93073afbdf9ff6d002cc3acc082a7772c8a0c2333df"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -24958,8 +25222,8 @@ self: { }: mkDerivation { pname = "amazonka-redshift"; - version = "1.3.3.1"; - sha256 = "c15130b57a9bda8b568d3fa6c90618ca4eb1e79b731f3620e6f10acebbe4cb02"; + version = "1.3.5"; + sha256 = "f169e0a5f860fbbef9723409c2166b396026b5a2bb444e4ddd508a33a800572c"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25032,8 +25296,8 @@ self: { }: mkDerivation { pname = "amazonka-route53"; - version = "1.3.3.1"; - sha256 = "6d976169fba413b11e650fbeec8321cfed44cdf5088741a7e045fb08c6020b3e"; + version = "1.3.5"; + sha256 = "b35f412b860f8c6935858e243aab4e89b21db534acb38236e3eaa14b9c77a24d"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25092,8 +25356,8 @@ self: { }: mkDerivation { pname = "amazonka-route53-domains"; - version = "1.3.3.1"; - sha256 = "b036a6473ad435cab9f1c395abefd88186413c5f2d76f0e98ad7c74f3cad979e"; + version = "1.3.5"; + sha256 = "a3728cb802aff477e72bc7161f8095e6e1dba77bd7465bc186c68adc936606f2"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25152,8 +25416,8 @@ self: { }: mkDerivation { pname = "amazonka-s3"; - version = "1.3.3.1"; - sha256 = "e4b6fbbda81a900f7fd4d4a97136de2742b284a6e55454ebd6b7364a854b07a0"; + version = "1.3.5"; + sha256 = "efed9d42854651d71b12ce3e7b756af38225329c4b36062b49a663303e7983c4"; libraryHaskellDepends = [ amazonka-core base lens text ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25213,8 +25477,8 @@ self: { }: mkDerivation { pname = "amazonka-sdb"; - version = "1.3.3.1"; - sha256 = "81bd1e1a2e4f7a37e7169822b304e7af936c6c0e0a5b2c4812e9bcb28c5a2e30"; + version = "1.3.5"; + sha256 = "281fc05e956aabf86f6098cdf96f2bc96c1ca63c8bcaa61aaf72fc03a6db03f9"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25273,8 +25537,8 @@ self: { }: mkDerivation { pname = "amazonka-ses"; - version = "1.3.3.1"; - sha256 = "74b126cbaad5f3a6cfb452e2ee852f95d41e2c1ae7f6ab9049a02059d345c10f"; + version = "1.3.5"; + sha256 = "2dadeed2ba2380fde4569b0d8783905c3c24f64e1995c459982f198382c99a07"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25333,8 +25597,8 @@ self: { }: mkDerivation { pname = "amazonka-sns"; - version = "1.3.3.1"; - sha256 = "960f73f959c1444894ab765a3bda8912f1ccb60f1d266543f846174428af7c1c"; + version = "1.3.5"; + sha256 = "a452c8cce975a2cb1fc712479b1c87406c6945466c23fa8d474bc12dbf6f0738"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25393,8 +25657,8 @@ self: { }: mkDerivation { pname = "amazonka-sqs"; - version = "1.3.3.1"; - sha256 = "5cbd2e7078b563a362af6017f4c96c62f4e8cc5564a46dbce1ac1b7e460ac155"; + version = "1.3.5"; + sha256 = "bb45cff93bbfd66d20290508c926d4013c8e48218c3b4f3ca6cba118e8b962bc"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25454,8 +25718,8 @@ self: { }: mkDerivation { pname = "amazonka-ssm"; - version = "1.3.3.1"; - sha256 = "b6f057a5f796f9ceb764a2978e726bf10ac68cc04ad7af1da450819fb86b49d1"; + version = "1.3.5"; + sha256 = "e1441e977f05d03f5313eae4c0a00cbc6a46e49af1a6e95f2ca2f05a6f1995be"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25514,8 +25778,8 @@ self: { }: mkDerivation { pname = "amazonka-storagegateway"; - version = "1.3.3.1"; - sha256 = "e903a341a72484e16c75913b3c8f23b7428956e8997026bac7bb5976fed12cac"; + version = "1.3.5"; + sha256 = "b8f90b1cd0f4447b054032aec2c06803bd036eb5fc48ab0855c07045cb77efe4"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25574,8 +25838,8 @@ self: { }: mkDerivation { pname = "amazonka-sts"; - version = "1.3.3.1"; - sha256 = "45d967ee5ec2a6bec32e02aeb052508932135104ca35e0dfe7d7b7a8734f3c19"; + version = "1.3.5"; + sha256 = "509806ed8cf9b79c9ce67b52ea78e05ba1621d1a364ea70a0fd5df0636ba533a"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25634,8 +25898,8 @@ self: { }: mkDerivation { pname = "amazonka-support"; - version = "1.3.3.1"; - sha256 = "cfd5e1b0d1255e1287167ee1f6ced8ae047a334d33ef87bbc87f2de8f6144b80"; + version = "1.3.5"; + sha256 = "6ca32d2b4792593b49e8a843076a7f6e83508faa5f352377f40ff55d0c8029c4"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25694,8 +25958,8 @@ self: { }: mkDerivation { pname = "amazonka-swf"; - version = "1.3.3.1"; - sha256 = "6a44f8338b400aa7cb58d4eac72c1223f94aa1a9b0bb73cf79efd0f9e80060d8"; + version = "1.3.5"; + sha256 = "8eb47ed0c929062908f58a6b384b83478c2509206276ead171c0bc9a1c736310"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25716,8 +25980,8 @@ self: { }: mkDerivation { pname = "amazonka-test"; - version = "1.3.3.1"; - sha256 = "88dfa3021f346e0c8149752597535abf5d3f8ebc05818b3f6e227fbcb642cc53"; + version = "1.3.5"; + sha256 = "4e25449e6c61bc17712f4c1d1750f9e3f780b9a4c2f3d90a0129ba4c9c639c21"; libraryHaskellDepends = [ aeson amazonka-core base bifunctors bytestring case-insensitive conduit conduit-extra groom http-client http-types lens process @@ -25735,8 +25999,8 @@ self: { }: mkDerivation { pname = "amazonka-waf"; - version = "1.3.3.1"; - sha256 = "9a62d01fe19d6134b33a66bc2df6c7b1b05fe5ca10dfcb60beba6f839e33b7e2"; + version = "1.3.5"; + sha256 = "4d0bde6da823db1377577549c745f0ed31b50e1cdc8c5760f2663ae7d831a800"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -25767,8 +26031,8 @@ self: { }: mkDerivation { pname = "amazonka-workspaces"; - version = "1.3.3.1"; - sha256 = "5a4f303b9ccb9dd17ba9fca7893f110b1e668ee7c77569d650ed3851fa38cf4d"; + version = "1.3.5"; + sha256 = "0791fe563c48acac8fa525931cc83ed1a8beecc779553635f6465f7486636de2"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring lens tasty tasty-hunit @@ -26211,6 +26475,7 @@ self: { nats scientific semigroups tagged text time unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/futurice/haskell-ansi-pretty#readme"; description = "AnsiPretty for ansi-wl-pprint"; license = stdenv.lib.licenses.bsd3; @@ -27235,13 +27500,14 @@ self: { testHaskellDepends = [ base directory doctest filepath semigroups simple-reflect ]; + jailbreak = true; homepage = "http://github.com/analytics/approximate/"; description = "Approximate discrete values and numbers"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "approximate" = callPackage + "approximate_0_2_2_1" = callPackage ({ mkDerivation, base, binary, bytes, cereal, comonad, deepseq , directory, doctest, filepath, ghc-prim, hashable, hashable-extras , lens, log-domain, pointed, safecopy, semigroupoids, semigroups @@ -27259,12 +27525,14 @@ self: { testHaskellDepends = [ base directory doctest filepath semigroups simple-reflect ]; + jailbreak = true; homepage = "http://github.com/analytics/approximate/"; description = "Approximate discrete values and numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "approximate_0_2_2_2" = callPackage + "approximate" = callPackage ({ mkDerivation, base, binary, bytes, cereal, comonad, deepseq , directory, doctest, filepath, ghc-prim, hashable, hashable-extras , lens, log-domain, pointed, safecopy, semigroupoids, semigroups @@ -27285,7 +27553,6 @@ self: { homepage = "http://github.com/analytics/approximate/"; description = "Approximate discrete values and numbers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "approximate-equality" = callPackage @@ -27663,6 +27930,32 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "argon" = callPackage + ({ mkDerivation, aeson, ansi-terminal, base, bytestring, containers + , directory, docopt, filepath, ghc, ghc-paths, ghc-syb-utils, hlint + , hspec, pathwalk, QuickCheck, syb + }: + mkDerivation { + pname = "argon"; + version = "0.3.1.2"; + sha256 = "b809458adf9d811e549d09a356e9f33281922f5552799add60a852131d5f30eb"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson ansi-terminal base bytestring ghc ghc-paths ghc-syb-utils syb + ]; + executableHaskellDepends = [ + base containers directory docopt filepath pathwalk + ]; + testHaskellDepends = [ + aeson ansi-terminal base bytestring filepath ghc ghc-paths + ghc-syb-utils hlint hspec QuickCheck syb + ]; + homepage = "http://github.com/rubik/argon"; + description = "Measure your code's complexity"; + license = stdenv.lib.licenses.isc; + }) {}; + "argparser" = callPackage ({ mkDerivation, base, containers, HTF, HUnit }: mkDerivation { @@ -27783,27 +28076,27 @@ self: { }) {}; "arithmetic" = callPackage - ({ mkDerivation, base, opentheory, opentheory-bits + ({ mkDerivation, base, containers, opentheory, opentheory-bits , opentheory-divides, opentheory-prime, opentheory-primitive , QuickCheck, random }: mkDerivation { pname = "arithmetic"; - version = "1.1"; - sha256 = "37b1ddc85799ae996df95d401a74254ea4fe78b22ab2fe51652debd4e36f1a10"; + version = "1.2"; + sha256 = "f3ef6add91a72f24640b9f4836b322c9278609558b09ef0c592df9194c6f377a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base opentheory opentheory-bits opentheory-divides opentheory-prime + base containers opentheory opentheory-bits opentheory-divides opentheory-primitive QuickCheck random ]; executableHaskellDepends = [ - base opentheory opentheory-bits opentheory-divides opentheory-prime + base containers opentheory opentheory-bits opentheory-divides opentheory-primitive QuickCheck random ]; testHaskellDepends = [ - base opentheory opentheory-bits opentheory-divides opentheory-prime - opentheory-primitive QuickCheck random + base containers opentheory opentheory-bits opentheory-divides + opentheory-prime opentheory-primitive QuickCheck random ]; description = "Natural number arithmetic"; license = stdenv.lib.licenses.mit; @@ -28746,8 +29039,8 @@ self: { }: mkDerivation { pname = "atlassian-connect-descriptor"; - version = "0.4.0.2"; - sha256 = "976996df270c46e425b204fb9f6cd857fc87a1555af052bdad8de8d066165adf"; + version = "0.4.1.0"; + sha256 = "ecfca08afd198bdace14ac1700a4a9f91cb0a8545a6a959a3712f88e3beb29f6"; libraryHaskellDepends = [ aeson base cases network network-uri text time-units unordered-containers @@ -28921,6 +29214,7 @@ self: { jailbreak = true; description = "Atomic operations on Data.Vector types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atomic-write" = callPackage @@ -29429,8 +29723,8 @@ self: { }: mkDerivation { pname = "aur"; - version = "4.0.0"; - sha256 = "30377f1c8c7e8ccb96b3a5c37ecb6199c7b221961e6ed8baec08900bbedaa4a0"; + version = "4.0.1"; + sha256 = "335e7779feb1ca331bca1004fb21f507c037975eb0fdd47fc8745f4029d7f0cf"; libraryHaskellDepends = [ aeson aeson-pretty base filepath lens lens-aeson mtl text vector wreq @@ -30012,17 +30306,16 @@ self: { "aws-cloudfront-signer" = callPackage ({ mkDerivation, asn1-encoding, asn1-types, base, base64-bytestring - , bytestring, crypto-pubkey-types, old-locale, RSA, time + , bytestring, crypto-pubkey-types, RSA, time }: mkDerivation { pname = "aws-cloudfront-signer"; - version = "1.1.0.2"; - sha256 = "a9f15f671bf7389657c62637a726eaf72831d799041bfeee17ba52f2c002b033"; + version = "1.1.0.3"; + sha256 = "389a125ad8e06e79db8d4d7144dd5254bc3ebde81588fa9ece0b661cf72ad681"; libraryHaskellDepends = [ asn1-encoding asn1-types base base64-bytestring bytestring - crypto-pubkey-types old-locale RSA time + crypto-pubkey-types RSA time ]; - jailbreak = true; homepage = "http://github.com/iconnect/aws-cloudfront-signer"; description = "For signing AWS CloudFront HTTP URL requests"; license = stdenv.lib.licenses.bsd3; @@ -30364,22 +30657,22 @@ self: { "aws-sdk-text-converter" = callPackage ({ mkDerivation, base, bytestring, hspec, HUnit, iproute - , old-locale, QuickCheck, safe, strptime, template-haskell, text - , time + , QuickCheck, safe, strptime, template-haskell, text, time + , time-locale-compat }: mkDerivation { pname = "aws-sdk-text-converter"; - version = "0.3"; - sha256 = "d3d9945c8b7681c2f6068f15bb472eb671499d28a92df499fcf6fe3093d44919"; + version = "0.4.1"; + sha256 = "ce1318fcd18b191477d7e5a45bef4a62988a876a57c86e4cd01a26ea1e610713"; libraryHaskellDepends = [ - base bytestring iproute old-locale safe strptime template-haskell - text time + base bytestring iproute safe strptime template-haskell text time + time-locale-compat ]; testHaskellDepends = [ - base bytestring hspec HUnit iproute old-locale QuickCheck safe - strptime template-haskell text time + base bytestring hspec HUnit iproute QuickCheck safe strptime + template-haskell text time time-locale-compat ]; - homepage = "https://github.com/worksap-ate/aws-sdk-text-converter"; + homepage = "https://github.com/yunomu/aws-sdk-text-converter"; description = "The text converter for aws-sdk"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -31041,6 +31334,7 @@ self: { attoparsec base HUnit test-framework test-framework-hunit text vector ]; + jailbreak = true; homepage = "https://github.com/fanjam/banwords"; description = "Generalized word blacklister"; license = stdenv.lib.licenses.mit; @@ -31144,8 +31438,8 @@ self: { pname = "barrier"; version = "0.1.0"; sha256 = "9f7c56af995b47791ee0ffa69c27d3de0b895125dbd5fe0c84d8b621467f90ba"; - revision = "1"; - editedCabalFile = "2f75bd296d54424250895888d24eaec14bbdb35b355306306b6f8632052473bc"; + revision = "2"; + editedCabalFile = "bcb912e8105f792720b8515ddf9b37d6a1eecd17cb325cc40bd688641068e9e6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -31155,7 +31449,6 @@ self: { testHaskellDepends = [ base bytestring lens-family-core tasty tasty-golden ]; - jailbreak = true; homepage = "https://github.com/philopon/barrier"; description = "Shield.io style badge generator"; license = stdenv.lib.licenses.mit; @@ -31777,8 +32070,8 @@ self: { ({ mkDerivation, base, deepseq, generics-sop, QuickCheck, text }: mkDerivation { pname = "basic-sop"; - version = "0.1.0.5"; - sha256 = "a3b3bc86e109301cf72012a57afb149a8d810afec445efe2b4534d264368b27e"; + version = "0.2.0.0"; + sha256 = "8bec41c8501e9db661eea4d789ba167b6d0492c8fa69233826644c388656a891"; libraryHaskellDepends = [ base deepseq generics-sop QuickCheck text ]; @@ -32557,6 +32850,8 @@ self: { pname = "bimap"; version = "0.3.1"; sha256 = "b4e07666e79b81a00f43982191848b76a96784f0b29792290fbdec0b08ba4c0f"; + revision = "1"; + editedCabalFile = "b83cd7c739e00af80b8f73caa1661f1118541a50f679367d44ff33d48b29892a"; libraryHaskellDepends = [ base containers exceptions ]; testHaskellDepends = [ base containers exceptions QuickCheck template-haskell @@ -32597,6 +32892,7 @@ self: { QuickCheck storable-tuple unordered-containers vector vector-binary-instances vector-th-unbox ]; + jailbreak = true; homepage = "https://github.com/choener/bimaps"; description = "bijections with multiple implementations"; license = stdenv.lib.licenses.bsd3; @@ -32685,6 +32981,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "binary-enum" = callPackage + ({ mkDerivation, base, binary }: + mkDerivation { + pname = "binary-enum"; + version = "0.1.0.0"; + sha256 = "9d35688cc9b761993567385230fa5514b6e7ff2ef06da0fa421a8689e05553f7"; + libraryHaskellDepends = [ base binary ]; + homepage = "https://github.com/tolysz/binary-enum"; + description = "Simple wrappers around enum types"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "binary-file" = callPackage ({ mkDerivation, base, bytestring, monads-tf, peggy , template-haskell @@ -32798,8 +33106,8 @@ self: { pname = "binary-orphans"; version = "0.1.1.0"; sha256 = "a34b6ea3a5485859c3d83aa6d1e4535e05590ef543d01482beba757db1d14431"; - revision = "4"; - editedCabalFile = "fa36536e5eb88459d26333acce69efd1e861e11d8cc87f9ce7e3a4ebfec74601"; + revision = "5"; + editedCabalFile = "04d4634220183ff3286ee57fe7726a692a8e80e7b10c9c13ba96d0b8847e6ff1"; libraryHaskellDepends = [ aeson base binary hashable scientific tagged text text-binary time unordered-containers vector vector-binary-instances @@ -32984,6 +33292,34 @@ self: { SHA tagged tasty tasty-quickcheck text time unordered-containers vector ]; + jailbreak = true; + homepage = "https://github.com/phadej/binary-tagged#readme"; + description = "Tagged binary serialisation"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "binary-tagged_0_1_2_0" = callPackage + ({ mkDerivation, aeson, array, base, bifunctors, binary + , binary-orphans, bytestring, containers, generics-sop, hashable + , quickcheck-instances, scientific, SHA, tagged, tasty + , tasty-quickcheck, text, time, unordered-containers, vector + }: + mkDerivation { + pname = "binary-tagged"; + version = "0.1.2.0"; + sha256 = "0c1b4aded3fb3677cd85d2e3feb515b980260b3ecf98029193c8b48e6808e793"; + libraryHaskellDepends = [ + aeson array base binary bytestring containers generics-sop hashable + scientific SHA tagged text time unordered-containers vector + ]; + testHaskellDepends = [ + aeson array base bifunctors binary binary-orphans bytestring + containers generics-sop hashable quickcheck-instances scientific + SHA tagged tasty tasty-quickcheck text time unordered-containers + vector + ]; + jailbreak = true; homepage = "https://github.com/phadej/binary-tagged#readme"; description = "Tagged binary serialisation"; license = stdenv.lib.licenses.bsd3; @@ -32998,8 +33334,8 @@ self: { }: mkDerivation { pname = "binary-tagged"; - version = "0.1.2.0"; - sha256 = "0c1b4aded3fb3677cd85d2e3feb515b980260b3ecf98029193c8b48e6808e793"; + version = "0.1.3.0"; + sha256 = "8fc82ca1d43043b73fcd4ec2179efcf219fa6f9b10b2283c5f8176c8762ba9c3"; libraryHaskellDepends = [ aeson array base binary bytestring containers generics-sop hashable scientific SHA tagged text time unordered-containers vector @@ -33496,17 +33832,17 @@ self: { }) {}; "bindings-levmar" = callPackage - ({ mkDerivation, base, bindings-DSL, blas, lapack }: + ({ mkDerivation, base, bindings-DSL, blas, liblapack }: mkDerivation { pname = "bindings-levmar"; version = "1.1.0.3"; sha256 = "809175b1ebd5675506755e53901104ea52cdc68e761c7ce01df54ace11b249b5"; libraryHaskellDepends = [ base bindings-DSL ]; - librarySystemDepends = [ blas lapack ]; + librarySystemDepends = [ blas liblapack ]; homepage = "https://github.com/basvandijk/bindings-levmar"; description = "Low level bindings to the C levmar (Levenberg-Marquardt) library"; license = "unknown"; - }) {inherit (pkgs) blas; lapack = null;}; + }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "bindings-libcddb" = callPackage ({ mkDerivation, base, bindings-DSL, libcddb }: @@ -34512,9 +34848,11 @@ self: { testHaskellDepends = [ base base-unicode-symbols bytestring QuickCheck vector ]; + jailbreak = true; homepage = "https://github.com/phonohawk/bitstream"; description = "Fast, packed, strict and lazy bit streams with stream fusion"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitstring" = callPackage @@ -34580,6 +34918,7 @@ self: { homepage = "https://github.com/mokus0/bitvec"; description = "Unboxed vectors of bits / dense IntSets"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitwise" = callPackage @@ -34597,19 +34936,19 @@ self: { "bitx-bitcoin" = callPackage ({ mkDerivation, aeson, base, bytestring, directory, doctest, hspec - , http-conduit, http-types, microlens, microlens-th, network, safe - , scientific, split, text, time + , http-client, http-client-tls, http-types, microlens, microlens-th + , network, safe, scientific, split, text, time }: mkDerivation { pname = "bitx-bitcoin"; - version = "0.5.0.1"; - sha256 = "24a29bdc360b4121c7992cf4118ed1caa32854d80aa2b2d3a63a63d5a0f9e38f"; + version = "0.6.0.0"; + sha256 = "f08ac6744d6a1e74060de589603e0ee1355711a54c67501473526735ac6fb834"; libraryHaskellDepends = [ - aeson base bytestring http-conduit http-types microlens - microlens-th network scientific split text time + aeson base bytestring http-client http-client-tls http-types + microlens microlens-th network scientific split text time ]; testHaskellDepends = [ - aeson base bytestring directory doctest hspec http-conduit + aeson base bytestring directory doctest hspec http-client http-types microlens safe text time ]; homepage = "https://github.com/tebello-thejane/bitx-haskell"; @@ -37615,8 +37954,8 @@ self: { }: mkDerivation { pname = "c2hs"; - version = "0.26.1"; - sha256 = "f0c491cca64a9d5c14eb1ea926785642b2dbbaed03144ee2e1d8d47c60985c65"; + version = "0.26.2"; + sha256 = "d15d17a9dc69310fc0b350fec6290e3ec75a8c4cd7d004aaeb03374e43d244bd"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -37701,10 +38040,8 @@ self: { }: mkDerivation { pname = "cabal-bounds"; - version = "1.0.1"; - sha256 = "07ece2976aaf2a496043039120889d1904efbb8c439581b099c70cc56d9d1720"; - revision = "1"; - editedCabalFile = "0bea75835dec3439d69a0c176bcc9aa5c82866e7293dcb60e49c7168800bd8eb"; + version = "1.0.2"; + sha256 = "f5bc846128bea555c9f30e1a61007a5d8e45f30e162c19e98c23bfff6049d3b6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -37715,7 +38052,6 @@ self: { testHaskellDepends = [ base directory filepath Glob process tasty tasty-golden ]; - jailbreak = true; description = "A command line program for managing the bounds/versions of the dependencies in a cabal file"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -37727,8 +38063,8 @@ self: { }: mkDerivation { pname = "cabal-cargs"; - version = "0.7.8"; - sha256 = "0a13469b3077b242cc758f5b3b645d7fe4fca950d82c4b564ea616e7bd92e251"; + version = "0.7.9"; + sha256 = "58de52a44a9e9895c2bca3d9689012ad3f525a8a5c3b0ebda7b1c5b461d6002d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -37738,7 +38074,6 @@ self: { ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ base filepath tasty tasty-golden ]; - jailbreak = true; description = "A command line program for extracting compiler arguments from a cabal file"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -38283,13 +38618,12 @@ self: { }: mkDerivation { pname = "cabal-lenses"; - version = "0.4.6"; - sha256 = "1fdb9c5e82cd1b82c0aff5392375baa339261684e8260c77308334433ea52dac"; + version = "0.4.7"; + sha256 = "391c03e92137fde75bfc2fe7d6f3369c53a1a683e8da6d3cf14d901e7a1b58a2"; libraryHaskellDepends = [ base Cabal either lens strict system-fileio system-filepath text transformers unordered-containers ]; - jailbreak = true; description = "Lenses and traversals for the Cabal library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -38300,8 +38634,8 @@ self: { }: mkDerivation { pname = "cabal-macosx"; - version = "0.2.3"; - sha256 = "299210553e891145989c0d0e60b325979ff73b227bd9b3813b992ad1a9597567"; + version = "0.2.3.1"; + sha256 = "7fcb0d9483896a8a99a2fd4fd56451c3579b0caf413e47e2a44eff8fd1b2b032"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -38310,8 +38644,7 @@ self: { executableHaskellDepends = [ base Cabal directory fgl filepath parsec process text ]; - jailbreak = true; - homepage = "http://github.com/gimbo/cabal-macosx"; + homepage = "http://github.com/danfran/cabal-macosx"; description = "Cabal support for creating Mac OSX application bundles"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -39054,6 +39387,31 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "cacophony" = callPackage + ({ mkDerivation, base, bytestring, cryptonite, directory, doctest + , filepath, hlint, lens, memory, mtl, QuickCheck, tasty + , tasty-quickcheck + }: + mkDerivation { + pname = "cacophony"; + version = "0.1.0.0"; + sha256 = "5260c82a7ccfd1b4bdb9c2567b812ec95052c11d97d8eb208d276c8f3327cd30"; + revision = "2"; + editedCabalFile = "b3916a22e4dbcfcaec70f734e49ca883b2d269249ce1af00844ce37c442f032a"; + libraryHaskellDepends = [ + base bytestring cryptonite lens memory mtl + ]; + testHaskellDepends = [ + base bytestring directory doctest filepath hlint memory mtl + QuickCheck tasty tasty-quickcheck + ]; + doCheck = false; + homepage = "https://github.com/centromere/cacophony/wiki"; + description = "A library implementing the Noise protocol"; + license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "caf" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -39619,19 +39977,19 @@ self: { "carettah" = callPackage ({ mkDerivation, base, cairo, directory, filepath, gtk, hcwiid - , highlighting-kate, mtl, pandoc, pango, process, time + , highlighting-kate, mtl, pandoc, pango, process, text, time }: mkDerivation { pname = "carettah"; - version = "0.3.0"; - sha256 = "4266a7467c5213a06a2d2ce2dbbb894d817ba3f523e4de8e94aad38af5bd59ee"; + version = "0.4.1"; + sha256 = "8e8f8943ef544ae3487db565254c8fd657fca12b8c70c817291f965e04db5ea4"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base cairo directory filepath gtk hcwiid highlighting-kate mtl - pandoc pango process time + pandoc pango process text time ]; - homepage = "http://carettah.masterq.net/"; + homepage = "https://github.com/master-q/carettah"; description = "A presentation tool written with Haskell"; license = stdenv.lib.licenses.gpl2; hydraPlatforms = stdenv.lib.platforms.none; @@ -39704,8 +40062,8 @@ self: { }: mkDerivation { pname = "casadi-bindings"; - version = "2.4.1.0"; - sha256 = "a7c0cfdf11abca898a0aa6ecd2258311a3b29f68063a1aaf971aa3dcab4b0a68"; + version = "2.4.1.1"; + sha256 = "c9df22feb9c18f8572f1d4e4e6635b93b5e0d73127ce011294aded381c9b938c"; libraryHaskellDepends = [ base binary casadi-bindings-core casadi-bindings-internal cereal containers linear vector vector-binary-instances @@ -40140,6 +40498,7 @@ self: { test-framework-hunit test-framework-quickcheck2 text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/tibbe/cassava"; description = "A CSV parsing and encoding library"; license = stdenv.lib.licenses.bsd3; @@ -40167,6 +40526,7 @@ self: { test-framework-hunit test-framework-quickcheck2 text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/tibbe/cassava"; description = "A CSV parsing and encoding library"; license = stdenv.lib.licenses.bsd3; @@ -40944,19 +41304,20 @@ self: { "cgrep" = callPackage ({ mkDerivation, ansi-terminal, array, async, base, bytestring , cmdargs, containers, directory, dlist, either, filepath, ghc-prim - , mtl, regex-posix, safe, split, stm, stringsearch, transformers - , unix-compat, unordered-containers + , mtl, regex-base, regex-pcre, regex-posix, safe, split, stm + , stringsearch, transformers, unix-compat, unordered-containers }: mkDerivation { pname = "cgrep"; - version = "6.5.7"; - sha256 = "cd999c309e53f6c8a37243f43812e95d8430b56d87188fccc816747c67646e56"; + version = "6.5.9"; + sha256 = "169f35d12b3a75e3cf172c5a69828ed7bb89905c7ecf12aa9997cfee730d9f3a"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ ansi-terminal array async base bytestring cmdargs containers - directory dlist either filepath ghc-prim mtl regex-posix safe split - stm stringsearch transformers unix-compat unordered-containers + directory dlist either filepath ghc-prim mtl regex-base regex-pcre + regex-posix safe split stm stringsearch transformers unix-compat + unordered-containers ]; homepage = "http://awgn.github.io/cgrep/"; description = "Command line tool"; @@ -41028,8 +41389,8 @@ self: { ({ mkDerivation, array, base, process, random }: mkDerivation { pname = "chalmers-lava2000"; - version = "1.5"; - sha256 = "ea6525081514146301a974a73d875c742e03a7765f397a3287a319856b803ff7"; + version = "1.5.1"; + sha256 = "82ea480552911a454a3980733a7106e97ccfcb3d8eb5c7990d2cf764e5f1f2ff"; libraryHaskellDepends = [ array base process random ]; homepage = "http://projects.haskell.org/chalmers-lava2000/Doc/tutorial.pdf"; description = "Hardware description EDSL"; @@ -41352,7 +41713,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "checkers" = callPackage + "checkers_0_4_3" = callPackage ({ mkDerivation, array, base, QuickCheck, random }: mkDerivation { pname = "checkers"; @@ -41361,6 +41722,18 @@ self: { libraryHaskellDepends = [ array base QuickCheck random ]; description = "Check properties on standard classes and data structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "checkers" = callPackage + ({ mkDerivation, array, base, QuickCheck, random }: + mkDerivation { + pname = "checkers"; + version = "0.4.4"; + sha256 = "11ad84ddb449ef97188c32b1a1324cc611a6d75033020890699ae8dba9fd8e9d"; + libraryHaskellDepends = [ array base QuickCheck random ]; + description = "Check properties on standard classes and data structures"; + license = stdenv.lib.licenses.bsd3; }) {}; "chell_0_4" = callPackage @@ -42099,8 +42472,8 @@ self: { }: mkDerivation { pname = "clafer"; - version = "0.4.2"; - sha256 = "020aa22d8e0fc8cf8038530e4a5478f35d3c8553d1aaa06536813ecc5a58fc87"; + version = "0.4.2.1"; + sha256 = "35bd00e22e143755b6c66026f1266ec046990ed998f9f89c0198b973909069dd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -42133,8 +42506,8 @@ self: { }: mkDerivation { pname = "claferIG"; - version = "0.4.2"; - sha256 = "7beca40d0c4286e794120caf8f238b2c12feed79abf51bd8bfc92a44079fcf67"; + version = "0.4.2.1"; + sha256 = "519cbe18e8f2519d878f1aa3ca2b77ad19d099f0fc54d5144d1c4cc8690c5bdc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -42164,8 +42537,8 @@ self: { }: mkDerivation { pname = "claferwiki"; - version = "0.4.2"; - sha256 = "307fc315856b948a5e336b6de685130b740bc0d1030e91ed34cd31f4bd20e67a"; + version = "0.4.2.1"; + sha256 = "04c7ed51e92e27e3dfe2b7fdfa9bc02fcf698b78cfc33d8241673fb0a361b7b1"; libraryHaskellDepends = [ base clafer containers directory gitit MissingH mtl network network-uri process SHA split time transformers transformers-compat @@ -42226,6 +42599,8 @@ self: { pname = "clash-ghc"; version = "0.5.11"; sha256 = "efbdf2e6ef43b8dc59f8dd918d997f68cdd83ab92f04f5643b54f028d6218cd3"; + revision = "1"; + editedCabalFile = "3044314296cb2fd9414ffc5ef600e051b88e3c1c920b7dd5f67da472998e0b32"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -42253,6 +42628,8 @@ self: { pname = "clash-ghc"; version = "0.5.13"; sha256 = "135104a2d23bb86a686c0043d9b95307d766431e3beb98d06d41676ec4bdbcb2"; + revision = "1"; + editedCabalFile = "396817fac16ea3e29675c3a6e13e02c2eed7155c5c6361bb291e77307fbc7851"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -42280,6 +42657,8 @@ self: { pname = "clash-ghc"; version = "0.5.14"; sha256 = "84b931a8b22c253eb324d3e0e5afe92f49a09870c6e06fb9e37efc0c2c8ca8d5"; + revision = "1"; + editedCabalFile = "2dfee368e718de9199b29cb091a33d2fec7b6006fa8053756b24bb3cbb44528f"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -42307,6 +42686,8 @@ self: { pname = "clash-ghc"; version = "0.5.15"; sha256 = "54799a12bd0a01e0a1814caef51504301c843c4f745b7110a3542cc6043215e3"; + revision = "1"; + editedCabalFile = "2e620f3c94f1bd3039f7e8cbdd5f3f547182b4a657fcb2a5d05554d378b2ae6b"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -42326,21 +42707,22 @@ self: { "clash-ghc" = callPackage ({ mkDerivation, array, base, bifunctors, bytestring, clash-lib , clash-prelude, clash-systemverilog, clash-verilog, clash-vhdl - , containers, directory, filepath, ghc, ghc-typelits-natnormalise - , hashable, haskeline, lens, mtl, process, text, transformers - , unbound-generics, unix, unordered-containers + , containers, directory, filepath, ghc, ghc-typelits-extra + , ghc-typelits-natnormalise, hashable, haskeline, lens, mtl + , process, text, transformers, unbound-generics, unix + , unordered-containers }: mkDerivation { pname = "clash-ghc"; - version = "0.6.1"; - sha256 = "7cee8b008e9da145cf3854259fcc7c1917d4311bc9badc17a4c1dd2087da6fd7"; + version = "0.6.3"; + sha256 = "fa43226b3b483ad925fddc75fd8bec799b11e2d0e5cc32d69353b1a82fea5d5c"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ array base bifunctors bytestring clash-lib clash-prelude clash-systemverilog clash-verilog clash-vhdl containers directory - filepath ghc ghc-typelits-natnormalise hashable haskeline lens mtl - process text transformers unbound-generics unix + filepath ghc ghc-typelits-extra ghc-typelits-natnormalise hashable + haskeline lens mtl process text transformers unbound-generics unix unordered-containers ]; homepage = "http://www.clash-lang.org/"; @@ -42449,8 +42831,8 @@ self: { }: mkDerivation { pname = "clash-lib"; - version = "0.6.1"; - sha256 = "f7e701258f7eb4b25fb0e5529f069eee8bf44e540e7ba32f9a86d13d40fdf67f"; + version = "0.6.3"; + sha256 = "4a44b055e816d3b2cfe71718ee0b8e6b04f11aaf94ef4847b638ecd6f60c9e86"; libraryHaskellDepends = [ aeson attoparsec base bytestring clash-prelude concurrent-supply containers deepseq directory errors fgl filepath hashable lens mtl @@ -42478,6 +42860,7 @@ self: { integer-gmp lens QuickCheck singletons template-haskell th-lift ]; testHaskellDepends = [ base doctest Glob ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - Prelude library"; license = stdenv.lib.licenses.bsd2; @@ -42506,17 +42889,18 @@ self: { "clash-prelude" = callPackage ({ mkDerivation, array, base, data-default, doctest, ghc-prim - , ghc-typelits-natnormalise, Glob, integer-gmp, lens, QuickCheck - , reflection, singletons, template-haskell, th-lift + , ghc-typelits-extra, ghc-typelits-natnormalise, Glob, integer-gmp + , lens, QuickCheck, reflection, singletons, template-haskell + , th-lift }: mkDerivation { pname = "clash-prelude"; - version = "0.10.1"; - sha256 = "2be01788ccbb1a8dcf16ee12e2a7bbba4733482f13bbfe66d13ceda21ec6fb2b"; + version = "0.10.3"; + sha256 = "4049c115c7b38ddf893e860556dbe29543ae729a0d288cc651739b6ef6d5ebfb"; libraryHaskellDepends = [ - array base data-default ghc-prim ghc-typelits-natnormalise - integer-gmp lens QuickCheck reflection singletons template-haskell - th-lift + array base data-default ghc-prim ghc-typelits-extra + ghc-typelits-natnormalise integer-gmp lens QuickCheck reflection + singletons template-haskell th-lift ]; testHaskellDepends = [ base doctest Glob ]; homepage = "http://www.clash-lang.org/"; @@ -42615,8 +42999,8 @@ self: { }: mkDerivation { pname = "clash-systemverilog"; - version = "0.6.1"; - sha256 = "ba5caf41c95d92ad36a34ae085d667a13b34d437fed1fd497ab97917994bad7a"; + version = "0.6.2"; + sha256 = "43ccdfca5733939862faaa5c3328431f60e465df8cc5205785a2d6087f638fb6"; libraryHaskellDepends = [ base clash-lib clash-prelude fgl lens mtl text unordered-containers wl-pprint-text @@ -42704,8 +43088,8 @@ self: { }: mkDerivation { pname = "clash-verilog"; - version = "0.6.1"; - sha256 = "b8035a6e711e91289ff13da74c105d4965df2957856ecefd2be027daf8016b60"; + version = "0.6.2"; + sha256 = "efaf7f4fab002a02d703c68dcb99ec0e4e7062b64fa398ba7cb4d7a0545140db"; libraryHaskellDepends = [ base clash-lib clash-prelude fgl lens mtl text unordered-containers wl-pprint-text @@ -42793,8 +43177,8 @@ self: { }: mkDerivation { pname = "clash-vhdl"; - version = "0.6.1"; - sha256 = "6d24b80a4255233e5e70e6d7547e97b22668c30db1ddc219d5e95562768aa201"; + version = "0.6.2"; + sha256 = "81ecdf464b508f31251580e8d1408490b9d161e951a26326edd82a5418b19e08"; libraryHaskellDepends = [ base clash-lib clash-prelude fgl lens mtl text unordered-containers wl-pprint-text @@ -43094,6 +43478,34 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "classy-prelude_0_12_5" = callPackage + ({ mkDerivation, base, basic-prelude, bifunctors, bytestring + , chunked-data, containers, dlist, enclosed-exceptions, exceptions + , ghc-prim, hashable, hspec, lifted-base, mono-traversable, mtl + , mutable-containers, primitive, QuickCheck, semigroups, stm, text + , time, time-locale-compat, transformers, unordered-containers + , vector, vector-instances + }: + mkDerivation { + pname = "classy-prelude"; + version = "0.12.5"; + sha256 = "40b56fae07d001e262cdcb9567774a3c6a2a39c2210e49333d33992595c54ca1"; + libraryHaskellDepends = [ + base basic-prelude bifunctors bytestring chunked-data containers + dlist enclosed-exceptions exceptions ghc-prim hashable lifted-base + mono-traversable mtl mutable-containers primitive semigroups stm + text time time-locale-compat transformers unordered-containers + vector vector-instances + ]; + testHaskellDepends = [ + base containers hspec QuickCheck transformers unordered-containers + ]; + homepage = "https://github.com/snoyberg/classy-prelude"; + description = "A typeclass-based Prelude"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "classy-prelude-conduit_0_10_2" = callPackage ({ mkDerivation, base, bytestring, classy-prelude, conduit , conduit-combinators, hspec, monad-control, QuickCheck, resourcet @@ -43280,6 +43692,29 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "classy-prelude-conduit_0_12_5" = callPackage + ({ mkDerivation, base, bytestring, classy-prelude, conduit + , conduit-combinators, hspec, monad-control, QuickCheck, resourcet + , transformers, void + }: + mkDerivation { + pname = "classy-prelude-conduit"; + version = "0.12.5"; + sha256 = "9df2403cd5dd3cc65facfc569b6a3883ca4da159bf601ac1993cb99caf9c206e"; + libraryHaskellDepends = [ + base bytestring classy-prelude conduit conduit-combinators + monad-control resourcet transformers void + ]; + testHaskellDepends = [ + base bytestring conduit hspec QuickCheck transformers + ]; + jailbreak = true; + homepage = "https://github.com/snoyberg/classy-prelude"; + description = "conduit instances for classy-prelude"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "classy-prelude-yesod_0_10_2" = callPackage ({ mkDerivation, aeson, base, classy-prelude , classy-prelude-conduit, data-default, http-conduit, http-types @@ -43446,6 +43881,27 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "classy-prelude-yesod_0_12_5" = callPackage + ({ mkDerivation, aeson, base, classy-prelude + , classy-prelude-conduit, data-default, http-conduit, http-types + , persistent, yesod, yesod-newsfeed, yesod-static + }: + mkDerivation { + pname = "classy-prelude-yesod"; + version = "0.12.5"; + sha256 = "8f63ff332861d8a72627e4e402fe717750e86f89bdfb518e7db2aec52095b676"; + libraryHaskellDepends = [ + aeson base classy-prelude classy-prelude-conduit data-default + http-conduit http-types persistent yesod yesod-newsfeed + yesod-static + ]; + jailbreak = true; + homepage = "https://github.com/snoyberg/classy-prelude"; + description = "Provide a classy prelude including common Yesod functionality"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "clay" = callPackage ({ mkDerivation, base, HUnit, mtl, test-framework , test-framework-hunit, text @@ -44634,7 +45090,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "codex" = callPackage + "codex_0_3_0_10" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, cryptohash , directory, either, filepath, hackage-db, http-client, lens , machines, machines-directory, MissingH, monad-loops, network @@ -44655,6 +45111,34 @@ self: { base bytestring Cabal directory either filepath hackage-db MissingH monad-loops network wreq yaml ]; + jailbreak = true; + homepage = "http://github.com/aloiscochard/codex"; + description = "A ctags file generator for cabal project dependencies"; + license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "codex" = callPackage + ({ mkDerivation, base, bytestring, Cabal, containers, cryptohash + , directory, either, filepath, hackage-db, http-client, lens + , machines, machines-directory, MissingH, monad-loops, network + , process, tar, text, transformers, wreq, yaml, zlib + }: + mkDerivation { + pname = "codex"; + version = "0.4.0.4"; + sha256 = "896add5b0aeea29b6a2e0a3a21e94a44740d6e2401c7c59257cd45d02120c022"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring Cabal containers cryptohash directory either + filepath hackage-db http-client lens machines machines-directory + process tar text transformers wreq yaml zlib + ]; + executableHaskellDepends = [ + base bytestring Cabal directory either filepath hackage-db MissingH + monad-loops network process transformers wreq yaml + ]; homepage = "http://github.com/aloiscochard/codex"; description = "A ctags file generator for cabal project dependencies"; license = stdenv.lib.licenses.asl20; @@ -44989,8 +45473,8 @@ self: { ({ mkDerivation, array, base, containers, random, transformers }: mkDerivation { pname = "combinat"; - version = "0.2.7.2"; - sha256 = "ea1d24754fe24c13ea02441ad6e15bd5612227d72ff61db2aac8e18c3354e931"; + version = "0.2.8.0"; + sha256 = "aa718162cfd5b915901b828d51adde032745e97530ebfa281e50fce32cdac82d"; libraryHaskellDepends = [ array base containers random transformers ]; @@ -45002,15 +45486,15 @@ self: { "combinat-diagrams" = callPackage ({ mkDerivation, array, base, colour, combinat, containers - , diagrams-core, diagrams-lib, transformers, vector-space + , diagrams-core, diagrams-lib, linear, transformers }: mkDerivation { pname = "combinat-diagrams"; - version = "0.1"; - sha256 = "58f05a74e12f3b76541d20c738d025872ab9afdf9d9ab78b894f0e541c06ebd4"; + version = "0.2"; + sha256 = "70c8f0126c8c92588a45136f928398e08fc4f4e03f8e8573679328db0d41a94a"; libraryHaskellDepends = [ array base colour combinat containers diagrams-core diagrams-lib - transformers vector-space + linear transformers ]; homepage = "http://code.haskell.org/~bkomuves/"; description = "Graphical representations for various combinatorial objects"; @@ -45455,10 +45939,8 @@ self: { ({ mkDerivation, base, containers, hspec, QuickCheck, vector }: mkDerivation { pname = "compactmap"; - version = "0.1.1"; - sha256 = "da3304bb30ef354d10c731589ac8c3086b91d2fe72fb1828ed17ce02de85c192"; - revision = "1"; - editedCabalFile = "a303fff361ce77f12115c193fd2fa82e9ebcc1c12e2c99977e540b2841e10cf8"; + version = "0.1.3.1"; + sha256 = "14a6e2da9d41c4499a3d1e29c4259847062ec19ff5e3abc3f84861218d6195c3"; libraryHaskellDepends = [ base vector ]; testHaskellDepends = [ base containers hspec QuickCheck ]; description = "A read-only memory-efficient key-value store"; @@ -45607,6 +46089,7 @@ self: { homepage = "http://github.com/analytics/compensated/"; description = "Compensated floating-point arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "competition" = callPackage @@ -46120,6 +46603,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "concurrent-output" = callPackage + ({ mkDerivation, async, base, bytestring, containers, directory + , exceptions, process, stm, text, transformers, unix + }: + mkDerivation { + pname = "concurrent-output"; + version = "1.0.1"; + sha256 = "694020da0978ba93d29b530b319d458db88792d961334d6f047591972cc62871"; + libraryHaskellDepends = [ + async base bytestring containers directory exceptions process stm + text transformers unix + ]; + description = "handling concurrent output"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "concurrent-sa" = callPackage ({ mkDerivation, base, MonadRandom }: mkDerivation { @@ -46186,6 +46685,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "concurrent-utilities" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "concurrent-utilities"; + version = "0.1.0.0"; + sha256 = "78036871043af2e00342cc4c31d40664433c57fb1c9ccd50b8d680c24ae59e40"; + libraryHaskellDepends = [ base ]; + homepage = "-"; + description = "More utilities and broad-used datastructures for concurrency"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "concurrentoutput" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -46394,7 +46905,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "conduit" = callPackage + "conduit_1_2_5" = callPackage ({ mkDerivation, base, containers, exceptions, hspec, lifted-base , mmorph, mtl, QuickCheck, resourcet, safe, transformers , transformers-base, void @@ -46414,9 +46925,10 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Streaming data processing library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "conduit_1_2_5_1" = callPackage + "conduit" = callPackage ({ mkDerivation, base, containers, exceptions, hspec, lifted-base , mmorph, mtl, QuickCheck, resourcet, safe, transformers , transformers-base @@ -46425,6 +46937,8 @@ self: { pname = "conduit"; version = "1.2.5.1"; sha256 = "651fddf1641b2a92eae5acad77711b03df466b4a0d4a7d7c6d70b6d2b8e6062b"; + revision = "1"; + editedCabalFile = "3f33cf6347a248ba71ee278ca5caf55d7f7c22ab59dcf0c141a1977cd099344d"; libraryHaskellDepends = [ base exceptions lifted-base mmorph mtl resourcet transformers transformers-base @@ -46436,7 +46950,6 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Streaming data processing library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conduit-audio" = callPackage @@ -46506,6 +47019,7 @@ self: { homepage = "http://github.com/mtolly/conduit-audio"; description = "conduit-audio interface to the libsndfile audio file library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conduit-combinators_0_3_0_4" = callPackage @@ -47099,17 +47613,19 @@ self: { ({ mkDerivation, aeson, aeson-pretty, base, bytestring , case-insensitive, containers, either, hspec, hspec-discover, mtl , pretty-show, QuickCheck, regex-easy, safe, scientific - , string-conversions, text, unordered-containers, vector, yaml + , string-conversions, template-haskell, text, unordered-containers + , vector, yaml }: mkDerivation { pname = "configifier"; - version = "0.0.5"; - sha256 = "7f0373cb8865e8bf9685eaf2522aea7c89d4788e0b58ea70ded380554544794c"; + version = "0.0.6"; + sha256 = "00b212fa919e3765224654886be2e78ba646396470dd1448fc8851852482e2b6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring case-insensitive containers either mtl regex-easy - safe string-conversions unordered-containers vector yaml + safe string-conversions template-haskell unordered-containers + vector yaml ]; executableHaskellDepends = [ base bytestring mtl pretty-show string-conversions text yaml @@ -48213,6 +48729,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "convert" = callPackage + ({ mkDerivation, base, bytestring, containers, either, lens, mtl + , old-locale, old-time, template-haskell, text, time + }: + mkDerivation { + pname = "convert"; + version = "1.0"; + sha256 = "40404a86c7dbe1766fe9fbbc0289b79c132aeff38946e177f49a0ffc7ff3c1f5"; + libraryHaskellDepends = [ + base bytestring containers either lens mtl old-locale old-time + template-haskell text time + ]; + homepage = "https://github.com/wdanilo/convert"; + description = "Safe and unsafe data conversion utilities with strong type-level operation. checking."; + license = stdenv.lib.licenses.asl20; + }) {}; + "convertible_1_1_0_0" = callPackage ({ mkDerivation, base, bytestring, containers, mtl, old-locale , old-time, text, time @@ -48394,22 +48927,24 @@ self: { "copilot" = callPackage ({ mkDerivation, base, copilot-c99, copilot-cbmc, copilot-core - , copilot-language, copilot-libraries, copilot-sbv, directory - , random + , copilot-language, copilot-libraries, copilot-sbv, copilot-theorem + , directory, random }: mkDerivation { pname = "copilot"; - version = "2.1.2"; - sha256 = "7f1b6159a9afec5f0eb1d131dca41caf77c5d4cf77875800ec0cea42bd9f5457"; + version = "2.2.0"; + sha256 = "5ab66248bbfb63435ffb931323be965dfec045c4a56c16ebfb77b7a9020c4853"; + revision = "3"; + editedCabalFile = "5566482d53a961c2f08f95f8b1aa7ddae00120ffa29e99df936e9221beac6d6c"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base copilot-c99 copilot-cbmc copilot-core copilot-language - copilot-libraries copilot-sbv + copilot-libraries copilot-sbv copilot-theorem ]; executableHaskellDepends = [ base copilot-c99 copilot-cbmc copilot-core copilot-language - copilot-libraries copilot-sbv directory random + copilot-libraries copilot-sbv copilot-theorem directory random ]; homepage = "http://leepike.github.com/Copilot/"; description = "A stream DSL for writing embedded C programs"; @@ -48423,8 +48958,8 @@ self: { }: mkDerivation { pname = "copilot-c99"; - version = "2.1.2"; - sha256 = "ed3bdb67dd53bf80428b7efd31cf6c4ff9a082fc9d43b6ea70b5773da76b7453"; + version = "2.2.0"; + sha256 = "e9b9f55242db21d02080a9c96266967e84f9d49e74231526a49778913d6e7e9c"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -48446,8 +48981,8 @@ self: { }: mkDerivation { pname = "copilot-cbmc"; - version = "2.1.2"; - sha256 = "41a1877676103ae54897d836d9232374a45b64825262e6ca20d797ac7124cf0a"; + version = "2.2.0"; + sha256 = "ac9fe6c89c28864be84cc4fc9724d9081f1b118c798567541a9c2380f23cae0e"; libraryHaskellDepends = [ base bytestring copilot-c99 copilot-core copilot-sbv directory pretty process @@ -48463,8 +48998,8 @@ self: { }: mkDerivation { pname = "copilot-core"; - version = "2.1.2"; - sha256 = "47bb5ec8277069b27369be9a29c16bc3b8515545339ab21c2a5b83139839b8bd"; + version = "2.2.0"; + sha256 = "2a9a6c7954d66179b03654cf04297800de015ba9b11f76b9e80b02c290f060a1"; libraryHaskellDepends = [ base containers dlist mtl pretty pretty-ncols random ]; @@ -48474,15 +49009,18 @@ self: { }) {}; "copilot-language" = callPackage - ({ mkDerivation, array, base, containers, copilot-core, data-reify - , ghc-prim, mtl + ({ mkDerivation, array, base, containers, copilot-core + , copilot-theorem, data-reify, ghc-prim, mtl }: mkDerivation { pname = "copilot-language"; - version = "2.1.2"; - sha256 = "632e33afb0a45515512b9ef9d7ade103a11a1ccffa932f80b2996c33a1e12981"; + version = "2.2.0"; + sha256 = "35bbc98550819f06978a73f5d19e15f93463b4b0a8cc6eae33cef45f30bf127c"; + revision = "1"; + editedCabalFile = "7ab61bdf2be4f514ad0b5241d32dd28ab67ecfcc865883f6d6811a9b4e7050af"; libraryHaskellDepends = [ - array base containers copilot-core data-reify ghc-prim mtl + array base containers copilot-core copilot-theorem data-reify + ghc-prim mtl ]; description = "A Haskell-embedded DSL for monitoring hard real-time distributed systems"; license = stdenv.lib.licenses.bsd3; @@ -48495,32 +49033,51 @@ self: { }: mkDerivation { pname = "copilot-libraries"; - version = "2.1.1"; - sha256 = "d26b6bd9f43fc299516c2c8f9ad954a70658e1d0d61f9f5c9abbed47becbc92c"; + version = "2.2.0"; + sha256 = "a6ae67ceb7fd7b63e7fa13af7f2039a606be8932430a702a9d7b8c7674f50b2b"; libraryHaskellDepends = [ array base containers copilot-language mtl parsec ]; - description = "A Haskell-embedded DSL for monitoring hard real-time distributed systems"; + homepage = "https://github.com/leepike/copilot-libraries"; + description = "Libraries for the Copilot language"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; "copilot-sbv" = callPackage - ({ mkDerivation, base, containers, copilot-core, filepath, pretty - , sbv + ({ mkDerivation, base, containers, copilot-core, directory + , filepath, pretty, sbv }: mkDerivation { pname = "copilot-sbv"; - version = "2.1.2"; - sha256 = "99c5c7f0c290f14362155c6d3a7a73837af8011fef30eb7275e4d2977ba58ba8"; + version = "2.2.0"; + sha256 = "8d657406fa3c846b14b05948857fce47dc66ba5eb73140ae6855dd98f6859dae"; libraryHaskellDepends = [ - base containers copilot-core filepath pretty sbv + base containers copilot-core directory filepath pretty sbv ]; + jailbreak = true; description = "A compiler for CoPilot targeting SBV"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "copilot-theorem" = callPackage + ({ mkDerivation, ansi-terminal, base, bimap, containers + , copilot-core, data-default, directory, mtl, parsec, pretty + , process, random, smtlib2, transformers, xml + }: + mkDerivation { + pname = "copilot-theorem"; + version = "2.2.0"; + sha256 = "c24948bd2fcfc695f5ebf61116a72a75d6e0fbcadbbb91a5cbde4083285cf30c"; + libraryHaskellDepends = [ + ansi-terminal base bimap containers copilot-core data-default + directory mtl parsec pretty process random smtlib2 transformers xml + ]; + description = "k-induction for Copilot"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "copr" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, hlint , HsOpenSSL, http-streams, io-streams, semigroups, text @@ -50029,12 +50586,12 @@ self: { ({ mkDerivation, base, containers, HUnit, MissingH, split }: mkDerivation { pname = "crypto-enigma"; - version = "0.0.2.0"; - sha256 = "193d3240a18db9d09ec1dc6d02612f034dd9e364083949adf8feb9e17c10a80f"; + version = "0.0.2.5"; + sha256 = "67fcdd2646f985d97fadbdaeb70ed4b85d8cc74dc0afa031c3bfbd949c9778b6"; libraryHaskellDepends = [ base containers MissingH split ]; testHaskellDepends = [ base HUnit ]; jailbreak = true; - homepage = "https://github.com/orome/crypto-enigma"; + homepage = "https://github.com/orome/crypto-enigma-hs"; description = "An Enigma machine simulator with display"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -50585,14 +51142,14 @@ self: { "csound-catalog" = callPackage ({ mkDerivation, base, csound-expression, csound-sampler - , transformers + , sharc-timbre, transformers }: mkDerivation { pname = "csound-catalog"; - version = "0.3.0"; - sha256 = "e2286491cdeaacf96d42f6386f54ada8fe35fecca2d9730f6d21c751a3a3b3c2"; + version = "0.4.0"; + sha256 = "721440f3f891f3117fd38042ad8111b9a23dc0259ea51c177b17115763bac157"; libraryHaskellDepends = [ - base csound-expression csound-sampler transformers + base csound-expression csound-sampler sharc-timbre transformers ]; homepage = "https://github.com/anton-k/csound-catalog"; description = "a gallery of Csound instruments"; @@ -50601,16 +51158,17 @@ self: { }) {}; "csound-expression" = callPackage - ({ mkDerivation, base, Boolean, colour, csound-expression-dynamic - , csound-expression-opcodes, csound-expression-typed, data-default - , process, temporal-media, transformers + ({ mkDerivation, base, Boolean, colour, containers + , csound-expression-dynamic, csound-expression-opcodes + , csound-expression-typed, data-default, process, temporal-media + , transformers }: mkDerivation { pname = "csound-expression"; - version = "4.8.4"; - sha256 = "e9533d4675c8991b5ab072e5259055e55a05a95f43be4baab0d8473e254c4741"; + version = "4.9.1"; + sha256 = "c0dcb47cba9902f81bd3567ad79250a6cc2c4b421da3f0ffea40dfcace513d23"; libraryHaskellDepends = [ - base Boolean colour csound-expression-dynamic + base Boolean colour containers csound-expression-dynamic csound-expression-opcodes csound-expression-typed data-default process temporal-media transformers ]; @@ -50659,8 +51217,8 @@ self: { }: mkDerivation { pname = "csound-expression-typed"; - version = "0.0.8"; - sha256 = "867a228cf36b5918a896451310177c82d618bb21d810aed5f7e41d56648929fa"; + version = "0.0.9.1"; + sha256 = "d578b5bae42df143962d2d1121385a4dea39d751eaebbe11f07e08b615320a12"; libraryHaskellDepends = [ base Boolean colour containers csound-expression-dynamic data-default deepseq ghc-prim hashable temporal-media transformers @@ -50675,8 +51233,8 @@ self: { ({ mkDerivation, base, csound-expression, transformers }: mkDerivation { pname = "csound-sampler"; - version = "0.0.6.3"; - sha256 = "8c50fb842eb4ed234f3c924c5cc2d3c7946307a831621d858c5bd72bfe7548e0"; + version = "0.0.6.4"; + sha256 = "e3928a9f104b4c81ed9b4724a3f8352b7fbf2b1df60ebec66c45d2ddbac950d6"; libraryHaskellDepends = [ base csound-expression transformers ]; homepage = "https://github.com/anton-k/csound-sampler"; description = "A musical sampler based on Csound"; @@ -50685,13 +51243,16 @@ self: { }) {}; "csp" = callPackage - ({ mkDerivation, base, containers, mtl, nondeterminism }: + ({ mkDerivation, base, containers, mtl, nondeterminism, tasty + , tasty-hunit + }: mkDerivation { pname = "csp"; - version = "1.0"; - sha256 = "4cf06f8b3d5ffb69264a7d8883c6bb7ae153d7ec3dc27d3ac8ab6685ba177f6a"; + version = "1.3"; + sha256 = "8be3102fda62818d3ccb4649dc73b8cb6bb29d9620d7284023475297c6efdd32"; libraryHaskellDepends = [ base containers mtl nondeterminism ]; - description = "Discrete constraint satisfaction problem (CSP) solvers"; + testHaskellDepends = [ base nondeterminism tasty tasty-hunit ]; + description = "Discrete constraint satisfaction problem (CSP) solver"; license = "LGPL"; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -51509,9 +52070,9 @@ self: { ({ mkDerivation, array, attoparsec, base, base16-bytestring, binary , bytestring, cmdargs, containers, cryptohash, curl, data-ordlist , dataenc, directory, filepath, FindBin, hashable, haskeline, html - , HTTP, HUnit, mmap, mtl, network, network-uri, old-time, parsec - , process, QuickCheck, random, regex-applicative, regex-compat-tdfa - , shelly, split, tar, terminfo, test-framework + , HTTP, HUnit, mmap, mtl, network, network-uri, old-locale + , old-time, parsec, process, QuickCheck, random, regex-applicative + , regex-compat-tdfa, shelly, split, tar, terminfo, test-framework , test-framework-hunit, test-framework-quickcheck2, text, time , transformers, transformers-compat, unix, unix-compat, utf8-string , vector, zip-archive, zlib @@ -51526,10 +52087,11 @@ self: { libraryHaskellDepends = [ array attoparsec base base16-bytestring binary bytestring containers cryptohash data-ordlist dataenc directory filepath - hashable haskeline html HTTP mmap mtl network network-uri old-time - parsec process random regex-applicative regex-compat-tdfa tar - terminfo text time transformers transformers-compat unix - unix-compat utf8-string vector zip-archive zlib + hashable haskeline html HTTP mmap mtl network network-uri + old-locale old-time parsec process random regex-applicative + regex-compat-tdfa tar terminfo text time transformers + transformers-compat unix unix-compat utf8-string vector zip-archive + zlib ]; librarySystemDepends = [ curl ]; executableHaskellDepends = [ base filepath regex-compat-tdfa ]; @@ -51540,6 +52102,7 @@ self: { test-framework-hunit test-framework-quickcheck2 text unix-compat zip-archive zlib ]; + jailbreak = true; postInstall = '' mkdir -p $out/etc/bash_completion.d mv contrib/darcs_completion $out/etc/bash_completion.d/darcs @@ -52821,6 +53384,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "data-repr" = callPackage + ({ mkDerivation, base, generic-deriving, lens }: + mkDerivation { + pname = "data-repr"; + version = "1.0"; + sha256 = "4939d7b8a7debb9a98cad8f468e07dcc7cd6424fdfd51dc4da74a35ff6536492"; + libraryHaskellDepends = [ base generic-deriving lens ]; + homepage = "https://github.com/wdanilo/data-repr"; + description = "Alternative to Show data printing utility"; + license = stdenv.lib.licenses.asl20; + }) {}; + "data-rev" = callPackage ({ mkDerivation, base, bytestring, containers, text, vector }: mkDerivation { @@ -52846,6 +53421,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "data-rtuple" = callPackage + ({ mkDerivation, base, lens, typelevel }: + mkDerivation { + pname = "data-rtuple"; + version = "1.0"; + sha256 = "4e2824b8d23d5eafce4c5f86a90fb58d97f461b45a287006f37cf8f2bd09fb05"; + libraryHaskellDepends = [ base lens typelevel ]; + homepage = "https://github.com/wdanilo/rtuple"; + description = "Recursive tuple data structure. It is very usefull when implementing some lo-level operations, allowing to traverse different elements using Haskell's type classes."; + license = stdenv.lib.licenses.asl20; + }) {}; + "data-size" = callPackage ({ mkDerivation, base, bytestring, containers, deepseq, text }: mkDerivation { @@ -53126,7 +53713,6 @@ self: { testHaskellDepends = [ aeson base bytestring containers hspec HUnit parsec vector ]; - jailbreak = true; homepage = "https://github.com/sonyxperiadev/dataflow"; description = "Generate Graphviz documents from a Haskell representation"; license = stdenv.lib.licenses.bsd3; @@ -53335,6 +53921,34 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "dbmigrations_0_9_1" = callPackage + ({ mkDerivation, base, bytestring, configurator, containers + , directory, fgl, filepath, HDBC, HDBC-postgresql, HDBC-sqlite3 + , HUnit, mtl, process, random, template-haskell, text, time + , yaml-light + }: + mkDerivation { + pname = "dbmigrations"; + version = "0.9.1"; + sha256 = "02fa493a7743c453eca74396e6f359c3e73f1265a9ef40d8d7a0e99fb259dde4"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring configurator containers directory fgl filepath HDBC + HDBC-postgresql HDBC-sqlite3 mtl random template-haskell text time + yaml-light + ]; + executableHaskellDepends = [ base configurator ]; + testHaskellDepends = [ + base bytestring containers directory fgl filepath HDBC + HDBC-postgresql HDBC-sqlite3 HUnit mtl process template-haskell + time yaml-light + ]; + description = "An implementation of relational database \"migrations\""; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "dbus_0_10_10" = callPackage ({ mkDerivation, base, bytestring, cereal, chell, chell-quickcheck , containers, directory, filepath, libxml-sax, network, parsec @@ -53354,6 +53968,7 @@ self: { filepath libxml-sax network parsec process QuickCheck random text transformers unix vector xml-types ]; + jailbreak = true; doCheck = false; homepage = "https://john-millikin.com/software/haskell-dbus/"; description = "A client library for the D-Bus IPC system"; @@ -54020,18 +54635,20 @@ self: { }) {}; "deepcontrol" = callPackage - ({ mkDerivation, base, doctest, HUnit, mtl, QuickCheck - , transformers + ({ mkDerivation, base, containers, doctest, HUnit, mmorph, mtl + , QuickCheck, safe, transformers }: mkDerivation { pname = "deepcontrol"; - version = "0.2.0.0"; - sha256 = "7df441135b4a219ca7d912f97a3b4fb6adc8ce3c5d5c9a7b5458ce421bc157ec"; - libraryHaskellDepends = [ base mtl transformers ]; - testHaskellDepends = [ base doctest HUnit QuickCheck ]; + version = "0.5.4.0"; + sha256 = "8e031be3ff6a28fd70468879d98c932f607905f8f47d3f4033c60f23a66ab1e1"; + libraryHaskellDepends = [ base mmorph mtl transformers ]; + testHaskellDepends = [ + base containers doctest HUnit mtl QuickCheck safe transformers + ]; jailbreak = true; homepage = "https://github.com/ocean0yohsuke/deepcontrol"; - description = "Enable more deeper level style of programming than the usual Control.xxx modules express"; + description = "Provide deep level programming style for Applicative and Monad"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -57714,6 +58331,7 @@ self: { array base containers contravariant deepseq ghc-prim primitive profunctors promises semigroups transformers vector void ]; + jailbreak = true; homepage = "http://github.com/ekmett/discrimination/"; description = "Fast generic linear-time sorting, joins and container construction"; license = stdenv.lib.licenses.bsd3; @@ -57926,7 +58544,6 @@ self: { network-transport network-transport-tcp rematch stm test-framework test-framework-hunit transformers ]; - doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-async"; description = "Cloud Haskell Async API"; license = stdenv.lib.licenses.bsd3; @@ -58637,23 +59254,25 @@ self: { "dixi" = callPackage ({ mkDerivation, acid-state, aeson, base, blaze-html, blaze-markup - , composition-tree, containers, data-default, directory, either - , lens, pandoc, patches-vector, safecopy, servant, servant-blaze - , servant-server, shakespeare, template-haskell, text, time - , time-locale-compat, transformers, vector, warp, yaml + , bytestring, composition-tree, containers, data-default, directory + , either, lens, network-uri, pandoc, pandoc-types, patches-vector + , safecopy, servant, servant-blaze, servant-server, shakespeare + , template-haskell, text, time, time-locale-compat, timezone-olson + , timezone-series, transformers, vector, warp, yaml }: mkDerivation { pname = "dixi"; - version = "0.2.0.0"; - sha256 = "840eb12d35c1a7be9e82f568e13d58584c098b0b013e9e62e753fcdd3db21752"; + version = "0.5.1.1"; + sha256 = "2c39acabdf742f4a9ed568c10ab7bbed6de24852fe79edb3c13f50c8474e36b2"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - acid-state aeson base blaze-html blaze-markup composition-tree - containers data-default directory either lens pandoc patches-vector - safecopy servant servant-blaze servant-server shakespeare - template-haskell text time time-locale-compat transformers vector - warp yaml + acid-state aeson base blaze-html blaze-markup bytestring + composition-tree containers data-default directory either lens + network-uri pandoc pandoc-types patches-vector safecopy servant + servant-blaze servant-server shakespeare template-haskell text time + time-locale-compat timezone-olson timezone-series transformers + vector warp yaml ]; homepage = "https://github.com/liamoc/dixi"; description = "A wiki implemented with a firm theoretical foundation"; @@ -58953,22 +59572,25 @@ self: { "docker" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, data-default - , http-types, lens, lens-aeson, network-uri, pipes - , pipes-bytestring, pipes-http, pipes-text, process, QuickCheck - , tasty, tasty-hunit, tasty-quickcheck, text, wreq + , HsOpenSSL, http-client-openssl, http-types, lens, lens-aeson + , network-uri, pipes, pipes-bytestring, pipes-http, pipes-text + , process, QuickCheck, tasty, tasty-hunit, tasty-quickcheck, text + , wreq }: mkDerivation { pname = "docker"; - version = "0.2.0.2"; - sha256 = "f181dcc475b35bc10ec7b8ac9beb687ca6f18ba446107e17a77dc91e91346347"; + version = "0.2.0.3"; + sha256 = "d6c2430d273d817947cfc87bdd120e5837a32f564b174f4ba13e53879454c227"; libraryHaskellDepends = [ - aeson base bytestring containers data-default lens lens-aeson - network-uri pipes pipes-bytestring pipes-http pipes-text text wreq + aeson base bytestring containers data-default HsOpenSSL + http-client-openssl lens lens-aeson network-uri pipes + pipes-bytestring pipes-http pipes-text text wreq ]; testHaskellDepends = [ - aeson base bytestring containers data-default http-types lens - lens-aeson pipes pipes-bytestring pipes-http pipes-text process - QuickCheck tasty tasty-hunit tasty-quickcheck text wreq + aeson base bytestring containers data-default HsOpenSSL + http-client-openssl http-types lens lens-aeson pipes + pipes-bytestring pipes-http pipes-text process QuickCheck tasty + tasty-hunit tasty-quickcheck text wreq ]; homepage = "https://github.com/denibertovic/docker-hs"; description = "Haskell wrapper for Docker Remote API"; @@ -59671,6 +60293,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell segmented arrays. (sequential implementation)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-seq" = callPackage @@ -60416,20 +61039,18 @@ self: { ({ mkDerivation, async, base, colour, constrained-categories , containers, deepseq, diagrams-cairo, diagrams-core, diagrams-gtk , diagrams-lib, glib, gtk, lens, manifolds, MemoTrie, MonadRandom - , mtl, process, random, semigroups, time, transformers, vector - , vector-space + , mtl, process, random, semigroups, tagged, time, transformers + , vector, vector-space }: mkDerivation { pname = "dynamic-plot"; - version = "0.1.0.1"; - sha256 = "61f4feb7e5fc44e624d63e0524932584bc9e0cbb6d7496da1229410d9170337b"; - revision = "1"; - editedCabalFile = "bf93f06c056b95264f16bd647b64220d9dd81c421045b66a9a2d2005659cecf5"; + version = "0.1.1.0"; + sha256 = "bb45bddf6acb16222eef67f415955c148c7bcc26d7c305be1b42548f0519d55d"; libraryHaskellDepends = [ async base colour constrained-categories containers deepseq diagrams-cairo diagrams-core diagrams-gtk diagrams-lib glib gtk lens manifolds MemoTrie MonadRandom mtl process random semigroups - time transformers vector vector-space + tagged time transformers vector vector-space ]; jailbreak = true; homepage = "https://github.com/leftaroundabout/dynamic-plot"; @@ -60584,6 +61205,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "easy-bitcoin" = callPackage + ({ mkDerivation, aeson, base, base16-bytestring, binary, byteable + , bytestring, cryptohash, deepseq, lens, postgresql-simple, safe + , text + }: + mkDerivation { + pname = "easy-bitcoin"; + version = "0.0.0.2"; + sha256 = "3b20ddd3f268e379bcf2a5c07f70de88ad5d936b59743caad10403f0e932f7b5"; + libraryHaskellDepends = [ + aeson base base16-bytestring binary byteable bytestring cryptohash + deepseq lens postgresql-simple safe text + ]; + homepage = "https://github.com/vwwv/easy-bitcoin"; + description = "types and functions for bitcoin applications"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "easy-file_0_2_0" = callPackage ({ mkDerivation, base, directory, filepath, time, unix }: mkDerivation { @@ -61590,6 +62229,7 @@ self: { base ekg-core network network-carbon text time unordered-containers vector ]; + jailbreak = true; homepage = "http://github.com/ocharles/ekg-carbon"; description = "An EKG backend to send statistics to Carbon (part of Graphite monitoring tools)"; license = stdenv.lib.licenses.bsd3; @@ -62575,8 +63215,8 @@ self: { }: mkDerivation { pname = "engine-io-wai"; - version = "1.0.3"; - sha256 = "e7b777caaf6c42913ebb4bbc8c1ebfa01773e2f1a284e68de4a05fdb8737495c"; + version = "1.0.4"; + sha256 = "1d0115fe13212c67db037037c29d6a84cf9fadf3f05def7e7b0592c31d535286"; libraryHaskellDepends = [ attoparsec base bytestring either engine-io http-types mtl text transformers transformers-compat unordered-containers wai @@ -62789,8 +63429,8 @@ self: { ({ mkDerivation, base, containers, deepseq, template-haskell }: mkDerivation { pname = "enummapset-th"; - version = "0.6.0.2"; - sha256 = "f921105b4e3d78540c7d5352c6be01a44a56670284b61ec88ec879aa3030dfbc"; + version = "0.6.1.0"; + sha256 = "bd7ec9fd9063dcf9c8504fe509abdd15466261ef2ba9ec62d6e6abb51e8694f6"; libraryHaskellDepends = [ base containers deepseq template-haskell ]; @@ -63060,7 +63700,6 @@ self: { version = "0.2.0.7"; sha256 = "8fb23a193f904527e632e0eaea89f42ad08caacbed133ac08af23e38baf32711"; libraryHaskellDepends = [ base singletons template-haskell void ]; - jailbreak = true; description = "Proof assistant for Haskell using DataKinds & PolyKinds"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -63731,7 +64370,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ether" = callPackage + "ether_0_3_0_0" = callPackage ({ mkDerivation, base, mmorph, monad-control, mtl, newtype-generics , QuickCheck, tasty, tasty-quickcheck, template-haskell , transformers, transformers-base, transformers-lift @@ -63750,9 +64389,10 @@ self: { homepage = "https://int-index.github.io/ether/"; description = "Monad transformers and classes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ether_0_3_1_1" = callPackage + "ether" = callPackage ({ mkDerivation, base, mmorph, monad-control, mtl, newtype-generics , QuickCheck, tasty, tasty-quickcheck, template-haskell , transformers, transformers-base, transformers-lift @@ -63771,7 +64411,6 @@ self: { homepage = "https://int-index.github.io/ether/"; description = "Monad transformers and classes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ethereum-client-haskell" = callPackage @@ -64016,20 +64655,22 @@ self: { }) {}; "eventloop" = callPackage - ({ mkDerivation, aeson, base, bytestring, network, suspend, text - , timers, websockets + ({ mkDerivation, aeson, base, bytestring, concurrent-utilities + , network, suspend, text, timers, websockets }: mkDerivation { pname = "eventloop"; - version = "0.4.1.2"; - sha256 = "41a059f249f7fed1b61cd8e6afd6c878b64dad7cb41a076acb499f83aee57804"; + version = "0.5.0.0"; + sha256 = "8771bed9a4246ea1c55bf301fdb81adb2f08906152a0bdbc9edf95bb8d72531b"; libraryHaskellDepends = [ - aeson base bytestring network suspend text timers websockets + aeson base bytestring concurrent-utilities network suspend text + timers websockets ]; jailbreak = true; homepage = "-"; description = "A different take on an IO system. Based on Amanda's IO loop, this eventloop takes a function that maps input events to output events. It can easily be extended by modules that represent IO devices or join multiple modules together."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eventstore" = callPackage @@ -64366,7 +65007,7 @@ self: { license = stdenv.lib.licenses.publicDomain; }) {}; - "exhaustive" = callPackage + "exhaustive_1_1_1" = callPackage ({ mkDerivation, base, generics-sop, template-haskell, transformers }: mkDerivation { @@ -64376,6 +65017,23 @@ self: { libraryHaskellDepends = [ base generics-sop template-haskell transformers ]; + jailbreak = true; + homepage = "http://github.com/ocharles/exhaustive"; + description = "Compile time checks that a computation considers producing data through all possible constructors"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "exhaustive" = callPackage + ({ mkDerivation, base, generics-sop, template-haskell, transformers + }: + mkDerivation { + pname = "exhaustive"; + version = "1.1.2"; + sha256 = "658e1542d9f11f608a8898a7d4a7953b558095ea337d47dc1ab9996fc060127b"; + libraryHaskellDepends = [ + base generics-sop template-haskell transformers + ]; homepage = "http://github.com/ocharles/exhaustive"; description = "Compile time checks that a computation considers producing data through all possible constructors"; license = stdenv.lib.licenses.bsd3; @@ -65402,8 +66060,8 @@ self: { }: mkDerivation { pname = "fasta"; - version = "0.9.0.0"; - sha256 = "85d7358b4f20b54cfbb9f6241ad1d5c8c238230898fe377f80c6ba65bb1990bd"; + version = "0.10.0.0"; + sha256 = "70eef257e6b087b8221d65530473f5662a84dcb300c38b1376c793308049d28e"; libraryHaskellDepends = [ attoparsec base bytestring containers foldl lens parsec pipes pipes-attoparsec pipes-bytestring pipes-group pipes-text split text @@ -65424,6 +66082,7 @@ self: { homepage = "https://github.com/cscherrer/fastbayes"; description = "Bayesian modeling algorithms accelerated for particular model structures"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fastcgi" = callPackage @@ -65599,6 +66258,7 @@ self: { uniplate unordered-containers utf8-string vector ]; executableHaskellDepends = [ base mtl optparse-applicative split ]; + jailbreak = true; homepage = "https://github.com/faylang/fay/wiki"; description = "A compiler for Fay, a Haskell subset that compiles to JavaScript"; license = stdenv.lib.licenses.bsd3; @@ -65627,6 +66287,7 @@ self: { uniplate unordered-containers utf8-string vector ]; executableHaskellDepends = [ base mtl optparse-applicative split ]; + jailbreak = true; homepage = "https://github.com/faylang/fay/wiki"; description = "A compiler for Fay, a Haskell subset that compiles to JavaScript"; license = stdenv.lib.licenses.bsd3; @@ -68063,8 +68724,8 @@ self: { ({ mkDerivation, base, containers }: mkDerivation { pname = "fixplate"; - version = "0.1.5"; - sha256 = "49acd151875d1b85e140407c48ffe78375765f52870ffeb8b284c7b69b9fb356"; + version = "0.1.6"; + sha256 = "c3227c94b7ccaf27991384bee8bef3288a4a9a87691b50121da1f4b84edc2e43"; libraryHaskellDepends = [ base containers ]; homepage = "http://code.haskell.org/~bkomuves/"; description = "Uniplate-style generic traversals for optionally annotated fixed-point types"; @@ -68513,9 +69174,11 @@ self: { http-client http-client-tls lens semigroups tagged tasty tasty-quickcheck text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/futurice/haskell-flowdock-rest#readme"; description = "Flowdock REST API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flower" = callPackage @@ -68577,8 +69240,8 @@ self: { }: mkDerivation { pname = "fltkhs"; - version = "0.3.0.0"; - sha256 = "48dbfa979cd3137383e39f68be7556fc569327b3ad3ca0f65a705604a05ca929"; + version = "0.3.0.1"; + sha256 = "121f25a6cc82de7edc7718b4a244803b0a71973784b5a8e01680aabacdc0ad43"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring ]; @@ -68690,6 +69353,40 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "fn" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, hspec, http-types + , text, wai + }: + mkDerivation { + pname = "fn"; + version = "0.1.3.0"; + sha256 = "a5242c61f9f671347ddaf4c377a6b2844a1126513e3eaca88a032c0254bfb3c2"; + libraryHaskellDepends = [ + base blaze-builder bytestring http-types text wai + ]; + testHaskellDepends = [ base hspec http-types text wai ]; + homepage = "http://github.com/dbp/fn#readme"; + description = "A functional web framework"; + license = stdenv.lib.licenses.isc; + }) {}; + + "fn-extra" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, either, heist + , http-types, lens, mtl, text, wai, wai-util, xmlhtml + }: + mkDerivation { + pname = "fn-extra"; + version = "0.1.1.0"; + sha256 = "7d1c5e74ba3a2440f907e65c056e4709b8f0066abc04a957c18cb541c47eeaa0"; + libraryHaskellDepends = [ + base blaze-builder bytestring either heist http-types lens mtl text + wai wai-util xmlhtml + ]; + homepage = "http://github.com/dbp/fn#readme"; + description = "Extras for Fn, a functional web framework"; + license = stdenv.lib.licenses.isc; + }) {}; + "focus_0_1_3" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -68799,6 +69496,7 @@ self: { libraryHaskellDepends = [ base bytestring containers primitive text transformers vector ]; + jailbreak = true; description = "Composable, streaming, and efficient left folds"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -68816,6 +69514,7 @@ self: { base bytestring containers mwc-random primitive text transformers vector ]; + jailbreak = true; description = "Composable, streaming, and efficient left folds"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -68833,6 +69532,7 @@ self: { base bytestring containers mwc-random primitive profunctors text transformers vector ]; + jailbreak = true; description = "Composable, streaming, and efficient left folds"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -68956,6 +69656,7 @@ self: { testHaskellDepends = [ base bytestring deepseq directory doctest filepath mtl semigroups ]; + jailbreak = true; homepage = "http://github.com/ekmett/folds"; description = "Beautiful Folding"; license = stdenv.lib.licenses.bsd3; @@ -69077,6 +69778,7 @@ self: { base control-monad-loop hashable hashtables hspec primitive transformers vector ]; + jailbreak = true; homepage = "http://github.com/minpou/forbidden-fruit"; description = "A library accelerates imperative style programming"; license = stdenv.lib.licenses.bsd3; @@ -70634,6 +71336,7 @@ self: { jailbreak = true; description = "In-memory full text search engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fullstop" = callPackage @@ -71983,7 +72686,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "generics-sop" = callPackage + "generics-sop_0_1_1_2" = callPackage ({ mkDerivation, base, ghc-prim, template-haskell }: mkDerivation { pname = "generics-sop"; @@ -71992,6 +72695,19 @@ self: { libraryHaskellDepends = [ base ghc-prim template-haskell ]; description = "Generic Programming using True Sums of Products"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "generics-sop" = callPackage + ({ mkDerivation, base, ghc-prim, template-haskell }: + mkDerivation { + pname = "generics-sop"; + version = "0.2.0.0"; + sha256 = "37c4afc49b68bc79a20b388ce949b7d7df5feedbf6649e2fcddbdfbeaeb55d62"; + libraryHaskellDepends = [ base ghc-prim template-haskell ]; + testHaskellDepends = [ base ]; + description = "Generic Programming using True Sums of Products"; + license = stdenv.lib.licenses.bsd3; }) {}; "genericserialize" = callPackage @@ -72388,8 +73104,8 @@ self: { }: mkDerivation { pname = "getopt-generics"; - version = "0.11.0.2"; - sha256 = "d1d989bbf86df719c57cb01db59a554f3b07c475644dd3cecc48bfc29d885010"; + version = "0.11.0.3"; + sha256 = "914586484530161d8163602c557e7cb1677561debb05dec9c517aab0a40fe0d7"; libraryHaskellDepends = [ base base-compat base-orphans generics-sop tagged ]; @@ -73088,7 +73804,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "ghc-typelits-natnormalise" = callPackage + "ghc-typelits-extra" = callPackage + ({ mkDerivation, base, ghc, ghc-tcplugins-extra + , ghc-typelits-natnormalise, tasty, tasty-hunit + }: + mkDerivation { + pname = "ghc-typelits-extra"; + version = "0.1"; + sha256 = "7dc44b910b211896a144a5cef965a5588f326693c9dcd6f69d5489a23a5f910f"; + libraryHaskellDepends = [ base ghc ghc-tcplugins-extra ]; + testHaskellDepends = [ + base ghc-typelits-natnormalise tasty tasty-hunit + ]; + homepage = "http://www.clash-lang.org/"; + description = "Additional type-level operations on GHC.TypeLits.Nat"; + license = stdenv.lib.licenses.bsd2; + }) {}; + + "ghc-typelits-natnormalise_0_3" = callPackage ({ mkDerivation, base, ghc, ghc-tcplugins-extra, tasty, tasty-hunit }: mkDerivation { @@ -73100,6 +73833,21 @@ self: { homepage = "http://www.clash-lang.org/"; description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ghc-typelits-natnormalise" = callPackage + ({ mkDerivation, base, ghc, ghc-tcplugins-extra, tasty, tasty-hunit + }: + mkDerivation { + pname = "ghc-typelits-natnormalise"; + version = "0.3.1"; + sha256 = "8ec5650de2f2c940b7da8961694e14d199788e12111a8f1c1e41dfcdf938f0e2"; + libraryHaskellDepends = [ base ghc ghc-tcplugins-extra ]; + testHaskellDepends = [ base tasty tasty-hunit ]; + homepage = "http://www.clash-lang.org/"; + description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; + license = stdenv.lib.licenses.bsd2; }) {}; "ghc-vis" = callPackage @@ -73333,8 +74081,8 @@ self: { }: mkDerivation { pname = "ghcjs-dom"; - version = "0.2.2.0"; - sha256 = "f3093b809eb6bac841614261354e9e90135f9b25b121a2b4bf1f781387cc24e5"; + version = "0.2.3.0"; + sha256 = "9ffc3bf9255196a5fbddf2ffc6320547a2a2f641d8682a4d89a51fd680f93c52"; libraryHaskellDepends = [ base glib gtk3 text transformers webkitgtk3 ]; @@ -73477,19 +74225,19 @@ self: { }) {}; "ginsu" = callPackage - ({ mkDerivation, array, base, binary, bytestring, containers + ({ mkDerivation, array, async, base, binary, bytestring, containers , directory, hashable, hashtables, mtl, network, old-locale , old-time, openssl, parsec, pretty, process, random, regex-posix , syb, unix, utf8-string }: mkDerivation { pname = "ginsu"; - version = "0.8.1.1"; - sha256 = "9c745337407979706d34eb58f1953730c9bfbeac4734ea98bbf78688eb6f7063"; + version = "0.8.2.1"; + sha256 = "74a94b8573cede5665df7ae25dcc5c53312aea7ece9d4d70857b4c0d572dcbd8"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - array base binary bytestring containers directory hashable + array async base binary bytestring containers directory hashable hashtables mtl network old-locale old-time parsec pretty process random regex-posix syb unix utf8-string ]; @@ -73745,7 +74493,7 @@ self: { inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget; inherit (pkgs) which;}; - "git-annex_5_20150930" = callPackage + "git-annex_5_20151019" = callPackage ({ mkDerivation, aeson, async, aws, base, blaze-builder , bloomfilter, bup, byteable, bytestring, case-insensitive , clientsession, conduit, conduit-extra, containers, crypto-api @@ -73766,8 +74514,8 @@ self: { }: mkDerivation { pname = "git-annex"; - version = "5.20150930"; - sha256 = "5544d0bdda452ba3ee36a3c0228d39cb3a6e26d96f60dd0886383e4b7ba73be5"; + version = "5.20151019"; + sha256 = "ec40c5e61a7e8d6f4a47da4cdc8c9861a6938565b39ddc6c0a53ac8f8477fabc"; configureFlags = [ "-fassistant" "-fproduction" ]; isLibrary = false; isExecutable = true; @@ -74168,8 +74916,8 @@ self: { }: mkDerivation { pname = "github-webhook-handler"; - version = "0.0.4"; - sha256 = "4bbc9a84406d381ff65f7850b4554cc22a03d90c7186adf2cb75752c6f9ac66c"; + version = "0.0.5"; + sha256 = "52f1bcbf4a39205f81c940342e2de45b0ac0d8d0b89942b19a9431f1fc782271"; libraryHaskellDepends = [ aeson base bytestring cryptohash github-types text transformers uuid vector @@ -74184,8 +74932,8 @@ self: { }: mkDerivation { pname = "github-webhook-handler-snap"; - version = "0.0.4"; - sha256 = "73b3b250c749f6235e4e1915f2439198816329f6722b2c1bf503a70353e9a582"; + version = "0.0.5"; + sha256 = "65806df9708c909a9daf5beceb9e3db4bd4258755c8e8b31b181f29a21e1b267"; libraryHaskellDepends = [ base bytestring case-insensitive github-types github-webhook-handler snap-core uuid @@ -75159,6 +75907,7 @@ self: { homepage = "https://github.com/Twey/gloss-banana"; description = "An Interface for gloss in terms of a reactive-banana Behavior"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-devil" = callPackage @@ -75189,6 +75938,7 @@ self: { gloss-algorithms gloss-raster gloss-rendering random repa repa-algorithms repa-io vector ]; + jailbreak = true; homepage = "http://gloss.ouroborus.net"; description = "Examples using the gloss library"; license = stdenv.lib.licenses.mit; @@ -75516,7 +76266,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) gnome_vfs; gnome_vfs_module = null;}; - "gnuidn" = callPackage + "gnuidn_0_2_1" = callPackage ({ mkDerivation, base, bytestring, c2hs, libidn, text }: mkDerivation { pname = "gnuidn"; @@ -75529,6 +76279,30 @@ self: { homepage = "https://john-millikin.com/software/haskell-gnuidn/"; description = "Bindings for GNU IDN"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) libidn;}; + + "gnuidn" = callPackage + ({ mkDerivation, base, bytestring, c2hs, chell, chell-quickcheck + , libidn, QuickCheck, text + }: + mkDerivation { + pname = "gnuidn"; + version = "0.2.2"; + sha256 = "61346b1f764cead5633bdc83f7dc9836b1627f484984094cdffa95dfd365b96f"; + libraryHaskellDepends = [ base bytestring text ]; + librarySystemDepends = [ libidn ]; + libraryPkgconfigDepends = [ libidn ]; + libraryToolDepends = [ c2hs ]; + testHaskellDepends = [ + base bytestring chell chell-quickcheck QuickCheck text + ]; + testSystemDepends = [ libidn ]; + testPkgconfigDepends = [ libidn ]; + testToolDepends = [ c2hs ]; + homepage = "https://john-millikin.com/software/haskell-gnuidn/"; + description = "Bindings for GNU IDN"; + license = stdenv.lib.licenses.gpl3; }) {inherit (pkgs) libidn;}; "gnuplot" = callPackage @@ -75632,6 +76406,1095 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "gogol" = callPackage + ({ mkDerivation, aeson, base, bytestring, case-insensitive + , cryptonite, data-default-class, directory, exceptions, filepath + , gogol-core, http-client, http-conduit, http-media, http-types + , lens, memory, monad-control, mtl, resourcet, text, time + , transformers, transformers-base, unordered-containers, x509 + , x509-store + }: + mkDerivation { + pname = "gogol"; + version = "0.0.1"; + sha256 = "0e72e4cafcbf21db821f0c38f954baff9f7c5c530feb2f6709ac4848759e252f"; + libraryHaskellDepends = [ + aeson base bytestring case-insensitive cryptonite + data-default-class directory exceptions filepath gogol-core + http-client http-conduit http-media http-types lens memory + monad-control mtl resourcet text time transformers + transformers-base unordered-containers x509 x509-store + ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Comprehensive Google Services SDK"; + license = "unknown"; + }) {}; + + "gogol-adexchange-buyer" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-adexchange-buyer"; + version = "0.0.1"; + sha256 = "3ae32fa142150010a668095978c340ab13f128d3819ce9e2c79be5f56305c854"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Ad Exchange Buyer SDK"; + license = "unknown"; + }) {}; + + "gogol-adexchange-seller" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-adexchange-seller"; + version = "0.0.1"; + sha256 = "77f2a4c22cdfc407d35f3e59646d79653bd81ff6fa24335222bc6c603e0eadf9"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Ad Exchange Seller SDK"; + license = "unknown"; + }) {}; + + "gogol-admin-datatransfer" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-admin-datatransfer"; + version = "0.0.1"; + sha256 = "6143254e54c045a46afd4ecd70881510e87f24768360bd665ce928897b95c450"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Admin Data Transfer SDK"; + license = "unknown"; + }) {}; + + "gogol-admin-directory" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-admin-directory"; + version = "0.0.1"; + sha256 = "1d8ff33bf3504f792e24e0a436149c1f100493467d07c8815381f7048576855d"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Admin Directory SDK"; + license = "unknown"; + }) {}; + + "gogol-admin-emailmigration" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-admin-emailmigration"; + version = "0.0.1"; + sha256 = "5d167cd5406e43ab99ac522de352a3c3dcc493104b262c6c8b2710c1a23cc3cd"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Email Migration API v2 SDK"; + license = "unknown"; + }) {}; + + "gogol-admin-reports" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-admin-reports"; + version = "0.0.1"; + sha256 = "1868f5f7ba8e0e90e1c0a74718366fe297c281f8236ac496b1a722727ea4b82f"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Admin Reports SDK"; + license = "unknown"; + }) {}; + + "gogol-adsense" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-adsense"; + version = "0.0.1"; + sha256 = "2f3d17374c10b04546f455a351b798beae2969f49e4df3c975e4b1f74d9c11c8"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google AdSense Management SDK"; + license = "unknown"; + }) {}; + + "gogol-adsense-host" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-adsense-host"; + version = "0.0.1"; + sha256 = "2bf0e157cb703e266efcfde3ca73c64c822c9a9c418be912b26604f8b2abba63"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google AdSense Host SDK"; + license = "unknown"; + }) {}; + + "gogol-affiliates" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-affiliates"; + version = "0.0.1"; + sha256 = "e49f76204abd9c3d070061c6825a8db2607b506fb125cbfab2663f3b78b99b27"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Affiliate Network SDK"; + license = "unknown"; + }) {}; + + "gogol-analytics" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-analytics"; + version = "0.0.1"; + sha256 = "c72f26573b2530322675bc8cf34cf2b4ffdd8e7bf2ddcd3b175a51dbc4dc058c"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Analytics SDK"; + license = "unknown"; + }) {}; + + "gogol-android-enterprise" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-android-enterprise"; + version = "0.0.1"; + sha256 = "8ffd8352435e2133873322b20bce2c39b80539448bdff9290828602eea73650b"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Play EMM SDK"; + license = "unknown"; + }) {}; + + "gogol-android-publisher" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-android-publisher"; + version = "0.0.1"; + sha256 = "deacfbb32041843d93da6352ee9b75b879a235b2b5b4b08475dbd37179cb20c9"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Play Developer SDK"; + license = "unknown"; + }) {}; + + "gogol-appengine" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-appengine"; + version = "0.0.1"; + sha256 = "fde28097b13904a0fdca738f2e25aef6ee3c3e9c329d36f0904eb1f36914a523"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google App Engine Admin SDK"; + license = "unknown"; + }) {}; + + "gogol-apps-activity" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-apps-activity"; + version = "0.0.1"; + sha256 = "f4d6ba2f8d19b9adba8fd80c3675bb446c505079e02623a81f308f2bfd6bd920"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Apps Activity SDK"; + license = "unknown"; + }) {}; + + "gogol-apps-calendar" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-apps-calendar"; + version = "0.0.1"; + sha256 = "853497acc5477ebf072c67bafb38f7ce9d77e8331a4ee3bf011a8c47a55cae3a"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Calendar SDK"; + license = "unknown"; + }) {}; + + "gogol-apps-licensing" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-apps-licensing"; + version = "0.0.1"; + sha256 = "952de2e69668e608e2afe4234dc3190b34eeb0b375c4578b89bece82161d502a"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Enterprise License Manager SDK"; + license = "unknown"; + }) {}; + + "gogol-apps-reseller" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-apps-reseller"; + version = "0.0.1"; + sha256 = "d92ca7bd951f1042e403b52f895b813a73b2ed08cb670b30a99c29f42179d875"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Enterprise Apps Reseller SDK"; + license = "unknown"; + }) {}; + + "gogol-apps-tasks" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-apps-tasks"; + version = "0.0.1"; + sha256 = "e7af4dee84142c118cd677213e463cffaec46130c6fe32dad5fee0d02bc84825"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Tasks SDK"; + license = "unknown"; + }) {}; + + "gogol-appstate" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-appstate"; + version = "0.0.1"; + sha256 = "334e67d5cbae7ac12d5ec00fb7c1a3d66fdbf9efaa8bd9812e090a6790b88e25"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google App State SDK"; + license = "unknown"; + }) {}; + + "gogol-autoscaler" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-autoscaler"; + version = "0.0.1"; + sha256 = "0337f8d46c6b52cce6752c0f5c0b58b39af43398ea2e76379ea4001355f08acc"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Compute Engine Autoscaler SDK"; + license = "unknown"; + }) {}; + + "gogol-bigquery" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-bigquery"; + version = "0.0.1"; + sha256 = "d2c8db1661bd63ccd7e2bce741fa98aedc38ebeaaa006feaf437f9bff8b1e0b5"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google BigQuery SDK"; + license = "unknown"; + }) {}; + + "gogol-billing" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-billing"; + version = "0.0.1"; + sha256 = "00f95d2a7457ff464891d502589c66c3328796900ff94884004be9e22a645598"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Cloud Billing SDK"; + license = "unknown"; + }) {}; + + "gogol-blogger" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-blogger"; + version = "0.0.1"; + sha256 = "f201528036f3b1f66e4b246c6f23d58f25172c86c45d762c099ff3f9b650f15b"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Blogger SDK"; + license = "unknown"; + }) {}; + + "gogol-books" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-books"; + version = "0.0.1"; + sha256 = "ed6bba0c502edeb1f10c8d98bfd0d4127152e07967c705e63a64b86ec162d6c4"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Books SDK"; + license = "unknown"; + }) {}; + + "gogol-civicinfo" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-civicinfo"; + version = "0.0.1"; + sha256 = "0dfe03f89a34317e0c78abdbc84d3b7b105a14b78cc3c53b4407556d21e3a1bf"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Civic Information SDK"; + license = "unknown"; + }) {}; + + "gogol-classroom" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-classroom"; + version = "0.0.1"; + sha256 = "7e0e277670d037827a4b5fc6bb8fe0ede3cc9adffe116587ffbf6b318d6cdd21"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Classroom SDK"; + license = "unknown"; + }) {}; + + "gogol-cloudtrace" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-cloudtrace"; + version = "0.0.1"; + sha256 = "b0a308a10e6f366aa72b79db52281b953a0239932ba2287d3971271a1d9d1a03"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Cloud Trace SDK"; + license = "unknown"; + }) {}; + + "gogol-compute" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-compute"; + version = "0.0.1"; + sha256 = "19444c4066b1ccb3900f893f05bfd35926701004a46aa4df2cd37976fa31eb19"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Compute Engine SDK"; + license = "unknown"; + }) {}; + + "gogol-container" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-container"; + version = "0.0.1"; + sha256 = "a887cb1520240df322ba74b4d8a304209e2269afda16ff390870be3c18f29d1c"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Container Engine SDK"; + license = "unknown"; + }) {}; + + "gogol-core" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring + , case-insensitive, conduit, dlist, exceptions, hashable + , http-client, http-media, http-types, lens, resourcet, scientific + , servant, tasty, text, time, unordered-containers + }: + mkDerivation { + pname = "gogol-core"; + version = "0.0.1"; + sha256 = "5baad8cb7a646cee9490916096ba71bf75168d7f807d79419d350813fc52ef9b"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring case-insensitive conduit dlist + exceptions hashable http-client http-media http-types lens + resourcet scientific servant text time unordered-containers + ]; + testHaskellDepends = [ base tasty ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Core data types and functionality for Gogol libraries"; + license = "unknown"; + }) {}; + + "gogol-customsearch" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-customsearch"; + version = "0.0.1"; + sha256 = "2d8ff2e0b9b881ed586a618dabcf4549c882f5cdfb2a0db3502ead23e5b56544"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google CustomSearch SDK"; + license = "unknown"; + }) {}; + + "gogol-dataflow" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-dataflow"; + version = "0.0.1"; + sha256 = "c7d6a8d393143b5d31a212fc0a97e9f36b421e9830072b62869b275fa50da19f"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Dataflow SDK"; + license = "unknown"; + }) {}; + + "gogol-datastore" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-datastore"; + version = "0.0.1"; + sha256 = "e7d9cf74351dcb5455ea3dcd543096faa69bfb0fee5e34213dbe9c3b13341905"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Cloud Datastore SDK"; + license = "unknown"; + }) {}; + + "gogol-debugger" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-debugger"; + version = "0.0.1"; + sha256 = "42106728da6d66ce926e607f110e34c730deda08460c1d712075b74c4c0f5472"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Cloud Debugger SDK"; + license = "unknown"; + }) {}; + + "gogol-deploymentmanager" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-deploymentmanager"; + version = "0.0.1"; + sha256 = "7c135257c4408bc68204bc44867f2dc608c3c2e0d23d9825663f4df744b02c32"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Cloud Deployment Manager SDK"; + license = "unknown"; + }) {}; + + "gogol-dfareporting" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-dfareporting"; + version = "0.0.1"; + sha256 = "da9ded766d253ae199bbc8481b16ebee41d143dc28ce639893320c60ac30ca11"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google DCM/DFA Reporting And Trafficking SDK"; + license = "unknown"; + }) {}; + + "gogol-discovery" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-discovery"; + version = "0.0.1"; + sha256 = "3f25c64ece94a996c96e66fd2520d8a01f7b41c735ddb42e8f83e83d073eee13"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google APIs Discovery Service SDK"; + license = "unknown"; + }) {}; + + "gogol-dns" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-dns"; + version = "0.0.1"; + sha256 = "e1d840e711ff29da3dd9f448dcebd45259118f53bb57e793ef69cfe015c28eb8"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Cloud DNS SDK"; + license = "unknown"; + }) {}; + + "gogol-doubleclick-bids" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-doubleclick-bids"; + version = "0.0.1"; + sha256 = "4854269786c5bbbc4ecd49473b1b7c63854db3ffb45b9df6e38b5f6a6bcbf2ae"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google DoubleClick Bid Manager SDK"; + license = "unknown"; + }) {}; + + "gogol-doubleclick-search" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-doubleclick-search"; + version = "0.0.1"; + sha256 = "4c4daeb8277e635ca04de5849607c8de8f2b85ef9271c398ad9fcd3e09da2e7c"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google DoubleClick Search SDK"; + license = "unknown"; + }) {}; + + "gogol-drive" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-drive"; + version = "0.0.1"; + sha256 = "fb3aeda3acf1b43a8fce9abaf69f314b31a5a0b27c8592bfcd644f43ee612268"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Drive SDK"; + license = "unknown"; + }) {}; + + "gogol-fitness" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-fitness"; + version = "0.0.1"; + sha256 = "80c90e5bffbfbe5a16df83e8b367bfa9363c94924617a7a7fb78ad4fda29e6c5"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Fitness SDK"; + license = "unknown"; + }) {}; + + "gogol-fonts" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-fonts"; + version = "0.0.1"; + sha256 = "33e2bec3a8f4c7b42a88f006e1adc8142eeba87e0b73ef21fddca7ec5e182cd9"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Fonts Developer SDK"; + license = "unknown"; + }) {}; + + "gogol-freebasesearch" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-freebasesearch"; + version = "0.0.1"; + sha256 = "ed60a48d748fba875ab7de31b52d69cf1396934f7ace0630248f25b3938292b9"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Freebase Search SDK"; + license = "unknown"; + }) {}; + + "gogol-fusiontables" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-fusiontables"; + version = "0.0.1"; + sha256 = "24106717a51ab367400cfd23cac41dbca269a34101ee0df7e3af6da4e37bd29b"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Fusion Tables SDK"; + license = "unknown"; + }) {}; + + "gogol-games" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-games"; + version = "0.0.1"; + sha256 = "58a9f71c8c7c78e5221501feff255f8bbecf7d2afd84208d0eaf2fa53e0a29c6"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Play Game Services SDK"; + license = "unknown"; + }) {}; + + "gogol-games-configuration" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-games-configuration"; + version = "0.0.1"; + sha256 = "c9a4575a80119969d71a1b14ceb8788ed3b38429176888868717fbe9e7d50af2"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Play Game Services Publishing SDK"; + license = "unknown"; + }) {}; + + "gogol-games-management" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-games-management"; + version = "0.0.1"; + sha256 = "de22f2fdcc5a65a335d3844670cb3da61017b282a7fbf4c4312ec861c7dba6b6"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Play Game Services Management SDK"; + license = "unknown"; + }) {}; + + "gogol-genomics" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-genomics"; + version = "0.0.1"; + sha256 = "9099d151ddc8944a59b8508530b88ad9324313b566836a86ac6a527819ec2ca3"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Genomics SDK"; + license = "unknown"; + }) {}; + + "gogol-gmail" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-gmail"; + version = "0.0.1"; + sha256 = "ca3e03ab9cc5b6afb06a9ba056667b0ebb3b9fb4d28be14d3748244370f73712"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Gmail SDK"; + license = "unknown"; + }) {}; + + "gogol-groups-migration" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-groups-migration"; + version = "0.0.1"; + sha256 = "20d4acb5defd318401ccf44213bb151b8bcfe77465b318d034ae875ba9fc7231"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Groups Migration SDK"; + license = "unknown"; + }) {}; + + "gogol-groups-settings" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-groups-settings"; + version = "0.0.1"; + sha256 = "76eb21100316ac5599da40c5ca24bf9d9dd02ff5670ca35b9bac89fc64d8dea1"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Groups Settings SDK"; + license = "unknown"; + }) {}; + + "gogol-identity-toolkit" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-identity-toolkit"; + version = "0.0.1"; + sha256 = "2329fd4a9bc2c46757b54e983423905203405359d488b4aeded929e5c92816c0"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Identity Toolkit SDK"; + license = "unknown"; + }) {}; + + "gogol-latencytest" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-latencytest"; + version = "0.0.1"; + sha256 = "9053dbadc3dc42dc9b3d3cb335f8f84615eb975e41125a4040387023b5db0994"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Cloud Network Performance Monitoring SDK"; + license = "unknown"; + }) {}; + + "gogol-logging" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-logging"; + version = "0.0.1"; + sha256 = "68d844661703a24dcb9ebf3ea1607cdc09ac0075fa8cb2ac842939bb54c96f74"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Cloud Logging SDK"; + license = "unknown"; + }) {}; + + "gogol-maps-coordinate" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-maps-coordinate"; + version = "0.0.1"; + sha256 = "ebe499c2ec742dca7d9618c73b18ad97d473eda614e5b61c78eb26eaa73a132f"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Maps Coordinate SDK"; + license = "unknown"; + }) {}; + + "gogol-maps-engine" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-maps-engine"; + version = "0.0.1"; + sha256 = "c75dfe85f10a2778c2d651e15ee89983937f829230dbe969c0cef0dcaa5a63e6"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Maps Engine SDK"; + license = "unknown"; + }) {}; + + "gogol-mirror" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-mirror"; + version = "0.0.1"; + sha256 = "a6b89df933913229ebcfc1ada46415efe75a842386e6b1b9d1a099180f4360e3"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Mirror SDK"; + license = "unknown"; + }) {}; + + "gogol-monitoring" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-monitoring"; + version = "0.0.1"; + sha256 = "0231edada11ac42a76026527afdf4a00f44840a53496c5b52aa5311ce68e90b9"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Cloud Monitoring SDK"; + license = "unknown"; + }) {}; + + "gogol-oauth2" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-oauth2"; + version = "0.0.1"; + sha256 = "18f1309ee669a677a1d08d9a82b24b7f51d09d14c600ee9ef913999e49ede266"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google OAuth2 SDK"; + license = "unknown"; + }) {}; + + "gogol-pagespeed" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-pagespeed"; + version = "0.0.1"; + sha256 = "3c1425945e75c91f15dd3d24fa52c691c40e0b9def486e115982a7e99038552c"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google PageSpeed Insights SDK"; + license = "unknown"; + }) {}; + + "gogol-partners" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-partners"; + version = "0.0.1"; + sha256 = "ff0da512eefdfa4879815ba0b96d66426169d57a1ab9a470114e9ddbf7a939ce"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Partners SDK"; + license = "unknown"; + }) {}; + + "gogol-play-moviespartner" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-play-moviespartner"; + version = "0.0.1"; + sha256 = "48b428ed66ac669a371829342753f5756497403d15efcd5cc753ff3d144b3bcd"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Play Movies Partner SDK"; + license = "unknown"; + }) {}; + + "gogol-plus" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-plus"; + version = "0.0.1"; + sha256 = "b6f0db7f3f507c6044a27194dd7bec0f8bbcfc42fee520cd78baad9157cefe1f"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google + SDK"; + license = "unknown"; + }) {}; + + "gogol-plus-domains" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-plus-domains"; + version = "0.0.1"; + sha256 = "49b78f294fe8d254202cfb3cfcdafd33d3c85b4cfa342bbfe5e7c1e9f8034e91"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google + Domains SDK"; + license = "unknown"; + }) {}; + + "gogol-prediction" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-prediction"; + version = "0.0.1"; + sha256 = "1441bd802f43c5689d366be3000734439a67a12e37508694534c1c0c9b3c8570"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Prediction SDK"; + license = "unknown"; + }) {}; + + "gogol-proximitybeacon" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-proximitybeacon"; + version = "0.0.1"; + sha256 = "4689e35edf0353a425b0f6d527811d004db28f84d6d9d8a283175da978897ba3"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Proximity Beacon SDK"; + license = "unknown"; + }) {}; + + "gogol-pubsub" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-pubsub"; + version = "0.0.1"; + sha256 = "72f44527f893200922141d53aa3dd525f8b5b912651d476b0676f4ed5fa15f84"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Cloud Pub/Sub SDK"; + license = "unknown"; + }) {}; + + "gogol-qpxexpress" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-qpxexpress"; + version = "0.0.1"; + sha256 = "92797cb6ffeae44d86dc7fe714ccc0b544dc4370b9d20154896b6679c682b215"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google QPX Express SDK"; + license = "unknown"; + }) {}; + + "gogol-replicapool" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-replicapool"; + version = "0.0.1"; + sha256 = "d7090d8110b52411749fd550d5dc3dd29740229712b78328a30d2ddb42502663"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Compute Engine Instance Group Manager SDK"; + license = "unknown"; + }) {}; + + "gogol-replicapool-updater" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-replicapool-updater"; + version = "0.0.1"; + sha256 = "fd3a0b55a94dff0f4620a3cdbdd1db40a154c7261a9d45ecd31309becb07db20"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Compute Engine Instance Group Updater SDK"; + license = "unknown"; + }) {}; + + "gogol-resourcemanager" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-resourcemanager"; + version = "0.0.1"; + sha256 = "f3805aa21239efe89e9af8669c8205b2442d554c4decedd17607b1ca4e090089"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Cloud Resource Manager SDK"; + license = "unknown"; + }) {}; + + "gogol-resourceviews" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-resourceviews"; + version = "0.0.1"; + sha256 = "f2ea54233f74c09ba05e9f329535d2be2a668d3592afbfe16b3f4a3bf1d29ed1"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Compute Engine Instance Groups SDK"; + license = "unknown"; + }) {}; + + "gogol-shopping-content" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-shopping-content"; + version = "0.0.1"; + sha256 = "6165d7ee5203e64a6635eeed5ae27984e30281b2cea38234a9be51409297a25f"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Content API for Shopping SDK"; + license = "unknown"; + }) {}; + + "gogol-siteverification" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-siteverification"; + version = "0.0.1"; + sha256 = "22ddf6341858e4009e5056d630627eded3324cf0a400c20b419c22e16e4b3cc8"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Site Verification SDK"; + license = "unknown"; + }) {}; + + "gogol-spectrum" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-spectrum"; + version = "0.0.1"; + sha256 = "8b0007e225762bdc5c28e83b69e2b5ab153a24c0c3cdced67fa940083d4cfb0a"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Spectrum Database SDK"; + license = "unknown"; + }) {}; + + "gogol-sqladmin" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-sqladmin"; + version = "0.0.1"; + sha256 = "41f81cc67cc6d6ffc93d8045c27e7b3e3b6aba09f4952f63924fcd8f46baa155"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Cloud SQL Administration SDK"; + license = "unknown"; + }) {}; + + "gogol-storage" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-storage"; + version = "0.0.1"; + sha256 = "b43519eaf4a0dd0d258400770678f4108dc25a05ca1287b93409983f83f88ca3"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Cloud Storage JSON SDK"; + license = "unknown"; + }) {}; + + "gogol-storage-transfer" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-storage-transfer"; + version = "0.0.1"; + sha256 = "3b46706ec9d4aae071a08926d1c85c699b03a26eb34f0ee61ec2c4eba7522d4e"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Storage Transfer SDK"; + license = "unknown"; + }) {}; + + "gogol-tagmanager" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-tagmanager"; + version = "0.0.1"; + sha256 = "80bc33801f376c0005fc847311bf82e2b85a95ac7d35f47134ced4c21cdee274"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Tag Manager SDK"; + license = "unknown"; + }) {}; + + "gogol-taskqueue" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-taskqueue"; + version = "0.0.1"; + sha256 = "173bf8bb20081e15c7985090561fdb35ddd0392640df3ba26952c750d094785d"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google TaskQueue SDK"; + license = "unknown"; + }) {}; + + "gogol-translate" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-translate"; + version = "0.0.1"; + sha256 = "53204a24700da7c3eabc1bd53b9a77c151043c0c9ae0a1a70117fb4a859bc3ed"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Translate SDK"; + license = "unknown"; + }) {}; + + "gogol-urlshortener" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-urlshortener"; + version = "0.0.1"; + sha256 = "30fac0dc638cbfb3685d628d63367f0abd20aa8fcff22b9f9632ec98cc1bafc2"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google URL Shortener SDK"; + license = "unknown"; + }) {}; + + "gogol-useraccounts" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-useraccounts"; + version = "0.0.1"; + sha256 = "5417c683af4fd8692385f95aa8e7ae4d1b8519cd0d153718859f4be42aceecb4"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Cloud User Accounts SDK"; + license = "unknown"; + }) {}; + + "gogol-webmaster-tools" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-webmaster-tools"; + version = "0.0.1"; + sha256 = "2b2b393b6968094e746e0ea23b8c65bb6ff3ed830992aac5347a21f409d64cce"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google Webmaster Tools SDK"; + license = "unknown"; + }) {}; + + "gogol-youtube" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-youtube"; + version = "0.0.1"; + sha256 = "36ec1c1f4e4e7b7cda15a1a13eb3a8ce2980e7b689227dd0dc33b8af22bd49dd"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google YouTube Data SDK"; + license = "unknown"; + }) {}; + + "gogol-youtube-analytics" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-youtube-analytics"; + version = "0.0.1"; + sha256 = "f76d4871ecf7c137b204fa46f1bdcad9a16376370237ad1541ca5d5ec57b75c9"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google YouTube Analytics SDK"; + license = "unknown"; + }) {}; + + "gogol-youtube-reporting" = callPackage + ({ mkDerivation, base, gogol-core }: + mkDerivation { + pname = "gogol-youtube-reporting"; + version = "0.0.1"; + sha256 = "85bd2bcf66f0a7c732333e85774192c4647fb28f70da091a13d297f9788cc82c"; + libraryHaskellDepends = [ base gogol-core ]; + homepage = "https://github.com/brendanhay/gogol"; + description = "Google YouTube Reporting SDK"; + license = "unknown"; + }) {}; + "gooey" = callPackage ({ mkDerivation, base, renderable, transformers, varying }: mkDerivation { @@ -76639,8 +78502,8 @@ self: { }: mkDerivation { pname = "graphviz"; - version = "2999.18.0.1"; - sha256 = "ceab95376ef170ccd4c8ef4b66a7fbb0fc2aa5a8eab1e99e2465f033f9b7bc51"; + version = "2999.18.0.2"; + sha256 = "0ce1dca248e549b005798472cc6b906143369d987cf482fc0435b1029e5cc567"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -77143,8 +79006,8 @@ self: { }: mkDerivation { pname = "grouped-list"; - version = "0.1.3.0"; - sha256 = "ceeef72febab1b23c778fba9532c6fc61d799f4fd2239c9ebc2d0dcfacbb1bdf"; + version = "0.2.0.0"; + sha256 = "01e4a1f3b7031e38a37b271cf6ad00380678ba9f79df2e625f339ac5bd68f19c"; libraryHaskellDepends = [ base containers deepseq pointed ]; testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; homepage = "https://github.com/Daniel-Diaz/grouped-list/blob/master/README.md"; @@ -77285,6 +79148,7 @@ self: { version = "0.5.0"; sha256 = "d2adccfe625d3cb5046ae5bb3c7a23d23697d1fc2c6a717df75f75aba2881c2e"; libraryHaskellDepends = [ base vector ]; + jailbreak = true; homepage = "http://github.com/patperry/hs-gsl-random"; description = "Bindings the the GSL random number generation facilities"; license = stdenv.lib.licenses.bsd3; @@ -78805,7 +80669,7 @@ self: { }) {}; "hVOIDP" = callPackage - ({ mkDerivation, array, base, blas, hmatrix, lapack }: + ({ mkDerivation, array, base, blas, hmatrix, liblapack }: mkDerivation { pname = "hVOIDP"; version = "1.0.2"; @@ -78813,12 +80677,12 @@ self: { isLibrary = true; isExecutable = true; executableHaskellDepends = [ array base hmatrix ]; - executableSystemDepends = [ blas lapack ]; + executableSystemDepends = [ blas liblapack ]; homepage = "http://dslsrv4.cs.missouri.edu/~qqbm9"; description = "Optimal variable selection in chain graphical model"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs) blas; lapack = null;}; + }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "hXmixer" = callPackage ({ mkDerivation, base, directory, gtk3, process, split, text }: @@ -80437,7 +82301,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hakyll" = callPackage + "hakyll_4_7_3_1" = callPackage ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring , cmdargs, containers, cryptohash, data-default, deepseq, directory , filepath, fsnotify, http-conduit, http-types, HUnit, lrucache @@ -80475,6 +82339,47 @@ self: { homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hakyll" = callPackage + ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring + , cmdargs, containers, cryptohash, data-default, deepseq, directory + , filepath, fsnotify, http-conduit, http-types, HUnit, lrucache + , mtl, network, network-uri, pandoc, pandoc-citeproc, parsec + , process, QuickCheck, random, regex-base, regex-tdfa, snap-core + , snap-server, system-filepath, tagsoup, test-framework + , test-framework-hunit, test-framework-quickcheck2, text, time + , time-locale-compat + }: + mkDerivation { + pname = "hakyll"; + version = "4.7.4.0"; + sha256 = "bf6a503f8a6e4911c6d2b2480b0e1a2495c568f47f902a43e463d8b2706737d1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary blaze-html blaze-markup bytestring cmdargs containers + cryptohash data-default deepseq directory filepath fsnotify + http-conduit http-types lrucache mtl network network-uri pandoc + pandoc-citeproc parsec process random regex-base regex-tdfa + snap-core snap-server system-filepath tagsoup text time + time-locale-compat + ]; + executableHaskellDepends = [ base directory filepath ]; + testHaskellDepends = [ + base binary blaze-html blaze-markup bytestring cmdargs containers + cryptohash data-default deepseq directory filepath fsnotify + http-conduit http-types HUnit lrucache mtl network network-uri + pandoc pandoc-citeproc parsec process QuickCheck random regex-base + regex-tdfa snap-core snap-server system-filepath tagsoup + test-framework test-framework-hunit test-framework-quickcheck2 text + time time-locale-compat + ]; + doCheck = false; + homepage = "http://jaspervdj.be/hakyll"; + description = "A static website compiler library"; + license = stdenv.lib.licenses.bsd3; }) {}; "hakyll-R" = callPackage @@ -82987,6 +84892,19 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "haskell-exp-parser" = callPackage + ({ mkDerivation, base, template-haskell }: + mkDerivation { + pname = "haskell-exp-parser"; + version = "0.1"; + sha256 = "5096177d0d8f8ee1cf213ad73ad243220b8d84d17df81357c82f59aaeba2cd3a"; + libraryHaskellDepends = [ base template-haskell ]; + testHaskellDepends = [ base template-haskell ]; + homepage = "https://github.com/emilaxelsson/haskell-exp-parser"; + description = "Simple parser parser from Haskell to TemplateHaskell expressions"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "haskell-formatter" = callPackage ({ mkDerivation, base, containers, directory, directory-tree , doctest, filemanip, filepath, haskell-src-exts, hlint @@ -83142,6 +85060,7 @@ self: { homepage = "http://github.com/bjpop/haskell-mpi"; description = "Distributed parallel programming in Haskell using MPI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {open-pal = null; open-rte = null; inherit (pkgs) openmpi;}; "haskell-names_0_4_1" = callPackage @@ -83453,6 +85372,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) qrencode;}; + "haskell-read-editor" = callPackage + ({ mkDerivation, base, directory, hspec, process }: + mkDerivation { + pname = "haskell-read-editor"; + version = "0.1.0.0"; + sha256 = "ea4d6469f7f3b661ee08f74f53291f9361bd53bef5a6e645c5a96b8d3b345d23"; + libraryHaskellDepends = [ base directory process ]; + testHaskellDepends = [ base directory hspec process ]; + homepage = "https://github.com/yamadapc/haskell-read-editor"; + description = "Opens a temporary file on the system's EDITOR and returns the resulting edits"; + license = stdenv.lib.licenses.mit; + }) {}; + "haskell-reflect" = callPackage ({ mkDerivation, base, containers, hint, MonadCatchIO-mtl, mtl , parsec, template-haskell, transformers @@ -85146,6 +87078,7 @@ self: { libraryHaskellDepends = [ base-prelude bytestring either free list-t text transformers vector ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/hasql-backend"; description = "API for backends of \"hasql\""; @@ -86175,7 +88108,7 @@ self: { }) {inherit (pkgs) SDL_mixer;}; "hblas" = callPackage - ({ mkDerivation, base, blas, HUnit, lapack, primitive + ({ mkDerivation, base, blas, HUnit, liblapack, primitive , storable-complex, tasty, tasty-hunit, vector }: mkDerivation { @@ -86183,14 +88116,14 @@ self: { version = "0.3.2.1"; sha256 = "3e159cc8c98735861edad47cd4da11bd5862bb629601a9bc441960c921ae8215"; libraryHaskellDepends = [ base primitive storable-complex vector ]; - librarySystemDepends = [ blas lapack ]; + librarySystemDepends = [ blas liblapack ]; testHaskellDepends = [ base HUnit tasty tasty-hunit vector ]; jailbreak = true; homepage = "http://github.com/wellposed/hblas/"; description = "Human friendly BLAS and Lapack bindings for Haskell"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs) blas; lapack = null;}; + }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "hblock" = callPackage ({ mkDerivation, aeson, base, blaze-markup, bytestring, cereal @@ -87273,8 +89206,8 @@ self: { pname = "heist"; version = "0.14.1.1"; sha256 = "2934ece5e58b4a180a6975c0404a2a48e46b85693822aa6ab18f700a44438e43"; - revision = "1"; - editedCabalFile = "51f2aa86d7582ba504e26ead511da54db5350cf4bed7f13252c678c0cf19d400"; + revision = "2"; + editedCabalFile = "d7030f50fb41e4a8c32cd06493df540268d2c53d6f26f3151b3acd0a7839a85f"; libraryHaskellDepends = [ aeson attoparsec base blaze-builder blaze-html bytestring containers directory directory-tree dlist either filepath hashable @@ -88249,6 +90182,7 @@ self: { executableHaskellDepends = [ base ]; description = "Hess-Smith panel code for inviscid 2-d airfoil analysis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hfov" = callPackage @@ -90024,8 +91958,8 @@ self: { }: mkDerivation { pname = "hjsonschema"; - version = "0.7.0.0"; - sha256 = "aa9b7bcf14c7f6c02949ffb7348ec208142b82a6ac1a75fde754c7a3f70f5d86"; + version = "0.8.0.0"; + sha256 = "36b1b6c83a1488d2674a13f0000cef8dee80d4f6835199b7b6453768f25e30cd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -90038,10 +91972,8 @@ self: { ]; testHaskellDepends = [ aeson async base bytestring directory filepath HUnit test-framework - test-framework-hunit text unordered-containers vector - wai-app-static warp + test-framework-hunit text vector wai-app-static warp ]; - jailbreak = true; homepage = "https://github.com/seagreen/hjsonschema"; description = "JSON Schema library"; license = stdenv.lib.licenses.mit; @@ -90269,6 +92201,46 @@ self: { license = "GPL"; }) {}; + "hledger_0_27" = 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 + , safe, shakespeare, split, tabular, terminfo, test-framework + , test-framework-hunit, text, time, unordered-containers + , utf8-string, wizards + }: + mkDerivation { + pname = "hledger"; + version = "0.27"; + sha256 = "0aecdf586a46c24d6d67659157d1edbfc0d78afb50ea7cfbec1a01bf86b792b0"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base base-compat cmdargs containers csv directory filepath + haskeline hledger-lib HUnit mtl mtl-compat old-time parsec + pretty-show process regex-tdfa safe shakespeare split tabular + terminfo text time unordered-containers utf8-string wizards + ]; + executableHaskellDepends = [ + base base-compat cmdargs containers csv directory filepath + haskeline hledger-lib HUnit mtl mtl-compat old-time parsec + pretty-show process regex-tdfa safe shakespeare split tabular + terminfo text time unordered-containers utf8-string wizards + ]; + testHaskellDepends = [ + base base-compat cmdargs containers csv directory filepath + haskeline hledger-lib HUnit mtl mtl-compat old-time parsec + pretty-show process regex-tdfa safe shakespeare split tabular + 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 ({ mkDerivation, base, Chart, cmdargs, colour, containers, hledger , hledger-lib, HUnit, safe, time @@ -90450,6 +92422,57 @@ self: { license = "GPL"; }) {}; + "hledger-lib_0_27" = 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 + , safe, split, test-framework, test-framework-hunit, time + , transformers, uglymemo, utf8-string + }: + mkDerivation { + pname = "hledger-lib"; + version = "0.27"; + sha256 = "77c47900106e65411743097cd0855b5484e1439b0de4c5ee6d2a0c5748672606"; + libraryHaskellDepends = [ + 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 safe split time transformers + uglymemo utf8-string + ]; + testHaskellDepends = [ + 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 safe split test-framework + test-framework-hunit time transformers uglymemo utf8-string + ]; + 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" = callPackage + ({ mkDerivation, base, base-compat, brick, cmdargs, containers + , data-default, filepath, hledger, hledger-lib, HUnit, lens + , pretty-show, safe, split, time, transformers, vector, vty + }: + mkDerivation { + pname = "hledger-ui"; + version = "0.27"; + sha256 = "691f842116178037a338db298dc179b304b10349d98d3df1a4981ca57b57df4b"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base base-compat brick cmdargs containers data-default filepath + 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"; + }) {}; + "hledger-vty" = callPackage ({ mkDerivation, base, cmdargs, hledger, hledger-lib, HUnit, safe , time, vty @@ -90546,6 +92569,52 @@ self: { license = "GPL"; }) {}; + "hledger-web_0_27" = callPackage + ({ mkDerivation, base, base-compat, blaze-html, blaze-markup + , bytestring, clientsession, cmdargs, conduit-extra, data-default + , directory, filepath, hjsmin, hledger, hledger-lib, hspec + , http-client, http-conduit, HUnit, json, parsec, safe, shakespeare + , template-haskell, text, time, transformers, wai, wai-extra + , wai-handler-launch, warp, yaml, yesod, yesod-core, yesod-form + , yesod-static, yesod-test + }: + mkDerivation { + pname = "hledger-web"; + version = "0.27"; + sha256 = "92722fa89b09b9d1fd2f66703083e84e0a03a97b6aea08c9064723d4858df1ef"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base base-compat blaze-html blaze-markup bytestring clientsession + cmdargs conduit-extra data-default directory filepath hjsmin + hledger hledger-lib http-client http-conduit HUnit json parsec safe + shakespeare template-haskell text time transformers wai wai-extra + wai-handler-launch warp yaml yesod yesod-core yesod-form + yesod-static + ]; + executableHaskellDepends = [ + base base-compat blaze-html blaze-markup bytestring clientsession + cmdargs conduit-extra data-default directory filepath hjsmin + hledger hledger-lib http-client http-conduit HUnit json parsec safe + shakespeare template-haskell text time transformers wai wai-extra + wai-handler-launch warp yaml yesod yesod-core yesod-form + yesod-static + ]; + testHaskellDepends = [ + base base-compat blaze-html blaze-markup bytestring clientsession + cmdargs conduit-extra data-default directory filepath hjsmin + hledger hledger-lib hspec http-client http-conduit HUnit json + parsec safe shakespeare template-haskell text time transformers wai + 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 ({ mkDerivation, base, bindings-DSL, bytestring, hlint, libbladeRF }: @@ -90744,7 +92813,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hlint" = callPackage + "hlint_1_9_21" = callPackage ({ mkDerivation, ansi-terminal, base, cmdargs, containers, cpphs , directory, extra, filepath, haskell-src-exts, hscolour, process , transformers, uniplate @@ -90763,6 +92832,29 @@ self: { homepage = "http://community.haskell.org/~ndm/hlint/"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hlint" = callPackage + ({ mkDerivation, ansi-terminal, base, cmdargs, containers, cpphs + , directory, extra, filepath, haskell-src-exts, hscolour, process + , refact, transformers, uniplate + }: + mkDerivation { + pname = "hlint"; + version = "1.9.22"; + sha256 = "5f6e377238899b87e83b38c1a6a8bfee68d6c50dba2229454a081115cd5c19f7"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + ansi-terminal base cmdargs containers cpphs directory extra + filepath haskell-src-exts hscolour process refact transformers + uniplate + ]; + executableHaskellDepends = [ base ]; + homepage = "http://community.haskell.org/~ndm/hlint/"; + description = "Source code suggestions"; + license = stdenv.lib.licenses.bsd3; }) {}; "hlogger" = callPackage @@ -91023,19 +93115,19 @@ self: { }) {inherit (pkgs) openblasCompat;}; "hmatrix-banded" = callPackage - ({ mkDerivation, base, hmatrix, lapack, transformers }: + ({ mkDerivation, base, hmatrix, liblapack, transformers }: mkDerivation { pname = "hmatrix-banded"; version = "0.0"; sha256 = "52a90b2094eacfbeb87befaa6a2ae44924dc175c9245b61574967a6ae1a84f16"; libraryHaskellDepends = [ base hmatrix transformers ]; - librarySystemDepends = [ lapack ]; + librarySystemDepends = [ liblapack ]; jailbreak = true; homepage = "http://code.haskell.org/~thielema/hmatrix-banded/"; description = "HMatrix interface to LAPACK functions for banded matrices"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {lapack = null;}; + }) {inherit (pkgs) liblapack;}; "hmatrix-csv" = callPackage ({ mkDerivation, base, bytestring, cassava, hmatrix, vector }: @@ -91114,7 +93206,7 @@ self: { }) {inherit (pkgs) gsl;}; "hmatrix-gsl-stats_0_2_1" = callPackage - ({ mkDerivation, base, binary, blas, hmatrix, lapack + ({ mkDerivation, base, binary, blas, hmatrix, liblapack , storable-complex }: mkDerivation { @@ -91122,12 +93214,12 @@ self: { version = "0.2.1"; sha256 = "d205fa83f2ad04690d6758757008aad4888760f2147fee2ec78e75dacadddee9"; libraryHaskellDepends = [ base binary hmatrix storable-complex ]; - librarySystemDepends = [ blas lapack ]; + librarySystemDepends = [ blas liblapack ]; homepage = "http://code.haskell.org/hmatrix-gsl-stats"; description = "GSL Statistics interface"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs) blas; lapack = null;}; + }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "hmatrix-gsl-stats_0_4_1" = callPackage ({ mkDerivation, base, binary, gsl, hmatrix, storable-complex }: @@ -91185,6 +93277,7 @@ self: { homepage = "http://github.com/alanfalloon/hmatrix-mmap"; description = "Memory map Vector from disk into memory efficiently"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-nipals" = callPackage @@ -91199,6 +93292,7 @@ self: { homepage = "http://github.com/alanfalloon/hmatrix-nipals"; description = "NIPALS method for Principal Components Analysis on large data-sets"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-quadprogpp" = callPackage @@ -91224,6 +93318,7 @@ self: { homepage = "http://code.haskell.org/hmatrix-repa"; description = "Adaptors for interoperability between hmatrix and repa"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-special" = callPackage @@ -91271,6 +93366,7 @@ self: { homepage = "http://github.com/bgamari/hmatrix-svdlibc"; description = "SVDLIBC bindings for HMatrix"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-syntax" = callPackage @@ -91570,6 +93666,7 @@ self: { homepage = "https://github.com/ian-ross/hnetcdf"; description = "Haskell NetCDF library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) netcdf;}; "hnix" = callPackage @@ -94047,6 +96144,7 @@ self: { testHaskellDepends = [ aeson attoparsec base QuickCheck text vector ]; + jailbreak = true; description = "Embed a Ruby intepreter in your Haskell program !"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; @@ -94187,23 +96285,24 @@ self: { "hs-duktape" = callPackage ({ mkDerivation, aeson, aeson-qq, base, bytestring, hspec - , hspec-expectations-pretty-diff, template-haskell, text - , transformers + , hspec-expectations-pretty-diff, raw-strings-qq, template-haskell + , text, transformers, unordered-containers, vector }: mkDerivation { pname = "hs-duktape"; - version = "0.1.0"; - sha256 = "4627845867a5b00022b22b0f90355a7f0e9b5b703883f74a6a226507972bf429"; + version = "0.1.1"; + sha256 = "0fa193ba3ccd8e603fecf91624a2e02762f5f959370bfea829aecd245f4be906"; libraryHaskellDepends = [ - aeson base bytestring text transformers + aeson base bytestring text transformers unordered-containers vector ]; testHaskellDepends = [ aeson aeson-qq base bytestring hspec hspec-expectations-pretty-diff - template-haskell text + raw-strings-qq template-haskell text ]; homepage = "https://github.com/myfreeweb/hs-duktape"; description = "Haskell bindings for a very compact embedded ECMAScript (JavaScript) engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-excelx" = callPackage @@ -94846,6 +96945,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-auditor"; description = "Haskell SuperCollider Auditor"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-cairo" = callPackage @@ -95124,6 +97224,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-sf-hsndfile"; description = "Haskell SuperCollider SoundFile"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-unsafe" = callPackage @@ -95586,12 +97687,12 @@ self: { }) {}; "hset" = callPackage - ({ mkDerivation, base, deepseq, HUnit, tagged }: + ({ mkDerivation, base, deepseq, HUnit, tagged, type-fun }: mkDerivation { pname = "hset"; - version = "2.1.0"; - sha256 = "34471dc94721e12e3b85f9b32ec2c20e3d1fce62f4306e3542fa60b40aba5b97"; - libraryHaskellDepends = [ base deepseq tagged ]; + version = "2.2.0"; + sha256 = "b8747a0826aeaca2ca814e7a334f9de5a02f36ac83faea5e1c32c8f6040bf130"; + libraryHaskellDepends = [ base deepseq tagged type-fun ]; testHaskellDepends = [ base HUnit tagged ]; homepage = "https://bitbucket.org/s9gf4ult/hset"; description = "Primitive list with elements of unique types"; @@ -95733,7 +97834,7 @@ self: { "hsignal_0_2_7" = callPackage ({ mkDerivation, array, base, binary, blas, bytestring, hmatrix - , hmatrix-gsl, hmatrix-gsl-stats, hstatistics, lapack, mtl + , hmatrix-gsl, hmatrix-gsl-stats, hstatistics, liblapack, mtl , storable-complex }: mkDerivation { @@ -95744,17 +97845,18 @@ self: { array base binary bytestring hmatrix hmatrix-gsl hmatrix-gsl-stats hstatistics mtl storable-complex ]; - librarySystemDepends = [ blas lapack ]; + librarySystemDepends = [ blas liblapack ]; + prePatch = "rm -v Setup.lhs"; homepage = "http://code.haskell.org/hsignal"; description = "Signal processing and EEG data analysis"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs) blas; lapack = null;}; + }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "hsignal_0_2_7_1" = callPackage ({ mkDerivation, array, base, binary, blas, bytestring, gsl - , hmatrix, hmatrix-gsl, hmatrix-gsl-stats, hstatistics, lapack, mtl - , storable-complex + , hmatrix, hmatrix-gsl, hmatrix-gsl-stats, hstatistics, liblapack + , mtl, storable-complex }: mkDerivation { pname = "hsignal"; @@ -95764,18 +97866,20 @@ self: { array base binary bytestring hmatrix hmatrix-gsl hmatrix-gsl-stats hstatistics mtl storable-complex ]; - librarySystemDepends = [ blas lapack ]; + librarySystemDepends = [ blas liblapack ]; libraryPkgconfigDepends = [ gsl ]; + prePatch = "rm -v Setup.lhs"; homepage = "http://code.haskell.org/hsignal"; description = "Signal processing and EEG data analysis"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs) blas; inherit (pkgs) gsl; lapack = null;}; + }) {inherit (pkgs) blas; inherit (pkgs) gsl; + inherit (pkgs) liblapack;}; "hsignal" = callPackage ({ mkDerivation, array, base, binary, blas, bytestring, gsl - , hmatrix, hmatrix-gsl, hmatrix-gsl-stats, hstatistics, lapack, mtl - , storable-complex, vector + , hmatrix, hmatrix-gsl, hmatrix-gsl-stats, hstatistics, liblapack + , mtl, storable-complex, vector }: mkDerivation { pname = "hsignal"; @@ -95785,13 +97889,14 @@ self: { array base binary bytestring hmatrix hmatrix-gsl hmatrix-gsl-stats hstatistics mtl storable-complex vector ]; - librarySystemDepends = [ blas lapack ]; + librarySystemDepends = [ blas liblapack ]; libraryPkgconfigDepends = [ gsl ]; + prePatch = "rm -v Setup.lhs"; homepage = "http://code.haskell.org/hsignal"; description = "Signal processing and EEG data analysis"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs) blas; inherit (pkgs) gsl; lapack = null;}; + }) {inherit (pkgs) blas; inherit (pkgs) gsl; + inherit (pkgs) liblapack;}; "hsilop" = callPackage ({ mkDerivation, base, directory, filepath, haskeline, xdg-basedir @@ -95817,8 +97922,8 @@ self: { }: mkDerivation { pname = "hsimport"; - version = "0.6.5"; - sha256 = "fe9ff3d57ed5ec86dcfbe172542405bd98d3f7c5f683d195da726afc5b4e0182"; + version = "0.6.6"; + sha256 = "6c7da9d9dfb008370de456935639efd19fedb1adf63adbd41db86df9f0b02771"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -95829,7 +97934,6 @@ self: { testHaskellDepends = [ base filepath haskell-src-exts tasty tasty-golden ]; - jailbreak = true; description = "A command line program for extending the import list of a Haskell source file"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -96167,6 +98271,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Hsndfile"; description = "Haskell bindings for libsndfile"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libsndfile;}; "hsndfile-storablevector" = callPackage @@ -96192,6 +98297,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Hsndfile"; description = "Haskell bindings for libsndfile (Data.Vector interface)"; license = stdenv.lib.licenses.lgpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsnock" = callPackage @@ -97504,6 +99610,7 @@ self: { base data-default hashable hspec hspec-core HUnit lifted-base stm text transformers unordered-containers webdriver ]; + jailbreak = true; doCheck = false; homepage = "https://bitbucket.org/wuzzeb/webdriver-utils"; description = "Write end2end web application tests using webdriver and hspec"; @@ -98270,8 +100377,8 @@ self: { }: mkDerivation { pname = "htiled"; - version = "0.1.2.0"; - sha256 = "e9393272e0523d51c53e6e716e012b7a939b9b6f0ca663f72f314a1ec9540ebc"; + version = "0.1.3.0"; + sha256 = "1141d497418c6f53c8e578be673073956108cf2617f8bf8af0c045a8f1f974da"; libraryHaskellDepends = [ base base64-bytestring bytestring containers filepath hxt split zlib @@ -100302,17 +102409,17 @@ self: { "http2" = callPackage ({ mkDerivation, aeson, aeson-pretty, array, base, bytestring , bytestring-builder, containers, directory, doctest, filepath - , Glob, hex, hspec, mwc-random, stm, text, unordered-containers - , vector, word8 + , Glob, hex, hspec, mwc-random, psqueues, stm, text + , unordered-containers, vector, word8 }: mkDerivation { pname = "http2"; - version = "1.1.0"; - sha256 = "1860d3e63b418cedd440c496fa813eadc14325a1e3dbb68e49221b2e04e3c996"; + version = "1.2.0"; + sha256 = "8ea62057b98fcc301105f5173632cfa92aea9afca497f132e3234d6fa04bc339"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - array base bytestring bytestring-builder containers mwc-random stm + array base bytestring bytestring-builder containers psqueues stm unordered-containers ]; executableHaskellDepends = [ @@ -100322,8 +102429,8 @@ self: { ]; testHaskellDepends = [ aeson aeson-pretty array base bytestring bytestring-builder - containers directory doctest filepath Glob hex hspec mwc-random stm - text unordered-containers vector word8 + containers directory doctest filepath Glob hex hspec mwc-random + psqueues stm text unordered-containers vector word8 ]; doCheck = false; description = "HTTP/2.0 library including frames and HPACK"; @@ -100945,6 +103052,45 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hworker" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, hedis, hspec + , hspec-contrib, HUnit, text, time, uuid + }: + mkDerivation { + pname = "hworker"; + version = "0.1.0.0"; + sha256 = "2af1e6cd3e8b6f7245176c31ded7c8b544fb9cfc4a20efd5b3a2b08995f9ec00"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring hedis text time uuid + ]; + testHaskellDepends = [ + aeson attoparsec base bytestring hedis hspec hspec-contrib HUnit + text time uuid + ]; + homepage = "http://github.com/dbp/hworker"; + description = "A reliable at-least-once job queue built on top of redis"; + license = stdenv.lib.licenses.isc; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hworker-ses" = callPackage + ({ mkDerivation, aeson, amazonka, amazonka-ses, base, hworker, lens + , text, time, unordered-containers + }: + mkDerivation { + pname = "hworker-ses"; + version = "0.1.0.0"; + sha256 = "46f14e8bb087bd0dccadfe8257e402562c0ca4824a9de24852fb0f0acc2d5933"; + libraryHaskellDepends = [ + aeson amazonka amazonka-ses base hworker lens text time + unordered-containers + ]; + homepage = "http://github.com/dbp/hworker-ses"; + description = "Library for sending email with Amazon's SES and hworker"; + license = stdenv.lib.licenses.isc; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hws" = callPackage ({ mkDerivation, array, base, containers, directory, haskell98 , html, mtl, network, old-time, regex-compat, text, unix @@ -100966,19 +103112,17 @@ self: { }) {}; "hwsl2" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-test-quickcheck - , QuickCheck, quickcheck-properties + ({ mkDerivation, base, bytestring, quickcheck-properties, tasty + , tasty-quickcheck }: mkDerivation { pname = "hwsl2"; - version = "0.3.2.0"; - sha256 = "a156892e99ff5aaf1835ce2e1ba6fa449ca193c3f175983f5f4cef0f694f7378"; + version = "0.4.0.0"; + sha256 = "2000137fd0c5374e582d963f2c352390fb55be91f91a1d9f433a42c1050c0838"; libraryHaskellDepends = [ base bytestring ]; testHaskellDepends = [ - base bytestring Cabal cabal-test-quickcheck QuickCheck - quickcheck-properties + base bytestring quickcheck-properties tasty tasty-quickcheck ]; - jailbreak = true; homepage = "https://github.com/srijs/hwsl2"; description = "Hashing with SL2"; license = stdenv.lib.licenses.mit; @@ -101626,20 +103770,6 @@ self: { }) {}; "hybrid-vectors" = callPackage - ({ mkDerivation, base, deepseq, primitive, vector }: - mkDerivation { - pname = "hybrid-vectors"; - version = "0.2"; - sha256 = "812c4bddccf83efecb71c2cf21f4bde89d8a583476810d5b0494d8278db2b975"; - revision = "1"; - editedCabalFile = "43a2c8cd2fa6abe7dc526dd99ef9d296394922a3d92ced8138072250fe75eb35"; - libraryHaskellDepends = [ base deepseq primitive vector ]; - homepage = "http://github.com/ekmett/hybrid-vectors"; - description = "Hybrid vectors e.g. Mixed Boxed/Unboxed vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "hybrid-vectors_0_2_1" = callPackage ({ mkDerivation, base, deepseq, primitive, vector }: mkDerivation { pname = "hybrid-vectors"; @@ -101649,7 +103779,6 @@ self: { homepage = "http://github.com/ekmett/hybrid-vectors"; description = "Hybrid vectors e.g. Mixed Boxed/Unboxed vectors"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydra-hs" = callPackage @@ -101987,7 +104116,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hyperloglog" = callPackage + "hyperloglog_0_3_4" = callPackage ({ mkDerivation, approximate, base, binary, bits, bytes, cereal , cereal-vector, comonad, deepseq, directory, distributive, doctest , filepath, generic-deriving, hashable, hashable-extras, lens @@ -102007,12 +104136,14 @@ self: { base directory doctest filepath generic-deriving semigroups simple-reflect ]; + jailbreak = true; homepage = "http://github.com/analytics/hyperloglog"; description = "An approximate streaming (constant space) unique object counter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hyperloglog_0_4_0_1" = callPackage + "hyperloglog" = callPackage ({ mkDerivation, approximate, base, binary, bits, bytes, cereal , cereal-vector, comonad, deepseq, directory, distributive, doctest , filepath, generic-deriving, hashable, hashable-extras, lens @@ -102021,8 +104152,8 @@ self: { }: mkDerivation { pname = "hyperloglog"; - version = "0.4.0.1"; - sha256 = "31977c1b40a68153e0910c8bdf700a07471fc7f5435b603e6d89fce691d20483"; + version = "0.4.0.3"; + sha256 = "a1d54ced920779ca32197d7f7f1db235fd2f41af500f935ef7bd0c76a3b94241"; libraryHaskellDepends = [ approximate base binary bits bytes cereal cereal-vector comonad deepseq distributive hashable hashable-extras lens reflection @@ -102035,7 +104166,6 @@ self: { homepage = "http://github.com/analytics/hyperloglog"; description = "An approximate streaming (constant space) unique object counter"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyperpublic" = callPackage @@ -102875,22 +105005,22 @@ self: { "ideas" = callPackage ({ mkDerivation, array, base, bytestring, containers, Diff , directory, exceptions, filepath, mtl, multipart, network - , old-locale, old-time, parsec, QuickCheck, random, time, uniplate - , wl-pprint, xhtml + , network-uri, old-locale, old-time, parsec, QuickCheck, random + , time, uniplate, wl-pprint, xhtml }: mkDerivation { pname = "ideas"; - version = "1.3.1"; - sha256 = "a0bbc19b9b6738dc56b757678d01c2ed6b74fe3963dbcd078768d10463b79be7"; + version = "1.4"; + sha256 = "3467d64e0e4f956f0769f3ecb9407726af8b931ebf6d5d14ebceb5a06b65d279"; libraryHaskellDepends = [ array base bytestring containers Diff directory exceptions filepath - mtl multipart network old-locale old-time parsec QuickCheck random - time uniplate wl-pprint xhtml + mtl multipart network network-uri old-locale old-time parsec + QuickCheck random time uniplate wl-pprint xhtml ]; jailbreak = true; homepage = "http://ideas.cs.uu.nl/www/"; description = "Feedback services for intelligent tutoring systems"; - license = "GPL"; + license = stdenv.lib.licenses.asl20; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -103027,6 +105157,7 @@ self: { executableHaskellDepends = [ base directory filepath haskeline transformers ]; + jailbreak = true; homepage = "http://www.idris-lang.org/"; description = "Functional Programming Language with Dependent Types"; license = stdenv.lib.licenses.bsd3; @@ -103604,6 +105735,7 @@ self: { aeson base containers ihaskell ipython-kernel nats scientific singletons text unix unordered-containers vector vinyl ]; + jailbreak = true; homepage = "http://www.github.com/gibiansky/IHaskell"; description = "IPython standard widgets for IHaskell"; license = stdenv.lib.licenses.mit; @@ -103703,6 +105835,7 @@ self: { test-framework-quickcheck2 text transformers vector ]; testPkgconfigDepends = [ imagemagick ]; + jailbreak = true; description = "bindings to imagemagick library"; license = "unknown"; hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; @@ -104633,9 +106766,10 @@ self: { tasty-hunit tasty-quickcheck template-haskell temporary text unix vector ]; + jailbreak = true; description = "Seamlessly call R from Haskell and vice versa. No FFI required."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) R;}; "inquire" = callPackage @@ -105526,6 +107660,7 @@ self: { ]; libraryPkgconfigDepends = [ ipopt nlopt ]; libraryToolDepends = [ c2hs ]; + jailbreak = true; description = "haskell binding to ipopt and nlopt including automatic differentiation"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -106350,8 +108485,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "ivar-simple"; - version = "0.3.1"; - sha256 = "9572889f3a7ca70628541e8b597bba8b3a669526ebf16be5c9d7e68a41b6c3fe"; + version = "0.3.2"; + sha256 = "1cc082416e63598212cba91aa14199732e70a05a9c3d512230119ac866b3a752"; libraryHaskellDepends = [ base ]; description = "Write once concurrency primitives"; license = stdenv.lib.licenses.mit; @@ -106725,7 +108860,7 @@ self: { homepage = "http://github.com/ghorn/jacobi-roots"; description = "Roots of two shifted Jacobi polynomials (Legendre and Radau) to double precision"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jail" = callPackage @@ -106816,6 +108951,7 @@ self: { vector xml ]; executableHaskellDepends = [ base boxes directory filepath ]; + jailbreak = true; homepage = "https://github.com/mtolly/jammittools"; description = "Export sheet music and audio from Windows/Mac app Jammit"; license = "GPL"; @@ -107935,6 +110071,7 @@ self: { QuickCheck stm stm-conduit test-framework test-framework-quickcheck2 text transformers unordered-containers ]; + jailbreak = true; homepage = "https://github.com/xenog/json-rpc"; description = "Fully-featured JSON-RPC 2.0 library"; license = stdenv.lib.licenses.publicDomain; @@ -108224,13 +110361,12 @@ self: { }: mkDerivation { pname = "json-sop"; - version = "0.1.0.4"; - sha256 = "9b9da5a96370bd1f0a641b42e98994e39e8b5f45af23199b42f40d0da02ba60b"; + version = "0.2.0.0"; + sha256 = "2657ff212fa92b5a1cc1e36e85bee87807f7f33efb2c0d52f2967e001487ee02"; libraryHaskellDepends = [ aeson base generics-sop lens-sop tagged text time transformers unordered-containers vector ]; - jailbreak = true; description = "Generics JSON (de)serialization using generics-sop"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -108255,18 +110391,19 @@ self: { "json-stream" = callPackage ({ mkDerivation, aeson, base, bytestring, directory, hspec - , scientific, text, unordered-containers, vector + , QuickCheck, quickcheck-unicode, scientific, text + , unordered-containers, vector }: mkDerivation { pname = "json-stream"; - version = "0.3.2.2"; - sha256 = "4415147dec300d1121121308008a522de79949549c35b23c673d70717ad28029"; + version = "0.4.0.0"; + sha256 = "10efbff41ba46c62b0f78f650275b3dcc1c5665edca7291143ddc9a7bbc8880a"; libraryHaskellDepends = [ aeson base bytestring scientific text unordered-containers vector ]; testHaskellDepends = [ - aeson base bytestring directory hspec scientific text - unordered-containers vector + aeson base bytestring directory hspec QuickCheck quickcheck-unicode + scientific text unordered-containers vector ]; homepage = "https://github.com/ondrap/json-stream"; description = "Incremental applicative JSON parser"; @@ -108287,6 +110424,7 @@ self: { aeson attoparsec attoparsec-trans base bytestring scientific text transformers unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/srijs/haskell-json-togo"; description = "Effectful parsing of JSON documents"; license = stdenv.lib.licenses.mit; @@ -108436,6 +110574,7 @@ self: { testHaskellDepends = [ aeson base bytestring containers process tagged text ]; + jailbreak = true; homepage = "https://github.com/yuga/jsonschema-gen"; description = "JSON Schema generator from Algebraic data type"; license = stdenv.lib.licenses.bsd3; @@ -109270,8 +111409,8 @@ self: { }: mkDerivation { pname = "keera-posture"; - version = "0.1.4.4"; - sha256 = "c0c03d11f4b5c10c8efb89fcb0908abc495984ef6718890ab8d5f9a11a32985a"; + version = "0.2.1"; + sha256 = "92e6f62e463822164fe1f74db8747f11cbe46f443723c0258f326c2b41c99197"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -109285,7 +111424,6 @@ self: { keera-hails-reactivevalues MissingK mtl network process SDL SDL-mixer setlocale time utf8-string ]; - jailbreak = true; homepage = "http://keera.co.uk/projects/keera-posture"; description = "Get notifications when your sitting posture is inappropriate"; license = "unknown"; @@ -109762,8 +111900,8 @@ self: { }: mkDerivation { pname = "keystore"; - version = "0.7.0.1"; - sha256 = "12e97b8e953f6bc6b189b15b6fbd88c668e84470a585bfc6c89582b5aec65c43"; + version = "0.8.0.0"; + sha256 = "45c57cffd3690fc3c20531645eca8bda86a8c6b4cbf6e40f80cb4f874ecb9e12"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -110431,6 +112569,7 @@ self: { homepage = "http://github.com/jfischoff/lagrangian"; description = "Solve Lagrange multiplier problems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "laika" = callPackage @@ -110930,6 +113069,7 @@ self: { libraryHaskellDepends = [ base bytestring bytestring-trie containers mtl vector ]; + jailbreak = true; homepage = "http://lambdacube3d.wordpress.com/"; description = "LambdaCube 3D IR"; license = stdenv.lib.licenses.bsd3; @@ -110947,6 +113087,7 @@ self: { base bytestring bytestring-trie containers ghc-prim lambdacube-core mtl vector ]; + jailbreak = true; homepage = "http://lambdacube3d.wordpress.com/"; description = "LambdaCube 3D EDSL definition"; license = stdenv.lib.licenses.bsd3; @@ -111191,8 +113332,8 @@ self: { }: mkDerivation { pname = "language-c-inline"; - version = "0.7.9.1"; - sha256 = "63b0db759515a7b39c4709ec47b6f90faec374111ab266401d8bbeca6ad8fd2a"; + version = "0.7.9.2"; + sha256 = "da975b3d40de997e4f21a47867894aa0208e8581015bed70b903fe199eb1f62d"; libraryHaskellDepends = [ array base containers filepath language-c-quote mainland-pretty template-haskell @@ -111603,8 +113744,8 @@ self: { }: mkDerivation { pname = "language-fortran"; - version = "0.3"; - sha256 = "1f907dae2fa8a7901e1770ef48589aa3aafa8eead25a081575532c1eab055733"; + version = "0.4"; + sha256 = "6274cb5cf9ebea85f616bd0276345bda76160766e67ad4d7f6173f5f19b7780e"; libraryHaskellDepends = [ array base haskell-src parsec syb ]; libraryToolDepends = [ alex happy ]; description = "Fortran lexer and parser, language support, and extensions"; @@ -112056,6 +114197,7 @@ self: { ansi-wl-pprint base either Glob hspec HUnit lens parsec parsers strict-base-types temporary text unix unordered-containers vector ]; + jailbreak = true; homepage = "http://lpuppet.banquise.net/"; description = "Tools to parse and evaluate the Puppet DSL"; license = stdenv.lib.licenses.bsd3; @@ -112068,13 +114210,12 @@ self: { }: mkDerivation { pname = "language-python"; - version = "0.5.0"; - sha256 = "9e1f4a7cfa0062c3b8709bfe6334a948ac0a7f885c94fc09805eb2bc170515fc"; + version = "0.5.2"; + sha256 = "6c8bbde209ca62c32b9b89745f19203007c3dd407acc2f860a737b5a51446437"; libraryHaskellDepends = [ array base containers monads-tf pretty transformers utf8-string ]; libraryToolDepends = [ alex happy ]; - jailbreak = true; homepage = "http://github.com/bjpop/language-python"; description = "Parsing and pretty printing of Python code"; license = stdenv.lib.licenses.bsd3; @@ -112101,8 +114242,8 @@ self: { ({ mkDerivation, base, language-python }: mkDerivation { pname = "language-python-test"; - version = "0.5.0"; - sha256 = "dbbe4cac39dd9081e7c441a31fe0c604c61bba139eb7e7be1b9b44fead16b46b"; + version = "0.5.2"; + sha256 = "bf6828c9b940a0b42e7b46f0c75517ac6a50e858525416257fcc45957bb6e1a9"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base language-python ]; @@ -112267,6 +114408,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "largeword_1_2_4" = callPackage + ({ mkDerivation, base, binary, bytestring, HUnit, QuickCheck + , test-framework, test-framework-hunit, test-framework-quickcheck2 + }: + mkDerivation { + pname = "largeword"; + version = "1.2.4"; + sha256 = "0132ffdc0a7429339160ce0651c65ac504cff46c5f1744bd7dd6fb1c9a3351d5"; + libraryHaskellDepends = [ base binary ]; + testHaskellDepends = [ + base binary bytestring HUnit QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 + ]; + homepage = "https://github.com/idontgetoutmuch/largeword"; + description = "Provides Word128, Word192 and Word256 and a way of producing other large words if required"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "lat" = callPackage ({ mkDerivation, ansi-wl-pprint, base, cmdargs, directory, filepath , haskell98, haxr, HDBC, HDBC-sqlite3, hsini, HTTP, mtl, old-locale @@ -112372,10 +114532,8 @@ self: { }: mkDerivation { pname = "lattices"; - version = "1.4"; - sha256 = "89ef3b9b7989a420484943b4d839b098473b5e9aa56524816e3312dfb524a5b9"; - revision = "1"; - editedCabalFile = "509124867c08a750b451a89c5a35b7f80036cb449ccb3e1117dbeca9fc73ded2"; + version = "1.4.1"; + sha256 = "b1148cd7ed7fde0964fa53e5b1c304370291f08cfaa77dab3a6cfb01c8ae34ff"; libraryHaskellDepends = [ base containers deepseq hashable semigroups tagged universe-base universe-reverse-instances unordered-containers void @@ -112715,6 +114873,7 @@ self: { base cpphs deepseq-bounded deepseq-generics generics-sop random seqaid template-haskell ]; + jailbreak = true; homepage = "http://fremissant.net/leaky"; description = "Robust space leak, and its strictification"; license = stdenv.lib.licenses.bsd3; @@ -113250,6 +115409,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "lens-prelude" = callPackage + ({ mkDerivation, array, base, bytestring, containers, contravariant + , either, hashable, lens, mtl, text, time, transformers + , unordered-containers, vector + }: + mkDerivation { + pname = "lens-prelude"; + version = "0.2"; + sha256 = "b791b36b946f34dc0b3437a2923b670790d8a6cdec171c9ce4b13290b1471f29"; + libraryHaskellDepends = [ + array base bytestring containers contravariant either hashable lens + mtl text time transformers unordered-containers vector + ]; + homepage = "https://github.com/andrewthad/lens-prelude"; + description = "Alternate prelude that exports lens combinators"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "lens-properties" = callPackage ({ mkDerivation, base, lens, QuickCheck, transformers }: mkDerivation { @@ -113320,8 +115497,8 @@ self: { ({ mkDerivation, base, fclabels, generics-sop, transformers }: mkDerivation { pname = "lens-sop"; - version = "0.1.0.2"; - sha256 = "a678aaf57ef2363ed8f1569995e5dd68db88ab394eaea3f27f858fa731c2a6ac"; + version = "0.2.0.0"; + sha256 = "36f5a59ee68921496502c5586cd968ca2524cbb4be718763892c0daf26c7280a"; libraryHaskellDepends = [ base fclabels generics-sop transformers ]; @@ -113495,6 +115672,7 @@ self: { homepage = "https://github.com/basvandijk/levmar"; description = "An implementation of the Levenberg-Marquardt algorithm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "levmar-chart" = callPackage @@ -114164,6 +116342,7 @@ self: { homepage = "https://github.com/portnov/libssh2-hs"; description = "FFI bindings to libssh2 SSH2 client library (http://libssh2.org/)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libssh2; ssh2 = null;}; "libssh2-conduit" = callPackage @@ -114618,6 +116797,7 @@ self: { libraryHaskellDepends = [ base containers limp vector ]; libraryToolDepends = [ c2hs ]; testHaskellDepends = [ base limp ]; + jailbreak = true; homepage = "https://github.com/amosr/limp-cbc"; description = "bindings for integer linear programming solver Coin/CBC"; license = stdenv.lib.licenses.mit; @@ -114645,6 +116825,7 @@ self: { libraryHaskellDepends = [ base hmatrix HUnit ]; description = "LINear Discriminant Analysis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lindenmayer" = callPackage @@ -114896,7 +117077,6 @@ self: { base binary bytestring directory doctest filepath HUnit lens simple-reflect test-framework test-framework-hunit ]; - jailbreak = true; homepage = "http://github.com/ekmett/linear/"; description = "Linear Algebra"; license = stdenv.lib.licenses.bsd3; @@ -114956,6 +117136,7 @@ self: { homepage = "http://hub.darcs.net/thielema/linear-circuit"; description = "Compute resistance of linear electrical circuits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linear-grammar" = callPackage @@ -115080,10 +117261,9 @@ self: { ({ mkDerivation, base, text }: mkDerivation { pname = "linguistic-ordinals"; - version = "0.1.0.0"; - sha256 = "03a62b59e4447d1fab0ece68a5055923bfece93c683a11a43883750a5c6fac29"; + version = "0.1.0.1"; + sha256 = "68c0ada6fa1931d46310ad74891d0148ad6ad4912f3df28c3a67adeb961c540b"; libraryHaskellDepends = [ base text ]; - jailbreak = true; homepage = "http://github.com/argiopetech/linguistic-ordinals"; description = "Express Integral types as linguistic ordinals (1st, 2nd, 3rd, etc)"; license = stdenv.lib.licenses.bsd3; @@ -116661,6 +118841,7 @@ self: { base directory doctest filepath generic-deriving semigroups simple-reflect ]; + jailbreak = true; homepage = "http://github.com/analytics/log-domain/"; description = "Log-domain arithmetic"; license = stdenv.lib.licenses.bsd3; @@ -117191,6 +119372,7 @@ self: { libraryHaskellDepends = [ base vector ]; librarySystemDepends = [ loris ]; libraryToolDepends = [ c2hs ]; + jailbreak = true; homepage = "http://www.tiresiaspress.us/haskell/loris"; description = "interface to Loris API"; license = stdenv.lib.licenses.gpl2; @@ -117624,18 +119806,35 @@ self: { }: mkDerivation { pname = "luminance"; - version = "0.5.1"; - sha256 = "7906cd004ed671c79a0fee8886ad79bae9d9f2a2ad94c7994035a96d2263dad4"; + version = "0.5.2.1"; + sha256 = "4b19fd82453ee9c9d52414b7bfc803e54995c00805e81116e07e521f68f168fa"; libraryHaskellDepends = [ base containers contravariant dlist gl linear mtl resourcet semigroups transformers vector void ]; - jailbreak = true; homepage = "https://github.com/phaazon/luminance"; description = "Type-safe, dependently-typed and stateless graphics framework"; license = stdenv.lib.licenses.bsd3; }) {}; + "luminance_0_6_0_3" = callPackage + ({ mkDerivation, base, containers, contravariant, dlist, gl, linear + , mtl, resourcet, semigroups, transformers, vector, void + }: + mkDerivation { + pname = "luminance"; + version = "0.6.0.3"; + sha256 = "8925df1bf702aefda923402e279bd568533fccfcfeb4a358cd4a1388c1fc0323"; + libraryHaskellDepends = [ + base containers contravariant dlist gl linear mtl resourcet + semigroups transformers vector void + ]; + homepage = "https://github.com/phaazon/luminance"; + description = "Type-safe, type-level and stateless graphics framework"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "luminance-samples" = callPackage ({ mkDerivation, base, contravariant, GLFW-b, JuicyPixels , luminance, mtl, resourcet, transformers @@ -117655,6 +119854,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "luminance-samples_0_6_0_1" = callPackage + ({ mkDerivation, base, contravariant, GLFW-b, JuicyPixels, linear + , luminance, mtl, resourcet, transformers + }: + mkDerivation { + pname = "luminance-samples"; + version = "0.6.0.1"; + sha256 = "76b5c5d819e015b635166a436027a0924c1c59b05576c44481e1b3c2124e8900"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base contravariant GLFW-b JuicyPixels linear luminance mtl + resourcet transformers + ]; + jailbreak = true; + homepage = "https://github.com/phaazon/luminance-samples"; + description = "Luminance samples"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "lushtags" = callPackage ({ mkDerivation, base, haskell-src-exts, text, vector }: mkDerivation { @@ -117968,20 +120188,18 @@ self: { }) {}; "maam" = callPackage - ({ mkDerivation, base, Cabal, containers, directory, ghc - , template-haskell, text + ({ mkDerivation, base, containers, template-haskell, text, vector }: mkDerivation { pname = "maam"; - version = "0.2.0.1"; - sha256 = "38d5bd8e89a87c60115c875e60c012885f007f375d561ada1265c947ceb9dbe4"; + version = "0.3.0.0"; + sha256 = "4e296086df29c682b848c7f618534e80b196e8544e197cd2b24ec4f7278999cf"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base Cabal containers directory ghc template-haskell text + base containers template-haskell text vector ]; - jailbreak = true; - description = "An application of the Galois Transformers framework to two example semantics"; + description = "Monadic Abstracting Abstract Machines (MAAM) built on Galois Transformers"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -118342,6 +120560,7 @@ self: { homepage = "http://hub.darcs.net/thielema/magico"; description = "Compute solutions for Magico puzzle"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "magma" = callPackage @@ -119246,25 +121465,39 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "manifold-random" = callPackage + ({ mkDerivation, base, manifolds, random-fu, vector-space }: + mkDerivation { + pname = "manifold-random"; + version = "0.1.1.0"; + sha256 = "9979681fcea7a314db619da04ffca77c93d5afe42ce0b819bd974ca70e74050c"; + libraryHaskellDepends = [ base manifolds random-fu vector-space ]; + homepage = "https://github.com/leftaroundabout/manifolds"; + description = "Sampling random points on general manifolds"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "manifolds" = callPackage ({ mkDerivation, base, comonad, constrained-categories, containers , deepseq, hmatrix, MemoTrie, semigroups, tagged, transformers - , vector, vector-algorithms, vector-space, void + , vector, vector-space, void }: mkDerivation { pname = "manifolds"; - version = "0.1.3.1"; - sha256 = "f2d286ecbcf0d391fecb61e8be56b56737d9f26d53cc68e815fc2f73766330b4"; - revision = "1"; - editedCabalFile = "078a790a2e462108e5d1ed6314f264d40b3fd1b063f56595e3874fcb5137eeea"; + version = "0.1.5.0"; + sha256 = "de75b6d7105fcec37259fe4e8945056887a92c4441adc2d1921eac992c03acff"; + revision = "2"; + editedCabalFile = "16d1c676e2c50b7bce215171efd8888b99efcbd1217bd0b81e1254d70a2d10fe"; libraryHaskellDepends = [ base comonad constrained-categories containers deepseq hmatrix - MemoTrie semigroups tagged transformers vector vector-algorithms - vector-space void + MemoTrie semigroups tagged transformers vector vector-space void ]; + jailbreak = true; homepage = "https://github.com/leftaroundabout/manifolds"; - description = "Working with manifolds in a direct, embedding-free way"; + description = "Coordinate-free hypersurfaces"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "map-syntax" = callPackage @@ -119918,6 +122151,7 @@ self: { editedCabalFile = "f586a9d89c7279218a0436d0b8a6adaabc22414caca30774904821bd40cc5ace"; libraryHaskellDepends = [ base deepseq loop primitive vector ]; testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; + jailbreak = true; description = "A native implementation of matrix operations"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -120364,8 +122598,8 @@ self: { }: mkDerivation { pname = "megaparsec"; - version = "4.1.0"; - sha256 = "abe7835c01760d0fa0ab703b6948fa191799c9ddb08fb85c9e9642550508e0b9"; + version = "4.1.1"; + sha256 = "7e3e5860312d59dfea5cf99818f12c034cf4e7bbe3d8ff9fcf1b94e79af741ec"; libraryHaskellDepends = [ base bytestring mtl text transformers ]; testHaskellDepends = [ base HUnit mtl QuickCheck test-framework test-framework-hunit @@ -120880,6 +123114,7 @@ self: { testHaskellDepends = [ async base lens mwc-random primitive QuickCheck unix ]; + doHaddock = false; description = "High-performance application metric tracking"; license = stdenv.lib.licenses.mit; }) {}; @@ -121141,8 +123376,8 @@ self: { }: mkDerivation { pname = "microlens-mtl"; - version = "0.1.5.0"; - sha256 = "0f456e058d034e517eed53756d3b70438fcd91a818c93980053ab6ac86213028"; + version = "0.1.6.0"; + sha256 = "8594cf0eb10ad1a247c87f16b1afd860e55d91dca999bd3fcfb4b4af062b8362"; libraryHaskellDepends = [ base microlens mtl transformers transformers-compat ]; @@ -121157,8 +123392,8 @@ self: { }: mkDerivation { pname = "microlens-platform"; - version = "0.1.4.0"; - sha256 = "14ff87d02c650ce3ca3a5ebe93f4e918883c4d42efc142d56ee4d96de18e07f6"; + version = "0.1.5.0"; + sha256 = "3c705ad7a4732a0ac4deb82b1837b0fa247a6796bd64dbf1125edf135e2abd04"; libraryHaskellDepends = [ base hashable microlens microlens-ghc microlens-mtl microlens-th text unordered-containers vector @@ -122041,6 +124276,7 @@ self: { sha256 = "3be63590a01f8504f372fe7565a318eef8d6de31e6e251bdac01965297793d1a"; libraryHaskellDepends = [ base binary bytestring vector ]; testHaskellDepends = [ base binary directory hspec vector ]; + jailbreak = true; homepage = "https://github.com/kryoxide/minst-idx/"; description = "Read and write IDX data that is used in e.g. the MINST database."; license = stdenv.lib.licenses.gpl3; @@ -123052,7 +125288,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "monad-logger" = callPackage + "monad-logger_0_3_14" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, conduit , conduit-extra, exceptions, fast-logger, lifted-base , monad-control, monad-loops, mtl, resourcet, stm, stm-chans @@ -123072,6 +125308,29 @@ self: { homepage = "https://github.com/kazu-yamamoto/logger"; description = "A class of monads which can log messages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monad-logger" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, conduit + , conduit-extra, exceptions, fast-logger, lifted-base + , monad-control, monad-loops, mtl, resourcet, stm, stm-chans + , template-haskell, text, transformers, transformers-base + , transformers-compat + }: + mkDerivation { + pname = "monad-logger"; + version = "0.3.15"; + sha256 = "33a5bb9d91be1068201ae8764f0a325ab2f4436a6b3bace2e58fb38db872a86e"; + libraryHaskellDepends = [ + base blaze-builder bytestring conduit conduit-extra exceptions + fast-logger lifted-base monad-control monad-loops mtl resourcet stm + stm-chans template-haskell text transformers transformers-base + transformers-compat + ]; + homepage = "https://github.com/kazu-yamamoto/logger"; + description = "A class of monads which can log messages"; + license = stdenv.lib.licenses.mit; }) {}; "monad-logger-json" = callPackage @@ -123652,7 +125911,7 @@ self: { license = "GPL"; }) {}; - "monadcryptorandom" = callPackage + "monadcryptorandom_0_6_1" = callPackage ({ mkDerivation, base, bytestring, crypto-api, mtl, tagged , transformers }: @@ -123666,6 +125925,23 @@ self: { homepage = "https://github.com/TomMD/monadcryptorandom"; description = "A monad for using CryptoRandomGen"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monadcryptorandom" = callPackage + ({ mkDerivation, base, bytestring, crypto-api, mtl, tagged + , transformers + }: + mkDerivation { + pname = "monadcryptorandom"; + version = "0.7.0"; + sha256 = "67011973932bc58d5f1d0eedbbe8dca3c3160ea1dac04e82cf96bd6687515623"; + libraryHaskellDepends = [ + base bytestring crypto-api mtl tagged transformers + ]; + homepage = "https://github.com/TomMD/monadcryptorandom"; + description = "A monad for using CryptoRandomGen"; + license = stdenv.lib.licenses.bsd3; }) {}; "monadfibre" = callPackage @@ -124341,6 +126617,7 @@ self: { 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; @@ -124362,6 +126639,7 @@ self: { 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; @@ -124964,14 +127242,14 @@ self: { }: mkDerivation { pname = "msh"; - version = "0.1.0.0"; - sha256 = "5881b95bea0ea25e2fc7c8c647992b96e0fa00ac64b1b24221842af5593d85b2"; + version = "0.1.0.2"; + sha256 = "841959f17db990cf8894feb2ead08d758dcff502e1cd1b88f9bb2a9145e3a9f8"; libraryHaskellDepends = [ base containers haskell-src-exts haskell-src-meta lens mtl parsec template-haskell text ]; homepage = "http://www.cl.cam.ac.uk/~mbg28/"; - description = "Template Haskell implementation of Programming with Monadic State Hierarchies"; + description = "Object-Oriented Programming in Haskell"; license = stdenv.lib.licenses.mit; }) {}; @@ -126058,21 +128336,20 @@ self: { "mustache" = callPackage ({ mkDerivation, aeson, base, base-unicode-symbols, bytestring - , cmdargs, containers, conversion, conversion-text, directory - , either, filepath, hspec, ja-base-extra, mtl, parsec, process - , scientific, tagsoup, temporary, text, unordered-containers - , vector, yaml + , cmdargs, containers, directory, either, filepath, hspec + , ja-base-extra, mtl, parsec, process, scientific, tagsoup + , temporary, text, unordered-containers, vector, yaml }: mkDerivation { pname = "mustache"; - version = "0.3.0.1"; - sha256 = "e92c1630bfa24fd2906554f4b48f156d0049f9cacc2cbf4759783dce4af743bd"; + version = "0.5.0.0"; + sha256 = "f1db1c60cdf09541cc4a2176a5ed2affaa09666b6d0c7341f65577ee6307b3a2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base base-unicode-symbols bytestring containers conversion - conversion-text directory either filepath ja-base-extra mtl parsec - scientific tagsoup text unordered-containers vector + aeson base base-unicode-symbols bytestring containers directory + either filepath ja-base-extra mtl parsec scientific tagsoup text + unordered-containers vector ]; executableHaskellDepends = [ aeson base base-unicode-symbols bytestring cmdargs filepath text @@ -126855,8 +129132,8 @@ self: { }: mkDerivation { pname = "nanomsg-haskell"; - version = "0.2.2"; - sha256 = "90713f8dbccdacf47dd6cba8194a415874c2bd95adb1c65ac4e439ec1b068ddc"; + version = "0.2.3"; + sha256 = "1d535d846c7fd4ca54d1235a25f0b887c301a1af0cf23a551b994a4bbc923f61"; libraryHaskellDepends = [ base binary bytestring ]; librarySystemDepends = [ nanomsg ]; testHaskellDepends = [ @@ -127004,15 +129281,15 @@ self: { "nationstates" = callPackage ({ mkDerivation, base, bytestring, clock, containers, http-client - , http-client-tls, http-types, multiset, transformers, xml + , http-client-tls, http-types, multiset, tls, transformers, xml }: mkDerivation { pname = "nationstates"; - version = "0.4.0.0"; - sha256 = "bf29815f07c70e748b6cc968edbb4dcfcfbf940e86fe829ea2261aa9e375105c"; + version = "0.5.0.0"; + sha256 = "020efcdc1b16ae77ce2488180c02e398db45745adc96da2e9b406f27d7f75692"; libraryHaskellDepends = [ base bytestring clock containers http-client http-client-tls - http-types multiset transformers xml + http-types multiset tls transformers xml ]; homepage = "https://github.com/lfairy/nationstates"; description = "NationStates API client"; @@ -127200,8 +129477,8 @@ self: { }: mkDerivation { pname = "ncurses"; - version = "0.2.13"; - sha256 = "c378d447537351ff99ab1156eb75c1e898f470715dc31303ae1426ad39871354"; + version = "0.2.14"; + sha256 = "0aec2ed4a70c08d45b225a9096711ef3edf6c4b01e8d4de389069939ff1662cc"; libraryHaskellDepends = [ base containers text transformers ]; librarySystemDepends = [ ncurses ]; libraryToolDepends = [ c2hs ]; @@ -127646,6 +129923,8 @@ self: { pname = "netlink"; version = "0.1"; sha256 = "9653369535aac39f759d20ab34e49397b6d9d218e3a108de437394596bf75170"; + revision = "1"; + editedCabalFile = "a95c52a24e2db0fb3670350b3205c62d9e30bd8a596c34885cb65a3b73452294"; libraryHaskellDepends = [ base bytestring cereal containers monad-loops unix ]; @@ -127654,6 +129933,7 @@ self: { homepage = "http://netlink-hs.googlecode.com/"; description = "Netlink communication for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netlist" = callPackage @@ -128046,7 +130326,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "network-anonymous-tor" = callPackage + "network-anonymous-tor_0_9_2" = callPackage ({ mkDerivation, attoparsec, base, base32string, bytestring , exceptions, hexstring, hspec, hspec-attoparsec , hspec-expectations, network, network-attoparsec, network-simple @@ -128073,6 +130353,36 @@ self: { homepage = "http://www.leonmergen.com/opensource.html"; description = "Haskell API for Tor anonymous networking"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "network-anonymous-tor" = callPackage + ({ mkDerivation, attoparsec, base, base32string, bytestring + , exceptions, hexstring, hspec, hspec-attoparsec + , hspec-expectations, network, network-attoparsec, network-simple + , socks, splice, text, transformers + }: + mkDerivation { + pname = "network-anonymous-tor"; + version = "0.11.0"; + sha256 = "41aee5b34aaaec6fa47a56cca61fafec22097bda25d13d5baef6b7924e127549"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + attoparsec base base32string bytestring exceptions hexstring + network network-attoparsec network-simple socks text transformers + ]; + executableHaskellDepends = [ + base exceptions network network-simple splice + ]; + testHaskellDepends = [ + attoparsec base base32string bytestring exceptions hspec + hspec-attoparsec hspec-expectations network network-simple socks + text transformers + ]; + homepage = "http://www.leonmergen.com/opensource.html"; + description = "Haskell API for Tor anonymous networking"; + license = stdenv.lib.licenses.mit; }) {}; "network-api-support" = callPackage @@ -128579,8 +130889,8 @@ self: { ({ mkDerivation, base, binary, bytestring, network, unix }: mkDerivation { pname = "network-msg"; - version = "0.5"; - sha256 = "2fa8437664ea164768f15a9432c109dece50dc71628bee22a1b54bda4b85777a"; + version = "0.6"; + sha256 = "d2ca960b438df063a4f44c176ec46aff30d10dcb913883cb9ff9ed51be3ea1db"; libraryHaskellDepends = [ base binary bytestring network unix ]; description = "Recvmsg and sendmsg bindings"; license = "unknown"; @@ -129746,12 +132056,13 @@ self: { }) {}; "nondeterminism" = callPackage - ({ mkDerivation, base, containers, mtl }: + ({ mkDerivation, base, containers, mtl, tasty, tasty-hunit }: mkDerivation { pname = "nondeterminism"; - version = "1.0"; - sha256 = "20224ed6c3e8e3b92dc7631a2c12a3bfc455562c14c53069ca75eb506ac6ae43"; + version = "1.4"; + sha256 = "3037c93b0277037ab51ad8640f72a7975dcf48ba81570640be12d390d7b47dc5"; libraryHaskellDepends = [ base containers mtl ]; + testHaskellDepends = [ base tasty tasty-hunit ]; description = "A monad and monad transformer for nondeterministic computations"; license = "LGPL"; hydraPlatforms = stdenv.lib.platforms.none; @@ -129793,6 +132104,7 @@ self: { 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; @@ -130827,7 +133139,7 @@ self: { homepage = "https://github.com/krdlab/haskell-oidc-client"; description = "OpenID Connect 1.0 library for RP"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ois-input-manager" = callPackage @@ -130887,8 +133199,8 @@ self: { pname = "olwrapper"; version = "0.4.1"; sha256 = "51d1ef071ca8fcace46060fd5372301310f6bddf4b9fe1c5845a67dd9555d332"; - revision = "1"; - editedCabalFile = "44d11ed6751baf0383e968d36adca3c1ab49450cb0e147c1496feba468087e90"; + revision = "2"; + editedCabalFile = "1166385cf5605d7d543f591234ac81feb1a307dee476c962d8603baebd66ba44"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -131311,16 +133623,21 @@ self: { }) {}; "opaleye-trans" = callPackage - ({ mkDerivation, base, monad-control, mtl, opaleye - , postgresql-simple, product-profunctors, transformers-base + ({ mkDerivation, base, mtl, opaleye, postgresql-simple + , product-profunctors, transformers-base }: mkDerivation { pname = "opaleye-trans"; - version = "0.1.1"; - sha256 = "c7ec052bff70dd16e0ecbcc4956f1d529a6379a37ff7bf10d248a7c6229d8acf"; + version = "0.2.0"; + sha256 = "74de349dfb8be2dac06bc26ae24956c933a2f7c736290aa89bf9730704043918"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - base monad-control mtl opaleye postgresql-simple - product-profunctors transformers-base + base mtl opaleye postgresql-simple product-profunctors + transformers-base + ]; + executableHaskellDepends = [ + base opaleye postgresql-simple product-profunctors ]; homepage = "https://github.com/tomjaguarpaw/haskell-opaleye"; description = "A monad transformer for Opaleye"; @@ -131341,6 +133658,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "open-haddock" = callPackage + ({ mkDerivation, base, basic-prelude, text, turtle }: + mkDerivation { + pname = "open-haddock"; + version = "0.1.0.0"; + sha256 = "310b4b7dfeef8a4b07e77c9f5b646fe292bd49ef343ddbff7e8ddd02281fefdc"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ base basic-prelude text turtle ]; + description = "Open haddock HTML documentation"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "open-pandoc" = callPackage ({ mkDerivation, base, bytestring, containers, directory , extensible-exceptions, filepath, HTTP, mtl, network, old-time @@ -131718,13 +134048,12 @@ self: { }: mkDerivation { pname = "opentheory-bits"; - version = "1.66"; - sha256 = "d2f1eb608941c9d958131df08b99d6742c3deb258d166eb4c6c4ab0262cd4fe2"; + version = "1.69"; + sha256 = "c9ab3cbbd5b63db86c28d70ca1e61c4cef7af77a0032d5ebc694dbb6e71b897a"; libraryHaskellDepends = [ base opentheory opentheory-primitive opentheory-probability QuickCheck ]; - jailbreak = true; homepage = "http://opentheory.gilith.com/?pkg=natural-bits"; description = "Natural number to bit-list conversions"; license = stdenv.lib.licenses.mit; @@ -131736,13 +134065,12 @@ self: { }: mkDerivation { pname = "opentheory-byte"; - version = "1.126"; - sha256 = "1f0b595ad0e653ee6a32826bdae8984c960fc2c2b23903cee479c61cc18c8e7e"; + version = "1.128"; + sha256 = "0c0c0df4532acbb335bf211b439327a119eeaa93130836e92ea11c07add3e376"; libraryHaskellDepends = [ base opentheory opentheory-bits opentheory-primitive opentheory-probability QuickCheck ]; - jailbreak = true; homepage = "http://opentheory.gilith.com/?pkg=byte"; description = "Bytes"; license = stdenv.lib.licenses.mit; @@ -131777,8 +134105,8 @@ self: { }: mkDerivation { pname = "opentheory-divides"; - version = "1.63"; - sha256 = "7bd6a29d12fc92e6d4b65fac1ff9b02039232dd1d1def51d5ff5413f40405dc9"; + version = "1.66"; + sha256 = "dcbeeeb31870d5860eeb604b18cf616930566718459b9b707d7faa6a4c192e9b"; libraryHaskellDepends = [ base opentheory opentheory-primitive QuickCheck ]; @@ -131796,8 +134124,8 @@ self: { }: mkDerivation { pname = "opentheory-fibonacci"; - version = "1.69"; - sha256 = "7b07ec07b866dfbd18bdc64856e4a9e26be039d8273215942733c01eddf93827"; + version = "1.72"; + sha256 = "8af8af9bb12af856142f89839dcb45d9be705f38b80bdaaa5fdb8c252fcb82bb"; libraryHaskellDepends = [ base opentheory opentheory-primitive opentheory-stream QuickCheck ]; @@ -131813,15 +134141,14 @@ self: { }: mkDerivation { pname = "opentheory-parser"; - version = "1.158"; - sha256 = "11d246602fb421b08f48a70507cdc946d759738a8f5518357a8d985fea79450c"; + version = "1.160"; + sha256 = "3215209e7f01b7b548e46546591e51b84ff39c333ed45dc552623db2d933d3a3"; libraryHaskellDepends = [ base opentheory opentheory-primitive QuickCheck ]; testHaskellDepends = [ base opentheory opentheory-primitive QuickCheck ]; - jailbreak = true; homepage = "http://opentheory.gilith.com/?pkg=parser"; description = "Stream parsers"; license = stdenv.lib.licenses.mit; @@ -131833,8 +134160,8 @@ self: { }: mkDerivation { pname = "opentheory-prime"; - version = "1.82"; - sha256 = "1ad55616a445e9a177e00a23f4fa5afd10d41c2edb2f58e16364e4a5488edaf4"; + version = "1.85"; + sha256 = "77721fc4cf5791bacb59c576e8a1525c2e1767d350cd95b39cd77f353968e54c"; libraryHaskellDepends = [ base opentheory opentheory-divides opentheory-primitive opentheory-stream QuickCheck @@ -131843,7 +134170,6 @@ self: { base opentheory opentheory-divides opentheory-primitive opentheory-stream QuickCheck ]; - jailbreak = true; homepage = "http://opentheory.gilith.com/?pkg=natural-prime"; description = "Prime natural numbers"; license = stdenv.lib.licenses.mit; @@ -131853,8 +134179,8 @@ self: { ({ mkDerivation, base, QuickCheck, random }: mkDerivation { pname = "opentheory-primitive"; - version = "1.7"; - sha256 = "569a5c1714d29ba04793fca67c685086a606ede3907cb7122241374db8008f0a"; + version = "1.8"; + sha256 = "e8924d11e642820fc4ffbf0cc0a72577b0a5719845bd30ec522ff8d87c78ee8a"; libraryHaskellDepends = [ base QuickCheck random ]; testHaskellDepends = [ base QuickCheck random ]; homepage = "http://www.gilith.com/research/opentheory/"; @@ -131867,12 +134193,11 @@ self: { }: mkDerivation { pname = "opentheory-probability"; - version = "1.49"; - sha256 = "be36b0e87066d4612374127ea48833c99ffadfa551c5beaf536fa926bf965f37"; + version = "1.52"; + sha256 = "c23cf05b961bda0c50ebb4ea82e90172fbbe5f6c1528ef1ef858a690e419bd2e"; libraryHaskellDepends = [ base opentheory opentheory-primitive QuickCheck ]; - jailbreak = true; homepage = "http://opentheory.gilith.com/?pkg=probability"; description = "Probability"; license = stdenv.lib.licenses.mit; @@ -131883,8 +134208,8 @@ self: { }: mkDerivation { pname = "opentheory-stream"; - version = "1.46"; - sha256 = "8a97223b65a412b14deaa90bb04abc95eee2f3449a527ad233ddd0defb86475c"; + version = "1.49"; + sha256 = "fb77d60d61bba1fd868a284a2bf5e5eff4b69b2ec48cbb9a76046e0f20627483"; libraryHaskellDepends = [ base opentheory opentheory-primitive QuickCheck ]; @@ -131900,8 +134225,8 @@ self: { }: mkDerivation { pname = "opentheory-unicode"; - version = "1.140"; - sha256 = "cae2485cc0c33fa3cb0b0993751edd71d5222a5683ac927e710b596c183421f1"; + version = "1.142"; + sha256 = "fad5850a6a853de5b686101f374f297d6a00089fc7d051154a2da3091a5f5451"; libraryHaskellDepends = [ base opentheory opentheory-bits opentheory-byte opentheory-parser opentheory-primitive opentheory-probability QuickCheck @@ -131910,7 +134235,6 @@ self: { base opentheory opentheory-bits opentheory-byte opentheory-parser opentheory-primitive opentheory-probability QuickCheck ]; - jailbreak = true; homepage = "http://opentheory.gilith.com/?pkg=char"; description = "Unicode characters"; license = stdenv.lib.licenses.mit; @@ -131931,6 +134255,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "operational-alacarte" = callPackage + ({ mkDerivation, base, mtl }: + mkDerivation { + pname = "operational-alacarte"; + version = "0.1.1"; + sha256 = "123eca69007a2be60987e323facbaa8639b34073507584b753665619012e24ef"; + libraryHaskellDepends = [ base mtl ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/emilaxelsson/operational-alacarte"; + description = "A version of Operational suitable for extensible EDSLs"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "operational-class" = callPackage ({ mkDerivation, base, operational, transformers }: mkDerivation { @@ -132492,8 +134829,8 @@ self: { }: mkDerivation { pname = "origami"; - version = "0.0.4"; - sha256 = "fc67f25efdb2fd8c197f3df747a34f2e5c6e7bf07aca8de59d73987ba1d70d60"; + version = "0.0.6"; + sha256 = "34586cfdcc5a93283b79363aa1c6dac0bd775cd64095645cf5c8d2c711e50d0e"; libraryHaskellDepends = [ base bifunctors containers lens mtl pretty template-haskell ]; @@ -132743,8 +135080,8 @@ self: { }: mkDerivation { pname = "packed-dawg"; - version = "0.2.0.7"; - sha256 = "fed0883ccab7f57207b505ba758f2c3e1231c601fd81fd7bf3ea50b1ed358e0f"; + version = "0.2.0.8"; + sha256 = "79046d9fac55aecfa2e181ed4ce00d8667e639bee9e3a821d2eca80a6239cafc"; libraryHaskellDepends = [ base binary deepseq mtl unordered-containers vector vector-binary-instances @@ -132897,8 +135234,8 @@ self: { pname = "pagerduty"; version = "0.0.3"; sha256 = "415ec6653ecb10c85b2fcc166af6e6a4c972d126c766b059d90e9dbcc13c0fcb"; - revision = "1"; - editedCabalFile = "8447cd5d056350ee1ce2847ea4c59c33a329ab82eb14427d5f22cd0469eff67c"; + revision = "2"; + editedCabalFile = "ac488ece984ce9ec3b817abe513b2f02ed2fcd1e3c06151578c7230173b52a3f"; libraryHaskellDepends = [ aeson base bifunctors bytestring bytestring-conversion conduit data-default-class exceptions generics-sop http-client http-types @@ -132925,8 +135262,36 @@ self: { pname = "pagerduty"; version = "0.0.3.1"; sha256 = "59d868670bba6b8bb08e2fade0b0df3717910e364fb48a71b0a20f4e7451c8d0"; - revision = "1"; - editedCabalFile = "60d0f1e9506098c2d0ef9d8fead938722c89425c18bb6641cdf946b6d7c827b5"; + revision = "3"; + editedCabalFile = "af187adbe270ca0153f073116fa7f4214d473358585d6903fb0a4cefcef7c172"; + libraryHaskellDepends = [ + aeson base bifunctors bytestring bytestring-conversion conduit + data-default-class exceptions generics-sop http-client http-types + lens lens-aeson mmorph monad-control mtl template-haskell text time + time-locale-compat transformers transformers-base + transformers-compat unordered-containers + ]; + jailbreak = true; + homepage = "http://github.com/brendanhay/pagerduty"; + description = "Client library for PagerDuty Integration and REST APIs"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pagerduty_0_0_3_2" = callPackage + ({ mkDerivation, aeson, base, bifunctors, bytestring + , bytestring-conversion, conduit, data-default-class, exceptions + , generics-sop, http-client, http-types, lens, lens-aeson, mmorph + , monad-control, mtl, template-haskell, text, time + , time-locale-compat, transformers, transformers-base + , transformers-compat, unordered-containers + }: + mkDerivation { + pname = "pagerduty"; + version = "0.0.3.2"; + sha256 = "9aafe3a9b528623598a540cfaba2f38f8364761bda8a1c952d88ba8b6b2fb631"; + revision = "4"; + editedCabalFile = "0a211f47b152a8c848cdcfb29f5d90c8bbf2fe2cfe28b0dc65d53717552bba45"; libraryHaskellDepends = [ aeson base bifunctors bytestring bytestring-conversion conduit data-default-class exceptions generics-sop http-client http-types @@ -132951,10 +135316,8 @@ self: { }: mkDerivation { pname = "pagerduty"; - version = "0.0.3.2"; - sha256 = "9aafe3a9b528623598a540cfaba2f38f8364761bda8a1c952d88ba8b6b2fb631"; - revision = "1"; - editedCabalFile = "016fff9ce8abfc6dec19a84ed7043a2d6f6692f2b0f20a845e98a347a1bc48ba"; + version = "0.0.4"; + sha256 = "41549771fe6689ffb97806e615e86a3c7384177cbcc1c77873167a3e9d05be9c"; libraryHaskellDepends = [ aeson base bifunctors bytestring bytestring-conversion conduit data-default-class exceptions generics-sop http-client http-types @@ -133337,6 +135700,7 @@ self: { process QuickCheck syb test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; + doCheck = false; homepage = "http://pandoc.org"; description = "Conversion between markup formats"; license = "GPL"; @@ -133624,6 +135988,27 @@ self: { license = "GPL"; }) {}; + "pandoc-plantuml-diagrams" = callPackage + ({ mkDerivation, base, bytestring, directory, hspec, hspec-discover + , mtl, pandoc-types, process, SHA, utf8-string + }: + mkDerivation { + pname = "pandoc-plantuml-diagrams"; + version = "0.1.0.3"; + sha256 = "08ebe0e341283f0aaca31ba19358838bac0c9eb11048b6346d44a0b312b879d0"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring directory pandoc-types process SHA utf8-string + ]; + executableHaskellDepends = [ base pandoc-types ]; + testHaskellDepends = [ + base hspec hspec-discover mtl pandoc-types SHA utf8-string + ]; + description = "Render and insert PlantUML diagrams with Pandoc"; + license = stdenv.lib.licenses.mit; + }) {}; + "pandoc-types_1_12_4_1" = callPackage ({ mkDerivation, aeson, base, bytestring, containers , deepseq-generics, ghc-prim, syb @@ -134226,6 +136611,18 @@ self: { license = stdenv.lib.licenses.publicDomain; }) {}; + "parsec-trace" = callPackage + ({ mkDerivation, base, containers, mtl, parsec, rosezipper }: + mkDerivation { + pname = "parsec-trace"; + version = "0.0.0.1"; + sha256 = "545958904a02ce4277ee428092c159abdd264e711daa1263863f40446f0c3619"; + libraryHaskellDepends = [ base containers mtl parsec rosezipper ]; + homepage = "http://github.com/sleepomeno/parsec-trace#readme"; + description = "Add a hierarchical trace to Parsec parsers"; + license = stdenv.lib.licenses.mit; + }) {}; + "parsec-utils" = callPackage ({ mkDerivation, base, parsec }: mkDerivation { @@ -134350,6 +136747,22 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "parser241" = callPackage + ({ mkDerivation, base, containers, hspec, mtl }: + mkDerivation { + pname = "parser241"; + version = "0.1.0.2"; + sha256 = "701863271570594b6ebadbcea7222ef7a6fd284119ba009bd38a33179f6d2280"; + revision = "1"; + editedCabalFile = "530e10fa50239e46be70ff47ab2e78214527ea5f76dc4de31c7e894ed13c7120"; + libraryHaskellDepends = [ base containers mtl ]; + testHaskellDepends = [ base containers hspec mtl ]; + homepage = "https://github.com/YLiLarry/parser241"; + description = "An interface to create production rules using augmented grammars"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "parsergen" = callPackage ({ mkDerivation, base, bytestring, directory, filepath, HUnit , parsec, QuickCheck, template-haskell, test-framework @@ -134700,24 +137113,6 @@ self: { }) {}; "patches-vector" = callPackage - ({ mkDerivation, base, doctest, edit-distance-vector, microlens - , QuickCheck, vector - }: - mkDerivation { - pname = "patches-vector"; - version = "0.1.2.0"; - sha256 = "a2330b6c061de654ad50d00848b9d6730d2ebc283febafaa2ee383678718b763"; - libraryHaskellDepends = [ - base edit-distance-vector microlens vector - ]; - testHaskellDepends = [ base doctest QuickCheck ]; - homepage = "https://github.com/liamoc/patches-vector"; - description = "Patches (diffs) on vectors: composable, mergeable, and invertible"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - - "patches-vector_0_1_4_0" = callPackage ({ mkDerivation, base, doctest, edit-distance-vector, microlens , QuickCheck, vector }: @@ -134779,7 +137174,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "path-pieces" = callPackage + "path-pieces_0_2_0" = callPackage ({ mkDerivation, base, hspec, HUnit, QuickCheck, text, time }: mkDerivation { pname = "path-pieces"; @@ -134789,6 +137184,22 @@ self: { testHaskellDepends = [ base hspec HUnit QuickCheck text ]; description = "Components of paths"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + + "path-pieces" = callPackage + ({ mkDerivation, base, hspec, HUnit, QuickCheck, text, time }: + mkDerivation { + pname = "path-pieces"; + version = "0.2.1"; + sha256 = "080bd49f53e20597ca3e5962e0c279a3422345f5b088840a30a751cd76d4a36f"; + revision = "1"; + editedCabalFile = "c713a8d04b3e6b89f1116c1d5fe434305031e17a9f0ad30a457a8402e1d5fc5c"; + libraryHaskellDepends = [ base text time ]; + testHaskellDepends = [ base hspec HUnit QuickCheck text ]; + description = "Components of paths"; + license = stdenv.lib.licenses.bsd3; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -134836,13 +137247,14 @@ self: { }) {}; "pathwalk" = callPackage - ({ mkDerivation, base, directory, filepath }: + ({ mkDerivation, base, directory, filepath, transformers }: mkDerivation { pname = "pathwalk"; - version = "0.1.1.1"; - sha256 = "cf9f191459012440036579f04d25b717ec36a2fe58b211daa39729cbe389dc18"; - libraryHaskellDepends = [ base directory filepath ]; - jailbreak = true; + version = "0.3.1.2"; + sha256 = "76e0d0646a3133a062dbae4e9d37d59e71d6328706bb178552a93800e4550e91"; + libraryHaskellDepends = [ base directory filepath transformers ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/Xe/pathwalk"; description = "Path walking utilities for Haskell programs"; license = stdenv.lib.licenses.mit; }) {}; @@ -134934,6 +137346,7 @@ self: { aeson base bytestring HUnit test-framework test-framework-hunit text unordered-containers ]; + jailbreak = true; homepage = "https://github.com/fanjam/paypal-adaptive-hoops"; description = "Client for a limited part of PayPal's Adaptive Payments API"; license = stdenv.lib.licenses.mit; @@ -136135,7 +138548,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent" = callPackage + "persistent_2_2_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , blaze-html, blaze-markup, bytestring, conduit, containers , exceptions, fast-logger, hspec, lifted-base, monad-control @@ -136165,6 +138578,41 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, multi-backend data serialization"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + + "persistent" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring + , blaze-html, blaze-markup, bytestring, conduit, containers + , exceptions, fast-logger, hspec, http-api-data, lifted-base + , monad-control, monad-logger, mtl, old-locale, path-pieces + , resource-pool, resourcet, scientific, silently, tagged + , template-haskell, text, time, transformers, transformers-base + , unordered-containers, vector + }: + mkDerivation { + pname = "persistent"; + version = "2.2.2"; + sha256 = "34ff5847796668f5f3648d58c5bda3d8be7a48c4ac3e08b7343fa51c59f8c595"; + libraryHaskellDepends = [ + aeson attoparsec base base64-bytestring blaze-html blaze-markup + bytestring conduit containers exceptions fast-logger http-api-data + lifted-base monad-control monad-logger mtl old-locale path-pieces + resource-pool resourcet scientific silently tagged template-haskell + text time transformers transformers-base unordered-containers + vector + ]; + testHaskellDepends = [ + aeson attoparsec base base64-bytestring blaze-html bytestring + conduit containers fast-logger hspec http-api-data lifted-base + monad-control monad-logger mtl old-locale path-pieces resource-pool + resourcet scientific tagged template-haskell text time transformers + unordered-containers vector + ]; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Type-safe, multi-backend data serialization"; + license = stdenv.lib.licenses.mit; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -136282,7 +138730,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-mongoDB" = callPackage + "persistent-mongoDB_2_1_2_2" = callPackage ({ mkDerivation, aeson, attoparsec, base, bson, bytestring, cereal , conduit, containers, monad-control, mongoDB, network, path-pieces , persistent, resource-pool, resourcet, text, time, transformers @@ -136299,6 +138747,28 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Backend for the persistent library using mongoDB"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + + "persistent-mongoDB" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bson, bytestring, cereal + , conduit, containers, http-api-data, monad-control, mongoDB + , network, path-pieces, persistent, resource-pool, resourcet, text + , time, transformers + }: + mkDerivation { + pname = "persistent-mongoDB"; + version = "2.1.4"; + sha256 = "06b9d86c6f6b68025a86bd9cc62595bda303007f4da721764241d160f23766a2"; + libraryHaskellDepends = [ + aeson attoparsec base bson bytestring cereal conduit containers + http-api-data monad-control mongoDB network path-pieces persistent + resource-pool resourcet text time transformers + ]; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Backend for the persistent library using mongoDB"; + license = stdenv.lib.licenses.mit; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -136713,10 +139183,9 @@ self: { ({ mkDerivation, base, time, yesod }: mkDerivation { pname = "persistent-ratelimit"; - version = "0.1.0.1"; - sha256 = "ad9be10d63a0e0e481739924bd29e0fb2e9bebe01a6ff6ce678d4d4b2670bb8e"; + version = "0.2.0.0"; + sha256 = "e3b14ed8c78999ebe797e84cac75bc66ed7bd264b9ccef92279193be31ed114e"; libraryHaskellDepends = [ base time yesod ]; - jailbreak = true; homepage = "https://github.com/jprider63/persistent-ratelimit"; description = "A library for rate limiting activities with a persistent backend"; license = stdenv.lib.licenses.mit; @@ -137174,7 +139643,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-template" = callPackage + "persistent-template_2_1_3_7" = callPackage ({ mkDerivation, aeson, aeson-extra, base, bytestring, containers , ghc-prim, hspec, monad-control, monad-logger, path-pieces , persistent, QuickCheck, tagged, template-haskell, text @@ -137195,6 +139664,31 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, non-relational, multi-backend persistence"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + + "persistent-template" = callPackage + ({ mkDerivation, aeson, aeson-extra, base, bytestring, containers + , ghc-prim, hspec, http-api-data, monad-control, monad-logger + , path-pieces, persistent, QuickCheck, tagged, template-haskell + , text, transformers, unordered-containers + }: + mkDerivation { + pname = "persistent-template"; + version = "2.1.4"; + sha256 = "ed9e415d49288c7857febf978e4d97195c95113b9def30655894b48560999bce"; + libraryHaskellDepends = [ + aeson aeson-extra base bytestring containers ghc-prim http-api-data + monad-control monad-logger path-pieces persistent tagged + template-haskell text transformers unordered-containers + ]; + testHaskellDepends = [ + aeson base bytestring hspec persistent QuickCheck text transformers + ]; + homepage = "http://www.yesodweb.com/book/persistent"; + description = "Type-safe, non-relational, multi-backend persistence"; + license = stdenv.lib.licenses.mit; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -137563,6 +140057,37 @@ self: { license = stdenv.lib.licenses.gpl3; }) {pHash = null;}; + "phizzle" = callPackage + ({ mkDerivation, aeson, base, bytestring, network, network-uri + , regex-pcre, text + }: + mkDerivation { + pname = "phizzle"; + version = "0.1.0.2"; + sha256 = "45a1a4947b6e94dd0a32968a8584a12ed276a8355690cf5cb0314a14de0dc2cf"; + libraryHaskellDepends = [ + aeson base bytestring network network-uri regex-pcre text + ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/b-mcg/phizzle#readme"; + description = "Library for checking if a given link is in a phishtank json file"; + license = stdenv.lib.licenses.gpl3; + }) {}; + + "phone-numbers" = callPackage + ({ mkDerivation, base, bytestring, phonenumber }: + mkDerivation { + pname = "phone-numbers"; + version = "0.0.3"; + sha256 = "ccd7b831b990d6d2d5377d7102cd7ad470fc375fe60d3b6861f62beefadbac81"; + libraryHaskellDepends = [ base bytestring ]; + librarySystemDepends = [ phonenumber ]; + homepage = "https://github.com/christian-marie/phone-numbers"; + description = "Haskell bindings to the libphonenumber library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {phonenumber = null;}; + "phone-push" = callPackage ({ mkDerivation, base, base16-bytestring, binary, bytestring , conduit, convertible, HsOpenSSL, http-conduit, network, time @@ -137900,8 +140425,8 @@ self: { }: mkDerivation { pname = "pinboard"; - version = "0.8.10"; - sha256 = "ec2310f414cf783c728db68f3be43cda5131bcfe20c3dc044a5678573f79d688"; + version = "0.9.1"; + sha256 = "79cdb71726b3da449a07c3e734716837ad9f852cca15bc7ee78a5045f2101f81"; libraryHaskellDepends = [ aeson base bytestring containers either http-client http-client-tls http-types mtl network old-locale random text time transformers @@ -139359,6 +141884,7 @@ self: { executableHaskellDepends = [ base bytestring linear vector ]; description = "PLY file loader"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "png-file" = callPackage @@ -139889,7 +142415,6 @@ self: { version = "1.1.2"; sha256 = "6950f2e791533a40e7e41ff98679f680f27c7b66258b57871027bf0e5adc7062"; libraryHaskellDepends = [ base vector ]; - jailbreak = true; description = "A solver for systems of polynomial equations in bernstein form"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; @@ -139973,6 +142498,7 @@ self: { homepage = "https://github.com/kawu/polysoup"; description = "Online XML parsing with polyparse and tagsoup"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "polytypeable" = callPackage @@ -140425,7 +142951,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "post-mess-age" = callPackage + "post-mess-age_0_1_0_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "post-mess-age"; @@ -140434,6 +142960,18 @@ self: { libraryHaskellDepends = [ base ]; description = "Send messages to a Handle concurrently without getting them mixed"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "post-mess-age" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "post-mess-age"; + version = "0.2.0.0"; + sha256 = "4e0dc10e5c802360bff40e46517810785a92df55e75a4db89f784cef2c78af87"; + libraryHaskellDepends = [ base ]; + description = "Send messages to a handle concurrently without getting them mixed"; + license = stdenv.lib.licenses.bsd3; }) {}; "postcodes" = callPackage @@ -140786,7 +143324,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "postgresql-simple_0_5_0_1" = callPackage + "postgresql-simple_0_5_1_0" = callPackage ({ mkDerivation, aeson, attoparsec, base, base16-bytestring , bytestring, bytestring-builder, case-insensitive, containers , cryptohash, hashable, HUnit, postgresql-libpq, scientific @@ -140794,10 +143332,8 @@ self: { }: mkDerivation { pname = "postgresql-simple"; - version = "0.5.0.1"; - sha256 = "1b045b957533eba33fd7a93bf4b4aecc685cdb6592b635a2a383b71502efcb6c"; - revision = "1"; - editedCabalFile = "8d5aa9ab427874998dd710c17cea06ca14c8628a688a6249b3746b200171add7"; + version = "0.5.1.0"; + sha256 = "1073887f5e6efa61a64968aca1241442d1b60a01d461f7b419cf5767e9d4975c"; libraryHaskellDepends = [ aeson attoparsec base bytestring bytestring-builder case-insensitive containers hashable postgresql-libpq scientific @@ -140841,8 +143377,8 @@ self: { ({ mkDerivation, base, generics-sop, postgresql-simple }: mkDerivation { pname = "postgresql-simple-sop"; - version = "0.1.0.7"; - sha256 = "19bdc469524739c1e6514697cbf1648e88e5f20727ff862a8101027233816ec1"; + version = "0.2"; + sha256 = "7ead6d5aa2be6b5b9b8c583f0f0b9646de17d2f261aec56e19dc92486ad3f416"; libraryHaskellDepends = [ base generics-sop postgresql-simple ]; homepage = "https://github.com/openbrainsrc/postgresql-simple-sop"; description = "Generic functions for postgresql-simple"; @@ -140896,8 +143432,8 @@ self: { }: mkDerivation { pname = "postgresql-typed"; - version = "0.4.1"; - sha256 = "8abd1d386d0c7df88076ea69b52986cadce782df4d03a879848a554d5221d389"; + version = "0.4.2"; + sha256 = "7cbb155d47a31524c67272bb4e6f1c6485da73cd1f0593ab271fed55c5d09e49"; libraryHaskellDepends = [ aeson array attoparsec base binary bytestring containers cryptohash haskell-src-meta network old-locale postgresql-binary scientific @@ -141753,8 +144289,8 @@ self: { ({ mkDerivation, base, generics-sop, pretty-show }: mkDerivation { pname = "pretty-sop"; - version = "0.1.0.1"; - sha256 = "753bdf0b4e7906ad197efd5dfdeb3977245e5a45062d3a3a3d5b26f93ea766eb"; + version = "0.2.0.0"; + sha256 = "931e60782ff551f864b2548fcb39c2e05e502a4b2ef76108a6f66b672c88590f"; libraryHaskellDepends = [ base generics-sop pretty-show ]; description = "A generic pretty-printer using generics-sop"; license = stdenv.lib.licenses.bsd3; @@ -142734,6 +145270,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "prologue" = callPackage + ({ mkDerivation, base, binary, cond, convert, data-default + , data-repr, errors, lens, mtl, pretty-show, string-qq, text + , transformers, transformers-base, vector + }: + mkDerivation { + pname = "prologue"; + version = "1.0.1"; + sha256 = "fc5af0af5bbb16692e35ea3f37cf79e149bb0d5d2e3ede40e41b0ef4c5c77476"; + libraryHaskellDepends = [ + base binary cond convert data-default data-repr errors lens mtl + pretty-show string-qq text transformers transformers-base vector + ]; + homepage = "https://github.com/wdanilo/prologue"; + description = "Replacement for the Haskell's Prelude, exposing more commonly used functions and patching old GHC ones to behave in the newest GHC's way"; + license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "prometheus-client" = callPackage ({ mkDerivation, atomic-primops, base, bytestring, containers , doctest, hspec, mtl, QuickCheck, random-shuffle, stm, time @@ -142832,8 +145387,8 @@ self: { }: mkDerivation { pname = "propellor"; - version = "2.8.1"; - sha256 = "c5e80aa13e7663c692bd982c62b26b52aab88130a38750834d5a64af64813d9a"; + version = "2.12.0"; + sha256 = "75def2f664d267aa77a9573e8d8a91bb94b52bdca11a6dd05daa7e981b17de28"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -143834,7 +146389,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "purescript" = callPackage + "purescript_0_7_4_1" = callPackage ({ mkDerivation, aeson, aeson-better-errors, ansi-wl-pprint, base , bower-json, boxes, bytestring, containers, directory, dlist , filepath, Glob, haskeline, HUnit, language-javascript, mtl @@ -143869,6 +146424,45 @@ self: { homepage = "http://www.purescript.org/"; description = "PureScript Programming Language Compiler"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "purescript" = callPackage + ({ mkDerivation, aeson, aeson-better-errors, ansi-wl-pprint, base + , bower-json, boxes, bytestring, containers, directory, dlist + , filepath, Glob, haskeline, HUnit, language-javascript + , lifted-base, monad-control, mtl, optparse-applicative, parsec + , pattern-arrows, process, safe, semigroups, split, syb, text, time + , transformers, transformers-base, transformers-compat + , unordered-containers, utf8-string, vector + }: + mkDerivation { + pname = "purescript"; + version = "0.7.5.3"; + sha256 = "7388010e4d4ca350114c71b59b1f86062edf62b05b14c968464243814f68b4a4"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-better-errors base bower-json boxes bytestring + containers directory dlist filepath Glob language-javascript + lifted-base monad-control mtl parsec pattern-arrows process safe + semigroups split syb text time transformers transformers-base + transformers-compat unordered-containers utf8-string vector + ]; + executableHaskellDepends = [ + aeson ansi-wl-pprint base bytestring containers directory filepath + Glob haskeline mtl optparse-applicative parsec process split time + transformers transformers-compat + ]; + testHaskellDepends = [ + base containers directory filepath Glob haskeline HUnit mtl + optparse-applicative parsec process time transformers + transformers-compat + ]; + doCheck = false; + homepage = "http://www.purescript.org/"; + description = "PureScript Programming Language Compiler"; + license = stdenv.lib.licenses.mit; }) {}; "purescript-bundle-fast" = callPackage @@ -144322,6 +146916,7 @@ self: { homepage = "http://github.com/keerastudios/hsQt"; description = "Qt bindings"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {qtc_core = null; qtc_gui = null; qtc_network = null; qtc_opengl = null; qtc_script = null; qtc_tools = null;}; @@ -146079,8 +148674,8 @@ self: { }: mkDerivation { pname = "rdf4h"; - version = "1.3.2"; - sha256 = "7c8da40542d6bed70fb07730110503d632b0757c0890dae491cebcad431bca27"; + version = "1.3.3"; + sha256 = "5c45ee2f0658340ef1a35982c0aff0f9eafdbe0733d8af8d0ae1257398cac46a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -146089,14 +148684,12 @@ self: { unordered-containers ]; executableHaskellDepends = [ - base binary bytestring containers deepseq hashable HTTP hxt network - network-uri parsec text text-binary + base bytestring containers network network-uri text ]; testHaskellDepends = [ - base binary bytestring containers deepseq fgl hashable HTTP HUnit - hxt knob network network-uri parsec QuickCheck test-framework - test-framework-hunit test-framework-quickcheck2 text text-binary - unordered-containers + base bytestring containers HUnit knob network network-uri + QuickCheck test-framework test-framework-hunit + test-framework-quickcheck2 text ]; homepage = "https://github.com/robstewart57/rdf4h"; description = "A library for RDF processing in Haskell"; @@ -146170,8 +148763,8 @@ self: { }: mkDerivation { pname = "react-flux"; - version = "1.0.1"; - sha256 = "97355e6cc6efb38ebb313d8062dd944a3055ecd9afa7de2e304dbac9b56d4367"; + version = "1.0.2"; + sha256 = "eb5520adb34979a1f8ae7ce11ecc127d3df4ee7e419129c0e2ca2a1c01ef7c21"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -146280,8 +148873,8 @@ self: { }: mkDerivation { pname = "reactive-banana"; - version = "0.9.0.0"; - sha256 = "255930fdf0dcf40fe126ae2f4f274267cfd1e5f49b548618c3c84e3a8ad79683"; + version = "1.0.0.0"; + sha256 = "8fd90599b197d6df46c16bdcc308b6577a6a677fb77274f88401cb383b5016ec"; libraryHaskellDepends = [ base containers hashable pqueue transformers unordered-containers vault @@ -146334,8 +148927,8 @@ self: { ({ mkDerivation, base, cabal-macosx, reactive-banana, wx, wxcore }: mkDerivation { pname = "reactive-banana-wx"; - version = "0.9.0.2"; - sha256 = "ebb1b7e3eb6f973bd9922d27af64c94c28fc392655d2271c10b29a6c89ad3c5d"; + version = "1.0.0.0"; + sha256 = "eb6837d1ebcb19f95ff0a0cc8e13bb1c1f0d5dbb3cfebc743d52bbc48f55faab"; configureFlags = [ "-f-buildexamples" ]; isLibrary = true; isExecutable = true; @@ -146455,6 +149048,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "read-editor" = callPackage + ({ mkDerivation, base, directory, hspec, process }: + mkDerivation { + pname = "read-editor"; + version = "0.1.0.1"; + sha256 = "97d00279dacff63044e4cf6f0e66a05f284eb55cb3d4a379d77f2ec2aa664574"; + libraryHaskellDepends = [ base directory process ]; + testHaskellDepends = [ base directory hspec process ]; + homepage = "https://github.com/yamadapc/haskell-read-editor"; + description = "Opens a temporary file on the system's EDITOR and returns the resulting edits"; + license = stdenv.lib.licenses.mit; + }) {}; + "readable" = callPackage ({ mkDerivation, base, bytestring, text }: mkDerivation { @@ -147246,20 +149852,18 @@ self: { "reflex" = callPackage ({ mkDerivation, base, containers, dependent-map, dependent-sum - , exception-transformers, MemoTrie, mtl, primitive, ref-tf - , semigroups, template-haskell, these, transformers - , transformers-compat + , exception-transformers, haskell-src-exts, haskell-src-meta + , MemoTrie, mtl, primitive, ref-tf, semigroups, syb + , template-haskell, these, transformers, transformers-compat }: mkDerivation { pname = "reflex"; - version = "0.3"; - sha256 = "cd5bc7b5fad0c78267fe43039ef9bc0c7f123fc06288a5e93cee66e0c1bf84ab"; - revision = "1"; - editedCabalFile = "1bb117cf4fdf05f633d75b1e3e7998cff918e825ae8b8e95e695e00cf1e2d8c0"; + version = "0.3.2"; + sha256 = "55fae21380809137c5bdbde646479b01e36793f10523e44842eb35bc9c42f419"; libraryHaskellDepends = [ base containers dependent-map dependent-sum exception-transformers - mtl primitive ref-tf semigroups template-haskell these transformers - transformers-compat + haskell-src-exts haskell-src-meta mtl primitive ref-tf semigroups + syb template-haskell these transformers transformers-compat ]; testHaskellDepends = [ base containers dependent-map MemoTrie mtl ref-tf @@ -147275,8 +149879,8 @@ self: { }: mkDerivation { pname = "reflex-animation"; - version = "0.1.4"; - sha256 = "0fb5631b5924b82faaace339a1ac21da747a7e31cde076b322920d3bc837b449"; + version = "0.1.5"; + sha256 = "3ad0b2a381a4c356fd4d5a4ce7f60b875937e685f813d52c7ef1c8593776dd05"; libraryHaskellDepends = [ base bifunctors containers profunctors reflex reflex-transformers semigroups vector-space @@ -147358,8 +149962,8 @@ self: { }: mkDerivation { pname = "reflex-gloss-scene"; - version = "0.1"; - sha256 = "2e030497d984b09a4497f52941a29a6216650b22a5752cd3133ad459fe142cd1"; + version = "0.1.2"; + sha256 = "36cf3a42cbda33433c50a4dadbd580a22f9c88fc61f415777a63cf234da424d5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -148063,6 +150667,7 @@ self: { version = "0.1.1"; sha256 = "d2def3d9276b75dbf685780af1af5e373b1bd2df937eb0bcba15f8c21fb16401"; libraryHaskellDepends = [ ad base vector ]; + jailbreak = true; homepage = "https://github.com/alpmestan/regress"; description = "Linear and logistic regression through automatic differentiation"; license = stdenv.lib.licenses.bsd3; @@ -148547,7 +151152,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "repa" = callPackage + "repa_3_4_0_1" = callPackage ({ mkDerivation, base, bytestring, ghc-prim, QuickCheck , template-haskell, vector }: @@ -148558,12 +151163,14 @@ self: { libraryHaskellDepends = [ base bytestring ghc-prim QuickCheck template-haskell vector ]; + jailbreak = true; homepage = "http://repa.ouroborus.net"; description = "High performance, regular, shape polymorphic parallel arrays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "repa_3_4_0_2" = callPackage + "repa" = callPackage ({ mkDerivation, base, bytestring, ghc-prim, QuickCheck , template-haskell, vector }: @@ -148574,11 +151181,9 @@ self: { libraryHaskellDepends = [ base bytestring ghc-prim QuickCheck template-haskell vector ]; - jailbreak = true; homepage = "http://repa.ouroborus.net"; description = "High performance, regular, shape polymorphic parallel arrays"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-algorithms_3_3_1_2" = callPackage @@ -148595,30 +151200,30 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "repa-algorithms" = callPackage + "repa-algorithms_3_4_0_1" = callPackage ({ mkDerivation, base, repa, vector }: mkDerivation { pname = "repa-algorithms"; version = "3.4.0.1"; sha256 = "1470245351cccf155ab587f577c2e7948214022bf0eb8ed966b13c5dc3e51261"; libraryHaskellDepends = [ base repa vector ]; + jailbreak = true; homepage = "http://repa.ouroborus.net"; description = "Algorithms using the Repa array library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "repa-algorithms_3_4_0_2" = callPackage + "repa-algorithms" = callPackage ({ mkDerivation, base, repa, vector }: mkDerivation { pname = "repa-algorithms"; version = "3.4.0.2"; sha256 = "49de64a94ebf28800c408c7e9ba418b97e7663d2c74e4499187a2d90664f8939"; libraryHaskellDepends = [ base repa vector ]; - jailbreak = true; homepage = "http://repa.ouroborus.net"; description = "Algorithms using the Repa array library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-array" = callPackage @@ -148665,6 +151270,7 @@ self: { libraryHaskellDepends = [ base bytestring double-conversion primitive repa-scalar vector ]; + jailbreak = true; homepage = "http://repa.ouroborus.net"; description = "Packing and unpacking flat tables"; license = stdenv.lib.licenses.bsd3; @@ -148725,6 +151331,7 @@ self: { base QuickCheck random repa repa-algorithms repa-io template-haskell vector ]; + jailbreak = true; homepage = "http://repa.ouroborus.net"; description = "Examples using the Repa array library"; license = stdenv.lib.licenses.bsd3; @@ -148783,7 +151390,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "repa-io" = callPackage + "repa-io_3_4_0_1" = callPackage ({ mkDerivation, base, binary, bmp, bytestring, old-time, repa , vector }: @@ -148794,12 +151401,14 @@ self: { libraryHaskellDepends = [ base binary bmp bytestring old-time repa vector ]; + jailbreak = true; homepage = "http://repa.ouroborus.net"; description = "Read and write Repa arrays in various formats"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "repa-io_3_4_0_2" = callPackage + "repa-io" = callPackage ({ mkDerivation, base, binary, bmp, bytestring, old-time, repa , vector }: @@ -148810,21 +151419,18 @@ self: { libraryHaskellDepends = [ base binary bmp bytestring old-time repa vector ]; - jailbreak = true; homepage = "http://repa.ouroborus.net"; description = "Read and write Repa arrays in various formats"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-linear-algebra" = callPackage ({ mkDerivation, base, hmatrix, repa, vector }: mkDerivation { pname = "repa-linear-algebra"; - version = "0.2.0.0"; - sha256 = "587c3e26e0495149087636690f999b03dc9ffe6e6aa12a4376f9293eb25095e5"; + version = "0.3.0.0"; + sha256 = "643cbbbd486fa48f74ae1bbdcd05a8092325c8dba08e1950522fe27e8c45f559"; libraryHaskellDepends = [ base hmatrix repa vector ]; - jailbreak = true; homepage = "https://github.com/marcinmrotek/repa-linear-algebra"; description = "HMatrix operations for Repa"; license = stdenv.lib.licenses.bsd3; @@ -148859,6 +151465,7 @@ self: { libraryHaskellDepends = [ base bytestring double-conversion primitive vector ]; + jailbreak = true; homepage = "http://repa.ouroborus.net"; description = "Scalar data types and conversions"; license = stdenv.lib.licenses.bsd3; @@ -148896,6 +151503,7 @@ self: { ]; description = "Reading and writing sound files with repa arrays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-stream" = callPackage @@ -148909,6 +151517,7 @@ self: { homepage = "http://repa.ouroborus.net"; description = "Stream functions not present in the vector library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-v4l2" = callPackage @@ -149235,6 +151844,7 @@ self: { homepage = "http://hub.darcs.net/thielema/resistor-cube"; description = "Compute total resistance of a cube of resistors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "resolve-trivial-conflicts" = callPackage @@ -149343,6 +151953,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "resource-pool-monad" = callPackage + ({ mkDerivation, base, free, kan-extensions, monad-control + , resource-pool, transformers + }: + mkDerivation { + pname = "resource-pool-monad"; + version = "0.1.0.0"; + sha256 = "55b1c20a38a948defe55f39db23fc4e65f0ce452a69f2a566319ef3c896f647f"; + libraryHaskellDepends = [ + base free kan-extensions monad-control resource-pool transformers + ]; + homepage = "https://github.com/srijs/haskell-resource-pool-monad"; + description = "A monadic interface for resource-pool"; + license = stdenv.lib.licenses.mit; + }) {}; + "resource-simple" = callPackage ({ mkDerivation, base, containers, monad-control, monad-fork , mtl-evil-instances, transformers, transformers-base @@ -152133,6 +154759,7 @@ self: { libraryPkgconfigDepends = [ rubberband ]; libraryToolDepends = [ c2hs ]; testHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/mtolly/rubberband"; description = "Binding to the C++ audio stretching library Rubber Band"; license = stdenv.lib.licenses.gpl3; @@ -152153,6 +154780,7 @@ self: { testHaskellDepends = [ base bytestring cereal containers hspec mtl string-conv vector ]; + jailbreak = true; homepage = "https://github.com/filib/ruby-marshal"; description = "Parse a subset of Ruby objects serialised with Marshal.dump."; license = stdenv.lib.licenses.mit; @@ -152317,6 +154945,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "s-cargot" = callPackage + ({ mkDerivation, base, containers, parsec, text }: + mkDerivation { + pname = "s-cargot"; + version = "0.1.0.0"; + sha256 = "18682ea8684e704ba2abc55d699b9df0a98a2f400c3d0ace436de5b90c335a3e"; + libraryHaskellDepends = [ base containers parsec text ]; + homepage = "https://github.com/aisamanra/s-cargot"; + description = "A flexible, extensible s-expression library"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "s3-signer" = callPackage ({ mkDerivation, base, base64-bytestring, cryptohash, http-types , time, utf8-string @@ -152437,6 +155077,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "safe-length" = callPackage + ({ mkDerivation, base, hspec, hspec-core, QuickCheck + , should-not-typecheck + }: + mkDerivation { + pname = "safe-length"; + version = "0.1.0.0"; + sha256 = "241155e4a2b91731872729ed90641a6d34fcee82d5fc4d1ff7a5247e6ec18979"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ + base hspec hspec-core QuickCheck should-not-typecheck + ]; + homepage = "http://www.github.com/stepcut/safe-length"; + description = "Tired of accidentally calling length on tuples? Relief at last!"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "safe-plugins" = callPackage ({ mkDerivation, base, directory, filepath, haskell-src-exts , plugins, Unixutils @@ -152492,6 +155149,7 @@ self: { array base cereal containers lens quickcheck-instances tasty tasty-quickcheck template-haskell time vector ]; + jailbreak = true; homepage = "http://acid-state.seize.it/safecopy"; description = "Binary serialization with version control"; license = stdenv.lib.licenses.publicDomain; @@ -152517,6 +155175,34 @@ self: { array base cereal containers lens lens-action quickcheck-instances tasty tasty-quickcheck template-haskell time vector ]; + jailbreak = true; + doCheck = false; + homepage = "http://acid-state.seize.it/safecopy"; + description = "Binary serialization with version control"; + license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "safecopy_0_8_5" = callPackage + ({ mkDerivation, array, base, bytestring, cereal, containers, lens + , lens-action, old-time, quickcheck-instances, tasty + , tasty-quickcheck, template-haskell, text, time, vector + }: + mkDerivation { + pname = "safecopy"; + version = "0.8.5"; + sha256 = "69566beb14d27d591a040f49b3c557aff347c610beb6ecb59fdd7a688e101be4"; + revision = "1"; + editedCabalFile = "9b7af1be25774add78e43c0f9a4f1fe55ce2a98fb00738400661835adf1672c0"; + libraryHaskellDepends = [ + array base bytestring cereal containers old-time template-haskell + text time vector + ]; + testHaskellDepends = [ + array base cereal containers lens lens-action quickcheck-instances + tasty tasty-quickcheck template-haskell time vector + ]; + jailbreak = true; doCheck = false; homepage = "http://acid-state.seize.it/safecopy"; description = "Binary serialization with version control"; @@ -152531,10 +155217,8 @@ self: { }: mkDerivation { pname = "safecopy"; - version = "0.8.5"; - sha256 = "69566beb14d27d591a040f49b3c557aff347c610beb6ecb59fdd7a688e101be4"; - revision = "1"; - editedCabalFile = "9b7af1be25774add78e43c0f9a4f1fe55ce2a98fb00738400661835adf1672c0"; + version = "0.8.6"; + sha256 = "e2b435151fe7e15cd1cbb276646b0a9aee7ad69dbf984dfc68996289d45dd1d6"; libraryHaskellDepends = [ array base bytestring cereal containers old-time template-haskell text time vector @@ -152555,8 +155239,8 @@ self: { }: mkDerivation { pname = "safeint"; - version = "0.5.3"; - sha256 = "f2e0fd69e0f32f17448e532757b9b08d0953a4f21fdc6bb398d638e2a8c72df7"; + version = "0.6"; + sha256 = "d4d9851547c1e0951730e5d4cf9897c2666f27048ef80be0bb9dc94ac72f2794"; libraryHaskellDepends = [ base ghc-prim ]; testHaskellDepends = [ base HUnit QuickCheck test-framework test-framework-hunit @@ -153210,27 +155894,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "sbv_5_2" = callPackage - ({ mkDerivation, array, async, base, containers, crackNum - , data-binary-ieee754, deepseq, directory, filepath, HUnit, mtl + "sbv_5_3" = callPackage + ({ mkDerivation, array, async, base, base-compat, containers + , crackNum, data-binary-ieee754, deepseq, directory, filepath, mtl , old-time, pretty, process, QuickCheck, random, syb }: mkDerivation { pname = "sbv"; - version = "5.2"; - sha256 = "a32248c6d0c54fba629a90feb73b15c069ca257bf1017b4f34eeb50b4ac7d2db"; + version = "5.3"; + sha256 = "35ce51ab2130faf4d497569959dbd6451b497cffc25c4cb96e10d064811c56f7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - array async base containers crackNum data-binary-ieee754 deepseq - directory filepath mtl old-time pretty process QuickCheck random - syb - ]; - executableHaskellDepends = [ - base data-binary-ieee754 directory filepath HUnit process syb - ]; - testHaskellDepends = [ - base data-binary-ieee754 directory filepath HUnit syb + array async base base-compat containers crackNum + data-binary-ieee754 deepseq directory filepath mtl old-time pretty + process QuickCheck random syb ]; homepage = "http://leventerkok.github.com/sbv/"; description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving"; @@ -153678,12 +156356,11 @@ self: { ({ mkDerivation, base, dimensional, numtype, science-constants }: mkDerivation { pname = "science-constants-dimensional"; - version = "0.1.0.1"; - sha256 = "e809cc246834c3d0c2e94d4bad2fb393b9955c5153e044b7301eba79b4bb6958"; + version = "0.1.0.2"; + sha256 = "75620e947186910796f98e391c48128ca57b812606b821fecccd89d2104bdf8f"; libraryHaskellDepends = [ base dimensional numtype science-constants ]; - jailbreak = true; description = "Mathematical/physical/chemical constants"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -154197,8 +156874,8 @@ self: { ({ mkDerivation, base, scotty, transformers, wai, warp, warp-tls }: mkDerivation { pname = "scotty-tls"; - version = "0.4.0"; - sha256 = "aa9025b905df25acd5e18e408b822fa2ed4ebafc51506f7ce132c58f3429b9ab"; + version = "0.4.1"; + sha256 = "c897d73970cfe69a0b9763628e5157854df8aaaeb7c7afe2e38ea3a4ba7723a0"; libraryHaskellDepends = [ base scotty transformers wai warp warp-tls ]; @@ -154378,6 +157055,7 @@ self: { homepage = "https://github.com/davnils/sde-solver"; description = "Distributed SDE solver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sdf2p1-parser" = callPackage @@ -154537,7 +157215,7 @@ self: { homepage = "https://github.com/adamwalker/sdr"; description = "A software defined radio library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "seacat" = callPackage @@ -154736,28 +157414,29 @@ self: { }) {inherit (pkgs) openssl;}; "secp256k1" = callPackage - ({ mkDerivation, base, base16-bytestring, bytestring, cryptohash - , entropy, HUnit, mtl, QuickCheck, secp256k1, string-conversions - , test-framework, test-framework-hunit, test-framework-quickcheck2 + ({ mkDerivation, base, base16-bytestring, binary, bytestring + , cryptohash, entropy, HUnit, largeword, mtl, QuickCheck + , string-conversions, test-framework, test-framework-hunit + , test-framework-quickcheck2 }: mkDerivation { pname = "secp256k1"; - version = "0.1.3"; - sha256 = "c6e4a14633d470c54833c9d601bc949b3d10b2d08916e15ba4eae5758dce7c86"; + version = "0.4.2"; + sha256 = "8033fcd488494994f79bb129ffd70a6d2233d647e010a352a7e7dca8ce6072e6"; libraryHaskellDepends = [ - base base16-bytestring bytestring entropy mtl string-conversions + base base16-bytestring binary bytestring entropy largeword mtl + QuickCheck string-conversions ]; - librarySystemDepends = [ secp256k1 ]; testHaskellDepends = [ - base base16-bytestring bytestring cryptohash entropy HUnit mtl - QuickCheck test-framework test-framework-hunit - test-framework-quickcheck2 + base base16-bytestring binary bytestring cryptohash entropy HUnit + mtl QuickCheck string-conversions test-framework + test-framework-hunit test-framework-quickcheck2 ]; homepage = "http://github.com/haskoin/secp256k1#readme"; description = "secp256k1 bindings for Haskell"; - license = stdenv.lib.licenses.publicDomain; + license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; - }) {secp256k1 = null;}; + }) {}; "secret-santa" = callPackage ({ mkDerivation, base, containers, diagrams-cairo, diagrams-lib @@ -155322,6 +158001,21 @@ self: { license = "unknown"; }) {}; + "semver-range" = callPackage + ({ mkDerivation, base, classy-prelude, parsec, text + , unordered-containers + }: + mkDerivation { + pname = "semver-range"; + version = "0.1.1"; + sha256 = "162a7149c50908cd1669ecc16193e2a1bc5cee99bf9e78baa985550592b421d7"; + libraryHaskellDepends = [ + base classy-prelude parsec text unordered-containers + ]; + description = "An implementation of semver and semantic version ranges"; + license = stdenv.lib.licenses.mit; + }) {}; + "sendfile" = callPackage ({ mkDerivation, base, bytestring, network }: mkDerivation { @@ -156211,6 +158905,7 @@ self: { executableHaskellDepends = [ base ede http-media servant-server warp ]; + jailbreak = true; homepage = "http://github.com/alpmestan/servant-ede"; description = "Combinators for rendering EDE templates in servant web applications"; license = stdenv.lib.licenses.bsd3; @@ -156844,24 +159539,20 @@ self: { "servius" = callPackage ({ mkDerivation, base, blaze-builder, blaze-html, bytestring - , cmdargs, containers, directory, hamlet, http-types, mime-types - , shakespeare-css, text, transformers, wai, wai-app-static - , wai-extra, warp + , http-types, markdown, shakespeare, text, wai, wai-app-static }: mkDerivation { pname = "servius"; - version = "1.1.1.2"; - sha256 = "b3c94254d8d90b005d0df1ae732e112405331129604ca305c7e0e60d1f388509"; + version = "1.2.0.1"; + sha256 = "3839d725b5b01be2baf46bb93a5c3090494a43aefa09e2a300a7e96b826f9a01"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base blaze-builder blaze-html bytestring cmdargs containers - directory hamlet http-types mime-types shakespeare-css text - transformers wai wai-app-static wai-extra warp + base blaze-builder blaze-html bytestring http-types markdown + shakespeare text wai wai-app-static ]; - jailbreak = true; - homepage = "http://github.com/yesodweb/hamlet"; - description = "Serve Shakespearean templates via Warp (deprecated)"; + homepage = "http://github.com/snoyberg/servius#readme"; + description = "Warp web server with template rendering"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -157294,8 +159985,8 @@ self: { }: mkDerivation { pname = "shadowsocks"; - version = "1.20150921"; - sha256 = "24873dbf0ccb94fe711a6f551b63889e49da89382ee431f78eafab796a4d9638"; + version = "1.20151028"; + sha256 = "b75248cba2eee03c168a8188eb6cd92015912b167f99953c58d6d3f91f85837c"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -157944,7 +160635,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "shakespeare" = callPackage + "shakespeare_2_0_6" = callPackage ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring , containers, directory, exceptions, ghc-prim, hspec, HUnit, parsec , process, template-haskell, text, time, transformers @@ -157966,10 +160657,11 @@ self: { homepage = "http://www.yesodweb.com/book/shakespearean-templates"; description = "A toolkit for making compile-time interpolated templates"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "shakespeare_2_0_7" = callPackage + "shakespeare" = callPackage ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring , containers, directory, exceptions, ghc-prim, hspec, HUnit, parsec , process, scientific, template-haskell, text, time, transformers @@ -157992,7 +160684,6 @@ self: { homepage = "http://www.yesodweb.com/book/shakespearean-templates"; description = "A toolkit for making compile-time interpolated templates"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -158098,6 +160789,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "sharc-timbre" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "sharc-timbre"; + version = "0.1"; + sha256 = "cbdedf5c24664d362be1b4a285c4c0021c17126e9a9562c17f23eb174249184d"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/anton-k/sharc"; + description = "Sandell Harmonic Archive. A collection of stable phases for all instruments in the orchestra."; + license = stdenv.lib.licenses.bsd3; + }) {}; + "shared-buffer" = callPackage ({ mkDerivation, base, bytestring, QuickCheck, test-framework , test-framework-quickcheck2, unix @@ -158174,22 +160877,22 @@ self: { "shelduck" = callPackage ({ mkDerivation, aeson, async, base, bytestring, hastache, hspec - , lens, lens-aeson, rainbow, random, regex-compat, shelly, Spock - , stm, text, time, transformers, uuid, wreq + , lens, lens-aeson, random, regex-compat, shelly, Spock, stm, text + , time, transformers, uuid, wreq }: mkDerivation { pname = "shelduck"; - version = "0.1.3.0"; - sha256 = "a9190676dc9e3b8266ea97a8d9034015a9242c7f1ed9e226423ad14fdec61769"; + version = "0.1.4.0"; + sha256 = "6316862fddc69f0fe890646da4fa8e2f6dd581ab063e425d1e15fe79b312cd87"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson async base bytestring hastache lens lens-aeson rainbow random - shelly Spock stm text time transformers uuid wreq + aeson async base bytestring hastache lens lens-aeson random shelly + Spock stm text time transformers uuid wreq ]; executableHaskellDepends = [ - aeson async base bytestring hastache lens lens-aeson rainbow random - shelly Spock stm text time transformers uuid wreq + aeson async base bytestring hastache lens lens-aeson random shelly + Spock stm text time transformers uuid wreq ]; testHaskellDepends = [ aeson base hspec lens regex-compat stm text transformers wreq @@ -159758,11 +162461,13 @@ self: { ({ mkDerivation, base, singletons }: mkDerivation { pname = "singleton-nats"; - version = "0.3.1.0"; - sha256 = "f73eb73b439e419e58c3705fa021339178efa00e2cef90e7ca5a6a4bc97472f8"; + version = "0.4.0.1"; + sha256 = "4914fba386076d7581dbf9911a644086662f578e421618bdaded4e3f36785e4d"; libraryHaskellDepends = [ base singletons ]; + homepage = "https://github.com/AndrasKovacs/singleton-nats"; description = "Unary natural numbers relying on the singletons infrastructure"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "singletons_1_0" = callPackage @@ -159832,7 +162537,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "singletons" = callPackage + "singletons_1_1_2_1" = callPackage ({ mkDerivation, base, Cabal, constraints, containers, filepath , mtl, process, tasty, tasty-golden, template-haskell, th-desugar }: @@ -159850,9 +162555,10 @@ self: { homepage = "http://www.cis.upenn.edu/~eir/packages/singletons"; description = "A framework for generating singleton types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "singletons_2_0_1" = callPackage + "singletons" = callPackage ({ mkDerivation, base, Cabal, containers, directory, filepath, mtl , process, syb, tasty, tasty-golden, template-haskell, th-desugar }: @@ -159866,10 +162572,10 @@ self: { testHaskellDepends = [ base Cabal directory filepath process tasty tasty-golden ]; + doCheck = false; homepage = "http://www.github.com/goldfirere/singletons"; description = "A framework for generating singleton types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sink" = callPackage @@ -160758,8 +163464,8 @@ self: { }: mkDerivation { pname = "smtlib2"; - version = "0.2"; - sha256 = "c65ba1d97a18b3e4343922dcbc1699c91c3a2e86c79e9e3a1ece6ae920d66bf6"; + version = "0.3"; + sha256 = "dc6458cb27956bcbd037c51955597d74d540e7e1fcbc00fa8c072fb04d0d2c22"; libraryHaskellDepends = [ array atto-lisp attoparsec base blaze-builder bytestring constraints containers data-fix mtl process tagged text @@ -161076,8 +163782,8 @@ self: { pname = "snap"; version = "0.14.0.6"; sha256 = "fa9ffc7bf5c6729f7e204daecd50765a220a0ffc2feaf3f6b29977370d8db617"; - revision = "1"; - editedCabalFile = "71bd39db85b24535bbb6c6c56264aca35b0396ba8e8ad2d93701493597afab1e"; + revision = "2"; + editedCabalFile = "eff36a949ff3546539accd83c431cd68bb3dca38c2f24db6f99302c7d76ccd4c"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -161257,6 +163963,7 @@ self: { hashable HUnit MonadCatchIO-transformers mtl random regex-posix text time unix unix-compat unordered-containers vector zlib-enum ]; + jailbreak = true; homepage = "http://snapframework.com/"; description = "Snap: A Haskell Web Framework (core interfaces and types)"; license = stdenv.lib.licenses.bsd3; @@ -161379,8 +164086,8 @@ self: { }: mkDerivation { pname = "snap-extras"; - version = "0.11.0.1"; - sha256 = "75314ee64966ce39a21e81a1a32fe158670bd009321704a6cc3407bbf8c6879c"; + version = "0.11.0.2"; + sha256 = "15e8ab812bf53b3f7ab0377e945b3e3448d5b8d4b89404751f83d51d722deb5e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -161394,7 +164101,6 @@ self: { base bytestring containers QuickCheck snap-core tasty tasty-hunit tasty-quickcheck ]; - jailbreak = true; description = "A collection of useful helpers and utilities for Snap web applications"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -162147,8 +164853,8 @@ self: { pname = "snaplet-postgresql-simple"; version = "0.6.0.4"; sha256 = "44cca67347a81257533edc9570bf9303081a11d40e8000390a75f3f48e071687"; - revision = "1"; - editedCabalFile = "09d597fa224d73971ff8f370992d6da00381af34a36d8199a21b5396477e5b00"; + revision = "2"; + editedCabalFile = "0461cfe249bc8f9b3fd32715e66ed38d0b67805f9ac8d3d2fb6782fd7fe34c94"; libraryHaskellDepends = [ base bytestring clientsession configurator lens MonadCatchIO-transformers mtl postgresql-simple @@ -164013,6 +166719,7 @@ self: { version = "0.1.0.0"; sha256 = "d311a5b8d1a9a23d02623142b5d5451290ac3689038412d7325ab0f30115dbeb"; libraryHaskellDepends = [ base lens mtl vector ]; + jailbreak = true; homepage = "https://github.com/relrod/spritz"; description = "An implementation of the Spritz RC4-like stream cipher in Haskell"; license = stdenv.lib.licenses.bsd2; @@ -164034,7 +166741,7 @@ self: { homepage = "https://github.com/yanatan16/haskell-spsa"; description = "Simultaneous Perturbation Stochastic Approximation Optimization Algorithm"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spy" = callPackage @@ -166974,15 +169681,14 @@ self: { }) {}; "streaming" = callPackage - ({ mkDerivation, base, bytestring, mmorph, mtl, random, time - , transformers + ({ mkDerivation, base, bytestring, mmorph, mtl, time, transformers }: mkDerivation { pname = "streaming"; - version = "0.1.1.1"; - sha256 = "fe79e2360dc650cfc8987114d23760fa85fae5953b44b7f0e718441397bbf7b3"; + version = "0.1.2.0"; + sha256 = "0d87f29d78856604c4ce3ebe6d62a5c5ed1726a25e68a929be0520b94c6834d1"; libraryHaskellDepends = [ - base bytestring mmorph mtl random time transformers + base bytestring mmorph mtl time transformers ]; homepage = "https://github.com/michaelt/streaming"; description = "an elementary streaming prelude and a general monad transformer for streaming applications"; @@ -166995,8 +169701,8 @@ self: { }: mkDerivation { pname = "streaming-bytestring"; - version = "0.1.1.0"; - sha256 = "cf32e7c4db70d1e4ee1410188ea1b7e33e474d349b4fe88a9e06591f4e77e08b"; + version = "0.1.2.0"; + sha256 = "8a99afb8fbed135a4ac90044b34831decde7c62b3189c828ee075ca45983f23d"; libraryHaskellDepends = [ base bytestring deepseq mmorph mtl streaming transformers ]; @@ -167287,14 +169993,15 @@ self: { }: mkDerivation { pname = "streaming-utils"; - version = "0.1.1.1"; - sha256 = "a8dac6dddaed0d916906b1309852d69a6d5568af1136e631bd67c33949589eaf"; + version = "0.1.2.0"; + sha256 = "c79efd9323e48362522751c1c6d6affe77b400078515bcd77e1c364b11e2e7e8"; libraryHaskellDepends = [ aeson attoparsec base bytestring http-client http-client-tls json-stream mtl pipes streaming streaming-bytestring transformers ]; + jailbreak = true; homepage = "https://github.com/michaelt/streaming-utils"; - description = "http, attoparsec and pipes utilities for streaming and streaming-bytestring"; + description = "http, attoparsec, pipes and conduit utilities for the streaming libraries"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -167721,28 +170428,55 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "stripe-haskell" = callPackage - ({ mkDerivation, aeson, base, bytestring, either, HsOpenSSL, hspec - , http-streams, io-streams, mtl, random, text, time, transformers - , unordered-containers + "stripe-core" = callPackage + ({ mkDerivation, aeson, base, bytestring, mtl, text, time + , transformers, unordered-containers }: mkDerivation { - pname = "stripe-haskell"; - version = "0.1.4.3"; - sha256 = "f99ba8cd8097678d09df43301dca054ec573b8ecf9844bea62985178902d101f"; + pname = "stripe-core"; + version = "2.0.0"; + sha256 = "0f715ec8dbbd1219f8a0f58ab1cbaa60c068e5089cd6cc99c449e11d39747633"; libraryHaskellDepends = [ - aeson base bytestring either HsOpenSSL http-streams io-streams mtl - random text time transformers unordered-containers - ]; - testHaskellDepends = [ - aeson base bytestring either HsOpenSSL hspec http-streams random - text time transformers + aeson base bytestring mtl text time transformers + unordered-containers ]; + homepage = "https://github.com/dmjio/stripe-haskell"; + description = "Stripe API for Haskell - Pure Core"; + license = stdenv.lib.licenses.mit; + }) {}; + + "stripe-haskell" = callPackage + ({ mkDerivation, base, stripe-core, stripe-http-streams }: + mkDerivation { + pname = "stripe-haskell"; + version = "2.0.0"; + sha256 = "6f1b4d8b1678b2ee5de331bedaa016594fd21906dbc434356423b3459b07a5f9"; + libraryHaskellDepends = [ base stripe-core stripe-http-streams ]; homepage = "https://github.com/dmjio/stripe"; description = "Stripe API for Haskell"; license = stdenv.lib.licenses.mit; }) {}; + "stripe-http-streams" = callPackage + ({ mkDerivation, aeson, base, bytestring, free, HsOpenSSL, hspec + , http-streams, io-streams, stripe-core, stripe-tests, text + }: + mkDerivation { + pname = "stripe-http-streams"; + version = "2.0.0"; + sha256 = "ce6d9b9d95ebfeb719dc67e4d891df93f1deb03705e761879e8a9353bada6250"; + libraryHaskellDepends = [ + aeson base bytestring HsOpenSSL http-streams io-streams stripe-core + text + ]; + testHaskellDepends = [ + base free HsOpenSSL hspec http-streams stripe-core stripe-tests + ]; + jailbreak = true; + doCheck = false; + license = stdenv.lib.licenses.mit; + }) {stripe-tests = null;}; + "strive" = callPackage ({ mkDerivation, aeson, base, bytestring, data-default, gpolyline , hlint, http-conduit, http-types, markdown-unlit, template-haskell @@ -168222,7 +170956,29 @@ self: { homepage = "http://github.com/mikeizbicki/subhask"; description = "Type safe interface for programming in subcategories of Hask"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "subleq-toolchain" = callPackage + ({ mkDerivation, base, cmdargs, containers, lens, mtl, parsec + , pretty, template-haskell + }: + mkDerivation { + pname = "subleq-toolchain"; + version = "0.1.8.4"; + sha256 = "96ad146348d72277bb2ad567011edee12cdab4c88a8f196d758d635b0b236003"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base containers lens mtl parsec pretty ]; + executableHaskellDepends = [ + base cmdargs containers lens mtl parsec pretty + ]; + testHaskellDepends = [ + base containers lens mtl parsec pretty template-haskell + ]; + jailbreak = true; + description = "Toolchain of subleq computer"; + license = stdenv.lib.licenses.gpl3; }) {}; "subnet" = callPackage @@ -170545,7 +173301,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "tagsoup" = callPackage + "tagsoup_0_13_3" = callPackage ({ mkDerivation, base, bytestring, containers, text }: mkDerivation { pname = "tagsoup"; @@ -170557,6 +173313,36 @@ self: { homepage = "http://community.haskell.org/~ndm/tagsoup/"; description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tagsoup" = callPackage + ({ mkDerivation, base, bytestring, containers, text }: + mkDerivation { + pname = "tagsoup"; + version = "0.13.4"; + sha256 = "1c2ae7f88b218763f1e87dd12400a65b1ea393bb728012129f6f681c902a62c1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring containers text ]; + homepage = "http://community.haskell.org/~ndm/tagsoup/"; + description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "tagsoup_0_13_5" = callPackage + ({ mkDerivation, base, bytestring, containers, text }: + mkDerivation { + pname = "tagsoup"; + version = "0.13.5"; + sha256 = "9997aec735e54657ab03c34ac5ca95110703cb07eed6fa3989ad22832853bebe"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring containers text ]; + homepage = "http://community.haskell.org/~ndm/tagsoup/"; + description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tagsoup-ht" = callPackage @@ -170793,7 +173579,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tar" = callPackage + "tar_0_4_2_1" = callPackage ({ mkDerivation, array, base, bytestring, directory, filepath , old-time, QuickCheck, tasty, tasty-quickcheck, time }: @@ -170811,6 +173597,27 @@ self: { tasty-quickcheck time ]; jailbreak = true; + description = "Reading, writing and manipulating \".tar\" archive files."; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tar" = callPackage + ({ mkDerivation, array, base, bytestring, bytestring-handle + , directory, filepath, old-time, QuickCheck, tasty + , tasty-quickcheck, time + }: + mkDerivation { + pname = "tar"; + version = "0.4.2.2"; + sha256 = "4242573a8d0b4df721177ae36d277b4be68616ba7d8da645dab999d1e1464ced"; + libraryHaskellDepends = [ + array base bytestring directory filepath time + ]; + testHaskellDepends = [ + array base bytestring bytestring-handle directory filepath old-time + QuickCheck tasty tasty-quickcheck time + ]; doCheck = false; description = "Reading, writing and manipulating \".tar\" archive files."; license = stdenv.lib.licenses.bsd3; @@ -171637,20 +174444,19 @@ self: { "tellbot" = callPackage ({ mkDerivation, base, bifunctors, bytestring, containers - , http-conduit, mtl, network, regex-posix, split, tagsoup, text + , http-conduit, mtl, network, regex-pcre, split, tagsoup, text , time, transformers }: mkDerivation { pname = "tellbot"; - version = "0.6.0.1"; - sha256 = "627176813859e4512dcc6edc057490e75db0e0b8ba0bbdf4290127be29bec1ab"; + version = "0.6.0.3"; + sha256 = "98687019cc8a813f0f19adb3d501f1e16ad7deed6bf6df0d38b968ac3b8e2578"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base bifunctors bytestring containers http-conduit mtl network - regex-posix split tagsoup text time transformers + regex-pcre split tagsoup text time transformers ]; - jailbreak = true; homepage = "https://github.com/phaazon/tellbot"; description = "IRC tellbot"; license = stdenv.lib.licenses.gpl3; @@ -171730,6 +174536,19 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "template-yj" = callPackage + ({ mkDerivation, base, bytestring, text }: + mkDerivation { + pname = "template-yj"; + version = "0.0.0.2"; + sha256 = "423e6a30ae66539a9f8935fd8c708eb8513f9f1ec30ffd67ff37daca9a2948ee"; + libraryHaskellDepends = [ base bytestring text ]; + jailbreak = true; + homepage = "https://github.com/YoshikuniJujo/template/wiki"; + description = "Process template file"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "templatepg" = callPackage ({ mkDerivation, base, binary, bytestring, haskell-src-meta, mtl , network, old-locale, parsec, regex-compat, regex-posix @@ -172104,8 +174923,8 @@ self: { }: mkDerivation { pname = "tersmu"; - version = "0.2"; - sha256 = "d45a6d0a66be05890cdb8f6103cb1ed85b25df8a50913e88c959e078d4209a18"; + version = "0.2.1"; + sha256 = "96c068108cf92f6a4b9e24b64e3af8005b107e446ebd108d29fe5a68c7127881"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -172605,6 +175424,8 @@ self: { pname = "testpack"; version = "2.1.3.0"; sha256 = "97d82562edfb3fb4a7caf015ce62065efef86b27d9d5eed6bb6fc8d3886905e7"; + revision = "1"; + editedCabalFile = "c763bcd695cf8a5c02fb4ac9e73c08f66287d3649e81b9c2882af44700efaf39"; libraryHaskellDepends = [ base containers HUnit mtl QuickCheck random ]; @@ -173536,8 +176357,8 @@ self: { ({ mkDerivation, array, base }: mkDerivation { pname = "textPlot"; - version = "0.2"; - sha256 = "de48000198dec3bf93b7a9a2cde0eb054fcb48582ea6143c1fd40fa58aa3c56b"; + version = "1.0"; + sha256 = "6d73fe98a29e33507200f27bbd0fb49c7dfcd7a6c8942a543e1988693764b012"; libraryHaskellDepends = [ array base ]; description = "Plot functions in text"; license = stdenv.lib.licenses.bsd3; @@ -174539,8 +177360,8 @@ self: { }: mkDerivation { pname = "thrift"; - version = "0.9.2"; - sha256 = "449d56a7716513d4a5eec72f8dbea527e136131c0aa688c0d42caff594311db1"; + version = "0.9.3"; + sha256 = "dd2cfeec5f6a7142407ccc5d361afc6c45e5c50813e4246ed91137efc5cfbe9f"; libraryHaskellDepends = [ attoparsec base binary bytestring containers ghc-prim hashable HTTP network network-uri QuickCheck split text unordered-containers @@ -174732,8 +177553,8 @@ self: { }: mkDerivation { pname = "tidal"; - version = "0.5.3"; - sha256 = "dc3b56c64c7f7017c561c9a9a5ea6d4d2747d0121770a514cb816e0e9e2d7825"; + version = "0.6"; + sha256 = "c82a1b123f9fb831d086642f10ecd06b57e29eab4597077de8d1b82766012b67"; libraryHaskellDepends = [ base binary bytestring colour containers hashable hmt hosc mersenne-random-pure64 mtl parsec process text time transformers @@ -175509,46 +178330,53 @@ self: { "tip-haskell-frontend" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath - , geniplate-mirror, ghc, ghc-paths, mtl, pretty, pretty-show - , QuickCheck, split, tip-lib + , geniplate-mirror, ghc, ghc-paths, ghc-simple, mtl + , optparse-applicative, pretty, pretty-show, QuickCheck, split + , tip-lib }: mkDerivation { pname = "tip-haskell-frontend"; - version = "0.1.1"; - sha256 = "b0306c7580b04ae3e2d42787f72d9834dbdaa2faf55d3387c428398092a6487d"; + version = "0.2"; + sha256 = "9e39b0c1a59e1a71f2a054811289fd8c2025ec990bc4a876c614d77be7a3a040"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring containers directory filepath geniplate-mirror ghc - ghc-paths mtl pretty QuickCheck split tip-lib + ghc-paths ghc-simple mtl optparse-applicative pretty QuickCheck + split tip-lib + ]; + executableHaskellDepends = [ + base optparse-applicative pretty pretty-show tip-lib ]; - executableHaskellDepends = [ base pretty pretty-show tip-lib ]; homepage = "http://tip-org.github.io"; description = "Convert from Haskell to Tip"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tip-lib" = callPackage - ({ mkDerivation, alex, array, base, containers, geniplate-mirror - , happy, mtl, optparse-applicative, pretty, pretty-show, split + ({ mkDerivation, alex, array, base, containers, filepath + , genifunctors, geniplate-mirror, happy, mtl, optparse-applicative + , pretty, split, structural-induction }: mkDerivation { pname = "tip-lib"; - version = "0.1.2"; - sha256 = "cb1cd0ebcfe525786577621aa55ec0d076708800b181bb35686ef427e385a807"; + version = "0.2"; + sha256 = "5048689942474028e79331167612c45bff53a9e07c834809ac061b7f44b1dabd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - array base containers geniplate-mirror mtl optparse-applicative - pretty split + array base containers genifunctors geniplate-mirror mtl + optparse-applicative pretty split structural-induction ]; libraryToolDepends = [ alex happy ]; executableHaskellDepends = [ - base optparse-applicative pretty pretty-show + base filepath optparse-applicative pretty ]; homepage = "http://tip-org.github.io"; description = "tons of inductive problems - support library and tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "titlecase" = callPackage @@ -176185,10 +179013,9 @@ self: { ({ mkDerivation, base, OpenAL, stm, vector }: mkDerivation { pname = "tomato-rubato-openal"; - version = "0.1.0.3"; - sha256 = "1ff17a5f8f163f6a448aa1348adf275c6a33cfc33b59fc705b7e8f675dd16736"; + version = "0.1.0.4"; + sha256 = "a1f762ee2229ecba58debf2cce2ef4498f101ff1a0177d70c332bc293b60ce75"; libraryHaskellDepends = [ base OpenAL stm vector ]; - jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/tomato-rubato"; description = "Easy to use library for audio programming"; license = stdenv.lib.licenses.bsd3; @@ -176749,20 +179576,21 @@ self: { "transient" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath - , HTTP, mtl, network, network-info, process, random, stm, TCache - , time, transformers + , HTTP, mtl, network, network-info, process, random, SHA, stm + , TCache, time, transformers }: mkDerivation { pname = "transient"; - version = "0.1.0.8"; - sha256 = "d5df9262cab54d464feca2f0a56b651c816b06dbc61f63b934183879d9f6cd6f"; + version = "0.1.1"; + sha256 = "edd779a4ef2c7762ddd097427a16dc96eddc6d1d0fbf714f85b7304c290819ed"; libraryHaskellDepends = [ base bytestring containers directory filepath HTTP mtl network - network-info process random stm TCache time transformers + network-info process random SHA stm TCache time transformers ]; homepage = "http://www.fpcomplete.com/user/agocorona"; - description = "A monad for extensible effects and primitives for unrestricted composability of applications"; + description = "Making composable programs with multithreading, events and distributed computing"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "translatable-intset" = callPackage @@ -177420,7 +180248,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tttool" = callPackage + "tttool_1_4_0_5" = callPackage ({ mkDerivation, aeson, base, binary, bytestring, containers , directory, executable-path, filepath, hashable, haskeline , JuicyPixels, mtl, parsec, process, random, template-haskell, time @@ -177440,6 +180268,29 @@ self: { homepage = "https://github.com/entropia/tip-toi-reveng"; description = "Working with files for the Tiptoi® pen"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tttool" = callPackage + ({ mkDerivation, aeson, base, binary, bytestring, containers + , directory, executable-path, filepath, hashable, haskeline + , JuicyPixels, mtl, parsec, process, random, template-haskell, time + , vector, yaml + }: + mkDerivation { + pname = "tttool"; + version = "1.5"; + sha256 = "f5e2f15a6d93bd4cf5f3e93d2616d891423b985f5a731e087743f211b9e2cadd"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson base binary bytestring containers directory executable-path + filepath hashable haskeline JuicyPixels mtl parsec process random + template-haskell time vector yaml + ]; + homepage = "https://github.com/entropia/tip-toi-reveng"; + description = "Working with files for the Tiptoi® pen"; + license = stdenv.lib.licenses.mit; }) {}; "tubes" = callPackage @@ -177760,11 +180611,12 @@ self: { ({ mkDerivation, base, eventloop }: mkDerivation { pname = "twentefp-eventloop-trees"; - version = "0.1.1.0"; - sha256 = "c4f71876a8673cb798cbe6f14dca7c784ac69316b11efdacf24ca610c45fc3fe"; + version = "0.1.2.0"; + sha256 = "7216b138ba0a5e28852674428ad9f4d1ccc03335408fe4b2b5b572fa46a541ef"; libraryHaskellDepends = [ base eventloop ]; description = "Tree type and show functions for lab assignment of University of Twente. Contains RoseTree and RedBlackTree"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twentefp-graphs" = callPackage @@ -178419,6 +181271,19 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "type-fun" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "type-fun"; + version = "0.0.1"; + sha256 = "bc21ad690809ffad66ebaf9df7af07e5609b026fbd257b813228d1b3ea141a1f"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/s9gf4ult/type-fun"; + description = "Collection of widely reimplemented type families"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "type-functions" = callPackage ({ mkDerivation, base, kinds }: mkDerivation { @@ -178601,6 +181466,7 @@ self: { version = "0.2.0.0"; sha256 = "03b0cf523f9b56e835462ba7747f81fb101a9b773711eeb5ebecc960656553a5"; libraryHaskellDepends = [ base singletons ]; + jailbreak = true; description = "Operations on type-level lists and tuples"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -178629,7 +181495,6 @@ self: { base constraints equational-reasoning monomorphic singletons template-haskell ]; - jailbreak = true; homepage = "https://github.com/konn/type-natural"; description = "Type-level natural and proofs of their properties"; license = stdenv.lib.licenses.bsd3; @@ -178793,6 +181658,27 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "typed-wire" = callPackage + ({ mkDerivation, base, containers, directory, file-embed, filepath + , gitrev, mtl, optparse-applicative, parsec, text + }: + mkDerivation { + pname = "typed-wire"; + version = "0.2.1.1"; + sha256 = "b2d13a6b02074748ed0daed2be38c754cad2b9499826b14d83e582bdab72c481"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers directory file-embed filepath mtl parsec text + ]; + executableHaskellDepends = [ + base directory filepath gitrev optparse-applicative text + ]; + homepage = "http://github.com/agrafix/typed-wire#readme"; + description = "WIP: Language idependent type-safe communication"; + license = stdenv.lib.licenses.mit; + }) {}; + "typedquery" = callPackage ({ mkDerivation, aeson, base, bytestring, haskell-src-meta, parsec , template-haskell, text, transformers @@ -178824,6 +181710,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "typelevel" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "typelevel"; + version = "1.0.2"; + sha256 = "f8d150bbf6f946dbf51e14817225b519d5c31d6bcc1a1f21d48a9418b9c2c4fa"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/wdanilo/typelevel"; + description = "Useful type level operations (type families and related operators)"; + license = stdenv.lib.licenses.asl20; + }) {}; + "typelevel-tensor" = callPackage ({ mkDerivation, array, base, HUnit, numeric-prelude, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 @@ -178950,8 +181848,8 @@ self: { "tz" = callPackage ({ mkDerivation, base, binary, bindings-posix, bytestring - , containers, deepseq, HUnit, QuickCheck, test-framework - , test-framework-hunit, test-framework-quickcheck2 + , containers, deepseq, HUnit, QuickCheck, template-haskell + , test-framework, test-framework-hunit, test-framework-quickcheck2 , test-framework-th, time, tzdata, unix, vector }: mkDerivation { @@ -178959,16 +181857,19 @@ self: { version = "0.0.0.10"; sha256 = "1597ab0c2b6606492b65d2c39be5ae8dcf50734dee2cd4e0de5b691241544096"; libraryHaskellDepends = [ - base binary bytestring containers deepseq time tzdata vector + base binary bytestring containers deepseq template-haskell time + tzdata vector ]; testHaskellDepends = [ base bindings-posix HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 test-framework-th time tzdata unix vector ]; + jailbreak = true; homepage = "https://github.com/nilcons/haskell-tz"; description = "Efficient time zone handling"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tzdata" = callPackage @@ -179165,8 +182066,8 @@ self: { }: mkDerivation { pname = "uhc-light"; - version = "1.1.9.1"; - sha256 = "9192b3ce50cf5f796799490b8f22b6ee20a3310e7e2216e09dc9706765e0cc61"; + version = "1.1.9.2"; + sha256 = "f77b28c6e49fd36bb5369714283d72d37b8dc2f90b444e5789a5503e864d0ee7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -179191,8 +182092,8 @@ self: { }: mkDerivation { pname = "uhc-util"; - version = "0.1.6.2"; - sha256 = "f559daf2f339b4d3ab2194895c19a10a304c68970b10c1e6571b52734f4bd19a"; + version = "0.1.6.3"; + sha256 = "6d64396e186a2a05a5f3a0ace58b768e83e9655b22ab3fde42d0154152358046"; libraryHaskellDepends = [ array base binary bytestring containers directory fclabels fgl hashable mtl process syb time time-compat uulib @@ -179908,6 +182809,7 @@ self: { base containers HUnit-approx mtl multimap singletons syb tasty tasty-hunit template-haskell th-desugar units-parser vector-space ]; + jailbreak = true; homepage = "https://github.com/goldfirere/units"; description = "A domain-specific type system for dimensional analysis"; license = stdenv.lib.licenses.bsd3; @@ -180709,7 +183611,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "uri-bytestring" = callPackage + "uri-bytestring_0_1_9" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, bytestring , derive, HUnit, lens, QuickCheck, quickcheck-instances, semigroups , tasty, tasty-hunit, tasty-quickcheck @@ -180729,6 +183631,29 @@ self: { homepage = "https://github.com/Soostone/uri-bytestring"; description = "Haskell URI parsing as ByteStrings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "uri-bytestring" = callPackage + ({ mkDerivation, attoparsec, base, blaze-builder, bytestring + , derive, HUnit, lens, QuickCheck, quickcheck-instances, semigroups + , tasty, tasty-hunit, tasty-quickcheck + }: + mkDerivation { + pname = "uri-bytestring"; + version = "0.1.9.1"; + sha256 = "38845e3f6b13728e320965759c8bdb14ffcdcf3de78323e4f52f2393a494cc86"; + libraryHaskellDepends = [ + attoparsec base blaze-builder bytestring + ]; + testHaskellDepends = [ + attoparsec base blaze-builder bytestring derive HUnit lens + QuickCheck quickcheck-instances semigroups tasty tasty-hunit + tasty-quickcheck + ]; + homepage = "https://github.com/Soostone/uri-bytestring"; + description = "Haskell URI parsing as ByteStrings"; + license = stdenv.lib.licenses.bsd3; }) {}; "uri-conduit" = callPackage @@ -181014,6 +183939,7 @@ self: { libraryHaskellDepends = [ base bindings-libusb bytestring containers ghc-prim text vector ]; + jailbreak = true; homepage = "http://basvandijk.github.com/usb"; description = "Communicate with USB devices"; license = stdenv.lib.licenses.bsd3; @@ -182538,7 +185464,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "vector" = callPackage + "vector_0_10_12_3" = callPackage ({ mkDerivation, base, deepseq, ghc-prim, primitive, QuickCheck , random, template-haskell, test-framework , test-framework-quickcheck2, transformers @@ -182557,9 +185483,10 @@ self: { homepage = "https://github.com/haskell/vector"; description = "Efficient Arrays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "vector_0_11_0_0" = callPackage + "vector" = callPackage ({ mkDerivation, base, deepseq, ghc-prim, primitive, QuickCheck , random, template-haskell, test-framework , test-framework-quickcheck2, transformers @@ -182574,10 +185501,10 @@ self: { test-framework-quickcheck2 transformers ]; jailbreak = true; + doCheck = false; homepage = "https://github.com/haskell/vector"; description = "Efficient Arrays"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-algorithms_0_6_0_3" = callPackage @@ -182617,6 +185544,7 @@ self: { testHaskellDepends = [ base bytestring containers QuickCheck vector ]; + jailbreak = true; homepage = "http://code.haskell.org/~dolio/"; description = "Efficient algorithms for vector arrays"; license = stdenv.lib.licenses.bsd3; @@ -182640,6 +185568,7 @@ self: { testHaskellDepends = [ base bytestring containers QuickCheck vector ]; + jailbreak = true; homepage = "http://code.haskell.org/~dolio/"; description = "Efficient algorithms for vector arrays"; license = stdenv.lib.licenses.bsd3; @@ -182835,6 +185764,7 @@ self: { libraryHaskellDepends = [ base comonad keys pointed semigroupoids semigroups vector ]; + jailbreak = true; homepage = "http://github.com/ekmett/vector-instances"; description = "Orphan Instances for 'Data.Vector'"; license = stdenv.lib.licenses.bsd3; @@ -183064,6 +185994,7 @@ self: { editedCabalFile = "bddeef74d6aab09ec3f1b5c9781f96b4a92f6f1234836cbaff78a493e73ca1fa"; libraryHaskellDepends = [ base template-haskell vector ]; testHaskellDepends = [ base data-default vector ]; + jailbreak = true; description = "Deriver for Data.Vector.Unboxed using Template Haskell"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -183106,6 +186037,45 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "verdict" = callPackage + ({ mkDerivation, base, hspec, markdown-unlit, mtl, text + , transformers + }: + mkDerivation { + pname = "verdict"; + version = "0.0.0.0"; + sha256 = "01f2f6ef514f4d4ad47ca819500d304b0b3717969fc33859e3f4972b91cc35d2"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base mtl text transformers ]; + executableHaskellDepends = [ base markdown-unlit text ]; + testHaskellDepends = [ base hspec ]; + description = "Validation framework"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "verdict-json" = callPackage + ({ mkDerivation, aeson, base, containers, hspec, text + , unordered-containers, vector, verdict + }: + mkDerivation { + pname = "verdict-json"; + version = "0.0.0.0"; + sha256 = "7b64ab1ec3ae42db778f8adc52219a472af76ea0dd4d91d9376ad57dc9abaf4a"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base containers text unordered-containers vector verdict + ]; + executableHaskellDepends = [ aeson base containers verdict ]; + testHaskellDepends = [ + aeson base containers hspec unordered-containers vector verdict + ]; + jailbreak = true; + description = "JSON instances and JSON Schema for verdict"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "verilog" = callPackage ({ mkDerivation, alex, array, base, happy }: mkDerivation { @@ -183291,9 +186261,10 @@ self: { pname = "vinyl"; version = "0.5.1"; sha256 = "6b9847e00e6cf8f3cdaa884242d2bc37ec37fd759669e9604fed20f21f45d008"; + revision = "1"; + editedCabalFile = "50e1bca6222b12611120dedc27b84a96960f6684dc278d54aea0215321a2f5ac"; libraryHaskellDepends = [ base ghc-prim ]; testHaskellDepends = [ base doctest lens singletons ]; - jailbreak = true; description = "Extensible Records"; license = stdenv.lib.licenses.mit; }) {}; @@ -184197,6 +187168,40 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "wai-devel" = callPackage + ({ mkDerivation, array, base, blaze-html, bytestring + , Cabal-ide-backend, directory, file-embed, filepath, fsnotify, ghc + , Glob, hspec, http-client, http-conduit, http-reverse-proxy + , http-types, ide-backend, MissingH, network, optparse-applicative + , process, shakespeare, stm, streaming-commons, system-filepath + , text, time, transformers, wai, warp, websockets + }: + mkDerivation { + pname = "wai-devel"; + version = "0.0.0.2"; + sha256 = "2783d78ed3b5b76000182b1f51f9d2772de0460e09e02eb6be6d69127081cf9d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base blaze-html bytestring Cabal-ide-backend directory + file-embed filepath fsnotify ghc Glob http-client http-conduit + http-reverse-proxy http-types ide-backend MissingH network + optparse-applicative process shakespeare stm streaming-commons + system-filepath text time transformers wai warp websockets + ]; + executableHaskellDepends = [ + base blaze-html bytestring Cabal-ide-backend directory file-embed + filepath fsnotify ghc Glob http-client http-conduit + http-reverse-proxy http-types ide-backend MissingH network + optparse-applicative process shakespeare stm streaming-commons + system-filepath text time transformers wai warp websockets + ]; + testHaskellDepends = [ base hspec stm ]; + homepage = "https://github.com/urbanslug/wai-devel"; + description = "A web server for the development of WAI compliant web applications"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "wai-digestive-functors" = callPackage ({ mkDerivation, base, digestive-functors, http-types, resourcet , text, transformers, wai, wai-extra, wai-util @@ -185089,8 +188094,8 @@ self: { }: mkDerivation { pname = "wai-middleware-content-type"; - version = "0.0.3"; - sha256 = "0e2fe9dbf8977cdcd6277acc6c188200795f770fac6237500f213b42d63a4b65"; + version = "0.0.3.1"; + sha256 = "b338ae6183a678ddceb6f792c5b4b98ed3a5f88c5d27f214cdaff46e5437b62f"; libraryHaskellDepends = [ aeson base blaze-builder blaze-html bytestring clay containers http-media http-types lucid mtl shakespeare text transformers wai @@ -185492,6 +188497,7 @@ self: { base blaze-builder bytestring case-insensitive http-types tasty tasty-hunit tasty-quickcheck wai ]; + jailbreak = true; homepage = "https://github.com/twittner/wai-predicates/"; description = "WAI request predicates"; license = "unknown"; @@ -185752,6 +188758,22 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "wai-thrift" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, http-types + , thrift, wai + }: + mkDerivation { + pname = "wai-thrift"; + version = "0.0.1.3"; + sha256 = "0da2c042a2aa424a2c4e11f13c9728f8919ec2dd56c469cc346d6df723f879bf"; + libraryHaskellDepends = [ + base blaze-builder bytestring http-types thrift wai + ]; + homepage = "https://github.com/yogeshsajanikar/wai-thrift"; + description = "Thrift transport layer for Wai"; + license = stdenv.lib.licenses.mit; + }) {}; + "wai-throttler" = callPackage ({ mkDerivation, base, bytestring, containers, http-types, time , wai @@ -185770,14 +188792,12 @@ self: { }) {}; "wai-transformers" = callPackage - ({ mkDerivation, base, composition-extra, transformers, wai }: + ({ mkDerivation, base, transformers, wai }: mkDerivation { pname = "wai-transformers"; - version = "0.0.2"; - sha256 = "4ac1094015fbee226108beedfdc88851d19f7117e0e931e9b0a8850876aa8cf3"; - libraryHaskellDepends = [ - base composition-extra transformers wai - ]; + version = "0.0.3"; + sha256 = "fe60300420f8e0c2a5ca09f70cf6f731ba1bc495d40209f74e2084b6e45d8c1a"; + libraryHaskellDepends = [ base transformers wai ]; description = "Simple parameterization of Wai's Application type"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -186693,8 +189713,8 @@ self: { }: mkDerivation { pname = "warp"; - version = "3.1.6"; - sha256 = "34ce9ad59002bee92224b25bc64bec7d86576b41900cde305af419f304ad4093"; + version = "3.1.8"; + sha256 = "e81a39b8d0d4c006566df784ee91521ee0dbb778226913f9520ccd0acfe834f6"; libraryHaskellDepends = [ array auto-update base blaze-builder bytestring bytestring-builder case-insensitive containers ghc-prim hashable http-date http-types @@ -187019,7 +190039,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "warp-tls" = callPackage + "warp-tls_3_1_3" = callPackage ({ mkDerivation, base, bytestring, cprng-aes, data-default-class , network, streaming-commons, tls, wai, warp }: @@ -187034,6 +190054,24 @@ self: { homepage = "http://github.com/yesodweb/wai"; description = "HTTP over TLS support for Warp via the TLS package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "warp-tls" = callPackage + ({ mkDerivation, base, bytestring, cprng-aes, data-default-class + , network, streaming-commons, tls, wai, warp + }: + mkDerivation { + pname = "warp-tls"; + version = "3.1.4"; + sha256 = "7572b8893160a07051a60323e91553b8911d87d58712c64f997ecced1a5febd7"; + libraryHaskellDepends = [ + base bytestring cprng-aes data-default-class network + streaming-commons tls wai warp + ]; + homepage = "http://github.com/yesodweb/wai"; + description = "HTTP over TLS support for Warp via the TLS package"; + license = stdenv.lib.licenses.mit; }) {}; "warp-tls-uid" = callPackage @@ -187145,7 +190183,6 @@ self: { libraryHaskellDepends = [ attoparsec base dlist filepath mtl text transformers vector ]; - jailbreak = true; homepage = "https://github.com/phaazon/wavefront"; description = "Wavefront OBJ loader"; license = stdenv.lib.licenses.bsd3; @@ -187716,7 +190753,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "webdriver" = callPackage + "webdriver_0_6_3_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , bytestring, cond, data-default, directory, directory-tree , exceptions, filepath, http-client, http-types, lifted-base @@ -187740,9 +190777,10 @@ self: { homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "webdriver_0_8_0_3" = callPackage + "webdriver" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , bytestring, data-default-class, directory, directory-tree , exceptions, filepath, http-client, http-types, lifted-base @@ -187762,10 +190800,10 @@ self: { transformers-base unordered-containers vector zip-archive ]; testHaskellDepends = [ base text ]; + doCheck = false; homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webdriver-angular_0_1_7" = callPackage @@ -187980,7 +191018,6 @@ self: { version = "0.1.0.2"; sha256 = "d3ad3ba58ca2389102be09bda8bca69a525c766ada824898cf833d1993368293"; libraryHaskellDepends = [ base primitive vector ]; - jailbreak = true; description = "Easy voice activity detection"; license = stdenv.lib.licenses.mit; }) {}; @@ -189162,6 +192199,7 @@ self: { base containers deepseq directory filepath hflags random-fu random-source text unix-compat vector ]; + jailbreak = true; homepage = "https://github.com/mgajda/wordpass"; description = "Dictionary-based password generator"; license = stdenv.lib.licenses.bsd3; @@ -190224,8 +193262,8 @@ self: { ({ mkDerivation, base, containers, mtl, pretty, xml }: mkDerivation { pname = "xcb-types"; - version = "0.7.0"; - sha256 = "734c8f68f9ff64948d02d25c27a0486a41e0e560d779a1ac3f23dd5f50d3f8cf"; + version = "0.7.1"; + sha256 = "5927e720e4dee26b1bf8a24fb07e47e6a22f9d78fc87aab8d752f207c1566782"; libraryHaskellDepends = [ base containers mtl pretty xml ]; homepage = "http://community.haskell.org/~aslatter/code/xcb-types"; description = "Parses XML files used by the XCB project"; @@ -192575,8 +195613,8 @@ self: { }: mkDerivation { pname = "yaml-config"; - version = "0.2.2"; - sha256 = "a054390a54b63e715542917425e27b72570637698248940977ba786d300ad6a8"; + version = "0.3.0"; + sha256 = "ac4bace7a31441c0b5dfeb6b6e2cf4078d19f000011d1f074106ee01fba11c9c"; libraryHaskellDepends = [ base deepseq failure text unordered-containers yaml ]; @@ -192584,7 +195622,6 @@ self: { base deepseq failure hashable QuickCheck tasty tasty-quickcheck text unordered-containers yaml ]; - jailbreak = true; description = "Configuration management"; license = stdenv.lib.licenses.mit; }) {}; @@ -194028,6 +197065,7 @@ self: { http-types lifted-base network-uri random text transformers vector yesod-auth yesod-core yesod-form ]; + jailbreak = true; homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; description = "OAuth 2.0 authentication plugins"; license = stdenv.lib.licenses.bsd3; @@ -195100,21 +198138,25 @@ self: { "yesod-content-pdf" = callPackage ({ mkDerivation, base, blaze-builder, blaze-html, bytestring - , conduit, data-default, directory, network-uri, process, temporary - , transformers, yesod-core + , conduit, data-default, directory, hspec, hspec-expectations + , network-uri, process, temporary, transformers, utf8-string + , yesod-core }: mkDerivation { pname = "yesod-content-pdf"; - version = "0.2.0.0"; - sha256 = "322c650af8e43d9074d9b0b4a7dc8adc77a2fd3cdde61f6b7325bb4e858a9160"; + version = "0.2.0.1"; + sha256 = "c6fb370baf348742237d89fb83996ff75459767dc86926e84c9daa45c6c20e46"; libraryHaskellDepends = [ base blaze-builder blaze-html bytestring conduit data-default directory network-uri process temporary transformers yesod-core ]; - testHaskellDepends = [ base ]; + testHaskellDepends = [ + base blaze-html hspec hspec-expectations utf8-string + ]; homepage = "https://github.com/alexkyllo/yesod-content-pdf#readme"; description = "PDF Content Type for Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-continuations" = callPackage @@ -195454,6 +198496,7 @@ self: { resourcet shakespeare streaming-commons template-haskell text transformers wai wai-extra ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; @@ -195494,6 +198537,7 @@ self: { resourcet shakespeare streaming-commons template-haskell text transformers wai wai-extra ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; @@ -195534,6 +198578,7 @@ self: { resourcet shakespeare streaming-commons template-haskell text transformers wai wai-extra ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; @@ -195574,6 +198619,7 @@ self: { resourcet shakespeare streaming-commons template-haskell text transformers wai wai-extra ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; @@ -195614,6 +198660,7 @@ self: { resourcet shakespeare streaming-commons template-haskell text transformers wai wai-extra ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; @@ -195654,6 +198701,7 @@ self: { resourcet shakespeare streaming-commons template-haskell text transformers wai wai-extra ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; @@ -196177,7 +199225,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-form" = callPackage + "yesod-form_1_4_4_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html , blaze-markup, byteable, bytestring, containers, data-default , email-validate, hspec, network-uri, persistent, resourcet @@ -196199,6 +199247,31 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Form handling support for Yesod Web Framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-form" = callPackage + ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html + , blaze-markup, byteable, bytestring, containers, data-default + , email-validate, hspec, network-uri, persistent, resourcet + , semigroups, shakespeare, template-haskell, text, time + , transformers, wai, xss-sanitize, yesod-core, yesod-persistent + }: + mkDerivation { + pname = "yesod-form"; + version = "1.4.5"; + sha256 = "f9a6e9590588f813a159f5fcccbd9ebed8a94c72e82271d19dae945c54c13ccf"; + libraryHaskellDepends = [ + aeson attoparsec base blaze-builder blaze-html blaze-markup + byteable bytestring containers data-default email-validate + network-uri persistent resourcet semigroups shakespeare + template-haskell text time transformers wai xss-sanitize yesod-core + yesod-persistent + ]; + testHaskellDepends = [ base hspec text time ]; + homepage = "http://www.yesodweb.com/"; + description = "Form handling support for Yesod Web Framework"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-form-json" = callPackage @@ -197502,16 +200575,16 @@ self: { }: mkDerivation { pname = "yesod-transloadit"; - version = "0.4.1.0"; - sha256 = "4e0a68a2f1d90bdc4489ac18f05bff3728da89756ebbd54cc1654d6b81114c80"; + version = "0.4.3.0"; + sha256 = "65e691950b094f4aa4373d8d819f121bde14c806dc6e6960a46718fa6e4da844"; libraryHaskellDepends = [ aeson base byteable bytestring cryptohash lens lens-aeson old-locale shakespeare text time transformers unordered-containers yesod yesod-core yesod-form ]; testHaskellDepends = [ - aeson base containers hspec lens old-locale text time yesod - yesod-form yesod-test + aeson base containers hspec old-locale text yesod yesod-form + yesod-test ]; description = "Transloadit support for Yesod"; license = stdenv.lib.licenses.mit; @@ -197595,7 +200668,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-websockets" = callPackage + "yesod-websockets_0_2_3" = callPackage ({ mkDerivation, async, base, conduit, enclosed-exceptions , monad-control, transformers, wai, wai-websockets, websockets , yesod-core @@ -197611,6 +200684,25 @@ self: { homepage = "https://github.com/yesodweb/yesod"; description = "WebSockets support for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-websockets" = callPackage + ({ mkDerivation, async, base, conduit, enclosed-exceptions + , monad-control, transformers, wai, wai-websockets, websockets + , yesod-core + }: + mkDerivation { + pname = "yesod-websockets"; + version = "0.2.4"; + sha256 = "7067115f0e7e282879718798bba627ab967eb38a419fc2180cc6b58259ea9adc"; + libraryHaskellDepends = [ + async base conduit enclosed-exceptions monad-control transformers + wai wai-websockets websockets yesod-core + ]; + homepage = "https://github.com/yesodweb/yesod"; + description = "WebSockets support for Yesod"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-websockets-extra" = callPackage diff --git a/pkgs/development/interpreters/clojure/default.nix b/pkgs/development/interpreters/clojure/default.nix index fd1a2d019fea..27870e753a69 100644 --- a/pkgs/development/interpreters/clojure/default.nix +++ b/pkgs/development/interpreters/clojure/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, unzip, ant, jdk, makeWrapper }: -let version = "1.6.0"; in +let version = "1.7.0"; in stdenv.mkDerivation { name = "clojure-${version}"; src = fetchurl { url = "http://repo1.maven.org/maven2/org/clojure/clojure/${version}/clojure-${version}.zip"; - sha256 = "0yv67gackrzlwn9f8cnpw14y2hwspklxhy1450rl71vdrqjahlwq"; + sha256 = "14yg0g6vpzxjwlvs5anq9jfz9zdbd3rsl6qsgxa6qxm19mwh7qsd"; }; buildInputs = [ unzip ant jdk makeWrapper ]; diff --git a/pkgs/development/interpreters/erlang/R18.nix b/pkgs/development/interpreters/erlang/R18.nix index 7646de28a859..1e90ceadcdc1 100644 --- a/pkgs/development/interpreters/erlang/R18.nix +++ b/pkgs/development/interpreters/erlang/R18.nix @@ -1,5 +1,6 @@ { stdenv, fetchurl, perl, gnum4, ncurses, openssl , gnused, gawk, makeWrapper +, Carbon, Cocoa , odbcSupport ? false, unixODBC ? null , wxSupport ? true, mesa ? null, wxGTK ? null, xorg ? null, wxmac ? null , javacSupport ? false, openjdk ? null @@ -27,9 +28,10 @@ stdenv.mkDerivation rec { buildInputs = [ perl gnum4 ncurses openssl makeWrapper - ] ++ optional wxSupport (if stdenv.isDarwin then [ wxmac ] else [ mesa wxGTK xorg.libX11 ]) - ++ optional odbcSupport [ unixODBC ] - ++ optional javacSupport [ openjdk ]; + ] ++ optionals wxSupport (if stdenv.isDarwin then [ wxmac ] else [ mesa wxGTK xorg.libX11 ]) + ++ optional odbcSupport unixODBC + ++ optional javacSupport openjdk + ++ stdenv.lib.optionals stdenv.isDarwin [ Carbon Cocoa ]; patchPhase = '' sed -i "s@/bin/rm@rm@" lib/odbc/configure erts/configure ''; diff --git a/pkgs/development/libraries/SDL/default.nix b/pkgs/development/libraries/SDL/default.nix index ac895b5113ed..7006eb10f7ed 100644 --- a/pkgs/development/libraries/SDL/default.nix +++ b/pkgs/development/libraries/SDL/default.nix @@ -3,6 +3,7 @@ , alsaSupport ? true, alsaLib ? null , x11Support ? true, xlibsWrapper ? null, libXrandr ? null , pulseaudioSupport ? true, libpulseaudio ? null +, OpenGL, CoreAudio, CoreServices, AudioUnit, Kernel, Cocoa }: # OSS is no longer supported, for it's much crappier than ALSA and @@ -40,7 +41,8 @@ stdenv.mkDerivation rec { buildInputs = let notMingw = !(stdenv ? cross) || stdenv.cross.libc != "msvcrt"; - in optional notMingw audiofile; + in optional notMingw audiofile + ++ optionals stdenv.isDarwin [ OpenGL CoreAudio CoreServices AudioUnit Kernel Cocoa ]; # XXX: By default, SDL wants to dlopen() PulseAudio, in which case # we must arrange to add it to its RPATH; however, `patchelf' seems diff --git a/pkgs/development/libraries/SDL2/default.nix b/pkgs/development/libraries/SDL2/default.nix index 7573d1e1cd29..529c485930b3 100644 --- a/pkgs/development/libraries/SDL2/default.nix +++ b/pkgs/development/libraries/SDL2/default.nix @@ -3,6 +3,7 @@ , alsaSupport ? true, alsaLib ? null , x11Support ? true, xlibsWrapper ? null, libXrandr ? null , pulseaudioSupport ? true, libpulseaudio ? null +, AudioUnit, Cocoa, CoreAudio, CoreServices, ForceFeedback, OpenGL }: # OSS is no longer supported, for it's much crappier than ALSA and @@ -36,7 +37,8 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig audiofile ] ++ stdenv.lib.optional openglSupport mesa ++ - stdenv.lib.optional alsaSupport alsaLib; + stdenv.lib.optional alsaSupport alsaLib ++ + stdenv.lib.optionals stdenv.isDarwin [ AudioUnit Cocoa CoreAudio CoreServices ForceFeedback OpenGL ]; # https://bugzilla.libsdl.org/show_bug.cgi?id=1431 dontDisableStatic = true; diff --git a/pkgs/development/libraries/ctpl/default.nix b/pkgs/development/libraries/ctpl/default.nix new file mode 100644 index 000000000000..6ee04ae57952 --- /dev/null +++ b/pkgs/development/libraries/ctpl/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, pkgconfig, glib }: + +stdenv.mkDerivation rec { + name = "ctpl-${version}"; + version = "0.3.4"; + + src = fetchurl { + url = "http://download.tuxfamily.org/ctpl/releases/ctpl-${version}.tar.gz"; + sha256 = "1yr92xv9n6kgyixwg9ps4zb404ic5pgb171k4bi3mv9p6k8gv59s"; + }; + + buildInputs = [ pkgconfig glib ]; + + meta = with stdenv.lib; { + homepage = http://ctpl.tuxfamily.org/; + description = "Template engine library written in C"; + platforms = platforms.linux; + maintainers = [ maintainers.lethalman ]; + }; +} diff --git a/pkgs/development/libraries/epoxy/default.nix b/pkgs/development/libraries/epoxy/default.nix index 66039daa4792..daffae90b127 100644 --- a/pkgs/development/libraries/epoxy/default.nix +++ b/pkgs/development/libraries/epoxy/default.nix @@ -16,6 +16,11 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook pkgconfig utilmacros python ]; buildInputs = [ mesa libX11 ]; + preConfigure = stdenv.lib.optional stdenv.isDarwin '' + substituteInPlace configure --replace build_glx=no build_glx=yes + substituteInPlace src/dispatch_common.h --replace "PLATFORM_HAS_GLX 0" "PLATFORM_HAS_GLX 1" + ''; + meta = with stdenv.lib; { description = "A library for handling OpenGL function pointer management"; homepage = https://github.com/anholt/libepoxy; diff --git a/pkgs/development/libraries/ffmpeg/generic.nix b/pkgs/development/libraries/ffmpeg/generic.nix index 99d8fe679ab3..1113db5c1367 100644 --- a/pkgs/development/libraries/ffmpeg/generic.nix +++ b/pkgs/development/libraries/ffmpeg/generic.nix @@ -10,6 +10,8 @@ , debugDeveloper ? false , optimizationsDeveloper ? true , extraWarningsDeveloper ? false +# Darwin frameworks +, Cocoa # Inherit generics , branch, sha256, version, ... }: @@ -141,7 +143,8 @@ stdenv.mkDerivation rec { ] ++ optional openglSupport mesa ++ optionals (!isDarwin) [ libvpx libpulseaudio ] # Need to be fixed on Darwin ++ optional (isLinux || isFreeBSD) libva - ++ optional isLinux alsaLib; + ++ optional isLinux alsaLib + ++ optional isDarwin Cocoa; enableParallelBuilding = true; diff --git a/pkgs/development/libraries/leptonica/default.nix b/pkgs/development/libraries/leptonica/default.nix index ae5d49f28506..270403cbb74e 100644 --- a/pkgs/development/libraries/leptonica/default.nix +++ b/pkgs/development/libraries/leptonica/default.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl, libpng, libtiff, libjpeg, zlib}: stdenv.mkDerivation { - name = "leptonica-1.69"; + name = "leptonica-1.72"; src = fetchurl { - url = http://www.leptonica.org/source/leptonica-1.69.tar.gz; - sha256 = "0bd7w0zpmwwfn1cnrlyzjw3jf8x59r0rhdmvk7rigr57rnfnddry"; + url = http://www.leptonica.org/source/leptonica-1.72.tar.gz; + sha256 = "0mhzvqs0im04y1cpcc1yma70hgdac1frf33h73m9z3356bfymmbr"; }; buildInputs = [ libpng libtiff libjpeg zlib ]; diff --git a/pkgs/development/libraries/libdevil/default.nix b/pkgs/development/libraries/libdevil/default.nix index abc7dd3af40e..996301988859 100644 --- a/pkgs/development/libraries/libdevil/default.nix +++ b/pkgs/development/libraries/libdevil/default.nix @@ -1,5 +1,8 @@ { stdenv, fetchurl, libjpeg, libpng, libmng, lcms1, libtiff, openexr, mesa -, libX11, pkgconfig }: +, libX11, pkgconfig + +, OpenGL +}: stdenv.mkDerivation rec { @@ -11,7 +14,8 @@ stdenv.mkDerivation rec { sha256 = "1zd850nn7nvkkhasrv7kn17kzgslr5ry933v6db62s4lr0zzlbv8"; }; - buildInputs = [ libjpeg libpng libmng lcms1 libtiff openexr mesa libX11 ]; + buildInputs = [ libjpeg libpng libmng lcms1 libtiff openexr mesa libX11 ] + ++ stdenv.lib.optionals stdenv.isDarwin [ OpenGL ]; nativeBuildInputs = [ pkgconfig ]; configureFlags = [ "--enable-ILU" "--enable-ILUT" ]; diff --git a/pkgs/development/libraries/libinput/default.nix b/pkgs/development/libraries/libinput/default.nix index 399640f6c4a1..ed97952940a9 100644 --- a/pkgs/development/libraries/libinput/default.nix +++ b/pkgs/development/libraries/libinput/default.nix @@ -15,11 +15,11 @@ in with stdenv.lib; stdenv.mkDerivation rec { - name = "libinput-1.0.1"; + name = "libinput-1.0.2"; src = fetchurl { url = "http://www.freedesktop.org/software/libinput/${name}.tar.xz"; - sha256 = "17prgxxq95i2l8a00clwwmvvskbb9xza9fmym1jvlmxl358v6bs8"; + sha256 = "1fggbi8w8r7mayyk7zwqrqf3ni95y2703vcpggxqq7yjdgw0bld3"; }; configureFlags = [ diff --git a/pkgs/development/libraries/libmediainfo/default.nix b/pkgs/development/libraries/libmediainfo/default.nix index dd17f7a4c008..7e5887e9b9d9 100644 --- a/pkgs/development/libraries/libmediainfo/default.nix +++ b/pkgs/development/libraries/libmediainfo/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, zlib }: stdenv.mkDerivation rec { - version = "0.7.77"; + version = "0.7.78"; name = "libmediainfo-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/libmediainfo/${version}/libmediainfo_${version}.tar.xz"; - sha256 = "1znxdn1jpqkiwshq9s514ak1z9wkrh9flky4s3q8z2xl68jpralq"; + sha256 = "0ai4al5h3qbfq5f1b24ixk5v1fpln2kw1zmdj4hxjz40rj18qzka"; }; buildInputs = [ automake autoconf libtool pkgconfig libzen zlib ]; diff --git a/pkgs/development/libraries/libmm-qt/default.nix b/pkgs/development/libraries/libmm-qt/default.nix index f78604f86c53..3515d8388a27 100644 --- a/pkgs/development/libraries/libmm-qt/default.nix +++ b/pkgs/development/libraries/libmm-qt/default.nix @@ -27,6 +27,5 @@ stdenv.mkDerivation { description = "Qt wrapper for ModemManager DBus API"; license = licenses.lgpl21; platforms = platforms.linux; - maintainers = [ maintainers.jgeerds ]; }; } diff --git a/pkgs/development/libraries/libnm-qt/default.nix b/pkgs/development/libraries/libnm-qt/default.nix index 39e784fe89f3..b9d033235cb4 100644 --- a/pkgs/development/libraries/libnm-qt/default.nix +++ b/pkgs/development/libraries/libnm-qt/default.nix @@ -29,6 +29,5 @@ stdenv.mkDerivation { description = "Qt wrapper for NetworkManager DBus API"; license = licenses.lgpl21; platforms = platforms.linux; - maintainers = [ maintainers.jgeerds ]; }; } diff --git a/pkgs/development/libraries/libsexy/default.nix b/pkgs/development/libraries/libsexy/default.nix index 179c899d754d..c0f12c545641 100644 --- a/pkgs/development/libraries/libsexy/default.nix +++ b/pkgs/development/libraries/libsexy/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation { meta = with stdenv.lib; { description = "A collection of GTK+ widgets"; - homepahe = http://blog.chipx86.com/tag/libsexy/; + homepage = http://blog.chipx86.com/tag/libsexy/; license = licenses.lgpl21; maintainers = with maintainers; [ ]; platforms = platforms.unix; diff --git a/pkgs/development/libraries/libstrophe/default.nix b/pkgs/development/libraries/libstrophe/default.nix index b47578318990..b5eb2ae7dd7e 100644 --- a/pkgs/development/libraries/libstrophe/default.nix +++ b/pkgs/development/libraries/libstrophe/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "libstrophe-${version}"; - version = "0.8.7"; + version = "0.8.8"; src = fetchFromGitHub { owner = "strophe"; repo = "libstrophe"; rev = version; - sha256 = "1iic8xbcxh21dzns8m9kkz0cj5f3ppn414gnhyh4y2wcjsz6hp8l"; + sha256 = "1xzyqqf99r0jfd0g3v0zwc68sac6y25v1d4m365zpc14l02midis"; }; buildInputs = [ automake autoconf openssl expat libtool pkgconfig check ]; diff --git a/pkgs/development/libraries/libwacom/default.nix b/pkgs/development/libraries/libwacom/default.nix index f6244cba5cb1..a0dd711e815f 100644 --- a/pkgs/development/libraries/libwacom/default.nix +++ b/pkgs/development/libraries/libwacom/default.nix @@ -1,11 +1,11 @@ { fetchurl, stdenv, glib, pkgconfig, udev }: stdenv.mkDerivation rec { - name = "libwacom-0.7.1"; + name = "libwacom-0.15"; src = fetchurl { url = "mirror://sourceforge/linuxwacom/libwacom/${name}.tar.bz2"; - sha256 = "1agdaa1bv5mp4l32qgsw63swnnv0p279jiy9madgw4y3d8d12dwm"; + sha256 = "04vppdj99cc0ya44n8p7zjk9yyw03v6fksw0a9n1gpnnsn4wardb"; }; buildInputs = [ glib pkgconfig udev ]; diff --git a/pkgs/development/libraries/lmdb/default.nix b/pkgs/development/libraries/lmdb/default.nix index 02c07a78acb2..8621a5731903 100644 --- a/pkgs/development/libraries/lmdb/default.nix +++ b/pkgs/development/libraries/lmdb/default.nix @@ -1,6 +1,7 @@ { stdenv, fetchzip }: -stdenv.mkDerivation rec { +let optional = stdenv.lib.optional; +in stdenv.mkDerivation rec { name = "lmdb-${version}"; version = "0.9.16"; @@ -11,7 +12,8 @@ stdenv.mkDerivation rec { postUnpack = "sourceRoot=\${sourceRoot}/libraries/liblmdb"; - makeFlags = "prefix=$(out)"; + makeFlags = ["prefix=$(out)"] + ++ optional stdenv.cc.isClang "CC=clang"; doCheck = true; checkPhase = "make test"; diff --git a/pkgs/development/libraries/mesa-darwin/default.nix b/pkgs/development/libraries/mesa-darwin/default.nix index 1ada9298f3cf..af8b4e1179ce 100644 --- a/pkgs/development/libraries/mesa-darwin/default.nix +++ b/pkgs/development/libraries/mesa-darwin/default.nix @@ -2,7 +2,7 @@ , python, libxml2Python, file, expat, makedepend, xorg, llvm, libffi, libvdpau , enableTextureFloats ? false # Texture floats are patented, see docs/patents.txt , enableExtraFeatures ? false # not maintained -, darwin +, OpenGL, apple_sdk, Xplugin }: let @@ -23,11 +23,7 @@ let presentproto libX11 libXext libxcb libXt libxshmfence libffi libvdpau - ] ++ stdenv.lib.optionals stdenv.isDarwin [ - darwin.apple_sdk.frameworks.OpenGL - darwin.apple_sdk.sdk - darwin.apple_sdk.libs.Xplugin - ]; + ] ++ stdenv.lib.optionals stdenv.isDarwin [ OpenGL apple_sdk.sdk Xplugin ]; postUnpack = '' ln -s darwin $sourceRoot/configs/current diff --git a/pkgs/development/libraries/mlt/qt-5.4.nix b/pkgs/development/libraries/mlt/qt-5.4.nix index d3d8f6c6b86d..6f308a20fdc0 100644 --- a/pkgs/development/libraries/mlt/qt-5.4.nix +++ b/pkgs/development/libraries/mlt/qt-5.4.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { name = "mlt-${version}"; - version = "0.9.6"; + version = "0.9.8"; src = fetchurl { url = "https://github.com/mltframework/mlt/archive/v${version}.tar.gz"; - sha256 = "0s8ypg0q50zfcmq527y8cbdvzxhiqidm1923k28ar8jqmjp45ssh"; + sha256 = "0x0hsb05i7g70dh3jll41qlvcylailfgsr0y1dpx7hyigynxc50j"; }; buildInputs = [ diff --git a/pkgs/development/libraries/movit/default.nix b/pkgs/development/libraries/movit/default.nix index df084f0cc209..fdb31293f378 100644 --- a/pkgs/development/libraries/movit/default.nix +++ b/pkgs/development/libraries/movit/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "movit-${version}"; - version = "1.1.3"; + version = "1.2.0"; src = fetchurl { url = "http://movit.sesse.net/${name}.tar.gz"; - sha256 = "0q33h3gfw16gd9k6s3isd7ili2mifw7j1723xpdlc516gggsazw9"; + sha256 = "0wyl5xl4pkw17pkxsdg8idqvsgm4fxapd0r4dw9wlxw250915nmf"; }; GTEST_DIR = "${gtest}"; diff --git a/pkgs/development/libraries/subunit/default.nix b/pkgs/development/libraries/subunit/default.nix index fa007da7d9cc..1abe38894e74 100644 --- a/pkgs/development/libraries/subunit/default.nix +++ b/pkgs/development/libraries/subunit/default.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { name = "subunit-${version}"; - version = "1.0.0"; + version = "1.1.0"; src = fetchurl { url = "https://launchpad.net/subunit/trunk/${version}/+download/${name}.tar.gz"; - sha256 = "1fnhrrwww90746an2nz2kn9qdf9pklmaf5lm22gssl6648f2rp2m"; + sha256 = "0lcah7p66c05p7xpw6ns1is0i02lh0nq8gq51mv4wyvbr6zaasa8"; }; buildInputs = [ pkgconfig check cppunit perl pythonPackages.wrapPython ]; diff --git a/pkgs/development/libraries/v8/4.5.nix b/pkgs/development/libraries/v8/4.5.nix new file mode 100644 index 000000000000..95ff225c059a --- /dev/null +++ b/pkgs/development/libraries/v8/4.5.nix @@ -0,0 +1,142 @@ +{ stdenv, lib, fetchgit, fetchFromGitHub, gyp, readline, python, which, icu +, patchelf, coreutils +, doCheck ? false +}: + +assert readline != null; + +let + arch = if stdenv.isArm + then if stdenv.is64bit + then"arm64" + else "arm" + else if stdenv.is64bit + then"x64" + else "ia32"; + git_url = "https://chromium.googlesource.com"; + clangFlag = if stdenv.isDarwin then "1" else "0"; + + deps = { + "build/gyp" = fetchgit { + url = "${git_url}/external/gyp.git"; + rev = "5122240c5e5c4d8da12c543d82b03d6089eb77c5"; + sha256 = "0mdrrhmfl4jrdmfrxmg7ywhdf9c7gv2x08fiq955fs9z8kvxqgdx"; + }; + "third_party/icu" = fetchgit { + url = "${git_url}/chromium/deps/icu.git"; + rev = "c81a1a3989c3b66fa323e9a6ee7418d7c08297af"; + sha256 = "0xrhig85vpw9hqjrhkxsr69m2xnig2bwmjhylzffrwz0783l7yhw"; + }; + "buildtools" = fetchgit { + url = "${git_url}/chromium/buildtools.git"; + rev = "ecc8e253abac3b6186a97573871a084f4c0ca3ae"; + sha256 = "1ccfnj3dp4i0z2bj09zy8aa4x749id6h058qa330li368417jwci"; + }; + "testing/gtest" = fetchgit { + url = "${git_url}/external/googletest.git"; + rev = "23574bf2333f834ff665f894c97bef8a5b33a0a9"; + sha256 = "1scyrk8d6xrsqma27q0wdrxqfa2n12k8mi9lfbsm5ivim9sr1d75"; + }; + "testing/gmock" = fetchgit { + url = "${git_url}/external/googlemock.git"; + rev = "29763965ab52f24565299976b936d1265cb6a271"; + sha256 = "0n2ajjac7myr5bgqk0x7j8281b4whkzgr1irv5nji9n3xz5i6gz4"; + }; + "tools/clang" = fetchgit { + url = "${git_url}/chromium/src/tools/clang.git"; + rev = "73ec8804ed395b0886d6edf82a9f33583f4a7902"; + sha256 = "0p2w4cgj3d4lqa8arss3j86lk0g8zhbbn5pzlcrhy5pl4xphjbk3"; + }; + }; + +in + +stdenv.mkDerivation rec { + name = "v8-${version}"; + version = "4.5.107"; + + inherit doCheck; + + src = fetchFromGitHub { + owner = "v8"; + repo = "v8"; + rev = version; + sha256 = "0wbzi4rhm4ygsm1k4x0vwfm42z3j8ww6wz7bcvd0m7mqzayn0bw4"; + }; + + postUnpack = '' + ${lib.concatStringsSep "\n" ( + lib.mapAttrsToList (n: v: '' + mkdir -p $sourceRoot/${n} + cp -r ${v}/* $sourceRoot/${n} + '') deps)} + ''; + + # Patches pulled from: + # https://github.com/cowboyd/libv8/tree/4.5/patches + patches = lib.optional (!doCheck) ./disable-building-tests.patch ++ [ + ./fPIC-for-static.patch + ./build-standalone-static-library.patch + ]; + + postPatch = '' + sed -i 's,#!/usr/bin/env python,#!${python}/bin/python,' build/gyp_v8 + sed -i 's,/bin/echo,${coreutils}/bin/echo,' build/standalone.gypi + sed -i '/CR_CLANG_REVISION/ d' build/standalone.gypi + ''; + + configurePhase = '' + PYTHONPATH="tools/generate_shim_headers:$PYTHONPATH" \ + PYTHONPATH="$(toPythonPath ${gyp}):$PYTHONPATH" \ + build/gyp_v8 \ + -f make \ + --generator-output="out" \ + -Dflock_index=0 \ + -Dclang=${clangFlag} \ + -Dv8_enable_i18n_support=1 \ + -Duse_system_icu=1 \ + -Dcomponent=shared_library \ + -Dconsole=readline \ + -Dv8_target_arch=${arch} \ + -Dv8_use_external_startup_data=0 + ''; + + nativeBuildInputs = [ which ]; + buildInputs = [ readline python icu patchelf ]; + + buildFlags = [ + "LINK=g++" + "-C out" + "builddir=$(CURDIR)/Release" + "BUILDTYPE=Release" + ]; + + enableParallelBuilding = true; + + # the `libv8_libplatform` target is _only_ built as a static library, + # and is expected to be statically linked in when needed. + # see the following link for further commentary: + # https://github.com/cowboyd/therubyracer/issues/391 + installPhase = '' + install -vD out/Release/d8 "$out/bin/d8" + install -vD out/Release/mksnapshot "$out/bin/mksnapshot" + ${if stdenv.isDarwin then '' + install -vD out/Release/lib.target/libv8.dylib "$out/lib/libv8.dylib" + install_name_tool -change /usr/local/lib/libv8.dylib $out/lib/libv8.dylib -change /usr/lib/libgcc_s.1.dylib ${stdenv.cc.cc}/lib/libgcc_s.1.dylib $out/bin/d8 + install_name_tool -id $out/lib/libv8.dylib -change /usr/lib/libgcc_s.1.dylib ${stdenv.cc.cc}/lib/libgcc_s.1.dylib $out/lib/libv8.dylib + '' else '' + install -vD out/Release/lib.target/libv8.so "$out/lib/libv8.so" + ''} + mkdir -p "$out/include" + cp -vr include/*.h "$out/include" + cp -vr include/libplatform "$out/include" + cp -v out/Release/*.a "$out/lib" + ''; + + meta = with lib; { + description = "Google's open source JavaScript engine"; + maintainers = with maintainers; [ cstrahan ]; + platforms = with platforms; linux; + license = licenses.bsd3; + }; +} diff --git a/pkgs/development/libraries/v8/build-standalone-static-library.patch b/pkgs/development/libraries/v8/build-standalone-static-library.patch new file mode 100644 index 000000000000..994c322429d1 --- /dev/null +++ b/pkgs/development/libraries/v8/build-standalone-static-library.patch @@ -0,0 +1,14 @@ +diff --git a/build/standalone.gypi b/build/standalone.gypi +index b6519c4..ef9e7c5 100644 +--- a/build/standalone.gypi ++++ b/build/standalone.gypi +@@ -373,6 +373,9 @@ + }], + ], + 'target_conditions': [ ++ ['_type=="static_library"', { ++ 'standalone_static_library': 1, ++ }], + ['v8_code == 0', { + 'defines!': [ + 'DEBUG', diff --git a/pkgs/development/libraries/v8/disable-building-tests.patch b/pkgs/development/libraries/v8/disable-building-tests.patch new file mode 100644 index 000000000000..1854a9b7e567 --- /dev/null +++ b/pkgs/development/libraries/v8/disable-building-tests.patch @@ -0,0 +1,27 @@ +diff --git a/Makefile b/Makefile +index 9761265..80169b2 100644 +--- a/Makefile ++++ b/Makefile +@@ -248,8 +248,6 @@ NACL_ARCHES = nacl_ia32 nacl_x64 + GYPFILES = third_party/icu/icu.gypi third_party/icu/icu.gyp \ + build/shim_headers.gypi build/features.gypi build/standalone.gypi \ + build/toolchain.gypi build/all.gyp build/mac/asan.gyp \ +- test/cctest/cctest.gyp \ +- test/unittests/unittests.gyp tools/gyp/v8.gyp \ + tools/parser-shell.gyp testing/gmock.gyp testing/gtest.gyp \ + buildtools/third_party/libc++abi/libc++abi.gyp \ + buildtools/third_party/libc++/libc++.gyp samples/samples.gyp \ +diff --git a/build/all.gyp b/build/all.gyp +index 4aeb507..1ff2c7a 100644 +--- a/build/all.gyp ++++ b/build/all.gyp +@@ -10,8 +10,6 @@ + 'dependencies': [ + '../samples/samples.gyp:*', + '../src/d8.gyp:d8', +- '../test/cctest/cctest.gyp:*', +- '../test/unittests/unittests.gyp:*', + ], + 'conditions': [ + ['component!="shared_library"', { + diff --git a/pkgs/development/libraries/v8/fPIC-for-static.patch b/pkgs/development/libraries/v8/fPIC-for-static.patch new file mode 100644 index 000000000000..39564772af86 --- /dev/null +++ b/pkgs/development/libraries/v8/fPIC-for-static.patch @@ -0,0 +1,13 @@ +diff --git a/build/standalone.gypi b/build/standalone.gypi +index 7670e5b..230518c 100644 +--- a/build/standalone.gypi ++++ b/build/standalone.gypi +@@ -205,7 +205,7 @@ + [ 'visibility=="hidden" and v8_enable_backtrace==0', { + 'cflags': [ '-fvisibility=hidden' ], + }], +- [ 'component=="shared_library"', { ++ [ 'component=="shared_library" or component=="static_library" and (v8_target_arch=="x64" or v8_target_arch=="arm64")', { + 'cflags': [ '-fPIC', ], + }], + ], diff --git a/pkgs/development/libraries/wxmac/default.nix b/pkgs/development/libraries/wxmac/default.nix index 9734fd358ea2..e5d680501f00 100644 --- a/pkgs/development/libraries/wxmac/default.nix +++ b/pkgs/development/libraries/wxmac/default.nix @@ -1,5 +1,7 @@ -{ stdenv, fetchurl, setfile, rez, derez, - expat, libiconv, libjpeg, libpng, libtiff, zlib +{ stdenv, fetchurl +, expat, libiconv, libjpeg, libpng, libtiff, zlib +, setfile, rez, derez +, AGL, Cocoa, Kernel, QuickTime }: with stdenv.lib; @@ -15,9 +17,20 @@ stdenv.mkDerivation rec { patches = [ ./wx.patch ]; - buildInputs = [ setfile rez derez expat libiconv libjpeg libpng libtiff zlib ]; + buildInputs = [ + expat libiconv libjpeg libpng libtiff zlib + Cocoa Kernel QuickTime setfile rez derez + ]; + + propagatedBuildInputs = [ AGL ]; + + postPatch = '' + substituteInPlace configure --replace "-framework System" -lSystem + ''; configureFlags = [ + "wx_cv_std_libfullpath=/var/empty" + "--with-macosx-version-min=10.7" "--enable-unicode" "--with-osx_cocoa" "--enable-std_string" @@ -44,6 +57,8 @@ stdenv.mkDerivation rec { ./wx-config --libs ''; + NIX_CFLAGS_COMPILE = "-Wno-undef"; + doCheck = true; enableParallelBuilding = true; diff --git a/pkgs/development/libraries/xmlsec/default.nix b/pkgs/development/libraries/xmlsec/default.nix index 85e2f08b31d0..3d92dcf3e12b 100644 --- a/pkgs/development/libraries/xmlsec/default.nix +++ b/pkgs/development/libraries/xmlsec/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, libxml2, gnutls, libxslt, pkgconfig, libgcrypt, libtool }: +{ stdenv, fetchurl, libxml2, gnutls, libxslt, pkgconfig, libgcrypt, libtool +, openssl, makeWrapper }: let version = "1.2.20"; @@ -11,9 +12,13 @@ stdenv.mkDerivation rec { sha256 = "01bkbv2y3x8d1sf4dcln1x3y2jyj391s3208d9a2ndhglly5j89j"; }; - buildInputs = [ libxml2 gnutls libxslt pkgconfig libgcrypt libtool ]; - + buildInputs = [ makeWrapper libxml2 gnutls libxslt pkgconfig libgcrypt libtool openssl ]; enableParallelBuilding = true; + doCheck = true; + + postFixup = '' + wrapProgram "$out/bin/xmlsec1" --prefix LD_LIBRARY_PATH ":" "$out/lib" + ''; meta = { homepage = http://www.aleksey.com/xmlsec; diff --git a/pkgs/development/ocaml-modules/csv/default.nix b/pkgs/development/ocaml-modules/csv/default.nix index 30f96a801d89..e04523cd14cc 100644 --- a/pkgs/development/ocaml-modules/csv/default.nix +++ b/pkgs/development/ocaml-modules/csv/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation { - name = "ocaml-csv-1.4.1"; + name = "ocaml-csv-1.4.2"; src = fetchzip { - url = https://github.com/Chris00/ocaml-csv/releases/download/1.4.1/csv-1.4.1.tar.gz; - sha256 = "1z38qy92lq8qh91bs70vsv868szainif53a2y6rf47ijdila25j4"; + url = https://github.com/Chris00/ocaml-csv/releases/download/1.4.2/csv-1.4.2.tar.gz; + sha256 = "05s8py2qr3889c72g1q07r15pzch3j66xdphxi2sd93h5lvnpi4j"; }; buildInputs = [ ocaml findlib ]; diff --git a/pkgs/development/python-modules/fix_swiftclient_mocking.patch b/pkgs/development/python-modules/fix_swiftclient_mocking.patch new file mode 100644 index 000000000000..027ef56b317c --- /dev/null +++ b/pkgs/development/python-modules/fix_swiftclient_mocking.patch @@ -0,0 +1,26 @@ +From f37947a7e083532676a9f2ed079dff6bdc19a8e9 Mon Sep 17 00:00:00 2001 +From: Sabari Kumar Murugesan +Date: Tue, 15 Sep 2015 14:22:11 -0700 +Subject: [PATCH] Fix swift store tests for latest swiftclient + +The latest swiftclient (2.6.0) breaks some of the swift store +tests as a mock function's parameters got changed. + +Change-Id: I36512fbe642f4f12cf1382fdf0e37eccbf1acba4 +--- + glance_store/tests/unit/test_swift_store.py | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/glance_store/tests/unit/test_swift_store.py b/glance_store/tests/unit/test_swift_store.py +index f738cf9..3fe4699 100644 +--- a/glance_store/tests/unit/test_swift_store.py ++++ b/glance_store/tests/unit/test_swift_store.py +@@ -92,7 +92,7 @@ def fake_head_container(url, token, container, **kwargs): + def fake_put_container(url, token, container, **kwargs): + fixture_containers.append(container) + +- def fake_post_container(url, token, container, headers, http_conn=None): ++ def fake_post_container(url, token, container, headers, **kwargs): + for key, value in six.iteritems(headers): + fixture_container_headers[key] = value + diff --git a/pkgs/development/python-modules/generic/default.nix b/pkgs/development/python-modules/generic/default.nix index 378f047939f2..45073ba2fa6c 100644 --- a/pkgs/development/python-modules/generic/default.nix +++ b/pkgs/development/python-modules/generic/default.nix @@ -59,7 +59,7 @@ if disabled then throw "${name} not supported for interpreter ${python.executable}" else -python.stdenv.mkDerivation (attrs // { +python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled"] // { inherit doCheck; name = namePrefix + name; diff --git a/pkgs/development/python-modules/h5py/default.nix b/pkgs/development/python-modules/h5py/default.nix index 39a35ad49c6e..9775b2f70a2e 100644 --- a/pkgs/development/python-modules/h5py/default.nix +++ b/pkgs/development/python-modules/h5py/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, python, buildPythonPackage -, numpy, hdf5, cython +, numpy, hdf5, cython, six, pkgconfig , mpiSupport ? false, mpi4py ? null, mpi ? null }: assert mpiSupport == hdf5.mpiSupport; @@ -12,24 +12,26 @@ assert mpiSupport -> mpi != null with stdenv.lib; buildPythonPackage rec { - name = "h5py-2.3.1"; + name = "h5py-${version}"; + version = "2.5.0"; src = fetchurl { url = "https://pypi.python.org/packages/source/h/h5py/${name}.tar.gz"; - md5 = "8f32f96d653e904d20f9f910c6d9dd91"; + sha256 = "9833df8a679e108b561670b245bcf9f3a827b10ccb3a5fa1341523852cfac2f6"; }; - setupPyBuildFlags = [ "--hdf5=${hdf5}" ] - ++ optional mpiSupport "--mpi" - ; - setupPyInstallFlags = setupPyBuildFlags; + configure_flags = "--hdf5=${hdf5}" + optionalString mpiSupport " --mpi"; + + postConfigure = '' + ${python.executable} setup.py configure ${configure_flags} + ''; preBuild = if mpiSupport then "export CC=${mpi}/bin/mpicc" else ""; - buildInputs = [ hdf5 cython ] + buildInputs = [ hdf5 cython pkgconfig ] ++ optional mpiSupport mpi ; - propagatedBuildInputs = [ numpy ] + propagatedBuildInputs = [ numpy six] ++ optional mpiSupport mpi4py ; diff --git a/pkgs/development/python-modules/matplotlib/default.nix b/pkgs/development/python-modules/matplotlib/default.nix index 15716f204228..b6789a851cb5 100644 --- a/pkgs/development/python-modules/matplotlib/default.nix +++ b/pkgs/development/python-modules/matplotlib/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, python, buildPythonPackage, pycairo -, which, dateutil, nose, numpy, pyparsing, tornado +, which, cycler, dateutil, nose, numpy, pyparsing, sphinx, tornado , freetype, libpng, pkgconfig, mock, pytz, pygobject3 , enableGhostscript ? false, ghostscript ? null, gtk3 , enableGtk2 ? false, pygtk ? null, gobjectIntrospection @@ -10,25 +10,34 @@ assert enableGhostscript -> ghostscript != null; assert enableGtk2 -> pygtk != null; buildPythonPackage rec { - name = "matplotlib-1.4.3"; + name = "matplotlib-${version}"; + version = "1.5.0"; src = fetchurl { - url = "mirror://sourceforge/matplotlib/${name}.tar.gz"; - sha256 = "1dn05cvd0g984lzhh72wa0z93psgwshbbg93fkab6slx5m3l95av"; + url = "https://pypi.python.org/packages/source/m/matplotlib/${name}.tar.gz"; + sha256 = "67b08b1650a00a6317d94b76a30a47320087e5244920604c5462188cba0c2646"; }; XDG_RUNTIME_DIR = "/tmp"; - buildInputs = [ python which stdenv ] + buildInputs = [ python which sphinx stdenv ] ++ stdenv.lib.optional enableGhostscript ghostscript; propagatedBuildInputs = - [ dateutil nose numpy pyparsing tornado freetype + [ cycler dateutil nose numpy pyparsing tornado freetype libpng pkgconfig mock pytz ] ++ stdenv.lib.optional enableGtk2 pygtk ++ stdenv.lib.optionals enableGtk3 [ cairo pycairo gtk3 gobjectIntrospection pygobject3 ]; + patchPhase = '' + # Failing test: ERROR: matplotlib.tests.test_style.test_use_url + sed -i 's/test_use_url/fails/' lib/matplotlib/tests/test_style.py + # Failing test: ERROR: test suite for + sed -i 's/TestTinyPages/fails/' lib/matplotlib/sphinxext/tests/test_tinypages.py + ''; + + meta = with stdenv.lib; { description = "python plotting library, making publication quality plots"; homepage = "http://matplotlib.sourceforge.net/"; diff --git a/pkgs/development/python-modules/pyatspi/default.nix b/pkgs/development/python-modules/pyatspi/default.nix index 3c39ca873e27..636126ea74ab 100644 --- a/pkgs/development/python-modules/pyatspi/default.nix +++ b/pkgs/development/python-modules/pyatspi/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, pkgconfig, python3, python3Packages, at_spi2_core }: stdenv.mkDerivation rec { - version = "2.16.0"; + version = "2.18.0"; name = "pyatspi-${version}"; src = fetchurl { - url = "mirror://gnome/sources/pyatspi/2.16/${name}.tar.xz"; - sha256 = "185lwgv9bk1fc6vw2xypznzr7p8fhp84ggnrb706zwgalmy8aym6"; + url = "mirror://gnome/sources/pyatspi/2.18/${name}.tar.xz"; + sha256 = "0imbyk2v6c11da7pkwz91313pkkldxs8zfg81zb2ql6h0nnh6vzq"; }; buildInputs = [ diff --git a/pkgs/development/python-modules/setuptools/default.nix b/pkgs/development/python-modules/setuptools/default.nix index 57c455f851c5..dc1db1405db3 100644 --- a/pkgs/development/python-modules/setuptools/default.nix +++ b/pkgs/development/python-modules/setuptools/default.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation rec { shortName = "setuptools-${version}"; name = "${python.executable}-${shortName}"; - version = "18.2"; + version = "18.2"; # 18.4 breaks python34Packages.characteristic and many others src = fetchurl { url = "http://pypi.python.org/packages/source/s/setuptools/${shortName}.tar.gz"; diff --git a/pkgs/development/python-modules/suds-0.4-CVE-2013-2217.patch b/pkgs/development/python-modules/suds-0.4-CVE-2013-2217.patch new file mode 100644 index 000000000000..235fc1f928c0 --- /dev/null +++ b/pkgs/development/python-modules/suds-0.4-CVE-2013-2217.patch @@ -0,0 +1,19 @@ +--- suds.orig/suds/cache.py 2013-06-29 16:26:16.930326017 +0200 ++++ suds.orig/suds/cache.py 2013-06-29 16:02:15.000000000 +0200 +@@ -19,6 +19,7 @@ + """ + + import os ++import tempfile + import suds + from tempfile import gettempdir as tmp + from suds.transport import * +@@ -138,7 +139,7 @@ + @type duration: {unit:value} + """ + if location is None: +- location = os.path.join(tmp(), 'suds') ++ location = tempfile.mkdtemp() + self.location = location + self.duration = (None, 0) + self.setduration(**duration) diff --git a/pkgs/development/python-modules/tables/default.nix b/pkgs/development/python-modules/tables/default.nix index 7c897e9531fb..f1551f41ae53 100644 --- a/pkgs/development/python-modules/tables/default.nix +++ b/pkgs/development/python-modules/tables/default.nix @@ -2,12 +2,12 @@ , cython, bzip2, lzo, numpy, numexpr, hdf5 }: buildPythonPackage rec { - version = "3.1.1"; + version = "3.2.2"; name = "tables-${version}"; src = fetchurl { - url = "mirror://sourceforge/pytables/${name}.tar.gz"; - sha256 = "18rdzv9xwiapb5c8y47rk2fi3fdm2dpjf68wfycma67ifrih7f9r"; + url = "https://pypi.python.org/packages/source/t/tables/${name}.tar.gz"; + sha256 = "3564b351a71ec1737b503b001eb7ceae1f65d5d6e3ffe1ea75aafba10f37fa84"; }; buildInputs = [ hdf5 cython bzip2 lzo ]; diff --git a/pkgs/development/python-modules/testtools_support_unittest2.patch b/pkgs/development/python-modules/testtools_support_unittest2.patch new file mode 100644 index 000000000000..545e5f01ec09 --- /dev/null +++ b/pkgs/development/python-modules/testtools_support_unittest2.patch @@ -0,0 +1,22 @@ +From e600d12980ccb807ba1ca3fb6a4da1d0b89c02f6 Mon Sep 17 00:00:00 2001 +From: Robert Collins +Date: Wed, 1 Jul 2015 15:46:28 +1200 +Subject: [PATCH] Fix tests with unittest2 1.1.0 and higher. + +Change-Id: I4613d47852fbf901819f197f6e388ccaa717b53e +--- + testtools/tests/test_run.py | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/testtools/tests/test_run.py b/testtools/tests/test_run.py +index ead716b..433b6f8 100644 +--- a/testtools/tests/test_run.py ++++ b/testtools/tests/test_run.py +@@ -201,6 +201,7 @@ def test_run_list_failed_import(self): + run.main, ['prog', 'discover', '-l', broken.package.base, '*.py'], out) + self.assertEqual(2, exc.args[0]) + self.assertThat(out.getvalue(), DocTestMatches("""\ ++unittest2.loader._FailedTest.runexample + Failed to import test module: runexample + Traceback (most recent call last): + File ".../loader.py", line ..., in _find_test_path diff --git a/pkgs/development/r-modules/default.nix b/pkgs/development/r-modules/default.nix index 0b0bf4871ac7..102d4ccb067f 100644 --- a/pkgs/development/r-modules/default.nix +++ b/pkgs/development/r-modules/default.nix @@ -33,7 +33,7 @@ let meta.broken = broken; }); - # Templates for generating Bioconductor and CRAN packages + # Templates for generating Bioconductor, CRAN and IRkernel packages # from the name, version, sha256, and optional per-package arguments above # deriveBioc = mkDerive { @@ -47,6 +47,10 @@ let "mirror://cran/src/contrib/00Archive/${name}/${name}_${version}.tar.gz" ]; }; + deriveIRkernel = mkDerive { + mkHomepage = name: "http://irkernel.github.io/"; + mkUrls = {name, version}: [ "http://irkernel.github.io/src/contrib/${name}_${version}.tar.gz" ]; + }; # Overrides package definitions with nativeBuildInputs. # For example, @@ -206,7 +210,8 @@ let # packages in `_self` may depends on overridden packages. self = (defaultOverrides _self self) // overrides; _self = import ./bioc-packages.nix { inherit self; derive = deriveBioc; } // - import ./cran-packages.nix { inherit self; derive = deriveCran; }; + import ./cran-packages.nix { inherit self; derive = deriveCran; } // + import ./irkernel-packages.nix { inherit self; derive = deriveIRkernel; }; # tweaks for the individual packages and "in self" follow diff --git a/pkgs/development/r-modules/generate-r-packages.R b/pkgs/development/r-modules/generate-r-packages.R index d78845796375..4c5654184509 100755 --- a/pkgs/development/r-modules/generate-r-packages.R +++ b/pkgs/development/r-modules/generate-r-packages.R @@ -1,17 +1,17 @@ #!/usr/bin/env Rscript - library(data.table) library(parallel) cl <- makeCluster(10) mirrorType <- commandArgs(trailingOnly=TRUE)[1] -stopifnot(mirrorType %in% c("bioc","cran")) +stopifnot(mirrorType %in% c("bioc","cran", "irkernel")) packagesFile <- paste(mirrorType, 'packages.nix', sep='-') readFormatted <- as.data.table(read.table(skip=6, sep='"', text=head(readLines(packagesFile), -1))) mirrorUrls <- list( bioc="http://bioconductor.statistik.tu-dortmund.de/packages/3.2/bioc/src/contrib/" , cran="http://cran.r-project.org/src/contrib/" + , irkernel="http://irkernel.github.io/src/contrib/" ) mirrorUrl <- mirrorUrls[mirrorType][[1]] knownPackages <- lapply(mirrorUrls, function(url) as.data.table(available.packages(url, filters=c("R_version", "OS_type", "duplicates")))) diff --git a/pkgs/development/r-modules/irkernel-packages.nix b/pkgs/development/r-modules/irkernel-packages.nix new file mode 100644 index 000000000000..c7173a149512 --- /dev/null +++ b/pkgs/development/r-modules/irkernel-packages.nix @@ -0,0 +1,11 @@ +# This file is generated from generate-r-packages.R. DO NOT EDIT. +# Execute the following command to update the file. +# +# Rscript generate-r-packages.R irkernel >new && mv new irkernel-packages.nix + +{ self, derive }: with self; { +IRdisplay = derive { name="IRdisplay"; version="0.3"; sha256="0aa7v3x6s9jd5kzwfh4659gm3dqkmadbk40a0jdpm856mf9r5w6s"; depends=[base64enc repr]; }; +IRkernel = derive { name="IRkernel"; version="0.5"; sha256="0v9f01j1ysadq2f8d4mpbimrspj7051cncl0rd1n97rb8wlb9rrf"; depends=[digest evaluate IRdisplay jsonlite repr rzmq uuid]; }; +repr = derive { name="repr"; version="0.4"; sha256="1mhvslkxr5nkxiijapzm29jpmjnhhjs1v9s84xvhqpxlcav8dsn6"; depends=[]; }; +rzmq = derive { name="rzmq"; version="0.7.7"; sha256="0cds9wsbfb7lhgfjjfisv1i3905ny7x3i2wbb1rcih03ba4a1ij3"; depends=[]; }; +} diff --git a/pkgs/development/tools/build-managers/icmake/default.nix b/pkgs/development/tools/build-managers/icmake/default.nix index 181a00ce7e14..c0a886e3e48d 100644 --- a/pkgs/development/tools/build-managers/icmake/default.nix +++ b/pkgs/development/tools/build-managers/icmake/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchFromGitHub }: -let version = "7.22.01"; in +let version = "7.23.02"; in stdenv.mkDerivation { name = "icmake-${version}"; src = fetchFromGitHub { - sha256 = "1pgl8bami4v86ja40in4fsdx940f6q85l1s4b9k53zl29pm85v5k"; + sha256 = "0gp2f8bw9i7vccsbz878mri0k6fls2x8hklbbr6mayag397gr928"; rev = version; repo = "icmake"; owner = "fbb-git"; diff --git a/pkgs/development/tools/build-managers/meson/default.nix b/pkgs/development/tools/build-managers/meson/default.nix new file mode 100644 index 000000000000..4a79000389f3 --- /dev/null +++ b/pkgs/development/tools/build-managers/meson/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, ninja, python3 }: + +stdenv.mkDerivation rec { + name = "meson-0.26.0"; + + src = fetchurl { + url = "https://github.com/jpakkane/meson/archive/0.26.0.tar.gz"; + sha256 = "1hmfn1bkxnwsnlhw6x9ryfcm4zwsf2w7h51cll1xrxg1rq08fvck"; + }; + + buildInputs = [ ninja python3 ]; + + installPhase = '' + ./install_meson.py --prefix=$out --destdir="$pkgdir/" + ''; + + meta = { + homepage = "http://mesonbuild.com"; + 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 ]; + }; +} diff --git a/pkgs/development/tools/literate-programming/eweb/default.nix b/pkgs/development/tools/literate-programming/eweb/default.nix new file mode 100644 index 000000000000..f996c567fcb5 --- /dev/null +++ b/pkgs/development/tools/literate-programming/eweb/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchurl, python3, asciidoc }: + +stdenv.mkDerivation rec{ + + name = "eweb-${meta.version}"; + + src = fetchurl { + url = "http://downloads.sourceforge.net/project/eweb/${name}.tar.bz2"; + sha256 = "1xy7vm2sj5q6s620fm25klmnwnz9xkrxmx4q2f8h6c85ydisayd5"; + }; + + buildInputs = [ python3 asciidoc ]; + + installPhase = '' + install -d $out/bin $out/share/doc/${name} + cp etangle.py $out/bin + cp etangle.w etangle.html $out/share/doc/${name} + ''; + + meta = with stdenv.lib; { + version = "9.10" ; + homepage = http://eweb.sf.net; + description = "An Asciidoc-based literate programming tool, written in Python"; + platforms = platforms.linux; + license = licenses.gpl3Plus; + maintainers = [ maintainers.AndersonTorres ]; + }; +} diff --git a/pkgs/development/tools/literate-programming/funnelweb/default.nix b/pkgs/development/tools/literate-programming/funnelweb/default.nix new file mode 100644 index 000000000000..66b44d1fc835 --- /dev/null +++ b/pkgs/development/tools/literate-programming/funnelweb/default.nix @@ -0,0 +1,31 @@ +{stdenv, fetchurl}: + +stdenv.mkDerivation rec { + + name = "funnelweb-${meta.version}"; + src = fetchurl { + url = http://www.ross.net/funnelweb/download/funnelweb_v320/funnelweb_v320_source.tar.gz; + sha256 = "0zqhys0j9gabrd12mnk8ibblpc8dal4kbl8vnhxmdlplsdpwn4wg"; + }; + + buildPhase = '' + cd source + ${stdenv.cc}/bin/cc -D__linux__ -o fw *.c + ''; + + installPhase = '' + install -d $out/bin + install fw $out/bin/fw + ''; + + meta = with stdenv.lib; { + version = "3.20"; + description = "A simple, reliable literate-programming macro preprocessor"; + homepage = http://www.ross.net/funnelweb/; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = [ maintainers.AndersonTorres ]; + }; +} +#TODO: implement it for other platforms +#TODO: Documentation files diff --git a/pkgs/development/tools/ocaml/merlin/default.nix b/pkgs/development/tools/ocaml/merlin/default.nix index 8b93650743dd..6618d079ea83 100644 --- a/pkgs/development/tools/ocaml/merlin/default.nix +++ b/pkgs/development/tools/ocaml/merlin/default.nix @@ -3,7 +3,7 @@ assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.00"; -let version = "2.2"; in +let version = "2.3"; in stdenv.mkDerivation { @@ -11,7 +11,7 @@ stdenv.mkDerivation { src = fetchzip { url = "https://github.com/the-lambda-church/merlin/archive/v${version}.tar.gz"; - sha256 = "19n4gwpqav2kax5rl61bq354g7ycdahl4f3ihjp418hwi1phwbzz"; + sha256 = "18glpvd572ajz0d66chx2ib5miy4b29q1qhc7sxb60mlsrffr13s"; }; buildInputs = [ ocaml findlib yojson menhir ] diff --git a/pkgs/development/tools/sslmate/default.nix b/pkgs/development/tools/sslmate/default.nix new file mode 100644 index 000000000000..e951f55daeac --- /dev/null +++ b/pkgs/development/tools/sslmate/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchurl, perlPackages, perl, makeWrapper, openssl }: + +stdenv.mkDerivation rec { + name = "sslmate-1.5.0"; + + src = fetchurl { + url = "https://packages.sslmate.com/other/${name}.tar.gz"; + sha256 = "1vxdkydwww4awi6ishvq68jvlj6vkbfw7pin1cdqpl84vs9q7ycg"; + }; + + makeFlags = "PREFIX=$(out)"; + + buildInputs = [ perl makeWrapper ]; + + postInstall = '' + wrapProgram $out/bin/sslmate --prefix PERL5LIB : \ + "${with perlPackages; stdenv.lib.makePerlPath [ + URI + JSONPP + TermReadKey + ]}" \ + --prefix PATH : "${openssl}/bin" + ''; + + meta = with stdenv.lib; { + homepage = "https://sslmate.com"; + maintainers = maintainers.iElectric; + description = "Easy to buy, deploy, and manage your SSL certs"; + platforms = platforms.unix; + license = licenses.mit; # X11 + }; +} diff --git a/pkgs/development/tools/watchman/default.nix b/pkgs/development/tools/watchman/default.nix index 264557bfb62a..b2029391b745 100644 --- a/pkgs/development/tools/watchman/default.nix +++ b/pkgs/development/tools/watchman/default.nix @@ -5,13 +5,13 @@ stdenv.mkDerivation rec { name = "watchman-${version}"; - version = "3.0.0"; + version = "4.1.0"; src = fetchFromGitHub { owner = "facebook"; repo = "watchman"; rev = "v${version}"; - sha256 = "0sf0cp9p7savlgmzqj5m9fkpfa5a15pv98rkilxnbmx9wrjvypwk"; + sha256 = "01ak2gsmc76baswpivzz00g22r547mpp8l7xfziwl5804nzszrcg"; }; buildInputs = [ autoconf automake pcre ]; @@ -20,6 +20,7 @@ stdenv.mkDerivation rec { "--enable-lenient" "--enable-conffile=${if confFile == null then "no" else confFile}" "--with-pcre=yes" + "--disable-statedir" ]; preConfigure = '' diff --git a/pkgs/development/web/valum/default.nix b/pkgs/development/web/valum/default.nix new file mode 100644 index 000000000000..633d30862569 --- /dev/null +++ b/pkgs/development/web/valum/default.nix @@ -0,0 +1,29 @@ +{ stdenv, pkgconfig, fetchFromGitHub, python, glib, vala, ctpl +, libgee, libsoup, fcgi }: + +stdenv.mkDerivation rec { + name = "valum-${version}"; + version = "0.2.0"; + + src = fetchFromGitHub { + owner = "valum-framework"; + repo = "valum"; + rev = "v${version}"; + sha256 = "1lciwqk4k9sf1hl4drl207g0ydlxl906kx9lx5fqhfb8gwcfqh2g"; + }; + + buildInputs = [ python pkgconfig glib vala ctpl libgee libsoup fcgi ]; + + configurePhase = ''python waf configure --prefix=$out''; + + buildPhase = ''python waf build''; + + installPhase = ''python waf install''; + + meta = with stdenv.lib; { + homepage = https://github.com/valum-framework/valum; + description = "Web micro-framework written in Vala"; + plaforms = platforms.linux; + maintainers = [ maintainers.lethalman ]; + }; +} diff --git a/pkgs/games/cockatrice/default.nix b/pkgs/games/cockatrice/default.nix new file mode 100644 index 000000000000..53aab088da01 --- /dev/null +++ b/pkgs/games/cockatrice/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, cmake, qtbase, qtmultimedia, protobuf, qttools +}: + +stdenv.mkDerivation rec { + name = "${pname}-${version}"; + pname = "cockatrice"; + version = "2015-09-24"; + + src = fetchurl { + url = "https://github.com/Cockatrice/Cockatrice/archive/${version}-Release.tar.gz"; + sha256 = "068f93k3bg4cmdm0iyh2vfmk51nnzf3d6g6cvlm5q8dz1zk5nwzf"; + }; + + buildInputs = [ + cmake qtbase qtmultimedia protobuf qttools + ]; + + meta = { + repositories.git = git://github.com/Cockatrice/Cockatrice.git; + description = "A cross-platform virtual tabletop for multiplayer card games"; + license = stdenv.lib.licenses.gpl2; + maintainers = with stdenv.lib.maintainers; [ spencerjanssen ]; + }; +} diff --git a/pkgs/games/cuyo/default.nix b/pkgs/games/cuyo/default.nix new file mode 100644 index 000000000000..0bc38f876f46 --- /dev/null +++ b/pkgs/games/cuyo/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, SDL, SDL_mixer }: + +stdenv.mkDerivation rec { + name = "cuyo-${version}"; + version = "2.1.0"; + + src = fetchurl { + url = http://download.savannah.gnu.org/releases/cuyo/cuyo-2.1.0.tar.gz; + sha256 = "17yqv924x7yvwix7yz9jdhgyar8lzdhqvmpvv0any8rdkajhj23c"; + }; + + buildInputs = [ SDL SDL_mixer]; + + meta = { + homepage = http://karimmi.de/cuyo; + description = "Stacking blocks game, with different rules for each level"; + license = stdenv.lib.licenses.gpl2Plus; + }; + +} diff --git a/pkgs/games/instead/default.nix b/pkgs/games/instead/default.nix index 2958e48d2a71..194feb58083f 100644 --- a/pkgs/games/instead/default.nix +++ b/pkgs/games/instead/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, SDL, SDL_ttf, SDL_image, SDL_mixer, pkgconfig, lua, zlib, unzip }: let - version = "2.2.5"; + version = "2.3.0"; # I took several games at random from http://instead.syscall.ru/games/ games = [ @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://downloads.sourceforge.net/project/instead/instead/${version}/instead_${version}.tar.gz"; - sha256 = "1brnvphavh9jfv7scjhqfimbzl5fa0hfs2nsxqx4rjlsiqnrvrx1"; + sha256 = "1ldisjkmmcpnmv4vsd25dc1sfiwbr9fcn3hxhl78i4jwlyqgrms8"; }; NIX_LDFLAGS = "-llua -lgcc_s"; diff --git a/pkgs/games/minetest/default.nix b/pkgs/games/minetest/default.nix index 850b1d391c54..ecd468eaf582 100644 --- a/pkgs/games/minetest/default.nix +++ b/pkgs/games/minetest/default.nix @@ -4,17 +4,17 @@ }: let - version = "0.4.12"; + version = "0.4.13"; sources = { src = fetchgit { url = "https://github.com/minetest/minetest.git"; - rev = "7993a403f2c17a215e4895ba1848aaf69bb61980"; - sha256 = "04v6fd9r9by8g47xbjzkhkgac5zpik01idngbbx2in4fxrg3ac7c"; + rev = "d44fceac7e1237b00c6431ee1bb5805b602d0dcd"; + sha256 = "034w9nv23ncdwbs4arzxfph60cfgvalh27hxprjassmz8p7ixnra"; }; data = fetchgit { url = "https://github.com/minetest/minetest_game.git"; - rev = "03c00a831d5c2fd37096449bee49557879068af1"; - sha256 = "1qqhlfz296rmi3mmlvq1rwv7hq5w964w1scry095xaih7y11ycmk"; + rev = "2392842948b114670334eabbb593b66e1427747c"; + sha256 = "0wb8rdqc2ghi66k8bm8w2db0w7k5rsbdld0dyj1wdr3d6x0bpkcr"; }; }; in stdenv.mkDerivation { diff --git a/pkgs/misc/cups/drivers/mfcj470dw/default.nix b/pkgs/misc/cups/drivers/mfcj470dw/default.nix new file mode 100644 index 000000000000..d1a1b239371a --- /dev/null +++ b/pkgs/misc/cups/drivers/mfcj470dw/default.nix @@ -0,0 +1,50 @@ +{ stdenv, fetchurl, cups, dpkg, ghostscript, patchelf, bash, file }: + +stdenv.mkDerivation rec { + name = "mfcj470dw-cupswrapper-${version}"; + version = "3.0.0-1"; + + srcs = + [ (fetchurl { + url = "http://download.brother.com/welcome/dlf006843/mfcj470dwlpr-${version}.i386.deb"; + sha256 = "7202dd895d38d50bb767080f2995ed350eed99bc2b7871452c3c915c8eefc30a"; + }) + (fetchurl { + url = "http://download.brother.com/welcome/dlf006845/mfcj470dwcupswrapper-${version}.i386.deb"; + sha256 = "92af9024e821159eccd78a8925fc77fb92b4f247f2d2c824ca303004077076a7"; + }) + ]; + + buildInputs = [ dpkg cups patchelf bash ]; + + unpackPhase = "true"; + + installPhase = '' + for s in $srcs; do dpkg-deb -x $s $out; done + + substituteInPlace $out/opt/brother/Printers/mfcj470dw/cupswrapper/cupswrappermfcj470dw \ + --replace /opt "$out/opt" \ + --replace /usr "$out/usr" \ + --replace /etc "$out/etc" + + substituteInPlace $out/opt/brother/Printers/mfcj470dw/lpd/filtermfcj470dw \ + --replace /opt "$out/opt" \ + --replace file "/run/current-system/sw/bin/file" + + sed -i '/GHOST_SCRIPT=/c\GHOST_SCRIPT=gs' $out/opt/brother/Printers/mfcj470dw/lpd/psconvertij2 + + patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux.so.2 $out/opt/brother/Printers/mfcj470dw/lpd/brmfcj470dwfilter + patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux.so.2 $out/opt/brother/Printers/mfcj470dw/cupswrapper/brcupsconfpt1 + + mkdir -p $out/lib/cups/filter/ + ln -s $out/opt/brother/Printers/mfcj470dw/lpd/filtermfcj470dw $out/lib/cups/filter/brother_lpdwrapper_mfcj470dw + ''; + + meta = { + homepage = http://www.brother.com/; + description = "A driver for brother mfcj470dw printers to print over WiFi and USB"; + license = stdenv.lib.licenses.unfree; + platforms = stdenv.lib.platforms.linux; + downloadPage = http://support.brother.com/g/b/downloadlist.aspx?c=us&lang=en&prod=mfcj470dw_us_eu_as&os=128; + }; +} diff --git a/pkgs/misc/screensavers/pipes/default.nix b/pkgs/misc/screensavers/pipes/default.nix new file mode 100644 index 000000000000..8ff4a1074e61 --- /dev/null +++ b/pkgs/misc/screensavers/pipes/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchurl, pkgs }: + +stdenv.mkDerivation rec { + name = "pipes-${version}"; + version = "1.1.0"; + + src = fetchurl { + url = "https://github.com/pipeseroni/pipes.sh/archive/v${version}.tar.gz"; + sha256 = "1225llbm0zfnkqykfi7qz7z5p102pwldmj22761m653jy0ahi7w2"; + }; + + buildInputs = with pkgs; [ bash ]; + + installPhase = '' + mkdir $out -p + make PREFIX=$out/ install + ''; + + meta = with stdenv.lib; { + homepage = "https://github.com/pipeseroni/pipes.sh"; + description = "Animated pipes terminal screensaver"; + license = licenses.mit; + maintainers = [ maintainers.matthiasbeyer ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/misc/themes/arc/default.nix b/pkgs/misc/themes/arc/default.nix new file mode 100644 index 000000000000..e61a1327a82b --- /dev/null +++ b/pkgs/misc/themes/arc/default.nix @@ -0,0 +1,27 @@ +{ stdenv, autoconf, automake, fetchFromGitHub, gnome3, gtk, gtk-engine-murrine, pkgconfig}: + +stdenv.mkDerivation rec { + version = "2015-10-21"; + name = "arc-gtk-theme-git-${version}"; + src = fetchFromGitHub { + owner = "horst3180"; + repo = "arc-theme"; + sha256 = "09s452ysg5ys5i3ahb2dgdmr9j64b92hy9rgfvbgw6r5kdrnb60s"; + rev = "f4c71247cf9470037d052ae4a12b86073d0001ff"; + }; + + preferLocalBuild = true; + + buildInputs = [ autoconf automake gtk-engine-murrine pkgconfig ]; + + configureScript = "./autogen.sh"; + configureFlags = "--with-gnome=${gnome3.version}"; + + meta = with stdenv.lib; { + description = "A flat theme with transparent elements for GTK 3, GTK 2 and Gnome-Shell"; + homepage = "https://github.com/horst3180/Arc-theme"; + license = licenses.gpl3; + maintainers = [ maintainers.simonvandel ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/misc/themes/gtk3/paper-gtk-theme/default.nix b/pkgs/misc/themes/gtk3/paper-gtk-theme/default.nix new file mode 100644 index 000000000000..c7cf3a871b58 --- /dev/null +++ b/pkgs/misc/themes/gtk3/paper-gtk-theme/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchFromGitHub, gtk }: + +stdenv.mkDerivation rec { + version = "6a5f14cfe697b0a829456a1fd560acdcddc6043f"; + name = "paper-gtk-theme-${version}"; + + src = fetchFromGitHub { + owner = "snwh"; + repo = "paper-gtk-theme"; + sha256 = "0kyn3a6sq0z22vds6szl630jv20pjskjbdg0wc8abxzwg0vwxc5m"; + rev = version; + }; + + dontBuild = true; + installPhase = '' + mkdir -p $out/share/themes/Paper/ + cp -r ./Paper/ $out/share/themes/ + ''; + + preferLocalBuild = true; + + meta = with stdenv.lib; { + description = "A modern desktop theme suite featuring a mostly flat with a minimal use of shadows for depth"; + homepage = "http://snwh.org/paper/"; + license = licenses.gpl3; + maintainers = [ maintainers.simonvandel ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/misc/uboot/default.nix b/pkgs/misc/uboot/default.nix index 4fe6ae4c6e22..443841363bf3 100644 --- a/pkgs/misc/uboot/default.nix +++ b/pkgs/misc/uboot/default.nix @@ -22,11 +22,11 @@ in stdenv.mkDerivation rec { name = "uboot-${defconfig}-${version}"; - version = "2015.07"; + version = "2015.10"; src = fetchurl { url = "ftp://ftp.denx.de/pub/u-boot/u-boot-${version}.tar.bz2"; - sha256 = "1nclmyii5a1igvgjc4kxvi1fk2y82hp2iy4iywp34b3zf6ywjj0b"; + sha256 = "0m8r08izci0lzzjn5c5g5manp2rc7yc5swww0lxr7bamjigqvimx"; }; patches = [ ./vexpress-Use-config_distro_bootcmd.patch ]; diff --git a/pkgs/misc/uboot/vexpress-Use-config_distro_bootcmd.patch b/pkgs/misc/uboot/vexpress-Use-config_distro_bootcmd.patch index ce057b6aa657..218132c7758e 100644 --- a/pkgs/misc/uboot/vexpress-Use-config_distro_bootcmd.patch +++ b/pkgs/misc/uboot/vexpress-Use-config_distro_bootcmd.patch @@ -1,4 +1,4 @@ -From 1fb764e1866513a69b4a0c29b69f8e78ea1df7fa Mon Sep 17 00:00:00 2001 +From 98f62c27fe481dc2d444d70265268d2369d8a998 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Mon, 8 Jun 2015 22:29:23 +0300 Subject: [PATCH] vexpress: Use config_distro_bootcmd @@ -8,12 +8,11 @@ cli_readline_into_buffer doesn't respect the timeout. --- common/cli_readline.c | 12 +++++++++++- configs/vexpress_ca9x4_defconfig | 2 -- - include/configs/vexpress_ca9x4.h | 1 - - include/configs/vexpress_common.h | 34 ++++++++++++++++++++++------------ - 4 files changed, 33 insertions(+), 16 deletions(-) + include/configs/vexpress_common.h | 2 +- + 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/common/cli_readline.c b/common/cli_readline.c -index 9a9fb35..ca997a9 100644 +index c1476e4..5063a0a 100644 --- a/common/cli_readline.c +++ b/common/cli_readline.c @@ -517,6 +517,7 @@ int cli_readline_into_buffer(const char *const prompt, char *buffer, @@ -58,100 +57,26 @@ index 2947fc1..9a5123d 100644 # CONFIG_CMD_ITEST is not set # CONFIG_CMD_SETEXPR is not set # CONFIG_CMD_NFS is not set -diff --git a/include/configs/vexpress_ca9x4.h b/include/configs/vexpress_ca9x4.h -index 38ac4ed..993398c 100644 ---- a/include/configs/vexpress_ca9x4.h -+++ b/include/configs/vexpress_ca9x4.h -@@ -13,6 +13,5 @@ - - #define CONFIG_VEXPRESS_ORIGINAL_MEMORY_MAP - #include "vexpress_common.h" --#define CONFIG_BOOTP_VCI_STRING "U-boot.armv7.vexpress_ca9x4" - - #endif /* VEXPRESS_CA9X4_H */ diff --git a/include/configs/vexpress_common.h b/include/configs/vexpress_common.h -index 0c1da01..72850d0 100644 +index 98f6ae9..062532a 100644 --- a/include/configs/vexpress_common.h +++ b/include/configs/vexpress_common.h -@@ -123,7 +123,6 @@ - #define CONFIG_SYS_L2CACHE_OFF 1 - #define CONFIG_INITRD_TAG 1 - #define CONFIG_SYS_GENERIC_BOARD --#define CONFIG_OF_LIBFDT 1 - - /* Size of malloc() pool */ - #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 128 * 1024) -@@ -152,6 +151,7 @@ - #define CONFIG_SYS_SERIAL0 V2M_UART0 - #define CONFIG_SYS_SERIAL1 V2M_UART1 - -+#include - /* Command line configuration */ - #define CONFIG_CMD_DHCP - #define CONFIG_CMD_PXE -@@ -163,7 +163,6 @@ - #define CONFIG_SUPPORT_RAW_INITRD - - #define CONFIG_CMD_FAT --#define CONFIG_DOS_PARTITION 1 - #define CONFIG_MMC 1 - #define CONFIG_CMD_MMC - #define CONFIG_GENERIC_MMC -@@ -201,17 +200,28 @@ +@@ -185,7 +185,6 @@ + CONFIG_SYS_INIT_RAM_SIZE - \ GENERATED_GBL_DATA_SIZE) #define CONFIG_SYS_INIT_SP_ADDR CONFIG_SYS_GBL_DATA_OFFSET +-#define CONFIG_CMD_ECHO -+#define BOOT_TARGET_DEVICES(func) \ -+ func(MMC, mmc, 0) -+#include -+ - /* Basic environment settings */ --#define CONFIG_BOOTCOMMAND "run bootflash;" - #ifdef CONFIG_VEXPRESS_ORIGINAL_MEMORY_MAP -+/* -+ * RAM starts at 0x6000_0000 -+ * - U-Boot loaded @ 8M -+ * - Kernel loaded @ 32M -+ * - Initrd loaded @ 128M -+ * - DTB loaded @ 240M -+ */ - #define CONFIG_PLATFORM_ENV_SETTINGS \ -- "loadaddr=0x80008000\0" \ -- "ramdisk_addr_r=0x61000000\0" \ -- "kernel_addr=0x44100000\0" \ -- "ramdisk_addr=0x44800000\0" \ -- "maxramdisk=0x1800000\0" \ -- "pxefile_addr_r=0x88000000\0" \ -- "kernel_addr_r=0x80008000\0" + #include + +@@ -225,6 +224,7 @@ + #define CONFIG_EXTRA_ENV_SETTINGS \ + CONFIG_PLATFORM_ENV_SETTINGS \ + BOOTENV \ + "fdtfile=vexpress-v2p-ca9.dtb\0" \ -+ "kernel_addr_r=0x62000000\0" \ -+ "ramdisk_addr_r=0x68000000\0" \ -+ "maxramdisk=0x06000000\0" \ -+ "fdt_addr_r=0x6f000000\0" \ -+ "loadaddr=0x70000000\0" \ -+ "pxefile_addr_r=0x71000000\0" \ -+ "scriptaddr=0x72000000\0" - #elif defined(CONFIG_VEXPRESS_EXTENDED_MEMORY_MAP) - #define CONFIG_PLATFORM_ENV_SETTINGS \ - "loadaddr=0xa0008000\0" \ -@@ -234,7 +244,8 @@ - "devtmpfs.mount=0 vmalloc=256M\0" \ - "bootflash=run flashargs; " \ - "cp ${ramdisk_addr} ${ramdisk_addr_r} ${maxramdisk}; " \ -- "bootm ${kernel_addr} ${ramdisk_addr_r}\0" -+ "bootm ${kernel_addr} ${ramdisk_addr_r}\0" \ -+ BOOTENV - - /* FLASH and environment organization */ - #define PHYS_FLASH_SIZE 0x04000000 /* 64MB */ -@@ -287,7 +298,6 @@ - - #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot args buffer */ - #define CONFIG_SYS_LONGHELP --#define CONFIG_CMDLINE_EDITING 1 - #define CONFIG_SYS_MAXARGS 16 /* max command args */ - - #endif /* VEXPRESS_COMMON_H */ + "console=ttyAMA0,38400n8\0" \ + "dram=1024M\0" \ + "root=/dev/sda1 rw\0" \ -- -2.4.5 +2.6.0 diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index 601f99c7f4b4..fe393753f24f 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -1565,4 +1565,25 @@ rec { }; + vim-colorschemes = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-colorschemes-2015-07-25"; + src = fetchgit { + url = "git://github.com/flazz/vim-colorschemes"; + rev = "28a989b28457e38df620e4c7ab23e224aff70efe"; + sha256 = "5308c874a34dc03256ece2e54ab7b92c8384ebb4137436582fd4aa6c38ad36e5"; + }; + dependencies = []; + + }; + + vim-colorstepper = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "vim-colorstepper-2015-08-04"; + src = fetchgit { + url = "git://github.com/jonbri/vim-colorstepper"; + rev = "5783c2567a193e7604780353d6f8ce445b2ab191"; + sha256 = "a9ab0c724a827eba9c74d93dda118863656d27df7d5d26b971e0ac71c87f7e59"; + }; + dependencies = []; + + }; } diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index 47b02aab527d..7195064a20d3 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -30,6 +30,7 @@ "github:eagletmt/neco-ghc" "github:esneider/YUNOcommit.vim" "github:fatih/vim-go" +"github:flazz/vim-colorschemes" "github:idris-hackers/idris-vim" "github:itchyny/calendar.vim" "github:itchyny/thumbnail.vim" @@ -38,6 +39,7 @@ "github:jeetsukumaran/vim-buffergator" "github:jgdavey/tslime.vim" "github:jistr/vim-nerdtree-tabs" +"github:jonbri/vim-colorstepper" "github:joonty/vim-xdebug" "github:junegunn/limelight.vim" "github:junegunn/vim-peekaboo" diff --git a/pkgs/os-specific/darwin/apple-sdk/default.nix b/pkgs/os-specific/darwin/apple-sdk/default.nix index 11b9b4a83a3f..24083060e546 100644 --- a/pkgs/os-specific/darwin/apple-sdk/default.nix +++ b/pkgs/os-specific/darwin/apple-sdk/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, xar, gzip, cpio, CF, pkgs }: +{ stdenv, fetchurl, xar, gzip, cpio, pkgs }: let # sadly needs to be exported because security_tool needs it @@ -34,7 +34,7 @@ let cd Library/Frameworks/QuartzCore.framework/Versions/A/Headers for file in CI*.h; do rm $file - ln -s ../Frameworks/CoreImage.framework/Versions/A/Headers/$file + ln -s ../Frameworks/CoreImage.framework/Headers/$file done ''; @@ -59,11 +59,14 @@ let local dest="$out/Library/Frameworks/$path" local name="$(basename "$path" .framework)" local current="$(readlink "/System/Library/Frameworks/$path/Versions/Current")" + if [ -z "$current" ]; then + current=A + fi mkdir -p "$dest" pushd "$dest" >/dev/null - ln -s "${sdk}/Library/Frameworks/$path/Versions/$current/Headers" + cp -R "${sdk}/Library/Frameworks/$path/Versions/$current/Headers" . ln -s -L "/System/Library/Frameworks/$path/Versions/$current/$name" ln -s -L "/System/Library/Frameworks/$path/Versions/$current/Resources" @@ -123,7 +126,7 @@ in rec { __propagatedImpureHostDeps = [ "/usr/lib/libXplugin.1.dylib" ]; propagatedBuildInputs = with frameworks; [ - OpenGL ApplicationServices Carbon IOKit CF CoreGraphics CoreServices CoreText + OpenGL ApplicationServices Carbon IOKit pkgs.darwin.CF CoreGraphics CoreServices CoreText ]; installPhase = '' @@ -148,27 +151,23 @@ in rec { }; overrides = super: { - CoreText = stdenv.lib.overrideDerivation super.CoreText (drv: { - propagatedNativeBuildInputs = drv.propagatedNativeBuildInputs ++ [ pkgs.darwin.cf-private ]; - }); - QuartzCore = stdenv.lib.overrideDerivation super.QuartzCore (drv: { installPhase = drv.installPhase + '' f="$out/Library/Frameworks/QuartzCore.framework/Headers/CoreImage.h" substituteInPlace "$f" \ --replace "QuartzCore/../Frameworks/CoreImage.framework/Headers" "CoreImage" - - # CoreImage.framework's location varies by OSX version - for linkedFile in "$out/Library/Frameworks/QuartzCore.framework/Frameworks/CoreImage.framework"/*; do - link=$(readlink "$linkedFile" | sed 's,//,/A/,') - rm "$linkedFile" - ln -s "$link" "$linkedFile" - done ''; }); + + Security = stdenv.lib.overrideDerivation super.Security (drv: { + setupHook = ./security-setup-hook.sh; + }); }; - bareFrameworks = stdenv.lib.mapAttrs framework (import ./frameworks.nix { inherit frameworks libs CF; }); + bareFrameworks = stdenv.lib.mapAttrs framework (import ./frameworks.nix { + inherit frameworks libs; + inherit (pkgs.darwin) CF cf-private libobjc; + }); frameworks = bareFrameworks // overrides bareFrameworks; diff --git a/pkgs/os-specific/darwin/apple-sdk/frameworks.nix b/pkgs/os-specific/darwin/apple-sdk/frameworks.nix index 3889ba211a46..750adfe3cbf4 100644 --- a/pkgs/os-specific/darwin/apple-sdk/frameworks.nix +++ b/pkgs/os-specific/darwin/apple-sdk/frameworks.nix @@ -2,7 +2,7 @@ # Epic weird knot-tying happening here. # TODO: clean up the process for generating this and include it -{ frameworks, libs, CF }: +{ frameworks, libs, CF, libobjc, cf-private }: with frameworks; with libs; { AGL = [ Carbon OpenGL ]; @@ -10,7 +10,7 @@ with frameworks; with libs; { AVKit = []; Accounts = []; AddressBook = [ Carbon CF ]; - AppKit = [ AudioToolbox QuartzCore ]; + AppKit = [ AudioToolbox Foundation QuartzCore ]; AppKitScripting = []; AppleScriptKit = []; AppleScriptObjC = []; @@ -21,7 +21,7 @@ with frameworks; with libs; { Automator = []; CFNetwork = [ CF ]; CalendarStore = []; - Cocoa = []; + Cocoa = [ AppKit ]; Collaboration = []; CoreAudio = [ CF IOKit ]; CoreAudioKit = [ AudioUnit ]; @@ -32,7 +32,7 @@ with frameworks; with libs; { CoreMIDIServer = []; CoreMedia = [ ApplicationServices AudioToolbox CoreAudio CF CoreGraphics CoreVideo ]; CoreMediaIO = [ CF CoreMedia ]; - CoreText = [ CF CoreGraphics ]; + CoreText = [ CF CoreGraphics cf-private ]; CoreVideo = [ ApplicationServices CF CoreGraphics IOSurface OpenGL ]; CoreWLAN = [ SecurityFoundation ]; DVComponentGlue = [ CoreServices QuickTime ]; @@ -46,7 +46,7 @@ with frameworks; with libs; { ExceptionHandling = []; FWAUserLib = []; ForceFeedback = [ CF IOKit ]; - Foundation = [ CF Security ApplicationServices AppKit SystemConfiguration ]; + Foundation = [ CF libobjc Security ApplicationServices SystemConfiguration ]; GLKit = [ CF ]; GLUT = [ GL OpenGL ]; GSS = []; @@ -108,7 +108,7 @@ with frameworks; with libs; { # Umbrellas Accelerate = [ CoreWLAN IOBluetooth ]; ApplicationServices = [ CF CoreServices CoreText ImageIO ]; - Carbon = [ ApplicationServices CF CoreServices IOKit Security QuartzCore ]; + Carbon = [ ApplicationServices CF CoreServices Foundation IOKit Security QuartzCore ]; CoreBluetooth = []; CoreServices = [ CFNetwork CoreAudio CoreData CF DiskArbitration Security NetFS OpenDirectory ServiceManagement ]; IOBluetooth = [ IOKit ]; diff --git a/pkgs/os-specific/darwin/apple-sdk/impure-deps.nix b/pkgs/os-specific/darwin/apple-sdk/impure-deps.nix index 13bc3fbb6909..94152d1628d8 100644 --- a/pkgs/os-specific/darwin/apple-sdk/impure-deps.nix +++ b/pkgs/os-specific/darwin/apple-sdk/impure-deps.nix @@ -4,6 +4,12 @@ rec { "/usr/lib/libsqlite3.dylib" "/usr/lib/libxml2.2.dylib" ]; + ForceFeedback = [ + "/System/Library/Frameworks/ForceFeedback.framework" + ]; + AGL = [ + "/System/Library/Frameworks/AGL.framework" + ]; IOKit = [ "/System/Library/Frameworks/IOKit.framework" ]; @@ -246,4 +252,7 @@ rec { SecurityFoundation = [ "/System/Library/Frameworks/SecurityFoundation.framework" ]; + Kernel = [ + "/System/Library/Frameworks/Kernel.framework" + ]; } diff --git a/pkgs/os-specific/darwin/apple-sdk/security-setup-hook.sh b/pkgs/os-specific/darwin/apple-sdk/security-setup-hook.sh new file mode 100644 index 000000000000..f31adaa0d744 --- /dev/null +++ b/pkgs/os-specific/darwin/apple-sdk/security-setup-hook.sh @@ -0,0 +1,10 @@ +noDeprecatedDeclarations() { + # Security.framework has about 2000 deprecated constants, all of which the user will be + # warned about at compilation time + flag="-Wno-deprecated-declarations" + if [[ "$NIX_CFLAGS_COMPILE" != *$flag* ]]; then + NIX_CFLAGS_COMPILE+=" $flag" + fi +} + +envHooks+=(noDeprecatedDeclarations) diff --git a/pkgs/os-specific/darwin/apple-source-releases/libdispatch/default.nix b/pkgs/os-specific/darwin/apple-source-releases/libdispatch/default.nix index 56c00557d43f..fe65e2907170 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/libdispatch/default.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/libdispatch/default.nix @@ -8,6 +8,6 @@ appleDerivation { cp -r dispatch/*.h $out/include/dispatch cp -r private/*.h $out/include/dispatch - cp -r os/object.h $out/include/os + cp -r os/object*.h $out/include/os ''; } diff --git a/pkgs/os-specific/darwin/apple-source-releases/libunwind/default.nix b/pkgs/os-specific/darwin/apple-source-releases/libunwind/default.nix index 32c8d6717f0b..81a45d99a86e 100644 --- a/pkgs/os-specific/darwin/apple-source-releases/libunwind/default.nix +++ b/pkgs/os-specific/darwin/apple-source-releases/libunwind/default.nix @@ -1,24 +1,11 @@ -{ stdenv, appleDerivation, dyld }: +{ stdenv, appleDerivation, dyld, osx_private_sdk }: appleDerivation { - phases = [ "unpackPhase" "buildPhase" "installPhase" ]; - - buildInputs = [ dyld ]; - - buildPhase = '' - # cd src - # cc -I$PWD/../include -c libuwind.cxx - # cc -I$PWD/../include -c Registers.s - # cc -I$PWD/../include -c unw_getcontext.s - # cc -I$PWD/../include -c UnwindLevel1.c - # cc -I$PWD/../include -c UnwindLevel1-gcc-ext.c - # cc -I$PWD/../include -c Unwind-sjlj.c - ''; + phases = [ "unpackPhase" "installPhase" ]; installPhase = '' - mkdir -p $out - - cp -r include $out + mkdir -p $out/lib + cp -R include $out/include ''; meta = with stdenv.lib; { diff --git a/pkgs/os-specific/darwin/cf-private/default.nix b/pkgs/os-specific/darwin/cf-private/default.nix index 8c91e7fb2973..48860504f73c 100644 --- a/pkgs/os-specific/darwin/cf-private/default.nix +++ b/pkgs/os-specific/darwin/cf-private/default.nix @@ -2,17 +2,31 @@ let headers = [ + "CFAvailability.h" "CFAttributedString.h" + "CFFileDescriptor.h" + "CFFileSecurity.h" "CFNotificationCenter.h" + "CFStringTokenizer.h" + "CFURLEnumerator.h" + "CFURL.h" "CoreFoundation.h" ]; in stdenv.mkDerivation { name = "${CF.name}-private"; - unpackPhase = ":"; - buildPhase = ":"; + phases = [ "installPhase" "fixupPhase" ]; installPhase = '' - mkdir -p $out/include/CoreFoundation - install -m 0644 ${osx_private_sdk}/PrivateSDK10.10.sparse.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/{${stdenv.lib.concatStringsSep "," headers}} $out/include/CoreFoundation + dest=$out/Library/Frameworks/CoreFoundation.framework/Headers + mkdir -p $dest + pushd $dest + for file in ${CF}/Library/Frameworks/CoreFoundation.framework/Headers/*; do + ln -s $file + done + popd + + install -m 0644 ${osx_private_sdk}/PrivateSDK10.10.sparse.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/{${stdenv.lib.concatStringsSep "," headers}} $dest ''; + + setupHook = ./setup-hook.sh; } diff --git a/pkgs/os-specific/darwin/cf-private/setup-hook.sh b/pkgs/os-specific/darwin/cf-private/setup-hook.sh new file mode 100644 index 000000000000..a83a1323bf83 --- /dev/null +++ b/pkgs/os-specific/darwin/cf-private/setup-hook.sh @@ -0,0 +1,12 @@ +prependSearchPath() { + NIX_CFLAGS_COMPILE="-F@out@/Library/Frameworks ${NIX_CFLAGS_COMPILE/"-F@out@/Library/Frameworks"/}" +} + +linkWithRealCF() { + # gross! many symbols (such as _OBJC_CLASS_$_NSArray) are defined in system CF, but not + # in the opensource release + # if the package needs private headers, we assume they also want to link with system CF + NIX_LDFLAGS+=" /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation" +} + +preConfigureHooks+=(prependSearchPath linkWithRealCF) diff --git a/pkgs/os-specific/darwin/derez/default.nix b/pkgs/os-specific/darwin/derez/default.nix deleted file mode 100644 index f64f05aadf09..000000000000 --- a/pkgs/os-specific/darwin/derez/default.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ stdenv }: - -# this tool only exists on darwin -assert stdenv.isDarwin; - -stdenv.mkDerivation { - name = "derez"; - - src = "/usr/bin/DeRez"; - - unpackPhase = "true"; - configurePhase = "true"; - buildPhase = "true"; - - installPhase = '' - mkdir -p "$out/bin" - ln -s $src "$out/bin" - ''; - - meta = with stdenv.lib; { - description = "Decompiles resources"; - homepage = "https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man1/DeRez.1.html"; - maintainers = [ maintainers.lnl7 ]; - platforms = platforms.darwin; - - longDescription = '' - The DeRez tool decompiles the resource fork of resourceFile according to the type declarations - supplied by the type declaration files. The resource description produced by this decompilation - contains the resource definitions (resource and data statements) associated with these type - declarations. If for some reason it cannot reproduce the appropriate resource statements, DeRez - generates hexadecimal data statements instead. - ''; - }; -} diff --git a/pkgs/os-specific/darwin/htop/default.nix b/pkgs/os-specific/darwin/htop/default.nix index 65e8b09db348..3f076b838d42 100644 --- a/pkgs/os-specific/darwin/htop/default.nix +++ b/pkgs/os-specific/darwin/htop/default.nix @@ -1,4 +1,4 @@ -{ fetchurl, stdenv, ncurses, autoconf, automake }: +{ fetchurl, stdenv, ncurses, autoconf, automake, IOKit }: stdenv.mkDerivation rec { name = "htop-0.8.2.2"; @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { sha256 = "0qxibadn2lfqn10a5jmkv8r5ljfs0vaaa4j6psd7ppxa2w6bx5li"; }; - buildInputs = [ autoconf automake ncurses ]; + buildInputs = [ autoconf automake ncurses IOKit ]; preConfigure = "./autogen.sh"; diff --git a/pkgs/os-specific/darwin/rez/default.nix b/pkgs/os-specific/darwin/rez/default.nix deleted file mode 100644 index 847dfc6e6f34..000000000000 --- a/pkgs/os-specific/darwin/rez/default.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ stdenv }: - -# this tool only exists on darwin -assert stdenv.isDarwin; - -stdenv.mkDerivation { - name = "rez"; - - src = "/usr/bin/Rez"; - - unpackPhase = "true"; - configurePhase = "true"; - buildPhase = "true"; - - installPhase = '' - mkdir -p "$out/bin" - ln -s $src "$out/bin" - ''; - - meta = with stdenv.lib; { - description = "Compiles resources"; - homepage = "https://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/man1/Rez.1.html"; - maintainers = [ maintainers.lnl7 ]; - platforms = platforms.darwin; - - longDescription = '' - The Rez tool compiles the resource fork of a file according to the textual description contained in - the resource description files. These resource description files must contain both the type - declarations and the resource definitions needed to compile the resources. This data can come - directly from the resource description files. - ''; - }; -} diff --git a/pkgs/os-specific/darwin/setfile/default.nix b/pkgs/os-specific/darwin/setfile/default.nix deleted file mode 100644 index 98dd6b3e2e72..000000000000 --- a/pkgs/os-specific/darwin/setfile/default.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ stdenv }: - -# this tool only exists on darwin -assert stdenv.isDarwin; - -stdenv.mkDerivation { - name = "setfile"; - - src = "/usr/bin/SetFile"; - - unpackPhase = "true"; - configurePhase = "true"; - buildPhase = "true"; - - installPhase = '' - mkdir -p "$out/bin" - ln -s $src "$out/bin" - ''; - - meta = with stdenv.lib; { - description = "Set attributes of files and directories"; - homepage = "http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/setfile.1.html"; - maintainers = with maintainers; [ lovek323 ]; - platforms = platforms.darwin; - - longDescription = '' - SetFile is a tool to set the file attributes on files in an HFS+ - directory. It attempts to be similar to the setfile command in MPW. It can - apply rules to more than one file with the options apply- ing to all files - listed. - ''; - }; -} diff --git a/pkgs/os-specific/darwin/stubs/default.nix b/pkgs/os-specific/darwin/stubs/default.nix new file mode 100644 index 000000000000..ec8f948a00b1 --- /dev/null +++ b/pkgs/os-specific/darwin/stubs/default.nix @@ -0,0 +1,15 @@ +{ stdenv, writeScriptBin }: + +let fake = name: stdenv.lib.overrideDerivation (writeScriptBin name '' + #!${stdenv.shell} + echo >&2 "Faking call to ${name} with arguments:" + echo >&2 "$@" +'') (drv: { + name = "${name}-stub"; +}); in + +{ + setfile = fake "SetFile"; + rez = fake "Rez"; + derez = fake "DeRez"; +} diff --git a/pkgs/os-specific/linux/busybox/default.nix b/pkgs/os-specific/linux/busybox/default.nix index 2a96f4b46b39..fa6591701a69 100644 --- a/pkgs/os-specific/linux/busybox/default.nix +++ b/pkgs/os-specific/linux/busybox/default.nix @@ -46,6 +46,8 @@ stdenv.mkDerivation rec { CONFIG_PREFIX "$out" CONFIG_INSTALL_NO_USR y + CONFIG_LFS y + ${stdenv.lib.optionalString enableStatic '' CONFIG_STATIC y ''} diff --git a/pkgs/os-specific/linux/iputils/default.nix b/pkgs/os-specific/linux/iputils/default.nix index 5ca3a6a0a5c7..9bce875570ef 100644 --- a/pkgs/os-specific/linux/iputils/default.nix +++ b/pkgs/os-specific/linux/iputils/default.nix @@ -24,9 +24,6 @@ stdenv.mkDerivation rec { buildFlags = "man all ninfod"; - # Stdenv doesn't handle symlinks well for that - dontGzipMan = true; - installPhase = '' mkdir -p $out/sbin $out/bin diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index df5fe2f67637..105d7e7f9f38 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -478,15 +478,19 @@ with stdenv.lib; ''} ZRAM m - # Enable firmware loading via udev (legacy). - ${optionalString (versionAtLeast version "3.17") '' - FW_LOADER_USER_HELPER_FALLBACK y - ''} - # Enable PCIe and USB for the brcmfmac driver BRCMFMAC_USB? y BRCMFMAC_PCIE? y + # Support x2APIC (which requires IRQ remapping). + ${optionalString (stdenv.system == "x86_64-linux") '' + X86_X2APIC y + IRQ_REMAP y + ''} + + # Disable the firmware helper fallback, udev doesn't implement it any more + FW_LOADER_USER_HELPER_FALLBACK? n + ${kernelPlatform.kernelExtraConfig or ""} ${extraConfig} '' diff --git a/pkgs/os-specific/linux/kernel/linux-3.10.nix b/pkgs/os-specific/linux/kernel/linux-3.10.nix index 2b7a38edabab..a231b551dc06 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.10.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.10.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "3.10.90"; + version = "3.10.92"; extraMeta.branch = "3.10"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "1qsyn3vsha8wsspc69y5w212qh77pam9mliv0f5xrw95yka2arss"; + sha256 = "0z0jdix1mfpnnc8cxw7rzpnhxdayckpnrasvxi1qf0dwhcqgk92d"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/kernel/linux-3.14.nix b/pkgs/os-specific/linux/kernel/linux-3.14.nix index 5ea214c9eb35..afb4437459b7 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.14.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.14.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "3.14.53"; + version = "3.14.56"; # Remember to update grsecurity! extraMeta.branch = "3.14"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "0zqaqa7gs895p521c82jggak9zlmiwmkfarh2ykvh423sxjbvs5i"; + sha256 = "1ggvjrz51nfhj7amn3v2nd0b0x8dnz68k9cldzl729cqp9gsc3hf"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/kernel/linux-3.18.nix b/pkgs/os-specific/linux/kernel/linux-3.18.nix index 6ae9814c55d4..ffa220387b10 100644 --- a/pkgs/os-specific/linux/kernel/linux-3.18.nix +++ b/pkgs/os-specific/linux/kernel/linux-3.18.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "3.18.22"; + version = "3.18.23"; extraMeta.branch = "3.18"; src = fetchurl { url = "mirror://kernel/linux/kernel/v3.x/linux-${version}.tar.xz"; - sha256 = "0b6f0akcsjbybwf3r1b414k539cwnf5phz3hb2zkda9ds13bpp0w"; + sha256 = "1jj3afa9p306j7gv13wsjwy322sdaz6jflhvzp6gwjfylncwyskj"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/kernel/linux-4.1.nix b/pkgs/os-specific/linux/kernel/linux-4.1.nix index 8a1f27afb8aa..d17dcc5119ef 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.1.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.1.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.1.10"; + version = "4.1.12"; extraMeta.branch = "4.1"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "1gmsrz2ldpyn46fbfagnbs8ncsx6mq9wwr7avi1c995gk70ff92p"; + sha256 = "0q9zw731mn043fksl0cmbg8dr16f065378ys5x1h955rn93b4jab"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/kernel/linux-4.2.nix b/pkgs/os-specific/linux/kernel/linux-4.2.nix index 24df9a7eb92b..d4c42ba2842a 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.2.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.2.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.2.3"; + version = "4.2.5"; # Remember to update grsecurity! extraMeta.branch = "4.2"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "4ca6c783a0bc87573f5c95e49306cbe5f83dc1cd5afb44ecc9a1917f39e5ad66"; + sha256 = "11riafz0nljlgx8fpbfwlb5kb07naca2p07vk2wrcwyzil1vnhvw"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix index 4cc19cd411b4..bbfed5d29e67 100644 --- a/pkgs/os-specific/linux/kernel/linux-testing.nix +++ b/pkgs/os-specific/linux/kernel/linux-testing.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.3-rc5"; - modDirVersion = "4.3.0-rc5"; + version = "4.3-rc7"; + modDirVersion = "4.3.0-rc7"; extraMeta.branch = "4.3"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz"; - sha256 = "1v4spcg3x2953mc5kw3a0l3ym0783s2px98vhpmy2sfc07hdwlbr"; + sha256 = "01ip9w3yv8x8i0mbz0gi64rd4jjc8vcalgrx656kq33kvab7s1ys"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/kernel/manual-config.nix b/pkgs/os-specific/linux/kernel/manual-config.nix index 49880e0ecdd0..4a826ff7ae3d 100644 --- a/pkgs/os-specific/linux/kernel/manual-config.nix +++ b/pkgs/os-specific/linux/kernel/manual-config.nix @@ -76,7 +76,7 @@ let (isModular || (config.isDisabled "FIRMWARE_IN_KERNEL")); in (optionalAttrs isModular { outputs = [ "out" "dev" ]; }) // { passthru = { - inherit version modDirVersion config kernelPatches; + inherit version modDirVersion config kernelPatches configfile; }; inherit src; diff --git a/pkgs/os-specific/linux/nvidia-x11/default.nix b/pkgs/os-specific/linux/nvidia-x11/default.nix index 4390d5bdf3cd..d0ef19503c37 100644 --- a/pkgs/os-specific/linux/nvidia-x11/default.nix +++ b/pkgs/os-specific/linux/nvidia-x11/default.nix @@ -12,7 +12,7 @@ assert (!libsOnly) -> kernel != null; let - versionNumber = "352.41"; + versionNumber = "352.55"; # Policy: use the highest stable version as the default (on our master). inherit (stdenv.lib) makeLibraryPath; @@ -28,12 +28,12 @@ stdenv.mkDerivation { if stdenv.system == "i686-linux" then fetchurl { url = "http://us.download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}.run"; - sha256 = "1qzn6dhkrpkx015f7y9adafn7fmz7zbxbczzf9930li8pgvmmz5k"; + sha256 = "0hfqklyij4hnsp3w89i8ai8rfpigc71sb1l70qplkq4511xj6bqx"; } else if stdenv.system == "x86_64-linux" then fetchurl { url = "http://us.download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-no-compat32.run"; - sha256 = "1k9hmmn5x9snzyggx23km64kjdqjh2kva090ha6mlayyyxrclz56"; + sha256 = "00bawsxzwwaasfbmzkw301fsm2g1k0p3rfxyx6qpj0pgac3lrhhj"; } else throw "nvidia-x11 does not support platform ${stdenv.system}"; diff --git a/pkgs/os-specific/linux/open-iscsi/default.nix b/pkgs/os-specific/linux/open-iscsi/default.nix index c4e39e45cade..e6682aec6c64 100644 --- a/pkgs/os-specific/linux/open-iscsi/default.nix +++ b/pkgs/os-specific/linux/open-iscsi/default.nix @@ -1,8 +1,11 @@ -{ stdenv, fetchurl }: +{ stdenv, fetchurl, nukeReferences }: let pname = "open-iscsi-2.0-873"; in stdenv.mkDerivation { name = "${pname}"; + outputs = [ "out" "iscsistart" ]; + + buildInputs = [ nukeReferences ]; src = fetchurl { url = "http://www.open-iscsi.org/bits/${pname}.tar.gz"; @@ -15,6 +18,12 @@ in stdenv.mkDerivation { sed -i 's|/usr/|/|' Makefile ''; + postInstall = '' + mkdir -pv $iscsistart/bin/ + cp -v usr/iscsistart $iscsistart/bin/ + nuke-refs $iscsistart/bin/iscsistart + ''; + meta = { description = "A high performance, transport independent, multi-platform implementation of RFC3720"; license = stdenv.lib.licenses.gpl2Plus; diff --git a/pkgs/os-specific/linux/syslinux/default.nix b/pkgs/os-specific/linux/syslinux/default.nix index 150b2b447298..0210b23d8b58 100644 --- a/pkgs/os-specific/linux/syslinux/default.nix +++ b/pkgs/os-specific/linux/syslinux/default.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { buildInputs = [ nasm perl libuuid ]; - enableParallelBuilding = true; + enableParallelBuilding = false; # Fails very rarely with 'No rule to make target: ...' preBuild = '' substituteInPlace Makefile --replace /bin/pwd $(type -P pwd) diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index 4c9e0475b94e..d89b5463cd28 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -41,7 +41,6 @@ stdenv.mkDerivation rec { "--with-dbuspolicydir=$(out)/etc/dbus-1/system.d" "--with-dbussystemservicedir=$(out)/share/dbus-1/system-services" "--with-dbussessionservicedir=$(out)/share/dbus-1/services" - "--with-firmware-path=/root/test-firmware:/run/current-system/firmware" "--with-tty-gid=3" # tty in NixOS has gid 3 "--enable-compat-libs" # get rid of this eventually "--disable-tests" diff --git a/pkgs/servers/amqp/rabbitmq-server/default.nix b/pkgs/servers/amqp/rabbitmq-server/default.nix index 3e8ec09a0b05..5bf3f2e693e6 100644 --- a/pkgs/servers/amqp/rabbitmq-server/default.nix +++ b/pkgs/servers/amqp/rabbitmq-server/default.nix @@ -1,5 +1,8 @@ { stdenv, fetchurl, erlang, python, libxml2, libxslt, xmlto -, docbook_xml_dtd_45, docbook_xsl, zip, unzip }: +, docbook_xml_dtd_45, docbook_xsl, zip, unzip + +, AppKit, Carbon, Cocoa +}: stdenv.mkDerivation rec { name = "rabbitmq-server-${version}"; @@ -12,7 +15,8 @@ stdenv.mkDerivation rec { }; buildInputs = - [ erlang python libxml2 libxslt xmlto docbook_xml_dtd_45 docbook_xsl zip unzip ]; + [ erlang python libxml2 libxslt xmlto docbook_xml_dtd_45 docbook_xsl zip unzip ] + ++ stdenv.lib.optionals stdenv.isDarwin [ AppKit Carbon Cocoa ]; preBuild = '' diff --git a/pkgs/servers/http/apache-httpd/2.4.nix b/pkgs/servers/http/apache-httpd/2.4.nix index 0b1ed992439c..aa8dfdd45f51 100644 --- a/pkgs/servers/http/apache-httpd/2.4.nix +++ b/pkgs/servers/http/apache-httpd/2.4.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, perl, zlib, apr, aprutil, pcre +{ stdenv, fetchurl, perl, zlib, apr, aprutil, pcre, libiconv , proxySupport ? true , sslSupport ? true, openssl , ldapSupport ? true, openldap @@ -24,7 +24,8 @@ stdenv.mkDerivation rec { buildInputs = [perl] ++ optional ldapSupport openldap ++ # there is no --with-ldap flag - optional libxml2Support libxml2; + optional libxml2Support libxml2 ++ + optional stdenv.isDarwin libiconv; # Required for ‘pthread_cancel’. NIX_LDFLAGS = stdenv.lib.optionalString (!stdenv.isDarwin) "-lgcc_s"; diff --git a/pkgs/servers/http/tomcat/axis2/default.nix b/pkgs/servers/http/tomcat/axis2/default.nix index cf64ba2d3c69..9aacc6aa85ad 100644 --- a/pkgs/servers/http/tomcat/axis2/default.nix +++ b/pkgs/servers/http/tomcat/axis2/default.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl, apacheAnt, jdk, unzip}: stdenv.mkDerivation { - name = "axis2-1.6.2"; + name = "axis2-1.6.3"; src = fetchurl { - url = http://apache.proserve.nl/axis/axis2/java/core/1.6.2/axis2-1.6.2-bin.zip; - sha256 = "02i6fv11ksd5ql81i501bcb11ib5gyhq3zxwrz5jm4ic80r097fp"; + url = http://apache.proserve.nl/axis/axis2/java/core/1.6.3/axis2-1.6.3-bin.zip; + sha256 = "0a49m7g1gxb904d0az2kbkab8rg02wm8nzbyipiad9k028masr6r"; }; buildInputs = [ unzip apacheAnt jdk ]; diff --git a/pkgs/servers/mail/mailman/default.nix b/pkgs/servers/mail/mailman/default.nix index e4fffecb9597..13455cb3f537 100644 --- a/pkgs/servers/mail/mailman/default.nix +++ b/pkgs/servers/mail/mailman/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, python, dnspython }: +{ stdenv, fetchurl, python, pythonPackages }: stdenv.mkDerivation rec { name = "mailman-2.1.18"; @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { sha256 = "0jc360crakvpz71msl0h11zv3849fqzlj9jfh1g7x3j4459n07fw"; }; - buildInputs = [ python dnspython ]; + buildInputs = [ python pythonPackages.dns ]; patches = [ ./fix-var-prefix.patch ]; diff --git a/pkgs/servers/plex/default.nix b/pkgs/servers/plex/default.nix index 7194e0994aad..a94330243978 100644 --- a/pkgs/servers/plex/default.nix +++ b/pkgs/servers/plex/default.nix @@ -4,12 +4,12 @@ stdenv.mkDerivation rec { name = "plex-${version}"; - version = "0.9.12.11.1406"; - vsnHash = "8403350"; + version = "0.9.12.13.1464"; + vsnHash = "4ccd2ca"; src = fetchurl { url = "https://downloads.plex.tv/plex-media-server/${version}-${vsnHash}/plexmediaserver-${version}-${vsnHash}.x86_64.rpm"; - sha256 = "295174b3617d699f11ecc22bc603a579e2291fe6ba55a536711acafd64455390"; + sha256 = "1gzq3ik3b23pl6i85d4abh3aqq710z5x258mjm7xai8rpyhvdp26"; }; buildInputs = [ rpmextract glibc ]; diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix index ebb37aeddc69..c758ef882696 100644 --- a/pkgs/servers/sql/mariadb/default.nix +++ b/pkgs/servers/sql/mariadb/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, cmake, ncurses, zlib, xz, lzo, lz4, bzip2, snappy , openssl, pcre, boost, judy, bison, libxml2 , libaio, libevent, groff, jemalloc, cracklib, systemd, numactl, perl -, fixDarwinDylibNames +, fixDarwinDylibNames, cctools }: with stdenv.lib; @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { (if stdenv.is64bit then snappy else null) pcre libxml2 boost judy bison libevent cracklib ] ++ stdenv.lib.optionals stdenv.isLinux [ jemalloc libaio systemd numactl ] - ++ stdenv.lib.optionals stdenv.isDarwin [ perl fixDarwinDylibNames ]; + ++ stdenv.lib.optionals stdenv.isDarwin [ perl fixDarwinDylibNames cctools ]; patches = stdenv.lib.optional stdenv.isDarwin ./my_context_asm.patch; @@ -60,6 +60,7 @@ stdenv.mkDerivation rec { ] ++ stdenv.lib.optionals stdenv.isDarwin [ "-DWITHOUT_OQGRAPH_STORAGE_ENGINE=1" "-DWITHOUT_TOKUDB=1" + "-DCURSES_LIBRARY=${ncurses}/lib/libncurses.dylib" ]; # fails to find lex_token.h sometimes @@ -100,6 +101,15 @@ stdenv.mkDerivation rec { mv $out/lib $lib mv $out/include $lib + '' + + stdenv.lib.optionalString stdenv.isDarwin '' + # Fix library rpaths + # TODO: put this in the stdenv to prepare for wide usage of multi-output derivations + for file in $(grep -rl $out/lib $lib); do + install_name_tool -delete_rpath $out/lib -add_rpath $lib $file + done + + '' + '' # Fix the mysql_config sed -i $out/bin/mysql_config \ -e 's,-lz,-L${zlib}/lib -lz,g' \ diff --git a/pkgs/servers/sql/postgresql/default.nix b/pkgs/servers/sql/postgresql/default.nix index cf4519a82327..7a0ecdfd9528 100644 --- a/pkgs/servers/sql/postgresql/default.nix +++ b/pkgs/servers/sql/postgresql/default.nix @@ -59,33 +59,33 @@ let in { postgresql90 = common { - version = "9.0.22"; + version = "9.0.23"; psqlSchema = "9.0"; - sha256 = "19gq6axjhvlr5zlrzwnll1fbrvai4xh0nb1jki6gmmschl6v5m4l"; + sha256 = "1pnpni95r0ry112z6ycrqk5m6iw0vd4npg789czrl4qlr0cvxg1x"; }; postgresql91 = common { - version = "9.1.18"; + version = "9.1.19"; psqlSchema = "9.1"; - sha256 = "1a44hmcvfaa8j169ladsibmvjakw6maaxqkzz1ab8139cqkda9i7"; + sha256 = "1ihf9h353agsm5p2dr717dvraxvsw6j7chbn3qxdcz8la5s0bmfb"; }; postgresql92 = common { - version = "9.2.13"; + version = "9.2.14"; psqlSchema = "9.2"; - sha256 = "0i3avdr8mnvn6ldkx0hc4jmclhisb2338hzs0j2m03wck8hddjsx"; + sha256 = "0bi9zfsfhj84mnaa41ar63j9qgzsnac1wwgjhy2c6j0a68zhphjl"; }; postgresql93 = common { - version = "9.3.9"; + version = "9.3.10"; psqlSchema = "9.3"; - sha256 = "0j85j69rf54cwz5yhrhk4ca22b82990j5sqb8cr1fl9843nd0fzp"; + sha256 = "0c8mailildnqnndwpmnqf8ymxmk1qf5w5dq02hjqmydgfq7lyi75"; }; postgresql94 = common { - version = "9.4.4"; + version = "9.4.5"; psqlSchema = "9.4"; - sha256 = "04q07g209y99xzjh88y52qpvz225rxwifv8nzp3bxzfni2bdk3jk"; + sha256 = "0faav7k3nlhh1z7j1r3adrhx1fpsji3jixmm2abjm93fdg350z5q"; }; } diff --git a/pkgs/servers/tvheadend/default.nix b/pkgs/servers/tvheadend/default.nix index 79bade94569f..569eecd4f6e9 100644 --- a/pkgs/servers/tvheadend/default.nix +++ b/pkgs/servers/tvheadend/default.nix @@ -1,9 +1,9 @@ -{avahi, dbus, fetchurl, git, gzip, libav, libiconv, openssl, pkgconfig, python +{avahi, dbus, fetchurl, git, gnutar, gzip, libav, libiconv, openssl, pkgconfig, python , stdenv, which, zlib}: with stdenv.lib; -let version = "4.0.6"; +let version = "4.0.7"; pkgName = "tvheadend"; in @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "https://github.com/tvheadend/tvheadend/archive/v${version}.tar.gz"; - sha256 = "05jidg7jma3mban40iy1bg3sirw6crscxkd8b70if4kjlf86i31l"; + sha256 = "0vhj4vkgl4brjw1pdc80g1wbjn6hyy57jrxkwilnivqfd1mwx3aw"; }; enableParallelBuilding = true; @@ -22,10 +22,13 @@ stdenv.mkDerivation rec { # cannot happen during build. configureFlags = [ "--disable-dvbscan" ]; - buildInputs = [ avahi dbus git gzip libav libiconv openssl pkgconfig python + buildInputs = [ avahi dbus git gnutar gzip libav libiconv openssl pkgconfig python which zlib ]; - preConfigure = "patchShebangs ./configure"; + preConfigure = '' + patchShebangs ./configure + substituteInPlace src/config.c --replace /usr/bin/tar ${gnutar}/bin/tar + ''; meta = { description = "TV steaming server"; diff --git a/pkgs/servers/x11/quartz-wm/default.nix b/pkgs/servers/x11/quartz-wm/default.nix index de30fc2a5840..45e4df2bb8b9 100644 --- a/pkgs/servers/x11/quartz-wm/default.nix +++ b/pkgs/servers/x11/quartz-wm/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, fetchurl, xorg, pixman, pkgconfig }: +{ stdenv, lib, fetchurl, xorg, pixman, pkgconfig, AppKit, Xplugin }: let version = "1.3.1"; in stdenv.mkDerivation { @@ -19,6 +19,7 @@ in stdenv.mkDerivation { xorg.libXext pixman pkgconfig + AppKit Xplugin ]; NIX_CFLAGS_COMPILE = "-F/System/Library/Frameworks -I/usr/include"; NIX_LDFLAGS = stdenv.lib.optional stdenv.isDarwin diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix index 801b37ea73ad..1339e51eb232 100644 --- a/pkgs/servers/x11/xorg/overrides.nix +++ b/pkgs/servers/x11/xorg/overrides.nix @@ -94,7 +94,10 @@ in }; libAppleWM = attrs: attrs // { - propagatedBuildInputs = [ args.apple_sdk.frameworks.ApplicationServices ]; + buildInputs = attrs.buildInputs ++ [ args.apple_sdk.frameworks.ApplicationServices ]; + preConfigure = '' + substituteInPlace src/Makefile.in --replace -F/System -F${args.apple_sdk.frameworks.ApplicationServices} + ''; }; libXfont = attrs: attrs // { @@ -261,7 +264,8 @@ in buildInputs = attrs.buildInputs ++ [args.intltool]; - #TODO: resurrect patches for US_intl or Esperanto? + #TODO: resurrect patches for US_intl? + patches = [ ./xkeyboard-config-eo.patch ]; # 1: compatibility for X11/xkb location # 2: I think pkgconfig/ is supposed to be in /lib/ @@ -326,6 +330,9 @@ in } else { buildInputs = commonBuildInputs ++ [ args.bootstrap_cmds args.automake args.autoconf + args.apple_sdk.libs.Xplugin + args.apple_sdk.frameworks.Carbon + args.apple_sdk.frameworks.Cocoa ]; propagatedBuildInputs = commonPropagatedBuildInputs ++ [ libAppleWM applewmproto @@ -359,6 +366,7 @@ in preConfigure = '' ensureDir $out/Applications export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -Wno-error" + substituteInPlace hw/xquartz/pbproxy/Makefile.in --replace -F/System -F${args.apple_sdk.frameworks.ApplicationServices} ''; postInstall = '' rm -fr $out/share/X11/xkb/compiled diff --git a/pkgs/servers/x11/xorg/xkeyboard-config-eo.patch b/pkgs/servers/x11/xorg/xkeyboard-config-eo.patch new file mode 100644 index 000000000000..360768774db9 --- /dev/null +++ b/pkgs/servers/x11/xorg/xkeyboard-config-eo.patch @@ -0,0 +1,71 @@ +diff --git a/rules/base.xml.in b/rules/base.xml.in +index ec321f8..e9c3546 100644 +--- a/rules/base.xml.in ++++ b/rules/base.xml.in +@@ -1786,6 +1786,13 @@ + + + ++ eo ++ <_shortDescription>Esp ++ <_description>Esperanto ++ ++ ++ ++ + ir + <_shortDescription>Irn + <_description>Iran +diff --git a/symbols/Makefile.am b/symbols/Makefile.am +index 97c816d..d7e3a4e 100644 +--- a/symbols/Makefile.am ++++ b/symbols/Makefile.am +@@ -10,7 +10,7 @@ bt by braille \ + ca cd \ + ch cn cz \ + de dk \ +-ee es et epo eu \ ++ee eo es et epo eu \ + fi fo fr \ + gb ge gh gn \ + gr hr hu \ +diff --git a/symbols/Makefile.in b/symbols/Makefile.in +index b5be077..5cddcc7 100644 +--- a/symbols/Makefile.in ++++ b/symbols/Makefile.in +@@ -222,7 +222,7 @@ bt by braille \ + ca cd \ + ch cn cz \ + de dk \ +-ee es et epo eu \ ++ee eo es et epo eu \ + fi fo fr \ + gb ge gh gn \ + gr hr hu \ +diff --git a/symbols/eo b/symbols/eo +new file mode 100644 +index 0000000..d6358c9 +--- /dev/null ++++ b/symbols/eo +@@ -0,0 +1,21 @@ ++// $XFree86$ ++ ++partial alphanumeric_keys ++xkb_symbols "basic" { ++ ++ // Describes the differences between a very simple en_US ++ // keyboard and a simple Esperanto keyboard ++ // Press AltGr or Windows Menu key together with C, H, J, S, U ++ // to get accented letters. ++ // 2001 by Radovan Garabik ++ ++ key.type = "FOUR_LEVEL"; ++ ++ key { [w,W, ubreve,Ubreve ] }; ++ key { [u,U, ubreve, Ubreve ] }; ++ key { [s,S, scircumflex, Scircumflex ] }; ++ key { [g,G, gcircumflex,Gcircumflex ] }; ++ key { [h,H, hcircumflex,Hcircumflex ] }; ++ key { [j,J, jcircumflex,Jcircumflex ] }; ++ key { [c,C, ccircumflex,Ccircumflex ] }; ++}; diff --git a/pkgs/servers/x11/xquartz/default.nix b/pkgs/servers/x11/xquartz/default.nix index 178e7a59d831..920b66147f26 100644 --- a/pkgs/servers/x11/xquartz/default.nix +++ b/pkgs/servers/x11/xquartz/default.nix @@ -146,6 +146,13 @@ in stdenv.mkDerivation { --replace "@STARTX@" "$defaultStartX" \ --replace "@FONTCONFIG_FILE@" "$fontsConfPath" + mkdir -p $out/lib/X11/xinit/privileged_startx.d + cp ${./privileged} $out/lib/X11/xinit/privileged_startx.d/privileged + substituteInPlace $out/lib/X11/xinit/privileged_startx.d/privileged \ + --replace "@PATH@" "$out/bin:${env}" \ + --replace "@FONTCONFIG_FILE@" "$fontsConfPath" \ + --replace "@FONT_CACHE@" "$out/bin/font_cache" + cp ${./font_cache} $out/bin/font_cache substituteInPlace $out/bin/font_cache \ --replace "@PATH@" "$out/bin:${env}" \ diff --git a/pkgs/stdenv/linux/make-bootstrap-tools.nix b/pkgs/stdenv/linux/make-bootstrap-tools.nix index a995606886f3..e31fed39843d 100644 --- a/pkgs/stdenv/linux/make-bootstrap-tools.nix +++ b/pkgs/stdenv/linux/make-bootstrap-tools.nix @@ -34,7 +34,7 @@ rec { build = stdenv.mkDerivation { - name = "build"; + name = "stdenv-bootstrap-tools"; buildInputs = [nukeReferences cpio]; @@ -154,9 +154,19 @@ rec { allowedReferences = []; }; + dist = stdenv.mkDerivation { + name = "stdenv-bootstrap-tools"; + + buildCommand = '' + mkdir -p $out/nix-support + echo "file tarball ${build}/on-server/bootstrap-tools.tar.xz" >> $out/nix-support/hydra-build-products + echo "file busybox ${build}/on-server/busybox" >> $out/nix-support/hydra-build-products + ''; + }; + test = ((import ./default.nix) { inherit system; - + customBootstrapFiles = { busybox = "${build}/on-server/busybox"; bootstrapTools = "${build}/on-server/bootstrap-tools.tar.xz"; diff --git a/pkgs/stdenv/pure-darwin/default.nix b/pkgs/stdenv/pure-darwin/default.nix index 1d6ee4e80062..d13dc98cd742 100644 --- a/pkgs/stdenv/pure-darwin/default.nix +++ b/pkgs/stdenv/pure-darwin/default.nix @@ -18,19 +18,19 @@ let "/usr/lib/system" ]; - fetch = { file, sha256 }: import { - url = "https://dl.dropboxusercontent.com/u/2857322/${file}"; - inherit sha256 system; - executable = true; + fetch = { file, sha256, executable ? true }: import { + url = "http://tarballs.nixos.org/stdenv-darwin/x86_64/4f07c88d467216d9692fefc951deb5cd3c4cc722/${file}"; + inherit sha256 system executable; }; bootstrapFiles = { - sh = fetch { file = "sh"; sha256 = "1qakpg37vl61jnkplz13m3g1csqr85cg8ybp6jwiv6apmg26isnm"; }; - bzip2 = fetch { file = "bzip2"; sha256 = "1gxa67255q9v00j1vn1mzyrnbwys2g1102cx02vpcyvvrl4vqxr0"; }; - mkdir = fetch { file = "mkdir"; sha256 = "1yfl8w65ksji7fggrbvqxw8lp0gm02qilk11n9axj2jxay53ngvg"; }; - cpio = fetch { file = "cpio"; sha256 = "0nssyg19smgcblwq1mfcw4djbd85md84d2f093qcqkbigdjg484b"; }; + sh = fetch { file = "sh"; sha256 = "1siix3wakzil31r2cydmh3v8a1nyq4605dwiabqc5lx73j4xzrzi"; }; + bzip2 = fetch { file = "bzip2"; sha256 = "0zvqm977k11b5cl4ixxb5h0ds24g6z0f8m28z4pqxzpa353lqbla"; }; + mkdir = fetch { file = "mkdir"; sha256 = "13frk8lsfgzlb65p9l26cvxf06aag43yjk7vg9msn7ix3v8cmrg1"; }; + cpio = fetch { file = "cpio"; sha256 = "0ms5i9m1vdksj575sf1djwgm7zhnvfrrb44dxnfh9avr793rc2w4"; }; }; - tarball = fetch { file = "bootstrap-tools.9.cpio.bz2"; sha256 = "1xim0wm4ld45ysdmgpsa6b1f6srdnfj054ilv86k0pa5plvcmsf4"; }; + + tarball = fetch { file = "bootstrap-tools.cpio.bz2"; sha256 = "1lz1b0grl4642h6n635xvi6imf0yyy1zyzdr9ing5aphzz0z5iic"; executable = false; }; in rec { allPackages = import ../../top-level/all-packages.nix; diff --git a/pkgs/stdenv/pure-darwin/make-bootstrap-tools.nix b/pkgs/stdenv/pure-darwin/make-bootstrap-tools.nix index 433638dd1bde..932929a0efcd 100644 --- a/pkgs/stdenv/pure-darwin/make-bootstrap-tools.nix +++ b/pkgs/stdenv/pure-darwin/make-bootstrap-tools.nix @@ -1,6 +1,4 @@ -{system ? builtins.currentSystem}: - -with import ../../top-level/all-packages.nix {inherit system;}; +with import ../../top-level/all-packages.nix { system = "x86_64-darwin"; }; rec { # We want coreutils without ACL support. @@ -9,7 +7,7 @@ rec { }); build = stdenv.mkDerivation { - name = "build"; + name = "stdenv-bootstrap-tools"; buildInputs = [nukeReferences cpio]; @@ -62,9 +60,10 @@ rec { cp -d ${openssl}/lib/*.dylib $out/lib cp -d ${gnugrep.pcre}/lib/libpcre*.dylib $out/lib - cp -d ${libiconv}/lib/libiconv*.dylib $out/lib + cp -d ${libiconv}/lib/lib*.dylib $out/lib cp -d ${gettext}/lib/libintl*.dylib $out/lib chmod +x $out/lib/libintl*.dylib + cp -d ${ncurses}/lib/libncurses*.dylib $out/lib # Copy what we need of clang cp -d ${llvmPackages.clang-unwrapped}/bin/clang $out/bin @@ -117,7 +116,7 @@ rec { fi done - for i in $out/bin/* $out/lib/*.dylib $out/lib/clang/3.5.0/lib/darwin/*.dylib $out/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation; do + for i in $out/bin/* $out/lib/*.dylib $out/lib/clang/*/lib/darwin/*.dylib $out/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation; do if test -x $i -a ! -L $i; then echo "Adding rpath to $i" rpathify $i @@ -125,48 +124,45 @@ rec { done nuke-refs $out/lib/* - nuke-refs $out/lib/clang/3.5.0/lib/darwin/* + nuke-refs $out/lib/clang/*/lib/darwin/* nuke-refs $out/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation + set -x mkdir $out/.pack mv $out/* $out/.pack mv $out/.pack $out/pack mkdir $out/on-server - (cd $out/pack && (find | cpio -o -H newc)) | bzip2 > $out/on-server/bootstrap-tools.cpio.bz2 + cp ${stdenv.shell} $out/on-server/sh + cp ${cpio}/bin/cpio $out/on-server + cp ${coreutils_}/bin/mkdir $out/on-server + cp ${bzip2}/bin/bzip2 $out/on-server - mkdir $out/in-nixpkgs - cp ${stdenv.shell} $out/in-nixpkgs/sh - cp ${cpio}/bin/cpio $out/in-nixpkgs - cp ${coreutils_}/bin/mkdir $out/in-nixpkgs - cp ${bzip2}/bin/bzip2 $out/in-nixpkgs + chmod u+w $out/on-server/* + strip $out/on-server/* + nuke-refs $out/on-server/* - chmod u+w $out/in-nixpkgs/* - strip $out/in-nixpkgs/* - nuke-refs $out/in-nixpkgs/* - - for i in $out/in-nixpkgs/*; do + for i in $out/on-server/*; do fix_dyld $i done + + (cd $out/pack && (find | cpio -o -H newc)) | bzip2 > $out/on-server/bootstrap-tools.cpio.bz2 ''; allowedReferences = []; }; - host = stdenv.mkDerivation { - name = "host"; + dist = stdenv.mkDerivation { + name = "stdenv-bootstrap-tools"; buildCommand = '' mkdir -p $out/nix-support - - for i in "${build}/on-server/"*; do - echo "file binary-dist $i" >> $out/nix-support/hydra-build-products - done - - echo "darwin-bootstrap-tools-$(date +%Y.%m.%d)" >> $out/nix-support/hydra-release-name + echo "file tarball ${build}/on-server/bootstrap-tools.cpio.bz2" >> $out/nix-support/hydra-build-products + echo "file sh ${build}/on-server/sh" >> $out/nix-support/hydra-build-products + echo "file cpio ${build}/on-server/cpio" >> $out/nix-support/hydra-build-products + echo "file mkdir ${build}/on-server/mkdir" >> $out/nix-support/hydra-build-products + echo "file bzip2 ${build}/on-server/bzip2" >> $out/nix-support/hydra-build-products ''; - - allowedReferences = [ build ]; }; unpack = stdenv.mkDerivation { @@ -218,9 +214,9 @@ rec { tarball = "${build}/on-server/bootstrap-tools.cpio.bz2"; - mkdir = "${build}/in-nixpkgs/mkdir"; - bzip2 = "${build}/in-nixpkgs/bzip2"; - cpio = "${build}/in-nixpkgs/cpio"; + mkdir = "${build}/on-server/mkdir"; + bzip2 = "${build}/on-server/bzip2"; + cpio = "${build}/on-server/cpio"; allowedReferences = [ "out" ]; }; @@ -249,7 +245,7 @@ rec { # an SSL-capable curl curl --version | grep SSL - ${build}/in-nixpkgs/sh -c 'echo Hello World' + ${build}/on-server/sh -c 'echo Hello World' export flags="-idirafter ${unpack}/include-Libsystem --sysroot=${unpack} -L${unpack}/lib" diff --git a/pkgs/tools/X11/ckbcomp/default.nix b/pkgs/tools/X11/ckbcomp/default.nix index 6495b2de7f37..474486b6d6ce 100644 --- a/pkgs/tools/X11/ckbcomp/default.nix +++ b/pkgs/tools/X11/ckbcomp/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { name = "ckbcomp-${version}"; - version = "1.131"; + version = "1.133"; src = fetchgit { url = "git://anonscm.debian.org/d-i/console-setup.git"; rev = "refs/tags/${version}"; - sha256 = "0xmdnzhm1wsdpjb0wsi24xzk1xpv5h2bxgwm9f4awb7aj7wv59ma"; + sha256 = "0za7y5v5rsl9da67rfiwzyfaia4xgnavqdadq0l6v8blc2kcsxr7"; }; buildInputs = [ perl ]; diff --git a/pkgs/tools/X11/dragon-drop/default.nix b/pkgs/tools/X11/dragon-drop/default.nix new file mode 100644 index 000000000000..0aa1c8a8b5a9 --- /dev/null +++ b/pkgs/tools/X11/dragon-drop/default.nix @@ -0,0 +1,28 @@ + +{ stdenv, gtk, pkgconfig, fetchFromGitHub }: + +stdenv.mkDerivation rec { + name = "dragon-drop-${version}"; + version = "git-2014-08-14"; + + src = fetchFromGitHub { + owner = "mwh"; + repo = "dragon"; + rev = "a49d775dd9d43bd22cee4c1fd3e32ede0dc2e9c2"; + sha256 = "03vdbmqlbmk3j2ay1wy6snrm2y27faxz7qv81vyzjzngj345095a"; + }; + + buildInputs = [ gtk pkgconfig ]; + + installPhase = '' + mkdir -p $out/bin + mv dragon $out/bin + ''; + + meta = with stdenv.lib; { + description = "Simple drag-and-drop source/sink for X"; + homepage = "https://github.com/mwh/dragon"; + maintainers = with maintainers; [ jb55 ]; + license = licenses.gpl3; + }; +} diff --git a/pkgs/tools/X11/x2vnc/default.nix b/pkgs/tools/X11/x2vnc/default.nix index adc04b629444..b377369f464c 100644 --- a/pkgs/tools/X11/x2vnc/default.nix +++ b/pkgs/tools/X11/x2vnc/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { preInstall = "mkdir -p $out"; meta = { - homepahe = http://fredrik.hubbe.net/x2vnc.html; + homepage = http://fredrik.hubbe.net/x2vnc.html; description = "A program to control a remote VNC server"; }; } diff --git a/pkgs/tools/audio/beets/default.nix b/pkgs/tools/audio/beets/default.nix index 51e81ef9193e..123b183f2d30 100644 --- a/pkgs/tools/audio/beets/default.nix +++ b/pkgs/tools/audio/beets/default.nix @@ -2,6 +2,7 @@ , buildPythonPackage, pythonPackages, python, imagemagick , enableAcoustid ? true +, enableBadfiles ? true, flac ? null, mp3val ? null , enableDiscogs ? true , enableEchonest ? true , enableFetchart ? true @@ -15,6 +16,7 @@ }: assert enableAcoustid -> pythonPackages.pyacoustid != null; +assert enableBadfiles -> flac != null && mp3val != null; assert enableDiscogs -> pythonPackages.discogs_client != null; assert enableEchonest -> pythonPackages.pyechonest != null; assert enableFetchart -> pythonPackages.responses != null; @@ -28,6 +30,7 @@ with stdenv.lib; let optionalPlugins = { + badfiles = enableBadfiles; chroma = enableAcoustid; discogs = enableDiscogs; echonest = enableEchonest; @@ -60,14 +63,14 @@ let in buildPythonPackage rec { name = "beets-${version}"; - version = "1.3.14"; + version = "1.3.15"; namePrefix = ""; src = fetchFromGitHub { owner = "sampsyo"; repo = "beets"; rev = "v${version}"; - sha256 = "0bha101x1wdrl2hj31fhixm3hp7ahdm2064b9k5gg0ywm651128g"; + sha256 = "17mbkilqqkxxa8ra8b4zlsax712jb0nfkvcx9iyq9303rqwv5sx2"; }; propagatedBuildInputs = [ @@ -111,6 +114,11 @@ in buildPythonPackage rec { sed -i -e '/^BASH_COMPLETION_PATHS *=/,/^])$/ { /^])$/i u"${completion}" }' beets/ui/commands.py + '' + optionalString enableBadfiles '' + sed -i -e '/self\.run_command(\[/ { + s,"flac","${flac}/bin/flac", + s,"mp3val","${mp3val}/bin/mp3val", + }' beetsplug/badfiles.py ''; doCheck = true; diff --git a/pkgs/tools/audio/darkice/default.nix b/pkgs/tools/audio/darkice/default.nix index edc8fe2dffc8..e4fc129ef601 100644 --- a/pkgs/tools/audio/darkice/default.nix +++ b/pkgs/tools/audio/darkice/default.nix @@ -1,8 +1,14 @@ -{ stdenv, fetchurl, alsaLib, faac, libjack2, lame, libopus, libpulseaudio, libsamplerate, libvorbis }: +{ stdenv, buildEnv, fetchurl, alsaLib, faac, libjack2, lame, libogg, libopus, libpulseaudio, libsamplerate, libvorbis }: -with stdenv.lib; +let + oggEnv = buildEnv { + name = "env-darkice-ogg"; + paths = [ + libopus libvorbis libogg + ]; + }; -stdenv.mkDerivation rec { +in stdenv.mkDerivation rec { name = "darkice-${version}"; version = "1.2"; @@ -16,10 +22,10 @@ stdenv.mkDerivation rec { "--with-faac-prefix=${faac}" "--with-jack-prefix=${libjack2}" "--with-lame-prefix=${lame}" - "--with-opus-prefix=${libopus}" + "--with-opus-prefix=${oggEnv}" "--with-pulseaudio-prefix=${libpulseaudio}" "--with-samplerate-prefix=${libsamplerate}" - "--with-vorbis-prefix=${libvorbis}" + "--with-vorbis-prefix=${oggEnv}" # "--with-aacplus-prefix=${aacplus}" ### missing: aacplus # "--with-twolame-prefix=${twolame}" ### missing: twolame ]; diff --git a/pkgs/tools/graphics/dcraw/default.nix b/pkgs/tools/graphics/dcraw/default.nix index 5dcac6a02159..b8cdb64da878 100644 --- a/pkgs/tools/graphics/dcraw/default.nix +++ b/pkgs/tools/graphics/dcraw/default.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl, libjpeg, lcms2, gettext, jasper }: stdenv.mkDerivation rec { - name = "dcraw-9.22"; + name = "dcraw-9.26.0"; src = fetchurl { url = "http://www.cybercom.net/~dcoffin/dcraw/archive/${name}.tar.gz"; - sha256 = "00dz85fr5r9k3nlwdbdi30fpqr8wihamzpyair7l7zk0vkrax402"; + sha256 = "18zvzaxjq1yaj90xm8bwb30lqbjyjyp002bp175dayh3kr91syc5"; }; buildInputs = [ libjpeg lcms2 gettext jasper ]; diff --git a/pkgs/tools/graphics/graphviz/default.nix b/pkgs/tools/graphics/graphviz/default.nix index fbf1c114d0a6..5635e3a69ff7 100644 --- a/pkgs/tools/graphics/graphviz/default.nix +++ b/pkgs/tools/graphics/graphviz/default.nix @@ -38,6 +38,13 @@ stdenv.mkDerivation rec { ] ++ stdenv.lib.optional (xorg == null) "--without-x"; + postPatch = stdenv.lib.optionalString stdenv.isDarwin '' + for foo in cmd/dot/Makefile.in cmd/edgepaint/Makefile.in \ + cmd/mingle/Makefile.in plugin/gdiplus/Makefile.in; do + substituteInPlace "$foo" --replace "-lstdc++" "-lc++" + done + ''; + preBuild = '' sed -e 's@am__append_5 *=.*@am_append_5 =@' -i lib/gvc/Makefile ''; diff --git a/pkgs/tools/graphics/logstalgia/default.nix b/pkgs/tools/graphics/logstalgia/default.nix index ef825bcca454..0deb24ed56f9 100644 --- a/pkgs/tools/graphics/logstalgia/default.nix +++ b/pkgs/tools/graphics/logstalgia/default.nix @@ -3,18 +3,16 @@ stdenv.mkDerivation rec { name = "logstalgia-${version}"; - version = "1.0.6"; + version = "1.0.7"; src = fetchurl { url = "https://github.com/acaudwell/Logstalgia/releases/download/${name}/${name}.tar.gz"; - sha256 = "0d2zhn0q26rv2nb3hdbg0mb69l66g8pkys5is6rb0r6f5is986x8"; + sha256 = "1qghz1j3jmfj093br2hfyibayg3fmhg8fvp5ix9n9rbvzc1zslsm"; }; buildInputs = [ glew SDL ftgl pkgconfig libpng libjpeg pcre SDL_image mesa boost glm ]; - NIX_CFLAGS_COMPILE = "-std=c++11"; # fix build with glm >= 0.9.6.0 - meta = with stdenv.lib; { homepage = http://code.google.com/p/logstalgia; description = "Website traffic visualization tool"; diff --git a/pkgs/tools/graphics/sng/default.nix b/pkgs/tools/graphics/sng/default.nix new file mode 100644 index 000000000000..d9b06c2adf35 --- /dev/null +++ b/pkgs/tools/graphics/sng/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchurl, libpng, netpbm }: + +stdenv.mkDerivation rec { + name = "sng-${version}"; + version = "1.0.6"; + + src = fetchurl { + url = "mirror://sourceforge/sng/sng-${version}.tar.gz"; + sha256 = "04ym62qh8blsqigm3kr1shj9pn62y373wdaavk74rzwjzlhwhmq6"; + }; + + buildInputs = [ libpng ]; + + configureFlags = [ + "--with-rgbtxt=${netpbm}/share/netpbm/misc/rgb.txt" + ]; + + meta = with stdenv.lib; { + description = "Minilanguage designed to represent the entire contents of a PNG file in an editable form"; + homepage = http://sng.sourceforge.net/; + license = licenses.zlib; + maintainers = [ maintainers.dezgeg ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/tools/misc/colord-gtk/default.nix b/pkgs/tools/misc/colord-gtk/default.nix index f46bf3ef7a48..96022d01ef7d 100644 --- a/pkgs/tools/misc/colord-gtk/default.nix +++ b/pkgs/tools/misc/colord-gtk/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, colord, intltool, glib, gtk3, pkgconfig, lcms2 }: stdenv.mkDerivation rec { - name = "colord-gtk-0.1.25"; + name = "colord-gtk-0.1.26"; src = fetchurl { url = "http://www.freedesktop.org/software/colord/releases/${name}.tar.xz"; - sha256 = "02hblw9rw24dhj0wqfw86pfq4y4icb6iaa92308a9jwa6k2923xx"; + sha256 = "0i9y3bb5apj6a0f8cx36l6mjzs7xc0k7nf0magmf58vy2mzhpl18"; }; buildInputs = [ intltool colord glib gtk3 pkgconfig lcms2 ]; diff --git a/pkgs/tools/misc/fontforge/default.nix b/pkgs/tools/misc/fontforge/default.nix index 886495a27ebb..3ecb886419f2 100644 --- a/pkgs/tools/misc/fontforge/default.nix +++ b/pkgs/tools/misc/fontforge/default.nix @@ -6,7 +6,7 @@ }: let - version = "20141230"; # also tagged v2.1.0 + version = "20150824"; # also tagged v2.1.0 in stdenv.mkDerivation { @@ -14,7 +14,7 @@ stdenv.mkDerivation { src = fetchurl { url = "https://github.com/fontforge/fontforge/archive/${version}.tar.gz"; - sha256 = "1xfi13knn1x7hd7pvr6090qz6qfa5znbs85rg1p5mfj377z2h8rb"; + sha256 = "09zzg166lw5ldbzsa2j9x7hizn6y3ld1kf4abfkiy301rdqj9ar8"; }; patches = [(fetchpatch { diff --git a/pkgs/tools/misc/gparted/default.nix b/pkgs/tools/misc/gparted/default.nix index 2b9c2297af28..01154d01e7c8 100644 --- a/pkgs/tools/misc/gparted/default.nix +++ b/pkgs/tools/misc/gparted/default.nix @@ -1,19 +1,25 @@ -{ stdenv, fetchurl, parted, gtk, glib, intltool, gettext, libuuid -, pkgconfig, gtkmm, libxml2, hicolor_icon_theme +{ stdenv, fetchurl, intltool, gettext, makeWrapper +, parted, gtk, glib, libuuid, pkgconfig, gtkmm, libxml2, hicolor_icon_theme +, utillinux }: stdenv.mkDerivation rec { - name = "gparted-0.23.0"; + name = "gparted-0.24.0"; src = fetchurl { - sha256 = "0m57bni3nkbbqq920ydzvasy2qc5j6w6bdssyn12jk4157gxvlbz"; + sha256 = "0q6d1s9f4qgdivj4vm9w87qmdfyq8s65jzkhv05rp9cl72rqlf82"; url = "mirror://sourceforge/gparted/${name}.tar.bz2"; }; configureFlags = "--disable-doc"; buildInputs = [ parted gtk glib libuuid gtkmm libxml2 hicolor_icon_theme ]; - nativeBuildInputs = [ intltool gettext pkgconfig ]; + nativeBuildInputs = [ intltool gettext makeWrapper pkgconfig ]; + + postInstall = '' + wrapProgram $out/sbin/gpartedbin \ + --prefix PATH : "${utillinux}/bin" + ''; meta = with stdenv.lib; { description = "Graphical disk partitioning tool"; diff --git a/pkgs/tools/misc/mates/default.nix b/pkgs/tools/misc/mates/default.nix new file mode 100644 index 000000000000..952bd1a2b7d9 --- /dev/null +++ b/pkgs/tools/misc/mates/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, rustPlatform }: + +with rustPlatform; + +buildRustPackage rec { + name = "mates-${version}"; + version = "0.1.0"; + + depsSha256 = "03mqw9zs3hbsgz8m3qbrbbcg2q47nldfx280dyv0ivfksnlc7lyc"; + + src = fetchFromGitHub { + owner = "untitaker"; + repo = "mates"; + rev = "${version}"; + sha256 = "00dpl7vh2byb4v94zxjbcqj7jnq65vcbrlpkxrrii0ip13dr69pw"; + }; + + meta = with stdenv.lib; { + description = "Very simple commandline addressbook"; + homepage = https://github.com/untitaker/mates.rs; + license = stdenv.lib.licenses.mit; + maintainers = [ maintainers.DamienCassou ]; + }; +} diff --git a/pkgs/tools/misc/vdirsyncer/default.nix b/pkgs/tools/misc/vdirsyncer/default.nix index d07e99e26604..e0dcdf366079 100644 --- a/pkgs/tools/misc/vdirsyncer/default.nix +++ b/pkgs/tools/misc/vdirsyncer/default.nix @@ -1,17 +1,17 @@ { stdenv, fetchurl, pythonPackages }: pythonPackages.buildPythonPackage rec { - version = "0.6.0"; + version = "0.7.0"; name = "vdirsyncer-${version}"; namePrefix = ""; src = fetchurl { url = "https://pypi.python.org/packages/source/v/vdirsyncer/${name}.tar.gz"; - sha256 = "1mb0pws5vsgnmyp5dp5m5jvgl6jcvdamxjz7wmgvxkw6n1vrcahd"; + sha256 = "0ahpi62yk6l06zjkpbhw1gp75x3qi9gcvm3yx6xcg5sz105y5yfx"; }; propagatedBuildInputs = with pythonPackages; [ - click + click click-log click-threading lxml setuptools setuptools_scm diff --git a/pkgs/tools/networking/aria2/default.nix b/pkgs/tools/networking/aria2/default.nix index 07671ffe81f1..77226ae0be90 100644 --- a/pkgs/tools/networking/aria2/default.nix +++ b/pkgs/tools/networking/aria2/default.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { name = "aria2-${version}"; - version = "1.19.0"; + version = "1.19.2"; src = fetchurl { - url = "mirror://sourceforge/aria2/${name}.tar.xz"; - sha256 = "0xm4fmap9gp2pz6z01mnnpmazw6pnhzs8qc58181m5ai4gy5ksp2"; + url = "https://github.com/tatsuhiro-t/aria2/releases/download/release-${version}/${name}.tar.xz"; + sha256 = "0gnm1b7yp5q6fcajz1ln2f1rv64p6dv0nz9bcwpqrkcmsinlh19n"; }; nativeBuildInputs = [ pkgconfig ]; diff --git a/pkgs/tools/networking/cutter/default.nix b/pkgs/tools/networking/cutter/default.nix index ad7d25404069..28eab7f495aa 100644 --- a/pkgs/tools/networking/cutter/default.nix +++ b/pkgs/tools/networking/cutter/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "cutter-1.03"; + name = "cutter-1.04"; src = fetchurl { url = "http://www.digitage.co.uk/digitage/files/cutter/${name}.tgz"; - sha256 = "05cn22wi70l9ybhmzw0sy3fd6xxz0lq49fws4zxzm2i0qb3zmx2d"; + sha256 = "100iy31a3njif6vh9gfsqrm14hac05rrflla275gd4rkxdlnqcqv"; }; installPhase = '' diff --git a/pkgs/tools/networking/i2p/default.nix b/pkgs/tools/networking/i2p/default.nix index cbfedab0faf2..5b439eb8f3f5 100644 --- a/pkgs/tools/networking/i2p/default.nix +++ b/pkgs/tools/networking/i2p/default.nix @@ -1,10 +1,10 @@ { stdenv, procps, coreutils, fetchurl, jdk, jre, ant, gettext, which }: stdenv.mkDerivation rec { - name = "i2p-0.9.21"; + name = "i2p-0.9.22"; src = fetchurl { url = "https://github.com/i2p/i2p.i2p/archive/${name}.tar.gz"; - sha256 = "1cgki9sg0pc4d66rr556lw0682c4mmdvmr6awvsn7ch0rp4zav9f"; + sha256 = "0y21dx5d95gq1i6ip56nmawr19974zawzwa315dm8lmz32bj8g6n"; }; buildInputs = [ jdk ant gettext which ]; patches = [ ./i2p.patch ]; diff --git a/pkgs/tools/networking/iftop/default.nix b/pkgs/tools/networking/iftop/default.nix index a7fc4414f2c9..9e432c946cf5 100644 --- a/pkgs/tools/networking/iftop/default.nix +++ b/pkgs/tools/networking/iftop/default.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl, ncurses, libpcap, automake}: stdenv.mkDerivation rec { - name = "iftop-0.17"; + name = "iftop-1.0pre4"; src = fetchurl { - url = http://ex-parrot.com/pdw/iftop/download/iftop-0.17.tar.gz; - sha256 = "1b0fis53280qx85gldhmqfcpgyiwplzg43gxyngia1w3f1y58cnh"; + url = http://ex-parrot.com/pdw/iftop/download/iftop-1.0pre4.tar.gz; + sha256 = "15sgkdyijb7vbxpxjavh5qm5nvyii3fqcg9mzvw7fx8s6zmfwczp"; }; # Explicitly link against libgcc_s, to work around the infamous diff --git a/pkgs/tools/networking/netsniff-ng/default.nix b/pkgs/tools/networking/netsniff-ng/default.nix index a798cac2e2ef..9b77cd1ea58c 100644 --- a/pkgs/tools/networking/netsniff-ng/default.nix +++ b/pkgs/tools/networking/netsniff-ng/default.nix @@ -2,7 +2,7 @@ , libnetfilter_conntrack, libnl, libpcap, libsodium, liburcu, ncurses, perl , pkgconfig, zlib }: -let version = "0.5.9-110-gfc4646b"; in +let version = "0.5.9-121-gd91abbd"; in stdenv.mkDerivation { name = "netsniff-ng-${version}"; @@ -10,8 +10,8 @@ stdenv.mkDerivation { src = fetchFromGitHub rec { repo = "netsniff-ng"; owner = repo; - rev = "fc4646bc31e37c3e48d772fe11035f82277ece24"; - sha256 = "0f56fw3rf9s9hknmlavs0ihcvgjzr7criwgaw3j077g8wgnmzsxg"; + rev = "d91abbd912399a1d29cc77e4be7b7d6f94014180"; + sha256 = "1smnmnjr9s4xlm2pc4l2dfc304b4acl6dsyi1gnprrr9amrwg798"; }; buildInputs = [ bison flex geoip geolite-legacy libcli libnet libnl diff --git a/pkgs/tools/networking/network-manager-applet/default.nix b/pkgs/tools/networking/network-manager-applet/default.nix index 51eda2f25fd0..15ee5859ff45 100644 --- a/pkgs/tools/networking/network-manager-applet/default.nix +++ b/pkgs/tools/networking/network-manager-applet/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnome/sources/${pn}/${major}/${name}.tar.xz"; - sha256 = "1afri2zln5p59660hqzbwm2r8phx9inrm2bgp5scynzs8ddzh2kn"; + sha256 = "1yj0m6fb9v12d0di0rfmk3hx1vmygjkiff2c476rf792sbh56kax"; }; configureFlags = [ "--sysconfdir=/etc" ]; diff --git a/pkgs/tools/networking/network-manager/default.nix b/pkgs/tools/networking/network-manager/default.nix index cc914d6616c9..8c81b2661096 100644 --- a/pkgs/tools/networking/network-manager/default.nix +++ b/pkgs/tools/networking/network-manager/default.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { name = "network-manager-${version}"; - version = "1.0.2"; + version = "1.0.6"; src = fetchurl { url = "mirror://gnome/sources/NetworkManager/1.0/NetworkManager-${version}.tar.xz"; - sha256 = "1zq8jm1rc7n7amqa9xz1v93w2jnczg6942gyijsdpgllfiq8b4rm"; + sha256 = "38ea002403e3b884ffa9aae25aea431d2a8420f81f4919761c83fb92648254bd"; }; preConfigure = '' @@ -51,6 +51,8 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ intltool pkgconfig ]; + patches = [ ./nm-platform.patch ]; + preInstall = '' installFlagsArray=( "sysconfdir=$out/etc" "localstatedir=$out/var" ) diff --git a/pkgs/tools/networking/network-manager/nm-platform.patch b/pkgs/tools/networking/network-manager/nm-platform.patch new file mode 100644 index 000000000000..880d1a2e4921 --- /dev/null +++ b/pkgs/tools/networking/network-manager/nm-platform.patch @@ -0,0 +1,17 @@ +diff --git a/src/platform/nm-platform.c b/src/platform/nm-platform.c +index 8803377..14e5726 100644 +--- a/src/platform/nm-platform.c ++++ b/src/platform/nm-platform.c +@@ -39,6 +39,12 @@ + #include "nm-enum-types.h" + #include "nm-core-internal.h" + ++#if HAVE_LIBNL_INET6_ADDR_GEN_MODE && HAVE_KERNEL_INET6_ADDR_GEN_MODE ++#include ++#else ++#define IN6_ADDR_GEN_MODE_NONE 1 ++#endif ++ + #define ADDRESS_LIFETIME_PADDING 5 + + G_STATIC_ASSERT (sizeof ( ((NMPlatformLink *) NULL)->addr.data ) == NM_UTILS_HWADDR_LEN_MAX); diff --git a/pkgs/tools/networking/network-manager/openconnect.nix b/pkgs/tools/networking/network-manager/openconnect.nix index 9416923c9e1e..0009aaf6b440 100644 --- a/pkgs/tools/networking/network-manager/openconnect.nix +++ b/pkgs/tools/networking/network-manager/openconnect.nix @@ -4,7 +4,9 @@ stdenv.mkDerivation rec { name = "${pname}${if withGnome then "-gnome" else ""}-${version}"; pname = "NetworkManager-openconnect"; - version = networkmanager.version; + version = "1.0.2"; + +# FixMe: Change version back to "networkmanager.version" src = fetchurl { url = "mirror://gnome/sources/${pname}/1.0/${pname}-${version}.tar.xz"; diff --git a/pkgs/tools/networking/network-manager/openvpn.nix b/pkgs/tools/networking/network-manager/openvpn.nix index d4e1b50489c8..be0264571953 100644 --- a/pkgs/tools/networking/network-manager/openvpn.nix +++ b/pkgs/tools/networking/network-manager/openvpn.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnome/sources/${pname}/1.0/${pname}-${version}.tar.xz"; - sha256 = "1c2b74xhkjifc3g6n53gr2aj4s98qf0vydmqvbhl5azxqx5q4hqn"; + sha256 = "132xwkgyfnpma7m6b06jhrd1g9xk5dlpx8alnsf03ls3z92bd0n9"; }; buildInputs = [ openvpn networkmanager libsecret ] diff --git a/pkgs/tools/networking/network-manager/pptp.nix b/pkgs/tools/networking/network-manager/pptp.nix index 1dfce02981a3..1b1cf69119e4 100644 --- a/pkgs/tools/networking/network-manager/pptp.nix +++ b/pkgs/tools/networking/network-manager/pptp.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnome/sources/${pname}/1.0/${pname}-${version}.tar.xz"; - sha256 = "05r06f7f990z908jjnmmryrlshy28wcx7fbvnslmx9nicih7rjrp"; + sha256 = "1gn1f8r32wznk4rsn2lg2slw1ccli00svz0fi4bx0qiylimlbyln"; }; buildInputs = [ networkmanager pptp ppp libsecret ] diff --git a/pkgs/tools/networking/network-manager/vpnc.nix b/pkgs/tools/networking/network-manager/vpnc.nix index 1435e5ebf7c3..5f3ab00ebc43 100644 --- a/pkgs/tools/networking/network-manager/vpnc.nix +++ b/pkgs/tools/networking/network-manager/vpnc.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnome/sources/${pname}/1.0/${pname}-${version}.tar.xz"; - sha256 = "0055vshgnva969vb91k8zpdan34r9gy0ck3q3b9b616k0p2vy5ry"; + sha256 = "0hycplnc78688sgpzdh3ifra6chascrh751mckqkp1j553bri0jk"; }; buildInputs = [ vpnc networkmanager libsecret ] diff --git a/pkgs/tools/networking/ntopng/0001-Undo-weird-modification-of-data_dir.patch b/pkgs/tools/networking/ntopng/0001-Undo-weird-modification-of-data_dir.patch index 8bec643c6e5f..d794efeac08a 100644 --- a/pkgs/tools/networking/ntopng/0001-Undo-weird-modification-of-data_dir.patch +++ b/pkgs/tools/networking/ntopng/0001-Undo-weird-modification-of-data_dir.patch @@ -1,24 +1,12 @@ -From d0c56a14e0432faca1e9438b84e5e4090d293bb9 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= -Date: Tue, 3 Dec 2013 20:42:24 +0000 -Subject: [PATCH 1/2] Undo weird modification of data_dir - ---- - Prefs.cpp | 1 - - 1 file changed, 1 deletion(-) - -diff --git a/Prefs.cpp b/Prefs.cpp -index b4fde5f..ca04ca1 100644 ---- a/Prefs.cpp -+++ b/Prefs.cpp -@@ -408,7 +408,6 @@ int Prefs::checkOptions() { - ntop->getTrace()->traceEvent(TRACE_ERROR, "Unable to create log %s", path); - } +diff --git a/src/Prefs.cpp b/src/Prefs.cpp +index 76385c4..db8d20d 100755 +--- a/src/Prefs.cpp ++++ b/src/Prefs.cpp +@@ -795,7 +795,6 @@ int Prefs::checkOptions() { + ntop->getTrace()->traceEvent(TRACE_ERROR, "Unable to create log %s", path); + } - free(data_dir); data_dir = strdup(ntop->get_install_dir()); docs_dir = ntop->getValidPath(docs_dir); scripts_dir = ntop->getValidPath(scripts_dir); callbacks_dir = ntop->getValidPath(callbacks_dir); --- -1.8.4.3 - diff --git a/pkgs/tools/networking/ntopng/0002-Remove-requirement-to-have-writeable-callback-dir.patch b/pkgs/tools/networking/ntopng/0002-Remove-requirement-to-have-writeable-callback-dir.patch index 99467c371264..50ed1daebd48 100644 --- a/pkgs/tools/networking/ntopng/0002-Remove-requirement-to-have-writeable-callback-dir.patch +++ b/pkgs/tools/networking/ntopng/0002-Remove-requirement-to-have-writeable-callback-dir.patch @@ -1,29 +1,14 @@ -From d77b42003d13e2775be3255a26f380d6ccda8042 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= -Date: Tue, 3 Dec 2013 21:10:06 +0000 -Subject: [PATCH 2/2] Remove requirement to have writeable callback dir - -* ntopng doesn't write anything to the callback dir -* it seems to be a copy-paste leftover error from data_dir a couple of - lines above ---- - Ntop.cpp | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -diff --git a/Ntop.cpp b/Ntop.cpp -index 2fb027b..0b4881b 100644 ---- a/Ntop.cpp -+++ b/Ntop.cpp -@@ -114,8 +114,7 @@ void Ntop::registerPrefs(Prefs *_prefs) { +diff --git a/src/Ntop.cpp b/src/Ntop.cpp +index 8de92a9..510418f 100644 +--- a/src/Ntop.cpp ++++ b/src/Ntop.cpp +@@ -197,8 +197,7 @@ void Ntop::registerPrefs(Prefs *_prefs) { } if(stat(prefs->get_callbacks_dir(), &statbuf) -- || (!(statbuf.st_mode & S_IFDIR)) /* It's not a directory */ +- || (!(statbuf.st_mode & S_IFDIR)) /* It's not a directory */ - || (!(statbuf.st_mode & S_IWRITE)) /* It's not writable */) { -+ || (!(statbuf.st_mode & S_IFDIR))) { /* It's not a directory */ ++ || (!(statbuf.st_mode & S_IFDIR)) /* It's not a directory */) { ntop->getTrace()->traceEvent(TRACE_ERROR, "Invalid directory %s specified", prefs->get_callbacks_dir()); - exit(-1); --- -1.8.4.3 - + _exit(-1); diff --git a/pkgs/tools/networking/ntopng/default.nix b/pkgs/tools/networking/ntopng/default.nix index ddb6a7bec36d..c17c33af17ed 100644 --- a/pkgs/tools/networking/ntopng/default.nix +++ b/pkgs/tools/networking/ntopng/default.nix @@ -1,20 +1,20 @@ -{ stdenv, fetchurl, libpcap, gnutls, libgcrypt, libxml2, glib -, geoip, geolite-legacy, sqlite, which, autoreconfHook, subversion -, pkgconfig, groff +{ stdenv, fetchurl, libpcap,/* gnutls, libgcrypt,*/ libxml2, glib +, geoip, geolite-legacy, sqlite, which, autoreconfHook, git +, pkgconfig, groff, curl, json_c }: # ntopng includes LuaJIT, mongoose, rrdtool and zeromq in its third-party/ # directory. stdenv.mkDerivation rec { - name = "ntopng-1.2.1"; + name = "ntopng-2.0"; src = fetchurl { urls = [ - "mirror://sourceforge/project/ntop/ntopng/old/${name}.tgz" - "mirror://sourceforge/project/ntop/ntopng/${name}.tgz" + "mirror://sourceforge/project/ntop/ntopng/old/${name}.tar.gz" + "mirror://sourceforge/project/ntop/ntopng/${name}.tar.gz" ]; - sha256 = "1db83cd1v4ivl8hxzzdvvdcgk22ji7mwrfnd5nnwll6kb11i364v"; + sha256 = "0l82ivh05cmmqcvs26r6y69z849d28njipphqzvnakf43ggddgrw"; }; patches = [ @@ -22,25 +22,31 @@ stdenv.mkDerivation rec { ./0002-Remove-requirement-to-have-writeable-callback-dir.patch ]; - buildInputs = [ libpcap gnutls libgcrypt libxml2 glib geoip geolite-legacy - sqlite which autoreconfHook subversion pkgconfig groff ]; + buildInputs = [ libpcap/* gnutls libgcrypt*/ libxml2 glib geoip geolite-legacy + sqlite which autoreconfHook git pkgconfig groff curl json_c ]; + + + autoreconfPhase = '' + substituteInPlace autogen.sh --replace "/bin/rm" "rm" + substituteInPlace nDPI/autogen.sh --replace "/bin/rm" "rm" + $shell autogen.sh + ''; preConfigure = '' - find . -name Makefile.in | xargs sed -i "s|/bin/rm|rm|" + substituteInPlace Makefile.in --replace "/bin/rm" "rm" ''; preBuild = '' - sed -e "s|/usr/local|$out|g" \ - -i Ntop.cpp + substituteInPlace src/Ntop.cpp --replace "/usr/local" "$out" sed -e "s|\(#define CONST_DEFAULT_DATA_DIR\).*|\1 \"/var/lib/ntopng\"|g" \ -e "s|\(#define CONST_DEFAULT_DOCS_DIR\).*|\1 \"$out/share/ntopng/httpdocs\"|g" \ -e "s|\(#define CONST_DEFAULT_SCRIPTS_DIR\).*|\1 \"$out/share/ntopng/scripts\"|g" \ -e "s|\(#define CONST_DEFAULT_CALLBACKS_DIR\).*|\1 \"$out/share/ntopng/scripts/callbacks\"|g" \ -e "s|\(#define CONST_DEFAULT_INSTALL_DIR\).*|\1 \"$out/share/ntopng\"|g" \ - -i ntop_defines.h + -i include/ntop_defines.h - rmdir httpdocs/geoip + rm -rf httpdocs/geoip ln -s ${geolite-legacy}/share/GeoIP httpdocs/geoip ''; diff --git a/pkgs/tools/networking/nzbget/default.nix b/pkgs/tools/networking/nzbget/default.nix index 3497fd8efaf5..42eb469bc696 100644 --- a/pkgs/tools/networking/nzbget/default.nix +++ b/pkgs/tools/networking/nzbget/default.nix @@ -1,15 +1,13 @@ { stdenv, fetchurl, pkgconfig, libxml2, ncurses, libsigcxx, libpar2 , gnutls, libgcrypt, zlib }: -let - version = "15.0"; -in stdenv.mkDerivation rec { name = "nzbget-${version}"; + version = "16.2"; src = fetchurl { url = "http://github.com/nzbget/nzbget/releases/download/v${version}/${name}-src.tar.gz"; - sha256 = "02nclq97gqr4zwww4j1l9sds2rwrwwvwvh2gkjhwvr0pb4z3zw9y"; + sha256 = "19ww3cf1qvivdj2pk676g9gwvfkj5gasvwqnbisx9ihss4bmdx9r"; }; buildInputs = [ pkgconfig libxml2 ncurses libsigcxx libpar2 gnutls diff --git a/pkgs/tools/networking/plasma-nm/default.nix b/pkgs/tools/networking/plasma-nm/default.nix index 17f809ddb8c9..0c10e6655b8e 100644 --- a/pkgs/tools/networking/plasma-nm/default.nix +++ b/pkgs/tools/networking/plasma-nm/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, automoc4, cmake, gettext, perl, pkgconfig -, kdelibs, networkmanager, libnm-qt }: +, kdelibs, networkmanager, libnm-qt, glib }: let pname = "plasma-nm"; @@ -14,6 +14,8 @@ stdenv.mkDerivation { sha256 = "0xj14isvjq8ll70b6q66n8adm8ff4j9ng195ndk2gmavjf6bb751"; }; + NIX_CFLAGS_COMPILE = "-I${glib}/include/glib-2.0 -I${glib}/lib/glib-2.0/include"; + nativeBuildInputs = [ automoc4 cmake gettext perl pkgconfig ]; buildInputs = [ kdelibs networkmanager libnm-qt ]; @@ -23,6 +25,5 @@ stdenv.mkDerivation { description = "Plasma applet written in QML for managing network connections"; license = licenses.lgpl21; inherit (kdelibs.meta) platforms; - maintainers = with maintainers; [ jgeerds ]; }; } diff --git a/pkgs/tools/networking/wavemon/default.nix b/pkgs/tools/networking/wavemon/default.nix index b5927fd24780..ece252a9b6c7 100644 --- a/pkgs/tools/networking/wavemon/default.nix +++ b/pkgs/tools/networking/wavemon/default.nix @@ -1,45 +1,20 @@ -x@{builderDefsPackage - , ncurses - , ...}: -builderDefsPackage -(a : -let - helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ - []; - - buildInputs = map (n: builtins.getAttr n x) - (builtins.attrNames (builtins.removeAttrs x helperArgNames)); - sourceInfo = rec { - baseName="wavemon"; - version = "0.7.6"; - name="${baseName}-${version}"; - url="http://eden-feed.erg.abdn.ac.uk/wavemon/stable-releases/${name}.tar.bz2"; +{stdenv, fetchgit, ncurses, libnl, pkgconfig}: +stdenv.mkDerivation rec { + version = "0.7.6.20151001"; + baseName="wavemon"; + name="${baseName}-${version}"; + buildInputs = [ncurses libnl pkgconfig]; + src = fetchgit { + url = https://github.com/uoaerg/wavemon.git ; + rev = "05753aed2ec5a786d602c7903c89fc6a230f8d42"; + sha256 = "13y4bi4qz4596f11ng6zaqir5j234wv64z4670q3pzh3fqmzmpm4"; }; -in -rec { - src = a.fetchurl { - url = sourceInfo.url; - sha256 = "18cwlzgmwzy7z9dfr6lwd8kmkv0pqiihizm4gi0kkm52bzz6836y"; - }; - - inherit (sourceInfo) name version; - inherit buildInputs; - - /* doConfigure should be removed if not needed */ - phaseNames = ["doConfigure" "doMakeInstall"]; - meta = { - description = "WiFi state monitor"; - maintainers = with a.lib.maintainers; - [ - raskin - ]; - platforms = with a.lib.platforms; - linux; - license = a.lib.licenses.gpl2Plus; - downloadPage = "http://eden-feed.erg.abdn.ac.uk/wavemon/"; inherit version; - updateWalker = true; + description = "WiFi state monitor"; + license = stdenv.lib.licenses.gpl3Plus ; + maintainers = [stdenv.lib.maintainers.raskin]; + platforms = stdenv.lib.platforms.linux; + downloadPage = https://github.com/uoaerg/wavemon.git ; }; -}) x - +} diff --git a/pkgs/tools/package-management/disnix/dysnomia/default.nix b/pkgs/tools/package-management/disnix/dysnomia/default.nix index 275c4b6e61f1..b5969aa327d0 100644 --- a/pkgs/tools/package-management/disnix/dysnomia/default.nix +++ b/pkgs/tools/package-management/disnix/dysnomia/default.nix @@ -20,10 +20,10 @@ assert enableEjabberdDump -> ejabberd != null; assert enableMongoDatabase -> (mongodb != null && mongodb-tools != null); stdenv.mkDerivation { - name = "dysnomia-0.4"; + name = "dysnomia-0.4.1"; src = fetchurl { - url = http://hydra.nixos.org/build/23484767/download/1/dysnomia-0.4.tar.gz; - sha256 = "1xyd1gzsy4nlbv2l2lrrs964vvb74yhmb8snr4chf7hcyaybb6cq"; + url = http://hydra.nixos.org/build/26970202/download/1/dysnomia-0.4.1.tar.gz; + sha256 = "03ljlsmdpglimvql2qnr4wj8ci2hj7wcc8bqipndqcahcpcc8k0f"; }; preConfigure = if enableEjabberdDump then "export PATH=$PATH:${ejabberd}/sbin" else ""; diff --git a/pkgs/tools/package-management/nix/default.nix b/pkgs/tools/package-management/nix/default.nix index e74daade3b8d..e76e2e811f5e 100644 --- a/pkgs/tools/package-management/nix/default.nix +++ b/pkgs/tools/package-management/nix/default.nix @@ -43,6 +43,8 @@ let doInstallCheck = false; + separateDebugInfo = stdenv.isLinux; + crossAttrs = { postUnpack = '' export CPATH="${bzip2.crossDrv}/include" diff --git a/pkgs/tools/security/eid-mw/default.nix b/pkgs/tools/security/eid-mw/default.nix index cdafb560565a..5e06d2f32e29 100644 --- a/pkgs/tools/security/eid-mw/default.nix +++ b/pkgs/tools/security/eid-mw/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchFromGitHub, autoreconfHook, gtk2, nssTools, pcsclite , pkgconfig }: -let version = "4.1.7"; in +let version = "4.1.8"; in stdenv.mkDerivation { name = "eid-mw-${version}"; src = fetchFromGitHub { - sha256 = "1m44s8mzz8gg97xdmbng40279hc4i7q7i7yd45hbagacny0wxi1k"; + sha256 = "1nmw4c2gvbpkrgjxyd2g0lbh85lb2czbgqplqrv69fr6azaddyyk"; rev = "v${version}"; repo = "eid-mw"; owner = "Fedict"; diff --git a/pkgs/tools/system/ansible/default.nix b/pkgs/tools/system/ansible/default.nix index 0177eec9435e..0e72efb33bd2 100644 --- a/pkgs/tools/system/ansible/default.nix +++ b/pkgs/tools/system/ansible/default.nix @@ -1,13 +1,13 @@ { windowsSupport ? true, stdenv, fetchurl, pythonPackages, python }: pythonPackages.buildPythonPackage rec { - version = "1.9.3"; + version = "1.9.4"; name = "ansible-${version}"; namePrefix = ""; src = fetchurl { - url = "http://releases.ansible.com/ansible/ansible-${version}.tar.gz"; - sha256 = "1vgfsjqb5gbs30ymqgq3q2kxzn3fvh8680n14yj5c040zm1gd515"; + url = "https://releases.ansible.com/ansible/${name}.tar.gz"; + sha256 = "1qvgzb66nlyc2ncmgmqhzdk0x0p2px09967p1yypf5czwjn2yb4p"; }; prePatch = '' diff --git a/pkgs/tools/typesetting/pdf2djvu/default.nix b/pkgs/tools/typesetting/pdf2djvu/default.nix index 5278d4f5d9be..5540a3fdca25 100644 --- a/pkgs/tools/typesetting/pdf2djvu/default.nix +++ b/pkgs/tools/typesetting/pdf2djvu/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, pkgconfig, djvulibre, poppler, fontconfig, libjpeg }: stdenv.mkDerivation rec { - version = "0.9.1"; + version = "0.9.2"; name = "pdf2djvu-${version}"; src = fetchurl { url = "https://bitbucket.org/jwilk/pdf2djvu/downloads/${name}.tar.xz"; - sha256 = "1x9xqqwq024k2y8jmwrrkcvrfcy0rwh421x4kz2g8i72gzlik6cz"; + sha256 = "0b1rbbxfa8qzggzwmq4m9wykrv5cl74688z95qq9lns35qz2j2b5"; }; buildInputs = [ pkgconfig djvulibre poppler fontconfig libjpeg ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c72ce4f68579..90a8168bb26f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -261,7 +261,7 @@ let { substitutions = { inherit autoconf automake gettext libtool; }; } ../build-support/setup-hooks/autoreconf.sh; - buildEnv = callPackage ../build-support/buildenv {}; + buildEnv = callPackage ../build-support/buildenv { }; # not actually a package buildFHSEnv = callPackage ../build-support/build-fhs-chrootenv/env.nix { nixpkgs = pkgs; @@ -614,13 +614,8 @@ let oracle-instantclient = callPackage ../development/libraries/oracle-instantclient { }; - derez = callPackage ../os-specific/darwin/derez { }; - rez = callPackage ../os-specific/darwin/rez { }; - reattach-to-user-namespace = callPackage ../os-specific/darwin/reattach-to-user-namespace {}; - setfile = callPackage ../os-specific/darwin/setfile { }; - install_name_tool = callPackage ../os-specific/darwin/install_name_tool { }; xcodeenv = callPackage ../development/mobile/xcodeenv { }; @@ -631,6 +626,8 @@ let inherit (androidenv) androidsdk_4_4 androidndk; + arc-gtk-theme = callPackage ../misc/themes/arc { }; + aria2 = callPackage ../tools/networking/aria2 { inherit (darwin.apple_sdk.frameworks) Security; }; @@ -804,6 +801,8 @@ let tileMode = false; }; + cuyo = callPackage ../games/cuyo { }; + contacts = callPackage ../tools/misc/contacts { }; datamash = callPackage ../tools/misc/datamash { }; @@ -828,6 +827,10 @@ let dlx = callPackage ../misc/emulators/dlx { }; + dragon-drop = callPackage ../tools/X11/dragon-drop { + gtk = gtk3; + }; + dtrx = callPackage ../tools/compression/dtrx { }; duperemove = callPackage ../tools/filesystems/duperemove { @@ -838,6 +841,8 @@ let eggdrop = callPackage ../tools/networking/eggdrop { }; + elementary-icon-theme = callPackage ../data/icons/elementary-icon-theme { }; + enca = callPackage ../tools/text/enca { }; ent = callPackage ../tools/misc/ent { }; @@ -862,6 +867,8 @@ let mcrl2 = callPackage ../tools/misc/mcrl2 { }; + meson = callPackage ../development/tools/build-managers/meson { }; + mp3fs = callPackage ../tools/filesystems/mp3fs { }; mpdcron = callPackage ../tools/audio/mpdcron { }; @@ -1953,6 +1960,8 @@ let john = callPackage ../tools/security/john { }; + jp2a = callPackage ../applications/misc/jp2a { }; + jq = callPackage ../development/tools/jq {}; jscoverage = callPackage ../development/tools/misc/jscoverage { }; @@ -1965,6 +1974,8 @@ let kalibrate-rtl = callPackage ../tools/misc/kalibrate-rtl { }; + kbdd = callPackage ../applications/window-managers/kbdd { }; + kdbplus = callPackage_i686 ../applications/misc/kdbplus { }; keepalived = callPackage ../tools/networking/keepalived { }; @@ -2175,6 +2186,8 @@ let man_db = callPackage ../tools/misc/man-db { }; + mates = callPackage ../tools/misc/mates { }; + mawk = callPackage ../tools/text/mawk { }; mbox = callPackage ../tools/security/mbox { }; @@ -2579,6 +2592,8 @@ let panomatic = callPackage ../tools/graphics/panomatic { }; + paper-gtk-theme = callPackage ../misc/themes/gtk3/paper-gtk-theme { }; + par2cmdline = callPackage ../tools/networking/par2cmdline { automake = automake112x; # fails with 14 }; @@ -3013,6 +3028,10 @@ let snabb = callPackage ../tools/networking/snabb { } ; + sng = callPackage ../tools/graphics/sng { + libpng = libpng12; + }; + snort = callPackage ../applications/networking/ids/snort { }; solr = callPackage ../servers/search/solr { }; @@ -3074,6 +3093,8 @@ let sslscan = callPackage ../tools/security/sslscan { }; + sslmate = callPackage ../development/tools/sslmate { }; + ssmtp = callPackage ../tools/networking/ssmtp { tlsSupport = true; }; @@ -3462,6 +3483,11 @@ let urlwatch = callPackage ../tools/networking/urlwatch { }; + valum = callPackage ../development/web/valum { + inherit (gnome3) libgee; + vala = vala_0_28; + }; + varnish = callPackage ../servers/varnish { }; venus = callPackage ../tools/misc/venus { @@ -3922,7 +3948,9 @@ let })); gfortran = if !stdenv.isDarwin then gfortran49 - else callPackage ../development/compilers/gcc/gfortran-darwin.nix {}; + else callPackage ../development/compilers/gcc/gfortran-darwin.nix { + inherit (darwin) Libsystem; + }; gfortran48 = wrapCC (gcc48.cc.override { name = "gfortran"; @@ -4714,6 +4742,10 @@ let ocamlnat = newScope pkgs.ocamlPackages_3_12_1 ../development/ocaml-modules/ocamlnat { }; + ponyc = callPackage ../development/compilers/ponyc { + llvm = llvm_36; + }; + qcmm = callPackage ../development/compilers/qcmm { lua = lua4; ocaml = ocaml_3_08_0; @@ -4892,10 +4924,21 @@ let erlangR17_odbc = callPackage ../development/interpreters/erlang/R17.nix { odbcSupport = true; }; erlangR17_javac = callPackage ../development/interpreters/erlang/R17.nix { javacSupport = true; }; erlangR17_odbc_javac = callPackage ../development/interpreters/erlang/R17.nix { javacSupport = true; odbcSupport = true; }; - erlangR18 = callPackage ../development/interpreters/erlang/R18.nix { }; - erlangR18_odbc = callPackage ../development/interpreters/erlang/R18.nix { odbcSupport = true; }; - erlangR18_javac = callPackage ../development/interpreters/erlang/R18.nix { javacSupport = true; }; - erlangR18_odbc_javac = callPackage ../development/interpreters/erlang/R18.nix { javacSupport = true; odbcSupport = true; }; + erlangR18 = callPackage ../development/interpreters/erlang/R18.nix { + inherit (darwin.apple_sdk.frameworks) Carbon Cocoa; + }; + erlangR18_odbc = callPackage ../development/interpreters/erlang/R18.nix { + inherit (darwin.apple_sdk.frameworks) Carbon Cocoa; + odbcSupport = true; + }; + erlangR18_javac = callPackage ../development/interpreters/erlang/R18.nix { + inherit (darwin.apple_sdk.frameworks) Carbon Cocoa; + javacSupport = true; + }; + erlangR18_odbc_javac = callPackage ../development/interpreters/erlang/R18.nix { + inherit (darwin.apple_sdk.frameworks) Carbon Cocoa; + javacSupport = true; odbcSupport = true; + }; erlang = erlangR18; erlang_odbc = erlangR18_odbc; erlang_javac = erlangR18_javac; @@ -5403,6 +5446,8 @@ let cfr = callPackage ../development/tools/java/cfr { }; + checkstyle = callPackage ../development/tools/analysis/checkstyle { }; + chromedriver = callPackage ../development/tools/selenium/chromedriver { gconf = gnome.GConf; }; chrpath = callPackage ../development/tools/misc/chrpath { }; @@ -5437,8 +5482,6 @@ let coccinelle = callPackage ../development/tools/misc/coccinelle { }; - framac = callPackage ../development/tools/analysis/frama-c { }; - cpptest = callPackage ../development/libraries/cpptest { }; cppi = callPackage ../development/tools/misc/cppi { }; @@ -5523,9 +5566,11 @@ let elfutils = callPackage ../development/tools/misc/elfutils { }; + emma = callPackage ../development/tools/analysis/emma { }; + epm = callPackage ../development/tools/misc/epm { }; - emma = callPackage ../development/tools/analysis/emma { }; + eweb = callPackage ../development/tools/literate-programming/eweb { }; eztrace = callPackage ../development/tools/profiling/EZTrace { }; @@ -5533,16 +5578,18 @@ let flow = callPackage ../development/tools/analysis/flow { }; - fswatch = callPackage ../development/tools/misc/fswatch { }; + framac = callPackage ../development/tools/analysis/frama-c { }; frame = callPackage ../development/libraries/frame { }; + fswatch = callPackage ../development/tools/misc/fswatch { }; + + funnelweb = callPackage ../development/tools/literate-programming/funnelweb { }; + pmd = callPackage ../development/tools/analysis/pmd { }; jdepend = callPackage ../development/tools/analysis/jdepend { }; - checkstyle = callPackage ../development/tools/analysis/checkstyle { }; - flex_2_5_35 = callPackage ../development/tools/parsing/flex/2.5.35.nix { }; flex_2_5_39 = callPackage ../development/tools/parsing/flex/2.5.39.nix { }; flex = flex_2_5_39; @@ -6085,6 +6132,8 @@ let ctpp2 = callPackage ../development/libraries/ctpp2 { }; + ctpl = callPackage ../development/libraries/ctpl { }; + cpp-netlib = callPackage ../development/libraries/cpp-netlib { }; cppunit = callPackage ../development/libraries/cppunit { }; @@ -6184,10 +6233,18 @@ let fcgi = callPackage ../development/libraries/fcgi { }; - ffmpeg_0_10 = callPackage ../development/libraries/ffmpeg/0.10.nix { }; - ffmpeg_1_2 = callPackage ../development/libraries/ffmpeg/1.2.nix { }; - ffmpeg_2_2 = callPackage ../development/libraries/ffmpeg/2.2.nix { }; - ffmpeg_2_8 = callPackage ../development/libraries/ffmpeg/2.8.nix { }; + ffmpeg_0_10 = callPackage ../development/libraries/ffmpeg/0.10.nix { + inherit (darwin.apple_sdk.frameworks) Cocoa; + }; + ffmpeg_1_2 = callPackage ../development/libraries/ffmpeg/1.2.nix { + inherit (darwin.apple_sdk.frameworks) Cocoa; + }; + ffmpeg_2_2 = callPackage ../development/libraries/ffmpeg/2.2.nix { + inherit (darwin.apple_sdk.frameworks) Cocoa; + }; + ffmpeg_2_8 = callPackage ../development/libraries/ffmpeg/2.8.nix { + inherit (darwin.apple_sdk.frameworks) Cocoa; + }; # Aliases ffmpeg_0 = ffmpeg_0_10; ffmpeg_1 = ffmpeg_1_2; @@ -6312,7 +6369,11 @@ let gettext = callPackage ../development/libraries/gettext { }; - gettextWithExpat = callPackage ../development/libraries/gettext/expat.nix { }; + gettextWithExpat = if stdenv.isDarwin + then gettext.overrideDerivation (drv: { + configureFlags = drv.configureFlags ++ [ "--with-libexpat-prefix=${expat}" ]; + }) + else callPackage ../development/libraries/gettext/expat.nix { }; gd = callPackage ../development/libraries/gd { }; @@ -6899,7 +6960,9 @@ let libdc1394avt = callPackage ../development/libraries/libdc1394avt { }; - libdevil = callPackage ../development/libraries/libdevil { }; + libdevil = callPackage ../development/libraries/libdevil { + inherit (darwin.apple_sdk.frameworks) OpenGL; + }; libdevil-nox = libdevil.override { libX11 = null; @@ -7598,7 +7661,11 @@ let mesaSupported = lib.elem system lib.platforms.mesaPlatforms; mesaDarwinOr = alternative: if stdenv.isDarwin - then callPackage ../development/libraries/mesa-darwin { } + then callPackage ../development/libraries/mesa-darwin { + inherit (darwin.apple_sdk.frameworks) OpenGL; + inherit (darwin.apple_sdk.libs) Xplugin; + inherit (darwin) apple_sdk; + } else alternative; mesa_noglu = mesaDarwinOr (callPackage ../development/libraries/mesa { # makes it slower, but during runtime we link against just mesa_drivers @@ -8147,6 +8214,7 @@ let alsaSupport = stdenv.isLinux; x11Support = !stdenv.isCygwin; pulseaudioSupport = stdenv.isLinux; + inherit (darwin.apple_sdk.frameworks) OpenGL CoreAudio CoreServices AudioUnit Kernel Cocoa; }; SDL_gfx = callPackage ../development/libraries/SDL_gfx { }; @@ -8168,6 +8236,7 @@ let alsaSupport = stdenv.isLinux; x11Support = !stdenv.isCygwin; pulseaudioSupport = false; # better go through ALSA + inherit (darwin.apple_sdk.frameworks) AudioUnit Cocoa CoreAudio CoreServices ForceFeedback OpenGL; }; SDL2_image = callPackage ../development/libraries/SDL2_image { }; @@ -8418,6 +8487,10 @@ let inherit (pythonPackages) gyp; }; + v8_4_5 = callPackage ../development/libraries/v8/4.5.nix { + inherit (pythonPackages) gyp; + }; + v8 = callPackage ../development/libraries/v8 { inherit (pythonPackages) gyp; }; @@ -8492,15 +8565,20 @@ let wxGTK29 = callPackage ../development/libraries/wxGTK-2.9/default.nix { inherit (gnome) GConf; + inherit (darwin.stubs) setfile; withMesa = lib.elem system lib.platforms.mesaPlatforms; }; wxGTK30 = callPackage ../development/libraries/wxGTK-3.0/default.nix { inherit (gnome) GConf; + inherit (darwin.stubs) setfile; withMesa = lib.elem system lib.platforms.mesaPlatforms; }; - wxmac = callPackage ../development/libraries/wxmac { }; + wxmac = callPackage ../development/libraries/wxmac { + inherit (darwin.apple_sdk.frameworks) AGL Cocoa Kernel QuickTime; + inherit (darwin.stubs) setfile rez derez; + }; wtk = callPackage ../development/libraries/wtk { }; @@ -9073,9 +9151,7 @@ let lighttpd = callPackage ../servers/http/lighttpd { }; - mailman = callPackage ../servers/mail/mailman { - dnspython = pythonPackages.dns; - }; + mailman = callPackage ../servers/mail/mailman { }; mediatomb = callPackage ../servers/mediatomb { spidermonkey = spidermonkey_185; @@ -9187,7 +9263,9 @@ let #monetdb = callPackage ../servers/sql/monetdb { }; - mariadb = callPackage ../servers/sql/mariadb {}; + mariadb = callPackage ../servers/sql/mariadb { + inherit (darwin) cctools; + }; mongodb = callPackage ../servers/nosql/mongodb { sasl = cyrus_sasl; @@ -9285,7 +9363,9 @@ let qpid-cpp = callPackage ../servers/amqp/qpid-cpp { }; - rabbitmq_server = callPackage ../servers/amqp/rabbitmq-server { }; + rabbitmq_server = callPackage ../servers/amqp/rabbitmq-server { + inherit (darwin.apple_sdk.frameworks) AppKit Carbon Cocoa; + }; radius = callPackage ../servers/radius { }; @@ -9413,6 +9493,8 @@ let xquartz = callPackage ../servers/x11/xquartz { }; quartz-wm = callPackage ../servers/x11/quartz-wm { stdenv = clangStdenv; + inherit (darwin.apple_sdk.frameworks) AppKit; + inherit (darwin.apple_sdk.libs) Xplugin; }; xorg = recurseIntoAttrs (lib.callPackagesWith pkgs ../servers/x11/xorg/default.nix { @@ -9420,7 +9502,7 @@ let libxslt expat libpng zlib perl mesa_drivers spice_protocol libunwind dbus libuuid openssl gperf m4 libevdev tradcpp libinput mcpp makeWrapper autoreconfHook autoconf automake libtool xmlto asciidoc flex bison python mtdev pixman; - inherit (darwin) apple_sdk libobjc CF; + inherit (darwin) apple_sdk cf-private libobjc; bootstrap_cmds = if stdenv.isDarwin then darwin.bootstrap_cmds else null; mesa = mesa_noglu; udev = if stdenv.isLinux then udev else null; @@ -9577,11 +9659,11 @@ let cmdline_sdk = cmdline.sdk; cmdline_tools = cmdline.tools; - apple_sdk = callPackage ../os-specific/darwin/apple-sdk { - inherit (darwin) CF; - }; + apple_sdk = callPackage ../os-specific/darwin/apple-sdk {}; libobjc = apple-source-releases.objc4; + + stubs = callPackages ../os-specific/darwin/stubs {}; }; gnustep-make = callPackage ../development/tools/build-managers/gnustep/make {}; @@ -9688,7 +9770,9 @@ let if stdenv.isLinux then callPackage ../os-specific/linux/htop { } else if stdenv.isDarwin then - callPackage ../os-specific/darwin/htop { } + callPackage ../os-specific/darwin/htop { + inherit (darwin.apple_sdk.frameworks) IOKit; + } else null; # GNU/Hurd core packages. @@ -10164,6 +10248,8 @@ let perf-tools = callPackage ../os-specific/linux/perf-tools { }; + pipes = callPackage ../misc/screensavers/pipes { }; + pipework = callPackage ../os-specific/linux/pipework { }; plymouth = callPackage ../os-specific/linux/plymouth { }; @@ -10749,6 +10835,8 @@ let xkeyboard_config = xorg.xkeyboardconfig; + xlsx2csv = pythonPackages.xlsx2csv; + zeal = callPackage ../data/documentation/zeal { }; @@ -10774,6 +10862,12 @@ let aangifte2013 = callPackage_i686 ../applications/taxes/aangifte-2013 { }; + aangifte2014 = callPackage_i686 ../applications/taxes/aangifte-2014 { }; + + aangifte2013wa = callPackage_i686 ../applications/taxes/aangifte-2013-wa { }; + + aangifte2014wa = callPackage_i686 ../applications/taxes/aangifte-2014-wa { }; + abcde = callPackage ../applications/audio/abcde { inherit (perlPackages) DigestSHA MusicBrainz MusicBrainzDiscID; inherit (pythonPackages) eyeD3; @@ -10909,6 +11003,10 @@ let batti = callPackage ../applications/misc/batti { }; + baudline = callPackage ../applications/audio/baudline { + jack = jack1; + }; + cbatticon = callPackage ../applications/misc/cbatticon { }; bazaar = callPackage ../applications/version-management/bazaar { }; @@ -11210,8 +11308,7 @@ let imagemagick = null; acl = null; gpm = null; - inherit (darwin.apple_sdk.frameworks) AppKit Foundation; - inherit (darwin) libobjc; + inherit (darwin.apple_sdk.frameworks) AppKit; }; emacs24-nox = lowPrio (appendToName "nox" (emacs24.override { @@ -11228,7 +11325,6 @@ let }); emacs24Macport_24_5 = lowPrio (newScope darwin.apple_sdk.frameworks ../applications/editors/emacs-24/macport-24.5.nix { stdenv = pkgs.clangStdenv; - inherit (darwin) libobjc; }); emacs24Macport = self.emacs24Macport_24_5; @@ -11631,7 +11727,7 @@ let gitAndTools = recurseIntoAttrs (callPackage ../applications/version-management/git-and-tools {}); - inherit (gitAndTools) git gitFull gitSVN git-cola svn2git git-radar; + inherit (gitAndTools) git gitFull gitSVN git-cola svn2git git-radar transcrypt; gitMinimal = git.override { withManual = false; @@ -12027,8 +12123,7 @@ let libowfat = callPackage ../development/libraries/libowfat { }; librecad = callPackage ../applications/misc/librecad { }; - - librecad2 = callPackage ../applications/misc/librecad/2.0.nix { }; + librecad2 = librecad; # backwards compatibility alias, added 2015-10 libreoffice = callPackage ../applications/office/libreoffice { inherit (perlPackages) ArchiveZip CompressZlib; @@ -12222,6 +12317,8 @@ let mp3splt = callPackage ../applications/audio/mp3splt { }; + mp3val = callPackage ../applications/audio/mp3val { }; + mpc123 = callPackage ../applications/audio/mpc123 { }; mpg123 = callPackage ../applications/audio/mpg123 { }; @@ -12399,9 +12496,11 @@ let sphinx = pythonPackages.sphinx; }; - nova = callPackage ../applications/virtualization/nova { }; - - novaclient = callPackage ../applications/virtualization/nova/client.nix { }; + # Open Stack + nova = callPackage ../applications/virtualization/openstack/nova.nix { }; + keystone = callPackage ../applications/virtualization/openstack/keystone.nix { }; + neutron = callPackage ../applications/virtualization/openstack/neutron.nix { }; + glance = callPackage ../applications/virtualization/openstack/glance.nix { }; nova-filters = callPackage ../applications/audio/nova-filters { }; @@ -13112,8 +13211,7 @@ let }; vim = callPackage ../applications/editors/vim { - inherit (darwin.apple_sdk.frameworks) CoreServices Cocoa Foundation CoreData; - inherit (darwin) libobjc cf-private; + inherit (darwin.apple_sdk.frameworks) Carbon Cocoa; }; macvim = callPackage ../applications/editors/vim/macvim.nix { stdenv = clangStdenv; }; @@ -13648,6 +13746,8 @@ let chessdb = callPackage ../games/chessdb { }; + cockatrice = qt5Libs.callPackage ../games/cockatrice { }; + confd = goPackages.confd.bin // { outputs = [ "bin" ]; }; construoBase = lowPrio (callPackage ../games/construo { @@ -14701,7 +14801,7 @@ let cmake = cmake-2_8; }; - vite = enableDebugging (callPackage ../applications/science/misc/vite { }); + vite = callPackage ../applications/science/misc/vite { }; xplanet = callPackage ../applications/science/astronomy/xplanet { }; @@ -14985,6 +15085,8 @@ let canon-cups-ufr2 = callPackage ../misc/cups/drivers/canon { }; + mfcj470dw = callPackage_i686 ../misc/cups/drivers/mfcj470dw { }; + samsungUnifiedLinuxDriver = callPackage ../misc/cups/drivers/samsung { gcc = import ../development/compilers/gcc/4.4 { inherit stdenv fetchurl gmp mpfr noSysDirs gettext which; diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index fc75417ec897..d36100ab5668 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -384,12 +384,12 @@ let self = _self // overrides; dash = melpaBuild rec { pname = "dash"; - version = "2.11.0"; + version = "2.12.1"; src = fetchFromGitHub { owner = "magnars"; repo = "${pname}.el"; rev = version; - sha256 = "02gfrcda7gj3j5yx71dz40xylrafl4pcaj7bgfajqi9by0w2nrnx"; + sha256 = "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa"; }; meta = { description = "A modern list library for Emacs"; @@ -743,6 +743,19 @@ let self = _self // overrides; meta = { license = gpl3Plus; }; }; + git-gutter = melpaBuild rec { + pname = "git-gutter"; + version = "20150930"; + src = fetchFromGitHub { + owner = "syohex"; + repo = "emacs-git-gutter"; + rev = "df7fb13481bea2b1476ca8a20bc958b17d1e06ae"; + sha256 = "1xwdyjh13lp06yy9477013nj6idpsjr4ifg7hmyk5ai80axkgly7"; + }; + files = [ "git-gutter.el" ]; + meta.license = gpl3Plus; + }; + git-rebase-mode = melpaBuild rec { pname = "git-rebase-mode"; version = "1.0.0"; @@ -1042,12 +1055,12 @@ let self = _self // overrides; magit = melpaBuild rec { pname = "magit"; - version = "2.2.2"; + version = "2.3.0"; src = fetchFromGitHub { owner = pname; repo = pname; rev = version; - sha256 = "1niajikvhj22saz68y0zcazh9imji76g48rc5rs20nlp76hybifc"; + sha256 = "1zbx1ky1481lkvfjr4k23q7jdrk9ji9v5ghj88qib36vbmzfwww8"; }; packageRequires = [ dash git-commit magit-popup with-editor ]; fileSpecs = [ "lisp/magit-utils.el" diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 3bd35bffb616..283fba7b440e 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -133,8 +133,17 @@ let # Do not copy this without a good reason for enabling # In this case tools is heavily coupled with go itself and embeds paths. allowGoReference = true; + + # Set GOTOOLDIR for derivations adding this to buildInputs + postInstall = '' + mkdir -p $bin/nix-support + substituteAll ${../development/go-modules/tools/setup-hook.sh} $bin/nix-support/setup-hook.tmp + cat $bin/nix-support/setup-hook.tmp >> $bin/nix-support/setup-hook + rm $bin/nix-support/setup-hook.tmp + ''; }; + ## THIRD PARTY airbrake-go = buildFromGitHub { @@ -349,10 +358,10 @@ let }; command = buildFromGitHub { - rev = "076a2ad5f3a7ec92179f2d57208728432280ec4e"; + rev = "91ca5ec5e9a1bc2668b1ccbe0967e04a349e3561"; owner = "odeke-em"; repo = "command"; - sha256 = "093as4kxlabk3hrsd52kr9fhl6qafr4ghg89cjyglsva0mk0n7sb"; + sha256 = "1ghckzr8h99ckagpmb15p61xazdjmf9mjmlym634hsr9vcj84v62"; }; copystructure = buildFromGitHub { @@ -520,18 +529,61 @@ let }; drive = buildFromGitHub { - rev = "4530cf8d59e1047cb1c005a6bd5b14ecb98b9e68"; + rev = "6dc2f1e83032ea3911fa6147b846ee93f18dc544"; owner = "odeke-em"; repo = "drive"; - sha256 = "1y4qlzvgg84mh8l6bhaazzy6bv6dwjcbpm0rxvvc5aknvvh581ps"; + sha256 = "07s4nhfcr6vznf1amvl3a4wq2hn9zq871rcppfi4i6zs7iw2ay1v"; subPackages = [ "cmd/drive" ]; buildInputs = [ pb go-isatty command dts odeke-em.log statos xon odeke-em.google-api-go-client - cli-spinner oauth2 text net + cli-spinner oauth2 text net pretty-words meddler open-golang extractor + exponential-backoff cache bolt ]; disabled = !isGo14; }; + cache = buildFromGitHub { + rev = "b51b08cb6cf889deda6c941a5205baecfd16f3eb"; + owner = "odeke-em"; + repo = "cache"; + sha256 = "1rmm1ky7irqypqjkk6qcd2n0xkzpaggdxql9dp9i9qci5rvvwwd4"; + }; + + exponential-backoff = buildFromGitHub { + rev = "96e25d36ae36ad09ac02cbfe653b44c4043a8e09"; + owner = "odeke-em"; + repo = "exponential-backoff"; + sha256 = "1as21p2jj8xpahvdxqwsw2i1s3fll14dlc9j192iq7xl1ybwpqs6"; + }; + + extractor = buildFromGitHub { + rev = "801861aedb854c7ac5e1329e9713023e9dc2b4d4"; + owner = "odeke-em"; + repo = "extractor"; + sha256 = "036zmnqxy48h6mxiwywgxix2p4fqvl4svlmcp734ri2rbq3cmxs1"; + }; + + open-golang = buildFromGitHub { + rev = "c8748311a7528d0ba7330d302adbc5a677ef9c9e"; + owner = "skratchdot"; + repo = "open-golang"; + sha256 = "0qhn2d00v3m9fiqk9z7swdm599clc6j7rnli983s8s1byyp0x3ac"; + }; + + pretty-words = buildFromGitHub { + rev = "9d37a7fcb4ae6f94b288d371938482994458cecb"; + owner = "odeke-em"; + repo = "pretty-words"; + sha256 = "1466wjhrg9lhqmzil1vf8qj16fxk32b5kxlcccyw2x6dybqa6pkl"; + }; + + meddler = buildFromGitHub { + rev = "d2b51d2b40e786ab5f810d85e65b96404cf33570"; + owner = "odeke-em"; + repo = "meddler"; + sha256 = "0m0fqrn3kxy4swyk4ja1y42dn1i35rq9j85y11wb222qppy2342x"; + }; + dts = buildFromGitHub { rev = "ec2daabf2f9078e887405f7bcddb3d79cb65502d"; owner = "odeke-em"; @@ -3044,4 +3096,37 @@ let sha256 = "07a7zj01d4a23xqp01m48jp2v5mw49islf4nbq2rj13sd5w4s6sc"; }; + ninefans = buildFromGitHub { + rev = "65b8cf069318223b1e722b4b36e729e5e9bb9eab"; + date = "2015-10-24"; + owner = "9fans"; + repo = "go"; + sha256 = "0kzyxhs2xf0339nlnbm9gc365b2svyyjxnr86rphx5m072r32ims"; + goPackagePath = "9fans.net/go"; + goPackageAliases = [ + "github.com/9fans/go" + ]; + excludedPackages = "\\(plan9/client/cat\\|acme/Watch\\)"; + buildInputs = [ net ]; + }; + + godef = buildFromGitHub { + rev = "ea14e800fd7d16918be88dae9f0195f7bd688586"; + date = "2015-10-24"; + owner = "rogpeppe"; + repo = "godef"; + sha256 = "1wkvsz8nqwyp36wbm8vcw4449sfs46894nskrfj9qbsrjijvamyc"; + excludedPackages = "\\(go/printer/testdata\\)"; + buildInputs = [ ninefans ]; + subPackages = [ "./" ]; + }; + + godep = buildFromGitHub { + rev = "5598a9815350896a2cdf9f4f1d0a3003ab9677fb"; + date = "2015-10-15"; + owner = "tools"; + repo = "godep"; + sha256 = "0zc1ah5cvaqa3zw0ska89a40x445vwl1ixz8v42xi3zicx16ibwz"; + }; + }; in self diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index ef0d784a62e7..421bba24568f 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -276,6 +276,12 @@ rec { lts-3_9 = packages.ghc7102.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.9.nix { }; }; + lts-3_10 = packages.ghc7102.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.10.nix { }; + }; + lts-3_11 = packages.ghc7102.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-3.11.nix { }; + }; }; } diff --git a/pkgs/top-level/make-tarball.nix b/pkgs/top-level/make-tarball.nix index 082262077a84..341e9ec81d64 100644 --- a/pkgs/top-level/make-tarball.nix +++ b/pkgs/top-level/make-tarball.nix @@ -2,9 +2,9 @@ also builds the documentation and tests whether the Nix expressions evaluate correctly. */ -{ nixpkgs, officialRelease }: +{ pkgs, nixpkgs, officialRelease }: -with import nixpkgs.outPath {}; +with pkgs; releaseTools.sourceTarball rec { name = "nixpkgs-tarball"; diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index ee383a5e52c8..6885eb7cab57 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -1831,10 +1831,10 @@ let self = _self // overrides; _self = with self; { }; ConfigGeneral = buildPerlPackage rec { - name = "Config-General-2.58"; + name = "Config-General-2.60"; src = fetchurl { url = "mirror://cpan/authors/id/T/TL/TLINDEN/${name}.tar.gz"; - sha256 = "1vrfp1c7ah2yqvh2gr4v79gbm183xxynm06v6vipva00qvsg6g6n"; + sha256 = "1biqzrvxr9cc8m5jaldnqzmj44q07y4pv6izgb7irsij0rn18m2i"; }; meta = { license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; @@ -1900,11 +1900,11 @@ let self = _self // overrides; _self = with self; { }; }; - ConfigMVPReaderINI = buildPerlPackage { - name = "Config-MVP-Reader-INI-2.101462"; + ConfigMVPReaderINI = buildPerlPackage rec { + name = "Config-MVP-Reader-INI-2.101463"; src = fetchurl { - url = mirror://cpan/authors/id/R/RJ/RJBS/Config-MVP-Reader-INI-2.101462.tar.gz; - sha256 = "cd113c3361cfb468655cfcd7b4747b50f990db2cb9452f5d8ffa409422d7df9f"; + url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz"; + sha256 = "0iflnsh0sgihff3ra8sr7awiiscmqvrp1anaskkwksqi6yzidab9"; }; propagatedBuildInputs = [ ConfigINI ConfigMVP Moose ]; meta = { @@ -1927,10 +1927,10 @@ let self = _self // overrides; _self = with self; { }; ConfigTiny = buildPerlPackage rec { - name = "Config-Tiny-2.22"; + name = "Config-Tiny-2.23"; src = fetchurl { url = "mirror://cpan/authors/id/R/RS/RSAVAGE/${name}.tgz"; - sha256 = "090kbff4wgjl4csdb3axl7nv41yy326yd1xyp2sx3crxfhl9gkli"; + sha256 = "037524cpx962cjdgcp1m8sd30s43g3zvwfn4hmjvq322xpind2ls"; }; }; @@ -2655,11 +2655,11 @@ let self = _self // overrides; _self = with self; { }; }; - DateTime = buildPerlModule { - name = "DateTime-1.19"; + DateTime = buildPerlModule rec { + name = "DateTime-1.21"; src = fetchurl { - url = mirror://cpan/authors/id/D/DR/DROLSKY/DateTime-1.19.tar.gz; - sha256 = "07c8624a7827277e8eda35c77cfc6fd056bf2782238597f424ef6a6e33ed6009"; + url = "mirror://cpan/authors/id/D/DR/DROLSKY/${name}.tar.gz"; + sha256 = "1cgnscbh40f783znpq15rkvbfflfm8azdl0v6yqr7minmq6899d3"; }; buildInputs = [ TestFatal TestWarnings ]; propagatedBuildInputs = [ DateTimeLocale DateTimeTimeZone ParamsValidate TryTiny ]; @@ -2669,11 +2669,11 @@ let self = _self // overrides; _self = with self; { }; }; - DateTimeEventICal = buildPerlPackage { - name = "DateTime-Event-ICal-0.11"; + DateTimeEventICal = buildPerlPackage rec { + name = "DateTime-Event-ICal-0.13"; src = fetchurl { - url = mirror://cpan/authors/id/F/FG/FGLOCK/DateTime-Event-ICal-0.11.tar.gz; - sha256 = "6c3ca03c1810c996fa66943138f1f891bbc4baeb41ae2108a5f821040d78dd4c"; + url = "mirror://cpan/authors/id/F/FG/FGLOCK/${name}.tar.gz"; + sha256 = "1skmykxbrf98ldi72d5s1v6228gfdr5iy4y0gpl0xwswxy247njk"; }; propagatedBuildInputs = [ DateTime DateTimeEventRecurrence ]; meta = { @@ -2730,11 +2730,11 @@ let self = _self // overrides; _self = with self; { }; }; - DateTimeFormatHTTP = buildPerlPackage { - name = "DateTime-Format-HTTP-0.40"; + DateTimeFormatHTTP = buildPerlPackage rec { + name = "DateTime-Format-HTTP-0.42"; src = fetchurl { - url = mirror://cpan/authors/id/C/CK/CKRAS/DateTime-Format-HTTP-0.40.tar.gz; - sha256 = "214e9e2e364090ebc5bc682b29709828944ae67f0bb4a989dd1e6d010845213f"; + url = "mirror://cpan/authors/id/C/CK/CKRAS/${name}.tar.gz"; + sha256 = "0h6qqdg1yzqkdxp7hqlp0qa7d1y64nilgimxs79dys2ryjfpcknh"; }; propagatedBuildInputs = [ DateTime HTTPDate ]; meta = { @@ -2837,11 +2837,11 @@ let self = _self // overrides; _self = with self; { propagatedBuildInputs = [ DateTime DateTimeFormatBuilder ]; }; - DateTimeLocale = buildPerlPackage { - name = "DateTime-Locale-0.46"; + DateTimeLocale = buildPerlPackage rec { + name = "DateTime-Locale-0.92"; src = fetchurl { - url = mirror://cpan/authors/id/D/DR/DROLSKY/DateTime-Locale-0.46.tar.gz; - sha256 = "b4ceaa0dc0b89d4eb180eb970a927cf376e3d04ef42de98de2e034cd2021348d"; + url = "mirror://cpan/authors/id/D/DR/DROLSKY/${name}.tar.gz"; + sha256 = "1fq2wbpfvi5gy3jaild4974sz02vdvfkb98aahni9par4sgn469z"; }; buildInputs = [ DistCheckConflicts ]; propagatedBuildInputs = [ ListMoreUtils ParamsValidate ]; @@ -2865,11 +2865,11 @@ let self = _self // overrides; _self = with self; { }; }; - DateTimeTimeZone = buildPerlPackage { - name = "DateTime-TimeZone-1.91"; + DateTimeTimeZone = buildPerlPackage rec { + name = "DateTime-TimeZone-1.94"; src = fetchurl { - url = mirror://cpan/authors/id/D/DR/DROLSKY/DateTime-TimeZone-1.91.tar.gz; - sha256 = "0b0899a1b1a32ed3928397323a06692223688db2c3c050734e7ff4c7b231bd32"; + url = "mirror://cpan/authors/id/D/DR/DROLSKY/${name}.tar.gz"; + sha256 = "1crn4n6izzw2r0ymcb7px9b1bkis8hzczs48skk7szvs3svn3naz"; }; buildInputs = [ TestFatal TestRequires ]; propagatedBuildInputs = [ ClassSingleton ListAllUtils ModuleRuntime ParamsValidate TryTiny ]; @@ -2920,10 +2920,10 @@ let self = _self // overrides; _self = with self; { }; DevelChecklib = buildPerlPackage rec { - name = "Devel-CheckLib-1.01"; + name = "Devel-CheckLib-1.05"; src = fetchurl { url = "mirror://cpan/authors/id/M/MA/MATTN/${name}.tar.gz"; - sha256 = "14q9mibxdgqkia73426q6xw6km5bf1hhkgg2nf7x4zhnlksahbwr"; + sha256 = "0qs7c8jffar2rpvscrd8rcds75zsc46cizp5fi5369821jl4fw3a"; }; propagatedBuildInputs = [ IOCaptureOutput ]; }; @@ -3222,11 +3222,11 @@ let self = _self // overrides; _self = with self; { }; }; - DevelFindPerl = buildPerlPackage { - name = "Devel-FindPerl-0.012"; + DevelFindPerl = buildPerlPackage rec { + name = "Devel-FindPerl-0.014"; src = fetchurl { - url = mirror://cpan/authors/id/L/LE/LEONT/Devel-FindPerl-0.012.tar.gz; - sha256 = "075p340m4pi761sjc3l0ymfsdwy4rrq48sqj38cyy80vg9scljh2"; + url = "mirror://cpan/authors/id/L/LE/LEONT/${name}.tar.gz"; + sha256 = "0ns95dsgmr8s0f1dfwd1cyv32vmd22w0vs51ppnnzp5zyi499581"; }; buildInputs = [ CaptureTiny ]; propagatedBuildInputs = [ ExtUtilsConfig ]; @@ -3236,11 +3236,11 @@ let self = _self // overrides; _self = with self; { }; }; - DevelGlobalDestruction = buildPerlPackage { - name = "Devel-GlobalDestruction-0.12"; + DevelGlobalDestruction = buildPerlPackage rec { + name = "Devel-GlobalDestruction-0.13"; src = fetchurl { - url = mirror://cpan/authors/id/H/HA/HAARG/Devel-GlobalDestruction-0.12.tar.gz; - sha256 = "0w4a4y9w4yldxlhks95nx8qaivpbzc40b1p8xg3y8467ixkbg9cq"; + url = "mirror://cpan/authors/id/H/HA/HAARG/${name}.tar.gz"; + sha256 = "0qn4iszgylnxjdkb6430f6a3ci7bcx9ih1az6bd5cbij1pf2965j"; }; propagatedBuildInputs = [ SubExporterProgressive ]; meta = { diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8d2b85b5ad67..c646a5413511 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -301,15 +301,15 @@ let alembic = buildPythonPackage rec { - name = "alembic-0.7.6"; + name = "alembic-0.8.3"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/alembic/${name}.tar.gz"; - sha256 = "0qgglnxsn470ncyipm33j3d5nf5ny2g3wq7fxyy9fv2x4rhs8kw6"; + sha256 = "1sgwvwylzd5h14130mwr0cbyy0fil0a1bq0d0ki97wqvkic3db7f"; }; - buildInputs = with self; [ nose mock ]; - propagatedBuildInputs = with self; [ Mako sqlalchemy9 ]; + buildInputs = with self; [ pytest pytestcov mock coverage ]; + propagatedBuildInputs = with self; [ Mako sqlalchemy_1_0 python-editor ]; meta = { homepage = http://bitbucket.org/zzzeek/alembic; @@ -318,6 +318,20 @@ let }; }; + python-editor = buildPythonPackage rec { + name = "python-editor-${version}"; + version = "0.4"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/python-editor/${name}.tar.gz"; + sha256 = "1gykxn16anmsbcrwhx3rrhwjif95mmwvq9gjcrr9bbzkdc8sf8a4"; + }; + + meta = with stdenv.lib; { + description = "`python-editor` is a library that provides the `editor` module for programmatically"; + homepage = "https://github.com/fmoo/python-editor"; + }; + }; almir = buildPythonPackage rec { name = "almir-0.1.8"; @@ -426,13 +440,12 @@ let amqp = buildPythonPackage rec { name = "amqp-${version}"; - version = "1.4.6"; + version = "1.4.7"; disabled = pythonOlder "2.6"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/amqp/${name}.tar.gz"; - sha256 = "0h76dnqfbc6fslwr7lx86n2gyslfv2x1vl8lpbszjs2svrkwikzb"; - md5 = "a061581b6864f838bffd62b6a3d0fb9f"; + sha256 = "1nids25n6a17nrpxnklpi1h059zi87cs2g6irvp0j4p0ad5qi08p"; }; buildInputs = with self; [ mock coverage nose-cover3 unittest2 ]; @@ -470,7 +483,7 @@ let md5 = "17e5668601a2322aff41548cb957e7c8"; }; - buildInputs = with self; [ ]; + buildInputs = with self; [ pytest ]; meta = { description = "namespace control and lazy-import mechanism"; @@ -504,6 +517,17 @@ let }; }; + appnope = buildPythonPackage rec { + version = "0.1.0"; + name = "appnope-${version}"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/a/appnope/${name}.tar.gz"; + sha256 = "0wgdwp5v7r4g2bss8vbdxah12hsy2mvzxh3sil9s4iskjbz5z6cb"; + }; + + meta.platforms = platforms.darwin; + }; apsw = buildPythonPackage rec { name = "apsw-3.7.6.2-r1"; @@ -545,7 +569,6 @@ let funcsigs = buildPythonPackage rec { name = "funcsigs-0.4"; - disabled = ! (isPy26 || isPy27 || isPy33 || isPyPy); src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/f/funcsigs/${name}.tar.gz"; @@ -565,12 +588,12 @@ let }; apscheduler = buildPythonPackage rec { - name = "APScheduler-3.0.1"; + name = "APScheduler-3.0.4"; disabled = !isPy27; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/A/APScheduler/${name}.tar.gz"; - md5 = "7c3687b3dcd645fe9df48e34eb7a7592"; + sha256 = "1ljjhn6cv8b1pccsi3mgc887ypi2vim317r9p0zh0amd0bhkk6wb"; }; buildInputs = with self; [ @@ -698,23 +721,25 @@ let }; argparse = buildPythonPackage (rec { - name = "argparse-1.2.1"; + name = "argparse-1.4.0"; src = pkgs.fetchurl { - url = "http://argparse.googlecode.com/files/${name}.tar.gz"; - sha256 = "192174mys40m0bwk6l5jlfnzps0xi81sxm34cqms6dc3c454pbyx"; + url = "https://pypi.python.org/packages/source/a/argparse/${name}.tar.gz"; + sha256 = "1r6nznp64j68ih1k537wms7h57nvppq0szmwsaf99n71bfjqkc32"; }; - # error: invalid command 'test' - doCheck = false; + checkPhase = '' + export PYTHONPATH=`pwd`/build/lib:$PYTHONPATH + ${python.interpreter} test/test_argparse.py + ''; + + # ordering issues in tests + doCheck = !isPy3k; meta = { homepage = http://code.google.com/p/argparse/; - license = licenses.asl20; - description = "argparse: Python command line parser"; - longDescription = '' The argparse module makes writing command line tools in Python easy. Just briefly describe your command line interface and @@ -987,13 +1012,18 @@ let }); beautifulsoup4 = buildPythonPackage (rec { - name = "beautifulsoup4-4.4.0"; + name = "beautifulsoup4-4.4.1"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/b/beautifulsoup4/${name}.tar.gz"; - sha256 = "1xhp57nr7aapn55wpk7i2kcv2cdamcn1parrm6dqnhv9iyl1vngs"; + sha256 = "1d36lc4pfkvl74fmzdib2nqnvknm0jddgf2n9yd7im150qyh3m47"; }; + buildInputs = [ self.nose ]; + checkPhase = '' + nosetests build/ + ''; + meta = { homepage = http://crummy.com/software/BeautifulSoup/bs4/; description = "HTML and XML parser"; @@ -1017,16 +1047,19 @@ let license = licenses.mit; maintainers = with maintainers; [ iElectric ]; }; + + disabled = isPy3k; + }); beaker = buildPythonPackage rec { - name = "Beaker-1.6.4"; + name = "Beaker-1.7.0"; disabled = isPy3k; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/B/Beaker/${name}.tar.gz"; - md5 = "c2e102870ed4c53104dec48ceadf8e9d"; + sha256 = "0vv4y22b3ly1212n9nnhgvc8yz32adlfl7w7s1wj0i5srpjcgvlq"; }; buildInputs = @@ -1220,6 +1253,25 @@ let }; }; + cycler = buildPythonPackage rec { + name = "cycler-${version}"; + version = "0.9.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/C/Cycler/${name}.tar.gz"; + sha256 = "96dc4ddf27ef62c09990c6196ac1167685e89168042ec0ae4db586de023355bc"; + }; + + propagatedBuildInputs = with self; [ six ]; + + meta = { + description = "Composable style cycles"; + homepage = http://github.com/matplotlib/cycler; + license = licenses.bsd3; + maintainer = with maintainers; [ fridh ]; + }; + }; + debian = buildPythonPackage rec { name = "${pname}-${version}"; pname = "python-debian"; @@ -1330,14 +1382,13 @@ let billiard = buildPythonPackage rec { name = "billiard-${version}"; - version = "3.3.0.19"; + version = "3.3.0.21"; disabled = isPyPy; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/b/billiard/${name}.tar.gz"; - sha256 = "06bs1kl7dji6lwpj3dkfi61mmrfq2mi7wz3ka683i2avwk38wsvf"; - md5 = "7e473b9da01956ce91a650f99fe8d4ad"; + sha256 = "1sfsrkm5xv820wp2mz5zn2rnw6s0c9wal69v1fkr26wp1a7zf1cp"; }; buildInputs = with self; [ nose unittest2 mock ]; @@ -1446,6 +1497,7 @@ let sha256 = "19v0zhvchz89w179rwkc4ah3cj2gbcng9alwa2yla89691g8b0b0"; }; + buildInputs = with self; [ nose ]; propagatedBuildInputs = with self; [ six html5lib ]; meta = { @@ -1880,14 +1932,13 @@ let celery = buildPythonPackage rec { name = "celery-${version}"; - version = "3.1.17"; + version = "3.1.19"; disabled = pythonOlder "2.6"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/celery/${name}.tar.gz"; - sha256 = "0qh38xnbgbj7awpjxxvjlddyafxyyy3fhxcas3i8dmcb4r9vdqng"; - md5 = "e37f5d93b960bf68fc26c1325f30fd16"; + sha256 = "0wbbsrg3vfq8v7y2nylal1gqmn3h4a5vqzbsjiwcybl21hlj2smx"; }; buildInputs = with self; [ mock nose unittest2 ]; @@ -2034,6 +2085,44 @@ let }; }; + click-log = buildPythonPackage rec { + version = "0.1.1"; + name = "click-log-${version}"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/c/click-log/${name}.tar.gz"; + sha256 = "1z3jdwjmwax159zrnyx830xa968rfqrpkm04ad5xqyh0269ydiqb"; + }; + + propagatedBuildInputs = with self; [ click ]; + + meta = { + homepage = https://github.com/click-contrib/click-log/; + description = "Logging integration for Click"; + license = licenses.mit; + maintainers = with maintainers; [ DamienCassou ]; + }; + }; + + click-threading = buildPythonPackage rec { + version = "0.1.2"; + name = "click-threading-${version}"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/c/click-threading/${name}.tar.gz"; + sha256 = "0jmrv4334lfxa2ss53c06dafdwqbk1pb3ihd26izn5igw1bm8145"; + }; + + propagatedBuildInputs = with self; [ click ]; + + meta = { + homepage = https://github.com/click-contrib/click-threading/; + description = "Multithreaded Click apps made easy"; + license = licenses.mit; + maintainers = with maintainers; [ DamienCassou ]; + }; + }; + clepy = buildPythonPackage rec { name = "clepy-0.3.20"; @@ -2288,13 +2377,17 @@ let }; coverage = buildPythonPackage rec { - name = "coverage-3.7.1"; + name = "coverage-4.0.1"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/c/coverage/${name}.tar.gz"; - sha256 = "0knlbq79g2ww6xzsyknj9rirrgrgc983dpa2d9nkdf31mb2a3bni"; + sha256 = "0nrd817pzjw1haaz6gambgwf4jdjnh9kyxkgj6l8qgl6hdxga45w"; }; + # TypeError: __call__() takes 1 positional argument but 2 were given + doCheck = !isPy3k; + buildInputs = with self; [ nose mock ]; + meta = { description = "Code coverage measurement for python"; homepage = http://nedbatchelder.com/code/coverage/; @@ -2329,11 +2422,11 @@ let cython = buildPythonPackage rec { name = "Cython-${version}"; - version = "0.23.3"; + version = "0.23.4"; src = pkgs.fetchurl { url = "http://www.cython.org/release/${name}.tar.gz"; - sha256 = "590274ac8dbd1e62cc79d94eb2e2f4ae60cea91a9f8d50b8697d39aba451e82e"; + sha256 = "13hdffhd37mx3gjby018xl179jaj957fy7kzi01crmimxvn2zi7y"; }; setupPyBuildFlags = ["--build-base=$out"]; @@ -2386,20 +2479,163 @@ let }; cryptography = buildPythonPackage rec { - name = "cryptography-1.0"; + # also bump cryptography_vectors + name = "cryptography-1.0.2"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/cryptography/${name}.tar.gz"; - sha256 = "008hq9s4z7y17yjxh1aycvddas320hfbl9vj8gydg4fpfzz04711"; + sha256 = "1jmcidddbbgdavvnvjjc0pda4b9a5i9idsivchn69pqxx68x8k6n"; }; buildInputs = [ pkgs.openssl self.pretend self.cryptography_vectors - self.iso8601 self.pyasn1 self.pytest self.py ]; - propagatedBuildInputs = [ self.six self.idna self.ipaddress ] + self.iso8601 self.pyasn1 self.pytest self.py ] + ++ optional stdenv.isDarwin pkgs.darwin.apple_sdk.frameworks.Security; + propagatedBuildInputs = [ self.six self.idna self.ipaddress self.pyasn1 ] ++ optional (!isPyPy) self.cffi ++ optional (pythonOlder "3.4") self.enum34; + + # IOKit's dependencies are inconsistent between OSX versions, so this is the best we + # can do until nix 1.11's release + __impureHostDeps = [ "/usr/lib" ]; }; + cryptography_vectors = buildPythonPackage rec { + # also bump cryptography + name = "cryptography_vectors-1.0.2"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/c/cryptography-vectors/${name}.tar.gz"; + sha256 = "0dx98kcypmarwwhi6rjwy30ridys2ja6mc6mjf0svd4nllkaljdq"; + }; + }; + + oslo-vmware = buildPythonPackage rec { + name = "oslo.vmware-${version}"; + version = "1.22.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/oslo.vmware/${name}.tar.gz"; + sha256 = "1119q3x2y3hjz3p784byr13aqay75pbj4cb8v43gjq5piqlpp16x"; + }; + + propagatedBuildInputs = with self; [ + pbr stevedore netaddr iso8601 six oslo-i18n oslo-utils Babel pyyaml eventlet + requests2 urllib3 oslo-concurrency suds-jurko + ]; + buildInputs = with self; [ + bandit oslosphinx coverage testtools testscenarios testrepository mock + + ]; + }; + + barbicanclient = buildPythonPackage rec { + name = "barbicanclient-${version}"; + version = "3.3.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/python-barbicanclient/python-barbicanclient-${version}.tar.gz"; + sha256 = "1kxnxiijvkkc8ahlfbkslpzxcbah7y5pi86hvkyac62xzda87inm"; + }; + + propagatedBuildInputs = with self; [ + pbr argparse requests2 six keystoneclient cliff oslo-i18n oslo-serialization + oslo-utils + ]; + buildInputs = with self; [ + oslosphinx oslotest requests-mock + ]; + + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + }; + + + ironicclient = buildPythonPackage rec { + name = "ironicclient-${version}"; + version = "0.9.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/python-ironicclient/python-ironicclient-${version}.tar.gz"; + sha256 = "16kaixrmnx6a32mfv281w22h8lavjh0k9yiqikmwc986ydh85s4d"; + }; + + propagatedBuildInputs = with self; [ + six keystoneclient prettytable oslo-utils oslo-i18n lxml httplib2 cliff + dogpile_cache appdirs anyjson pbr openstackclient + ]; + buildInputs = with self; [ + httpretty + ]; + + meta = with stdenv.lib; { + description = "Python bindings for the Ironic API"; + homepage = "http://www.openstack.org/"; + }; + }; + + novaclient = buildPythonPackage rec { + name = "novaclient-${version}"; + version = "2.31.0"; + + src = pkgs.fetchurl { + url = "https://github.com/openstack/python-novaclient/archive/${version}.tar.gz"; + sha256 = "0cd49yz9qhpv1srg6wwjnivyb3i8zjxda0h439158qv9w6bfqhdf"; + }; + + PBR_VERSION = "${version}"; + + buildInputs = with self; [ + pbr testtools testscenarios testrepository requests-mock fixtures ]; + propagatedBuildInputs = with self; [ + Babel argparse prettytable requests2 simplejson six iso8601 + keystoneclient tempest-lib ]; + + # TODO: check if removing this test is really harmless + preCheck = '' + substituteInPlace novaclient/tests/unit/v2/test_servers.py --replace "test_get_password" "noop" + ''; + + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + + meta = { + homepage = https://github.com/openstack/python-novaclient/; + description = "Client library and command line tool for the OpenStack Nova API"; + license = stdenv.lib.licenses.asl20; + platforms = stdenv.lib.platforms.linux; + }; + }; + + openstackclient = buildPythonPackage rec { + name = "openstackclient-${version}"; + version = "1.7.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/python-openstackclient/python-openstackclient-${version}.tar.gz"; + sha256 = "0h1jkrwx06l32k50zq5gs9iba132q2x2jjb3z5gkxxlcd3apk8y9"; + }; + + propagatedBuildInputs = with self; [ + pbr six Babel cliff os-client-config oslo-config oslo-i18n oslo-utils + glanceclient keystoneclient novaclient cinderclient neutronclient requests2 + stevedore + ]; + buildInputs = with self; [ + requests-mock + ]; + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + + meta = with stdenv.lib; { + homepage = "http://wiki.openstack.org/OpenStackClient"; + }; + }; + + + idna = buildPythonPackage rec { name = "idna-2.0"; @@ -2415,15 +2651,6 @@ let }; }; - cryptography_vectors = buildPythonPackage rec { - name = "cryptography_vectors-1.0"; - - src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/cryptography-vectors/${name}.tar.gz"; - sha256 = "0d02x93vk0b1fla914bij71pfma0p7sprlvrxq1bb6dxnwc7h9z7"; - }; - }; - pkginfo = buildPythonPackage rec { version = "1.2.1"; name = "pkginfo-${version}"; @@ -2530,14 +2757,15 @@ let }; cffi = buildPythonPackage rec { - name = "cffi-1.1.2"; + name = "cffi-1.3.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/cffi/${name}.tar.gz"; - md5 = "ca6e6c45b45caa87aee9adc7c796eaea"; + sha256 = "1s9lcwmyhshrmvgcwy0vww70v23ncz7bgshhbk469kxmy2pm7alx"; }; propagatedBuildInputs = with self; [ pkgs.libffi pycparser ]; + buildInputs = with self; [ pytest ]; meta = { maintainers = with maintainers; [ iElectric ]; @@ -2714,20 +2942,18 @@ let }; pytestcov = buildPythonPackage (rec { - name = "pytest-cov-1.8.1"; + name = "pytest-cov-2.2.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pytest-cov/${name}.tar.gz"; - md5 = "76c778afa2494088270348be42d759fc"; + sha256 = "1lf9jsmhqk5nc4w3kzwglmdzjvmi7ajvrsnwv826j3bn0wzx8c92"; }; buildInputs = with self; [ covCore pytest ]; meta = { - description = "py.test plugin for coverage reporting with support for both centralised and distributed testing, including subprocesses and multiprocessing"; - + description = "plugin for coverage reporting with support for both centralised and distributed testing, including subprocesses and multiprocessing"; homepage = https://github.com/schlamar/pytest-cov; - license = licenses.mit; }; }); @@ -2838,6 +3064,7 @@ let sha256 = "14b2ef766d4c9652ab813182e866f493475e65e558bed0822e38bf07bba1a278"; }; + buildInputs = with self; [ pytest ]; propagatedBuildInputs = with self; [ numpy multipledispatch dateutil ]; meta = { @@ -2849,11 +3076,12 @@ let }; dateutil = buildPythonPackage (rec { - name = "dateutil-2.2"; + name = "dateutil-${version}"; + version = "2.4.2"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/python-dateutil/python-${name}.tar.gz"; - sha256 = "0s74ad6r789810s10dxgvaf48ni6adac2icrdad34zxygqq6bj7f"; + sha256 = "3e95445c1db500a344079a47b171c45ef18f57d188dffdb0e4165c71bea8eb3d"; }; propagatedBuildInputs = with self; [ self.six ]; @@ -3130,21 +3358,12 @@ let name = "dnspython-${version}"; version = "1.12.0"; - src = pkgs.fetchurl { - url = "http://www.dnspython.org/kits/1.12.0/dnspython-1.12.0.tar.gz"; - sha256 = "0kvjlkp96qzh3j31szpjlzqbp02brixh4j4clnpw80b0hspq5yq3"; - }; - }; - - dnspython3 = buildPythonPackage rec { - name = "dnspython3-${version}"; - version = "1.12.0"; - - disabled = (!isPy3k); - - src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/d/dnspython3/${name}.zip"; + src = if isPy3k then pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/d/dnspython3/dnspython3-${version}.zip"; sha256 = "138wxj702vx6zni9g2y8dbgbpin95v6hk23rh2kwfr3q4130jqz9"; + } else pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/d/dnspython/${name}.tar.gz"; + sha256 = "0kvjlkp96qzh3j31szpjlzqbp02brixh4j4clnpw80b0hspq5yq3"; }; meta = { @@ -3156,11 +3375,11 @@ let }; docker = buildPythonPackage rec { - name = "docker-py-1.3.1"; + name = "docker-py-1.5.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/docker-py/${name}.tar.gz"; - md5 = "07a5f41fd3f8cc72d05deed628700e99"; + sha256 = "1l7q0179y4lmv24z4q12653141wc1b1zzgbfw46yzbs6mj7i4939"; }; propagatedBuildInputs = with self; [ six requests2 websocket_client ]; @@ -3338,21 +3557,25 @@ let }; urllib3 = buildPythonPackage rec { - name = "urllib3-1.8"; + name = "urllib3-1.12"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/u/urllib3/${name}.tar.gz"; - sha256 = "0pdigfxkq8mhzxxsn6isx8c4h9azqywr1k18yanwyxyj8cdzm28s"; + sha256 = "1ikj72kd4cdcq7pmmcd5p6s9dvp7wi0zw01635v4xzkid5vi598f"; }; preConfigure = '' substituteInPlace test-requirements.txt --replace 'nose==1.3' 'nose' ''; + doCheck = !isPy3k; # lots of transient failures checkPhase = '' - nosetests --cover-min-percentage 70 + # Not worth the trouble + rm test/with_dummyserver/test_proxy_poolmanager.py + nosetests --cover-min-percentage 70 -v ''; + buildInputs = with self; [ coverage tornado mock nose ]; meta = { @@ -3399,11 +3622,11 @@ let }; elasticsearch = buildPythonPackage (rec { - name = "elasticsearch-1.6.0"; + name = "elasticsearch-1.9.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/e/elasticsearch/${name}.tar.gz"; - sha256 = "1b0b5d1qp77r83r130kb2ikhd6am0d1389rdcllr1xsajrp5kj4h"; + sha256 = "091s60ziwhyl9kjfm833i86rcpjx46v9h16jkgjgkk5441dln3gb"; }; # Check is disabled because running them destroy the content of the local cluster! @@ -3414,6 +3637,7 @@ let description = "Official low-level client for Elasticsearch"; homepage = https://github.com/elasticsearch/elasticsearch-py; license = licenses.asl20; + maintainers = with maintainers; [ desiderius ]; }; }); @@ -3795,6 +4019,22 @@ let }; }; + gnureadline = buildPythonPackage rec { + version = "6.3.3"; + name = "gnureadline-${version}"; + disabled = isPyPy; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/g/gnureadline/${name}.tar.gz"; + sha256 = "1ghck2zz4xbqa3wz73brgjhrqj55p9hc1fq6c9zb09dnyhwb0nd2"; + }; + + buildInputs = [ pkgs.ncurses ]; + patchPhase = '' + substituteInPlace setup.py --replace "/bin/bash" "${pkgs.bash}/bin/bash" + ''; + }; + gnutls = buildPythonPackage rec { name = "python-gnutls"; src = pkgs.fetchurl { @@ -4060,6 +4300,41 @@ let }; }; + i3pystatus = buildPythonPackage rec { + name = "${pname}-${version}"; + version = "3.33"; + pname = "i3pystatus"; + namePrefix = ""; + disabled = !isPy3k; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/i/${pname}/${name}.tar.gz"; + sha256 = "1fs2nlzm9in8bwg8cm3567ayiha0v7k8pn793pm5fb7lywaalasy"; + }; + + propagatedBuildInputs = with self; [ keyring colour netifaces praw psutil + basiciw pkgs.libpulseaudio ]; + ldWrapperSuffix = "--suffix LD_LIBRARY_PATH : \"${pkgs.libpulseaudio}/lib\""; + makeWrapperArgs = [ ldWrapperSuffix ]; # libpulseaudio.so is loaded manually + + postInstall = '' + makeWrapper ${python.interpreter} $out/bin/${pname}-python-interpreter \ + --prefix PYTHONPATH : "$PYTHONPATH" \ + ${ldWrapperSuffix} + ''; + + meta = { + homepage = https://github.com/enkore/i3pystatus; + description = "A complete replacement for i3status"; + longDescription = '' + i3pystatus is a growing collection of python scripts for status output compatible + to i3status / i3bar of the i3 window manager. + ''; + license = licenses.mit; + platforms = platforms.linux; + }; + }; + jdcal = buildPythonPackage rec { version = "1.0"; name = "jdcal-${version}"; @@ -4162,6 +4437,24 @@ let }; }; + libthumbor = buildPythonPackage rec { + name = "libthumbor-${version}"; + version = "1.2.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/l/libthumbor/${name}.tar.gz"; + sha256 = "09bbaf08124ee33ea4ef99881625bd20450b0b43ab90fd678479beba8c03f86e"; + }; + + propagatedBuildInputs = with self; [ six pycrypto ]; + + meta = { + description = "libthumbor is the python extension to thumbor"; + homepage = http://github.com/heynemann/libthumbor; + license = licenses.mit; + }; + + }; lti = buildPythonPackage rec { version = "0.4.0"; name = "PyLTI-${version}"; @@ -4680,7 +4973,7 @@ let ] ++ optional isPy26 unittest2; propagatedBuildInputs = with self; [ - paste_deploy + PasteDeploy repoze_lru repoze_sphinx_autointerface translationstring @@ -4694,6 +4987,11 @@ let maintainers = with maintainers; [ garbas iElectric ]; platforms = platforms.all; }; + + # Failing tests + # https://github.com/Pylons/pyramid/issues/1899 + doCheck = !isPy35; + }; @@ -4736,11 +5034,12 @@ let pyramid_jinja2 = buildPythonPackage rec { - name = "pyramid_jinja2-1.9"; + name = "pyramid_jinja2-${version}"; + version = "2.5"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyramid_jinja2/${name}.zip"; - md5 = "a6728117cad24749ddb39d2827cd9033"; + url = "http://pypi.python.org/packages/source/p/pyramid_jinja2/${name}.tar.gz"; + sha256 = "93c86e3103b454301f4d66640191aba047f2ab85ba75647aa18667b7448396bd"; }; buildInputs = with self; [ webtest ]; @@ -4958,18 +5257,30 @@ let statsd = buildPythonPackage rec { - name = "statsd-2.0.2"; + name = "statsd-${version}"; + version = "3.2.1"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/statsd/${name}.tar.gz"; - md5 = "476ef5b9004f6e2cb25c7da440bb53d0"; + sha256 = "3fa92bf0192af926f7a0d9be031fe3fd0fbaa1992d42cf2f07e68f76ac18288e"; }; - buildInputs = with self; [ ]; + buildInputs = with self; [ nose mock ]; meta = { maintainers = with maintainers; [ iElectric ]; + description = "A simple statsd client"; + license = licenses.mit; + homepage = https://github.com/jsocol/pystatsd; }; + + patchPhase = '' + # Failing test: ERROR: statsd.tests.test_ipv6_resolution_udp + sed -i 's/test_ipv6_resolution_udp/noop/' statsd/tests.py + # well this is a noop, but so it was before + sed -i 's/assert_called_once()/called/' statsd/tests.py + ''; + }; py3status = buildPythonPackage rec { @@ -5112,6 +5423,9 @@ let }; buildInputs = with self; [ mock ]; + patchPhase = '' + sed -i 's/assert_call(/assert_called_with(/' substanced/workflow/tests/test_workflow.py + ''; propagatedBuildInputs = with self; [ pyramid @@ -5256,6 +5570,18 @@ let }; }; + pywatchman = buildPythonPackage rec { + name = "pywatchman-${version}"; + version = "1.3.0"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pywatchman/pywatchman-${version}.tar.gz"; + md5 = "852eab2b7d2f4f56580c3cfff4803350"; + }; + postPatch = '' + substituteInPlace pywatchman/__init__.py \ + --replace "'watchman'" "'${pkgs.watchman}/bin/watchman'" + ''; + }; zope_tales = buildPythonPackage rec { name = "zope.tales-4.0.2"; @@ -5790,11 +6116,11 @@ let djblets = buildPythonPackage rec { - name = "Djblets-0.6.28"; + name = "Djblets-0.6.31"; src = pkgs.fetchurl { url = "http://downloads.reviewboard.org/releases/Djblets/0.6/${name}.tar.gz"; - sha256 = "11fsi911cqkjgv9j7646ljc2fgxsdfyq44kzmv01xhysm50fn6xx"; + sha256 = "1yf0dnkj00yzzhbssw88j9gr58ngjfrd6r68p9asf6djishj9h45"; }; propagatedBuildInputs = with self; [ pil django_1_3 feedparser ]; @@ -5855,7 +6181,7 @@ let url = "https://bitbucket.org/edgimar/crecord/get/${builtins.substring 0 12 rev}.tar.gz"; sha256 = "02003fa5620ec40a5ad0d7cede2e65c2cb398a7fe4e1ee26bd3396a87d63ad35"; }; - + # crecord comes as just a bare directory configurePhase = " "; buildPhase = "${python.executable} -m compileall crecord"; @@ -5866,7 +6192,7 @@ let # there ain't none doCheck = false; - + meta = { description = "Mercurial extension for selecting graphically which files/hunk/lines to commit"; homepage = https://bitbucket.org/edgimar/crecord; @@ -5921,6 +6247,8 @@ let description = "Add options to doctest examples while they are running"; homepage = http://pypi.python.org/pypi/dtopt; }; + # Test contain Python 2 print + disabled = isPy3k; }; @@ -6021,11 +6349,11 @@ let }; eventlet = buildPythonPackage rec { - name = "eventlet-0.16.1"; + name = "eventlet-0.17.4"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/e/eventlet/${name}.tar.gz"; - md5 = "58f6e5cd1bcd8ab78e32a2594aa0abad"; + sha256 = "0vam0qfm8p5jkpp2cv12r5bnpnv902ld7q074h7x5y5g9rqyj8c7"; }; buildInputs = with self; [ nose httplib2 pyopenssl ]; @@ -6081,13 +6409,16 @@ let }); feedparser = buildPythonPackage (rec { - name = "feedparser-5.1.3"; + name = "feedparser-5.2.1"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/f/feedparser/${name}.tar.gz"; - md5 = "f2253de78085a1d5738f626fcc1d8f71"; + sha256 = "1ycva69bqssalhqg45rbrfipz3l6hmycszy26k0351fhq990c0xx"; }; + # lots of networking failures + doCheck = false; + meta = { homepage = http://code.google.com/p/feedparser/; description = "Universal feed parser"; @@ -6114,14 +6445,14 @@ let }; docker_compose = buildPythonPackage rec { - version = "1.4.0"; + version = "1.4.2"; name = "docker-compose-${version}"; namePrefix = ""; disabled = isPy3k || isPyPy; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/d/docker-compose/${name}.tar.gz"; - md5 = "a93e801ebe829c2f869cb23d0b606272"; + sha256 = "4f5dae7685b60b70d5adc66a8572e08a97d45f26e279897d70e539277b5d9331"; }; propagatedBuildInputs = with self; [ @@ -6137,8 +6468,8 @@ let doCheck = false; meta = { - homepage = http://www.fig.sh/; - description = "Fast, isolated development environments using Docker"; + homepage = "https://docs.docker.com/compose/"; + description = "Multi-container orchestration for Docker"; license = licenses.asl20; }; }; @@ -6173,18 +6504,15 @@ let }; flake8 = buildPythonPackage (rec { - name = "flake8-2.3.0"; + name = "flake8-2.5.0"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/f/flake8/${name}.tar.gz"; - md5 = "488d6166f6b9ef9fe9d433b95e77dc07"; + sha256 = "137qwipa4z6z8z7n0zg7kg6qi3348l8ck6zqa4yyjah9xv3ch5l2"; }; buildInputs = with self; [ nose mock ]; - propagatedBuildInputs = with self; [ pyflakes_0_8 pep8 mccabe ]; - - # 3 failing tests - #doCheck = false; + propagatedBuildInputs = with self; [ pyflakes pep8 mccabe ]; meta = { description = "Code checking using pep8 and pyflakes"; @@ -6194,7 +6522,6 @@ let }; }); - flask = buildPythonPackage { name = "flask-0.10.1"; @@ -6552,13 +6879,17 @@ let }; futures = buildPythonPackage rec { - name = "futures-3.0.2"; + name = "futures-${version}"; + version = "3.0.3"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/f/futures/${name}.tar.gz"; - md5 = "42aaf1e4de48d6e871d77dc1f9d96d5a"; + sha256 = "2fe2342bb4fe8b8e217f0d21b5921cbe5408bf966d9f92025e707e881b198bed"; }; + # This module is for backporting functionality to Python 2.x, it's builtin in py3k + disabled = isPy3k; + meta = with pkgs.stdenv.lib; { description = "Backport of the concurrent.futures package from Python 3.2"; homepage = "https://github.com/agronholm/pythonfutures"; @@ -6675,11 +7006,11 @@ let geventhttpclient = buildPythonPackage rec { name = "geventhttpclient-${version}"; - version = "1.1.0"; + version = "1.2.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/g/geventhttpclient/${name}.tar.gz"; - sha256 = "1k7s4dnkmcfqqkmbqi0vvb2ns53r9cl2652mq20bgg65zj26j2l6"; + sha256 = "0s1qd1qz0zyzksd5h38ynw06d1012h0k7z8522zhb6mzaq4144yz"; }; propagatedBuildInputs = with self; [ gevent certifi backports_ssl_match_hostname_3_4_0_2 ]; @@ -7180,13 +7511,13 @@ let httpretty = buildPythonPackage rec { name = "httpretty-${version}"; - version = "0.8.3"; + version = "0.8.6"; disabled = isPy3k; doCheck = false; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/h/httpretty/${name}.tar.gz"; - md5 = "50b02560a49fe928c90c53a49791f621"; + sha256 = "0f295zj272plr9lhf80kgz19dxkargwv3ar83rwavrcy516mgg9n"; }; buildInputs = with self; [ tornado requests httplib2 sure nose coverage certifi ]; @@ -7399,12 +7730,12 @@ let }; ipykernel = buildPythonPackage rec { - version = "4.0.3"; + version = "4.1.1"; name = "ipykernel-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/i/ipykernel/${name}.tar.gz"; - sha256 = "a4d7d2d35a0af432c8391872cb4dae727d77031212f32ca858b5c84cd0ea821f"; + sha256 = "d8c5555386d0f18f1336dea9800f9f0fe96dcecc9757c0f980e11fdfadb661ff"; }; buildInputs = with self; [] ++ optionals isPy27 [mock]; @@ -7449,7 +7780,9 @@ let buildInputs = with self; [nose] ++ optionals isPy27 [mock]; - propagatedBuildInputs = with self; [decorator pickleshare simplegeneric traitlets readline requests pexpect sqlite3]; + propagatedBuildInputs = with self; + [decorator pickleshare simplegeneric traitlets readline requests pexpect sqlite3] + ++ optionals stdenv.isDarwin [appnope gnureadline]; meta = { description = "IPython: Productive Interactive Computing"; @@ -7468,6 +7801,8 @@ let sha256 = "3a0624a251a26463c9dfa0ffa635ec51c4265380980d9a50d65611c3c2bd82a6"; }; + buildInputs = with self; [ pytest ]; + meta = { description = "Vestigial utilities from IPython"; homepage = http://ipython.org/; @@ -7554,6 +7889,8 @@ let sha256 = "1qf01afxh7j4gja71vxv345if8avg6nnm0ry0zsk6j3030xgy4p7"; }; + buildInputs = [ self.pytest ]; + meta = { homepage = https://bitbucket.org/micktwomey/pyiso8601/; description = "Simple module to parse ISO 8601 dates"; @@ -7708,12 +8045,12 @@ let }; jupyter_client = buildPythonPackage rec { - version = "4.0.0"; + version = "4.1.1"; name = "jupyter_client-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/j/jupyter_client/${name}.tar.gz"; - sha256 = "a39a4181ea2021daf6e821acae836999ef6e0fefe603813a7a7d4658d2ffa2ac"; + sha256 = "ff1ef5c6c3031a62db46ec6329867b4cb1595e6102a7819b3b5252b0c524bdb8"; }; propagatedBuildInputs = with self; [traitlets jupyter_core pyzmq] ++ optional isPyPy py; @@ -7816,19 +8153,18 @@ let kombu = buildPythonPackage rec { name = "kombu-${version}"; - version = "3.0.24"; + version = "3.0.29"; disabled = pythonOlder "2.6"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/k/kombu/${name}.tar.gz"; - sha256 = "13dzybciispin9c4znpiyvgha354mz124lgx06ksw4vic0vh9zxr"; - md5 = "37c8b5084ac83b8a6f5ff9f157cac0e9"; + sha256 = "1a6wlr2bv6j2z07wrxc5g0w6h99n2ciamx3f7qy40s76cpn5a2lp"; }; buildInputs = with self; optionals (!isPy3k) [ anyjson mock unittest2 nose ]; - propagatedBuildInputs = with self; [ amqp ] ++ + propagatedBuildInputs = with self; [ amqp anyjson ] ++ (optionals (pythonOlder "2.7") [ importlib ordereddict ]); # tests broken on python 2.6? https://github.com/nose-devs/nose/issues/806 @@ -8017,21 +8353,21 @@ let description = "A load testing tool"; }; }; - + llvmlite = buildPythonPackage rec { name = "llvmlite-${version}"; version = "0.7.0"; - + disabled = isPyPy; - - src = pkgs.fetchurl { + + src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/l/llvmlite/${name}.tar.gz"; sha256 = "6d780980da05d2d82465991bce42c1b4625018d67feae17c672c6a9d5ad0bb1a"; }; llvm = pkgs.llvm; - - propagatedBuildInputs = with self; [ llvm ] ++ optional (!isPy34) enum34; + + propagatedBuildInputs = with self; [ llvm ] ++ optional (pythonOlder "3.4") enum34; # Disable static linking # https://github.com/numba/llvmlite/issues/93 @@ -8045,7 +8381,7 @@ let checkPhase = '' ${self.python.executable} runtests.py ''; - + meta = { description = "A lightweight LLVM python binding for writing JIT compilers"; homepage = "http://llvmlite.pydata.org/"; @@ -8053,7 +8389,7 @@ let maintainers = with maintainers; [ fridh ]; }; }; - + lockfile = buildPythonPackage rec { name = "lockfile-0.9.1"; @@ -8579,21 +8915,20 @@ let }; mock = buildPythonPackage (rec { - name = "mock-1.0.1"; + name = "mock-1.3.0"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/m/mock/${name}.tar.gz"; - md5 = "c3971991738caa55ec7c356bbc154ee2"; + sha256 = "1xm0xkaz8d8d26kdk09f2n9vn543ssd03vmpkqlmgq3crjz7s90y"; }; buildInputs = with self; [ unittest2 ]; + propagatedBuildInputs = with self; [ funcsigs six pbr ]; meta = { description = "Mock objects for Python"; - homepage = http://python-mock.sourceforge.net/; - - license = "mBSD"; + license = stdenv.lib.licenses.bsd2; }; }); @@ -8723,7 +9058,7 @@ let md5 = "84a117c9a75b86842b0fa5f5c9c767f3"; }; - buildInputs = [ pkgs.glibcLocales ]; + buildInputs = [ pkgs.glibcLocales self.mock ]; # some files in tests dir include unicode names preBuild = '' @@ -8925,6 +9260,15 @@ let }; }; + monotonic = buildPythonPackage rec { + name = "monotonic-0.4"; + + src = pkgs.fetchurl { + url = "http://pypi.python.org/packages/source/m/monotonic/${name}.tar.gz"; + sha256 = "1diab6hfh3jpa1f0scpqaqrawk4g97ss4v7gkn2yw8znvdm6abw5"; + }; + }; + MySQL_python = buildPythonPackage rec { name = "MySQL-python-1.2.5"; @@ -9085,7 +9429,7 @@ let disabled = (!isPy3k); - propagatedBuildInputs = with self ; [ dnspython3 pyasn1 ]; + propagatedBuildInputs = with self ; [ dns pyasn1 ]; src = pkgs.fetchurl { url = "https://github.com/fritzy/SleekXMPP/archive/sleek-${version}.tar.gz"; @@ -9120,15 +9464,16 @@ let }; netaddr = buildPythonPackage rec { - name = "netaddr-0.7.5"; + name = "netaddr-0.7.18"; + disabled = isPy35; # https://github.com/drkjam/netaddr/issues/117 src = pkgs.fetchurl { - url = "https://github.com/downloads/drkjam/netaddr/${name}.tar.gz"; - sha256 = "0ssxic389rdc79zkz8dxcjpqdi5qs80h12khkag410cl9cwk11f2"; + url = "https://pypi.python.org/packages/source/n/netaddr/${name}.tar.gz"; + sha256 = "06dxjlbcicq7q3vqy8agq11ra01kvvd47j4mk6dmghjsyzyckxd1"; }; - # error: invalid command 'test' - doCheck = false; + LC_ALL = "en_US.UTF-8"; + buildInputs = [ pkgs.glibcLocales ]; meta = { homepage = https://github.com/drkjam/netaddr/; @@ -9232,15 +9577,16 @@ let modules.sqlite3 ]; - # Test does not work on Py3k because it calls 'python'. - # https://github.com/nipy/nibabel/issues/341 - - # Test fails with numpy 1.10.1: ERROR: nibabel.tests.test_proxy_api.TestPARRECAPI.test_proxy_slicing - # See https://github.com/nipy/nibabel/pull/358 - # and https://github.com/numpy/numpy/issues/6491 preCheck = '' + # Test does not work on Py3k because it calls 'python'. + # https://github.com/nipy/nibabel/issues/341 rm nisext/tests/test_testers.py + # Test fails with numpy 1.10.1: ERROR: nibabel.tests.test_proxy_api.TestPARRECAPI.test_proxy_slicing + # See https://github.com/nipy/nibabel/pull/358 + # and https://github.com/numpy/numpy/issues/6491 rm nibabel/tests/test_proxy_api.py + # https://github.com/nipy/nibabel/issues/366 + rm nisext/tests/test_doctest_markup.py ''; meta = { @@ -9256,7 +9602,7 @@ let # Uses python 2 print. Master seems to be Py3 compatible. disabled = isPy3k; - + src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/n/nipype/${name}.tar.gz"; md5 = "480013709633a6d292e2ef668443e0c9"; @@ -9291,8 +9637,6 @@ let sha256 = "00qymfgwg4iam4xi0w9bnv7lcb3fypq1hzfafzgs1rfmwaj67g3n"; }; - buildInputs = with self; [ coverage ]; - doCheck = false; # lot's of transient errors, too much hassle checkPhase = if python.is_py3k or false then '' ${python}/bin/${python.executable} setup.py build_tests @@ -9306,6 +9650,26 @@ let }; }; + nose-exclude = buildPythonPackage rec { + name = "nose-exclude-${version}"; + version = "0.4.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/n/nose-exclude/${name}.tar.gz"; + sha256 = "44466a9bcb56d2e568750f91504d1278c74eabb259a305b06e975b87b51635da"; + }; + + propagatedBuildInputs = with self; [ nose ]; + + meta = { + license = licenses.lgpl21; + description = "Exclude specific directories from nosetests runs"; + homepage = https://github.com/kgrandis/nose-exclude; + maintainers = with maintainers; [ fridh ]; + }; + + }; + nose-selecttests = buildPythonPackage rec { version = "0.4"; name = "nose-selecttests-${version}"; @@ -9401,12 +9765,12 @@ let }; notebook = buildPythonPackage rec { - version = "4.0.5"; + version = "4.0.6"; name = "notebook-${version}"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/n/notebook/${name}.tgz"; - sha256 = "5ac716940cfd7612369ee177c0d7fc0eb888335b76dfcea17513cb5d5b4056a8"; + url = "https://pypi.python.org/packages/source/n/notebook/${name}.tar.gz"; + sha256 = "f62e7a6afbc00bab3615b927595d27b1874cff3218bddcbab62f97f6dae567c3"; }; buildInputs = with self; [nose] ++ optionals isPy27 [mock]; @@ -9487,12 +9851,12 @@ let numba = buildPythonPackage rec { version = "0.21.0"; name = "numba-${version}"; - + src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/n/numba/${name}.tar.gz"; sha256 = "1806d2f6ad49ad891e9ac6fed0cc0b0489cbfcd9ba2dc81081c1c30091e77604"; }; - + propagatedBuildInputs = with self; [numpy llvmlite argparse] ++ optional (!isPy3k) funcsigs ++ optional (isPy27 || isPy33) singledispatch; # Future work: add Cuda support. #propagatedBuildInputs = with self; [numpy llvmlite argparse pkgs.cudatoolkit6]; @@ -9509,7 +9873,7 @@ let maintainers = with maintainers; [ fridh ]; }; }; - + numexpr = buildPythonPackage rec { version = "2.4.3"; name = "numexpr-${version}"; @@ -9823,6 +10187,7 @@ let sha256 = "1g9imbg4sjfyv5sqg2s7h4svhdmbnvq16hvc1a8jpaqq8nc2vjj2"; }; + buildInputs = with self; [ pytest ]; propagatedBuildInputs = with self; [ jdcal ]; meta = { @@ -9924,16 +10289,16 @@ let }); oslosphinx = buildPythonPackage rec { - name = "oslosphinx-3.1.0"; + name = "oslosphinx-3.3.1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/o/oslosphinx/${name}.tar.gz"; - md5= "4fcac44bd6ef174586307a1508ff228f"; + sha256 = "1rjiiahw2y7pg5rl15fvhmfyh26vm433000nwp7c94khx7w85w75"; }; doCheck = false; - buildInputs = with self; [ + propagatedBuildInputs = with self; [ pbr requests2 (sphinx.override {src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/sphinx/sphinx-1.2.3.tar.gz"; @@ -9942,6 +10307,1232 @@ let ]; }; + tempest-lib = buildPythonPackage rec { + name = "tempest-lib-${version}"; + version = "0.10.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/t/tempest-lib/${name}.tar.gz"; + sha256 = "0x842a67k9f7yk3zr6755s4qldkfngljqy5whd4jb553y4hn5lyj"; + }; + + patchPhase = '' + substituteInPlace tempest_lib/tests/cli/test_execute.py --replace "/bin/ls" "${pkgs.coreutils}/bin/ls" + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + + buildInputs = with self; [ testtools testrepository subunit oslotest ]; + propagatedBuildInputs = with self; [ + pbr six paramiko httplib2 jsonschema iso8601 fixtures Babel oslo-log + os-testr ]; + + }; + + os-testr = buildPythonPackage rec { + name = "os-testr-${version}"; + version = "0.4.2"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/os-testr/${name}.tar.gz"; + sha256 = "0474z0mxb7y3vfk4s097wf1mzji5d135vh27cvlh9q17rq3x9r3w"; + }; + + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + sed -i 's@python@${python.interpreter}@' os_testr/tests/files/testr-conf + ''; + + # since tests depend on install results, let's do it so + doInstallCheck = true; + doCheck = false; + installCheckPhase = '' + export PATH=$PATH:$out/bin + ${python.interpreter} setup.py test + ''; + + propagatedBuildInputs = with self; [ pbr Babel testrepository subunit testtools ]; + buildInputs = with self; [ coverage oslosphinx oslotest testscenarios six ddt ]; + }; + + bandit = buildPythonPackage rec { + name = "bandit-${version}"; + version = "0.14.1"; + disabled = isPyPy; # a test fails + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/b/bandit/${name}.tar.gz"; + sha256 = "1hsc3qn3srzx76zl8z3hg0vjp8m6mk9ylfhhgw5bcwbjz3x82ifl"; + }; + + propagatedBuildInputs = with self; [ pbr six pyyaml appdirs stevedore ]; + buildInputs = with self; [ beautifulsoup4 oslosphinx testtools testscenarios + testrepository fixtures mock ]; + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + }; + + oslo-serialization = buildPythonPackage rec { + name = "oslo.serialization-${version}"; + version = "1.10.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/oslo.serialization/${name}.tar.gz"; + sha256 = "15k8aql2rx5jzv3hfvmd48vsyw172qa64bs3fmsyx25p37zyfy8a"; + }; + + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + + propagatedBuildInputs = with self; [ pbr Babel six iso8601 pytz oslo-utils msgpack netaddr ]; + buildInputs = with self; [ oslotest mock coverage simplejson oslo-i18n ]; + }; + + rfc3986 = buildPythonPackage rec { + name = "rfc3986-${version}"; + version = "0.2.2"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/r/rfc3986/rfc3986-0.2.2.tar.gz"; + sha256 = "0yvzz7gp84qqdadbjdh9ch7dz4w19nmhwa704s9m11bljgp3hqmn"; + }; + + LC_ALL = "en_US.UTF-8"; + buildInputs = [ pkgs.glibcLocales ]; + + meta = with stdenv.lib; { + description = "rfc3986"; + homepage = https://rfc3986.rtfd.org; + }; + }; + + pycadf = buildPythonPackage rec { + name = "pycadf-${version}"; + version = "1.1.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pycadf/pycadf-1.1.0.tar.gz"; + sha256 = "0lv9nhbvj1pa8qgn3qvyk9k4q8f7w541074n1rhdjnjkinh4n4dg"; + }; + + propagatedBuildInputs = with self; [ + oslo-i18n argparse six wrapt oslo-utils pbr oslo-config Babel netaddr + monotonic iso8601 pytz stevedore oslo-serialization msgpack + debtcollector netifaces + ]; + buildInputs = with self; [ + oslosphinx testtools testrepository oslotest + ]; + + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + + meta = with stdenv.lib; { + homepage = https://launchpad.net/pycadf; + }; + }; + + + oslo-utils = buildPythonPackage rec { + name = "oslo.utils-${version}"; + version = "2.6.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/oslo.utils/${name}.tar.gz"; + sha256 = "1prgi03nxkcykyja821qkycsqlnpyzw17mpvj8qf3pjmgb9gv1fy"; + }; + + propagatedBuildInputs = with self; [ pbr Babel six iso8601 pytz netaddr netifaces + monotonic oslo-i18n wrapt debtcollector ]; + buildInputs = with self; [ oslotest mock coverage oslosphinx ]; + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + }; + + oslo-middleware = buildPythonPackage rec { + name = "oslo.middleware-${version}"; + version = "2.9.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/oslo.middleware/${name}.tar.gz"; + sha256 = "14acinchdpmc1in39mz9kh1h2rd1ygwg3zdhbwzrlhy8wbzzi4w9"; + }; + + propagatedBuildInputs = with self; [ + oslo-i18n six oslo-utils pbr oslo-config Babel oslo-context stevedore + jinja2 webob debtcollector + ]; + buildInputs = with self; [ + coverage testtools oslosphinx oslotest + ]; + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + sed -i '/ordereddict/d' requirements.txt + ''; + + meta = with stdenv.lib; { + homepage = "http://wiki.openstack.org/wiki/Oslo#oslo.middleware"; + }; + }; + + oslo-versionedobjects = buildPythonPackage rec { + name = "oslo.versionedobjects-${version}"; + version = "0.11.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/oslo.versionedobjects/${name}.tar.gz"; + sha256 = "1ddcb2zf7a3544ay4sxw200a4mz7p0n1f7826h3vibfdqjlc80y7"; + }; + + propagatedBuildInputs = with self; [ + six Babel oslo-concurrency oslo-config oslo-context oslo-messaging + oslo-serialization oslo-utils iso8601 oslo-log oslo-i18n webob + ]; + buildInputs = with self; [ + oslo-middleware cachetools oslo-service futurist anyjson oslosphinx + testtools oslotest + ]; + + meta = with stdenv.lib; { + homepage = "http://launchpad.net/oslo"; + }; + }; + + cachetools = buildPythonPackage rec { + name = "cachetools-${version}"; + version = "1.1.3"; + disabled = isPyPy; # a test fails + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/c/cachetools/${name}.tar.gz"; + sha256 = "0js7qx5pa8ibr8487lcf0x3a7w0xml0wa17snd6hjs0857kqhn20"; + }; + + meta = with stdenv.lib; { + homepage = "https://github.com/tkem/cachetools"; + }; + }; + + futurist = buildPythonPackage rec { + name = "futurist-${version}"; + version = "0.7.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/f/futurist/${name}.tar.gz"; + sha256 = "0wf0k9xf5xzmi79418xq8zxwr7w7a4g4alv3dds9afb2l8bh9crg"; + }; + + propagatedBuildInputs = with self; [ + contextlib2 pbr six monotonic futures eventlet + ]; + buildInputs = with self; [ + testtools testscenarios testrepository oslotest subunit + ]; + + }; + + oslo-messaging = buildPythonPackage rec { + name = "oslo.messaging-${version}"; + version = "2.7.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/oslo.messaging/${name}.tar.gz"; + sha256 = "1af7l4ri3xfjcnjp2yhngz34h3ls00yyj1x8i64dxb86ryy43kd1"; + }; + + propagatedBuildInputs = with self; [ + pbr oslo-config oslo-context oslo-log oslo-utils oslo-serialization + oslo-i18n stevedore six eventlet greenlet webob pyyaml kombu trollius + aioeventlet cachetools oslo-middleware futurist redis oslo-service + eventlet pyzmq + ]; + + buildInputs = with self; [ + oslotest mock mox3 subunit testtools testscenarios testrepository + fixtures oslosphinx + ]; + + preBuild = '' + # transient failure https://bugs.launchpad.net/oslo.messaging/+bug/1510481 + sed -i 's/test_send_receive/noop/' oslo_messaging/tests/drivers/test_impl_rabbit.py + ''; + }; + + os-brick = buildPythonPackage rec { + name = "os-brick-${version}"; + version = "0.5.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/os-brick/${name}.tar.gz"; + sha256 = "1q05yk5hada470rwsv3hfjn7pdp9n7pprmnslm723l7cfhf7cgm6"; + }; + + propagatedBuildInputs = with self; [ + six retrying oslo-utils oslo-service oslo-i18n oslo-serialization oslo-log + oslo-concurrency eventlet Babel pbr + ]; + buildInputs = with self; [ + testtools testscenarios testrepository requests + ]; + + checkPhase = '' + ${python.interpreter} -m subunit.run discover -t ./ . + ''; + + meta = with stdenv.lib; { + homepage = "http://www.openstack.org/"; + }; + }; + + oslo-reports = buildPythonPackage rec { + name = "oslo.reports-${version}"; + version = "0.6.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/oslo.reports/${name}.tar.gz"; + sha256 = "0j27mbsa5y1fn9lxn98xs7p9vipcig47srm5sgbgma0ilv125b65"; + }; + + propagatedBuildInputs = with self; [ + oslo-i18n oslo-utils oslo-serialization six psutil_1 Babel jinja2 pbr psutil_1 + ]; + buildInputs = with self; [ + coverage greenlet eventlet oslosphinx oslotest + ]; + + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + }; + + cinderclient = buildPythonPackage rec { + name = "cinderclient-${version}"; + version = "1.4.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/python-cinderclient/python-cinderclient-${version}.tar.gz"; + sha256 = "1vfcjljfad3034bfhfcrfhphym1ik6qk42nrxzl0gqb9408n6k3l"; + }; + + propagatedBuildInputs = with self; [ + six Babel simplejson requests keystoneclient prettytable argparse pbr + ]; + buildInputs = with self; [ + testrepository requests-mock + ]; + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + + meta = with stdenv.lib; { + description = "Python bindings to the OpenStack Cinder API"; + homepage = "http://www.openstack.org/"; + }; + }; + + neutronclient = buildPythonPackage rec { + name = "neutronclient-${version}"; + version = "3.1.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/python-neutronclient/python-neutronclient-${version}.tar.gz"; + sha256 = "0g96x5b8lz407in70j6v7jbj613y6sd61b21j1y03x06b2rk5i02"; + }; + + propagatedBuildInputs = with self; [ + pbr six simplejson keystoneclient requests2 oslo-utils oslo-serialization + oslo-i18n netaddr iso8601 cliff argparse + ]; + buildInputs = with self; [ + tempest-lib mox3 oslotest requests-mock + ]; + + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + # test fails on py3k + ${if isPy3k then "substituteInPlace neutronclient/tests/unit/test_cli20_port.py --replace 'test_list_ports_with_fixed_ips_in_csv' 'noop'" else ""} + ''; + + meta = with stdenv.lib; { + description = "Python bindings to the Neutron API"; + homepage = "http://www.openstack.org/"; + }; + }; + + cliff = buildPythonPackage rec { + name = "cliff-${version}"; + version = "1.15.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/c/cliff/${name}.tar.gz"; + sha256 = "1rrbq1nvc84x417hbfm9sc1scia16nilr8nm8ycm8iq5jkh6zfpm"; + }; + + propagatedBuildInputs = with self; [ + argparse pyyaml pbr six cmd2 stevedore unicodecsv prettytable pyparsing + ]; + buildInputs = with self; [ + httplib2 oslosphinx coverage mock nose tempest-lib + ]; + + meta = with stdenv.lib; { + homepage = "https://launchpad.net/python-cliff"; + }; + }; + + cmd2 = buildPythonPackage rec { + name = "cmd2-${version}"; + version = "0.6.8"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/c/cmd2/${name}.tar.gz"; + sha256 = "1a346zcd46c8gwbbp2cxsmvgfkyy26kwxjzdnkv7n47w6660sy5c"; + }; + + propagatedBuildInputs = with self; [ + pyparsing + ]; + + meta = with stdenv.lib; { + description = "Enhancements for standard library's cmd module."; + homepage = "http://packages.python.org/cmd2/"; + }; + }; + + + oslo-db = buildPythonPackage rec { + name = "oslo.db-${version}"; + version = "3.0.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/oslo.db/${name}.tar.gz"; + sha256 = "0jjimsfl53wigzf92dhns813n65qcwilcqlj32m86rxrcz0pjgph"; + }; + + propagatedBuildInputs = with self; [ + six stevedore sqlalchemy_migrate sqlalchemy_1_0 oslo-utils oslo-context + oslo-config oslo-i18n iso8601 Babel alembic pbr psycopg2 + ]; + buildInputs = with self; [ + tempest-lib testresources mock oslotest + ]; + }; + + oslo-rootwrap = buildPythonPackage rec { + name = "oslo.rootwrap-${version}"; + version = "2.4.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/oslo.rootwrap/${name}.tar.gz"; + sha256 = "1711rlmykizw675ihbaqmk3ph6ah0njbygxr9lrdnacy6yrlmbd5"; + }; + + buildInputs = with self; [ eventlet mock oslotest ]; + propagatedBuildInputs = with self; [ + six pbr + ]; + + # way too many assumptions + doCheck = false; + }; + + glanceclient = buildPythonPackage rec { + name = "glanceclient-${version}"; + version = "1.1.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/python-glanceclient/python-glanceclient-${version}.tar.gz"; + sha256 = "0ppjafsmf29ps23jsw6g2xm66pdi5jdzpywglqqm28b8fj931zsr"; + }; + + propagatedBuildInputs = with self; [ + oslo-i18n oslo-utils six requests2 keystoneclient prettytable Babel pbr + argparse warlock + ]; + buildInputs = with self; [ + tempest-lib requests-mock + ]; + + checkPhase = '' + ${python.interpreter} -m subunit.run discover -t ./ . + ''; + + meta = with stdenv.lib; { + description = "Python bindings to the OpenStack Images API"; + homepage = "http://www.openstack.org/"; + }; + }; + + warlock = buildPythonPackage rec { + name = "warlock-${version}"; + version = "1.2.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/w/warlock/${name}.tar.gz"; + sha256 = "0npgi4ks0nww2d6ci791iayab0j6kz6dx3jr7bhpgkql3s4if3bw"; + }; + + propagatedBuildInputs = with self; [ + six jsonpatch jsonschema jsonpointer + ]; + buildInputs = with self; [ + + ]; + + meta = with stdenv.lib; { + homepage = "http://github.com/bcwaldon/warlock"; + }; + }; + + + oslo-service = buildPythonPackage rec { + name = "oslo.service-${version}"; + version = "0.10.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/oslo.service/oslo.service-0.10.0.tar.gz"; + sha256 = "1pcnimc2a50arcgq355ad9lramf6y1yv974swgfj6w90v5c6p9gz"; + }; + + propagatedBuildInputs = with self; [ + repoze_lru PasteDeploy Babel oslo-context debtcollector + oslo-concurrency wrapt eventlet six oslo-serialization greenlet paste + oslo-config monotonic iso8601 oslo-log pytz routes msgpack + oslo-i18n argparse oslo-utils pbr enum34 netaddr stevedore netifaces + pyinotify webob retrying pyinotify ]; + buildInputs = with self; [ + oslosphinx oslotest pkgs.procps mock mox3 fixtures subunit testrepository + testtools testscenarios + ]; + + # failing tests + preCheck = '' + rm oslo_service/tests/test_service.py + ''; + + meta = with stdenv.lib; { + homepage = "http://wiki.openstack.org/wiki/Oslo#oslo.service"; + }; + }; + + oslo-cache = buildPythonPackage rec { + name = "oslo.cache-${version}"; + version = "0.9.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/oslo.cache/${name}.tar.gz"; + sha256 = "0dzvm5xkfj1alf469d7v3syig9f91kjh4p55k57ykgaww3y4cdjp"; + }; + + propagatedBuildInputs = with self; [ + Babel dogpile_cache six oslo-config oslo-i18n oslo-log oslo-utils + ]; + buildInputs = with self; [ + oslosphinx oslotest memcached pymongo + ]; + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + }; + + pecan = buildPythonPackage rec { + name = "pecan-${version}"; + version = "1.0.3"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pecan/${name}.tar.gz"; + sha256 = "04abmybab8jzbwgmrr0fcpcfhcvvkdsv9q135dss02wyk9q9jv4d"; + }; + + propagatedBuildInputs = with self; [ + singledispatch logutils + ]; + buildInputs = with self; [ + webtest Mako genshi Kajiki sqlalchemy_1_0 gunicorn jinja2 virtualenv + ]; + + meta = with stdenv.lib; { + description = "Pecan"; + homepage = "http://github.com/pecan/pecan"; + }; + }; + + Kajiki = buildPythonPackage rec { + name = "Kajiki-${version}"; + version = "0.5.2"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/K/Kajiki/${name}.tar.gz"; + sha256 = "1ayhr4g5q2hhh50fd33dkb7l8z8n2hnnx3lmhivzg3paf47b3ssz"; + }; + + propagatedBuildInputs = with self; [ + Babel pytz nine + ]; + meta = with stdenv.lib; { + description = "Kajiki provides fast well-formed XML templates"; + homepage = "https://github.com/nandoflorestan/kajiki"; + }; + }; + + ryu = buildPythonPackage rec { + name = "ryu-${version}"; + version = "3.26"; + + propagatedBuildInputs = with self; [ + pbr paramiko lxml + ]; + buildInputs = with self; [ + webtest routes oslo-config msgpack eventlet FormEncode + ]; + + preCheck = '' + # we don't really need linters + sed -i '/pylint/d' tools/test-requires + sed -i '/pep8/d' tools/test-requires + ''; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/r/ryu/${name}.tar.gz"; + sha256 = "1fhriqi7qnvvx9mbvlfm94i5drh920lg204zy3v0qjz43sinkih6"; + }; + }; + + WSME = buildPythonPackage rec { + name = "WSME-${version}"; + version = "0.8.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/W/WSME/${name}.tar.gz"; + sha256 = "1nw827iz5g9jlfnfbdi8kva565v0kdjzba2lccziimj09r71w900"; + }; + + doInstallCheck = true; + doCheck = false; + installCheckPhase = '' + # remove turbogears tests as we don't have it packaged + rm tests/test_tg* + # remove flask since we don't have flask-restful + rm tests/test_flask* + # https://bugs.launchpad.net/wsme/+bug/1510823 + ${if isPy3k then "rm tests/test_cornice.py" else ""} + + nosetests tests/ + ''; + + propagatedBuildInputs = with self; [ + pbr six simplegeneric netaddr pytz webob + ]; + buildInputs = with self; [ + cornice nose webtest pecan transaction cherrypy sphinx + ]; + }; + + taskflow = buildPythonPackage rec { + name = "taskflow-${version}"; + version = "1.23.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/t/taskflow/${name}.tar.gz"; + sha256 = "15np1rc6g9vksgdj0y930ysx5wbmhvc082g264j5zbj6c479g8qa"; + }; + + propagatedBuildInputs = with self; [ + pbr futures enum34 debtcollector cachetools oslo-serialization oslo-utils + jsonschema monotonic stevedore networkx futurist pbr automaton fasteners + ]; + buildInputs = with self; [ + oslosphinx pymysql psycopg2 alembic redis eventlet kazoo zake kombu + testscenarios testtools mock oslotest + ]; + + preBuild = '' + # too many transient failures + rm taskflow/tests/unit/test_engines.py + ''; + + doInstallCheck = true; + doCheck = false; + installCheckPhase = '' + sed -i '/doc8/d' test-requirements.txt + ${python.interpreter} setup.py test + ''; + }; + + glance_store = buildPythonPackage rec { + name = "glance_store-${version}"; + version = "0.9.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/g/glance_store/${name}.tar.gz"; + sha256 = "16az3lq9szl0ixna9rd82dmn4sfxqyivhn4z3z79vk8qdfip1sr9"; + }; + + # remove on next version bump + patches = [ + ../development/python-modules/fix_swiftclient_mocking.patch + ]; + + propagatedBuildInputs = with self; [ + oslo-config oslo-i18n oslo-serialization oslo-utils oslo-concurrency stevedore + enum34 eventlet six jsonschema swiftclient httplib2 pymongo + ]; + buildInputs = with self; [ + mock fixtures subunit requests-mock testrepository testscenarios testtools + oslotest oslosphinx boto oslo-vmware + ]; + + meta = with stdenv.lib; { + description = "Glance Store Library"; + homepage = "http://www.openstack.org/"; + }; + }; + + swiftclient = buildPythonPackage rec { + name = "swiftclient-${version}"; + version = "2.6.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/python-swiftclient/python-swiftclient-${version}.tar.gz"; + sha256 = "1j33l4z9vqh0scfncl4fxg01zr1hgqxhhai6gvcih1gccqm4nd7p"; + }; + + propagatedBuildInputs = with self; [ + pbr requests2 futures six + ]; + buildInputs = with self; [ + testtools testrepository mock + ]; + + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + + meta = with stdenv.lib; { + description = "Python bindings to the OpenStack Object Storage API"; + homepage = "http://www.openstack.org/"; + }; + }; + + + castellan = buildPythonPackage rec { + name = "castellan-${version}"; + version = "0.2.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/c/castellan/${name}.tar.gz"; + sha256 = "1im9b4qzq4yhn17jjc8927b3hn06h404vsx8chddw2jfp0v4ryfj"; + }; + + propagatedBuildInputs = with self; [ + pbr Babel cryptography oslo-config oslo-context oslo-log oslo-policy + oslo-serialization oslo-utils + ]; + buildInputs = with self; [ + subunit barbicanclient oslosphinx oslotest testrepository testtools + testscenarios + ]; + + preCheck = '' + # uses /etc/castellan/castellan-functional.conf + rm castellan/tests/functional/key_manager/test_barbican_key_manager.py + ''; + + meta = with stdenv.lib; { + homepage = "https://github.com/yahoo/Zake"; + }; + }; + + zake = buildPythonPackage rec { + name = "zake-${version}"; + version = "0.2.2"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/z/zake/${name}.tar.gz"; + sha256 = "1rp4xxy7qp0s0wnq3ig4ji8xsl31g901qkdp339ndxn466cqal2s"; + }; + + propagatedBuildInputs = with self; [ + kazoo six + ]; + buildInputs = with self; [ + + ]; + + meta = with stdenv.lib; { + homepage = "https://github.com/yahoo/Zake"; + }; + }; + + automaton = buildPythonPackage rec { + name = "automaton-${version}"; + version = "0.8.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/a/automaton/${name}.tar.gz"; + sha256 = "040rw7w92mp34a15vzvbfvhv1cg8zf81s9jbdd9rmwxr0gmgp2ya"; + }; + + propagatedBuildInputs = with self; [ + wrapt pbr Babel six pytz prettytable debtcollector + ]; + buildInputs = with self; [ + testtools testscenarios testrepository + ]; + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + }; + + networking-hyperv = buildPythonPackage rec { + name = "networking-hyperv-${version}"; + version = "2015.1.0"; + disabled = isPy3k; # failing tests + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/n/networking-hyperv/${name}.tar.gz"; + sha256 = "04wfkl8rffxp6gp7qvhhc8y80cy0akmh3z7k7y2sj6savg9q7jdj"; + }; + + propagatedBuildInputs = with self; [ + pbr Babel oslo-config oslo-i18n oslo-serialization oslo-utils oslo-log + ]; + buildInputs = with self; [ + testtools testscenarios testrepository oslotest oslosphinx subunit eventlet + fixtures mock + ]; + + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + # it has pinned pbr<1.0 + sed -i '/pbr/d' requirements.txt + # https://github.com/openstack/networking-hyperv/commit/56d66fc012846620a60cb8f18df5a1c889fe0e26 + sed -i 's/from oslo import i18n/import oslo_i18n as i18n/' hyperv/common/i18n.py + ''; + }; + + kazoo = buildPythonPackage rec { + name = "kazoo-${version}"; + version = "2.2.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/k/kazoo/${name}.tar.gz"; + sha256 = "10pb864if9qi2pq9lfb9m8f7z7ss6rml80gf1d9h64lap5crjnjj"; + }; + + propagatedBuildInputs = with self; [ + six + ]; + buildInputs = with self; [ + eventlet gevent nose mock coverage pkgs.openjdk8 + ]; + + # not really needed + preBuild = '' + sed -i '/flake8/d' setup.py + ''; + + preCheck = '' + sed -i 's/test_unicode_auth/noop/' kazoo/tests/test_client.py + ''; + + # tests take a long time to run and leave threads hanging + doCheck = false; + ZOOKEEPER_PATH = "${pkgs.zookeeper}"; + + meta = with stdenv.lib; { + homepage = "https://kazoo.readthedocs.org"; + }; + }; + + osprofiler = buildPythonPackage rec { + name = "osprofiler-${version}"; + version = "0.3.0"; + disabled = isPyPy; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/osprofiler/${name}.tar.gz"; + sha256 = "01rjym49nn4ry1pr2n8fyal1hf17jqhp2yihg8gr15nfjc5iszkx"; + }; + + propagatedBuildInputs = with self; [ + pbr argparse six webob + ]; + buildInputs = with self; [ + oslosphinx coverage mock subunit testrepository testtools + ]; + + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + }; + + FormEncode = buildPythonPackage rec { + name = "FormEncode-${version}"; + version = "1.3.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/F/FormEncode/${name}.zip"; + sha256 = "0y5gywq0l79l85ylr55p4xy0h921zgmfw6zmrvlh83aa4j074xg6"; + }; + + buildInputs = with self; [ + dns pycountry nose + ]; + + preCheck = '' + # two tests require dns resolving + sed -i 's/test_cyrillic_email/noop/' formencode/tests/test_email.py + sed -i 's/test_unicode_ascii_subgroup/noop/' formencode/tests/test_email.py + ''; + + meta = with stdenv.lib; { + description = "FormEncode validates and converts nested structures."; + homepage = "http://formencode.org"; + }; + }; + + pycountry = buildPythonPackage rec { + name = "pycountry-${version}"; + version = "1.17"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pycountry/${name}.tar.gz"; + sha256 = "1qvhq0c9xsh6d4apcvjphfzl6xnwhnk4jvhr8x2fdfnmb034lc26"; + }; + }; + + nine = buildPythonPackage rec { + name = "nine-${version}"; + version = "0.3.4"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/n/nine/${name}.tar.gz"; + sha256 = "1zrsbm0hajfvklkhgysp81hy632a3bdakp31m0lcpd9xbp5265zy"; + }; + + meta = with stdenv.lib; { + description = "Let's write Python 3 right now!"; + homepage = "https://github.com/nandoflorestan/nine"; + }; + }; + + + logutils = buildPythonPackage rec { + name = "logutils-${version}"; + version = "0.3.3"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/l/logutils/${name}.tar.gz"; + sha256 = "173w55fg3hp5dhx7xvssmgqkcv5fjlaik11w5dah2fxygkjvhhj0"; + }; + }; + + oslo-policy = buildPythonPackage rec { + name = "oslo.policy-${version}"; + version = "0.12.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/oslo.policy/${name}.tar.gz"; + sha256 = "06apaj6fwg7f2g5psmxzr5a9apj2l4k2y8kl1hqzyssykblij8ss"; + }; + + propagatedBuildInputs = with self; [ + requests2 oslo-config oslo-i18n oslo-serialization oslo-utils six + ]; + buildInputs = with self; [ + oslosphinx httpretty oslotest + ]; + }; + + ldappool = buildPythonPackage rec { + name = "ldappool-${version}"; + version = "1.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/l/ldappool/${name}.tar.gz"; + sha256 = "1akmzf51cjfvmd0nvvm562z1w9vq45zsx6fa72kraqgsgxhnrhqz"; + }; + + meta = with stdenv.lib; { + homepage = "https://github.com/mozilla-services/ldappool"; + }; + }; + + + oslo-concurrency = buildPythonPackage rec { + name = "oslo-concurrency-${version}"; + version = "2.7.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/oslo.concurrency/oslo.concurrency-2.7.0.tar.gz"; + sha256 = "1yp8c87yi6fx1qbq4y1xkx47iiifg7jqzpcghivhxqra8vna185d"; + }; + + propagatedBuildInputs = with self; [ + oslo-i18n argparse six wrapt oslo-utils pbr enum34 Babel netaddr monotonic + iso8601 oslo-config pytz netifaces stevedore debtcollector retrying fasteners + eventlet + ]; + buildInputs = with self; [ + oslosphinx fixtures futures coverage oslotest + ]; + + # too much magic in tests + doCheck = false; + + meta = with stdenv.lib; { + homepage = http://launchpad.net/oslo; + }; + }; + + retrying = buildPythonPackage rec { + name = "retrying-${version}"; + version = "1.3.3"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/r/retrying/retrying-1.3.3.tar.gz"; + sha256 = "0fwp86xv0rvkncjdvy2mwcvbglw4w9k0fva25i7zx8kd19b3kh08"; + }; + + propagatedBuildInputs = with self; [ six ]; + + # doesn't ship tests in tarball + doCheck = false; + + meta = with stdenv.lib; { + homepage = https://github.com/rholder/retrying; + }; + }; + + fasteners = buildPythonPackage rec { + name = "fasteners-${version}"; + version = "0.13.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/f/fasteners/fasteners-0.13.0.tar.gz"; + sha256 = "0nghdq3zihiqg10dp76ls7yn44m5wjncyz7fk8isagkrspkh9a3n"; + }; + + propagatedBuildInputs = with self; [ six monotonic ]; + + meta = with stdenv.lib; { + description = "Fasteners"; + homepage = https://github.com/harlowja/fasteners; + }; + }; + + aioeventlet = buildPythonPackage rec { + name = "aioeventlet-${version}"; + version = "0.4"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/a/aioeventlet/aioeventlet-0.4.tar.gz"; + sha256 = "19krvycaiximchhv1hcfhz81249m3w3jrbp2h4apn1yf4yrc4y7y"; + }; + + propagatedBuildInputs = with self; [ eventlet trollius ]; + buildInputs = with self; [ mock ]; + + # 2 tests error out + doCheck = false; + checkPhase = '' + ${python.interpreter} runtests.py + ''; + + meta = with stdenv.lib; { + description = "aioeventlet implements the asyncio API (PEP 3156) on top of eventlet. It makes"; + homepage = http://aioeventlet.readthedocs.org/; + }; + }; + + oslo-log = buildPythonPackage rec { + name = "oslo.log-${version}"; + version = "1.12.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/oslo.log/${name}.tar.gz"; + sha256 = "10x596r19zjla5n1bf04j5vncx0c9gpc5wc2jlmgjbl3cyx3vgsv"; + }; + + propagatedBuildInputs = with self; [ + pbr Babel six iso8601 debtcollector pyinotify + oslo-utils oslo-i18n oslo-config oslo-serialization oslo-context + ]; + buildInputs = with self; [ oslotest oslosphinx ]; + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + }; + + oslo-context = buildPythonPackage rec { + name = "oslo.context-${version}"; + version = "0.7.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/oslo.context/${name}.tar.gz"; + sha256 = "18fmg9dhgngshk63wfb3ddrgx5br8jxkk3x30z40741mslp1fdjy"; + }; + + propagatedBuildInputs = with self; [ pbr Babel ]; + buildInputs = with self; [ oslotest coverage oslosphinx ]; + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + }; + + oslo-i18n = buildPythonPackage rec { + name = "oslo.i18n-${version}"; + version = "2.7.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/oslo.i18n/${name}.tar.gz"; + sha256 = "11jgcvj36g97awh7fpar4xxgwrvzfahq6rw7xxqac32ia790ylcz"; + }; + + propagatedBuildInputs = with self; [ pbr Babel six oslo-config ]; + buildInputs = with self; [ mock coverage oslotest ]; + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + }; + + oslo-config = buildPythonPackage rec { + name = "oslo.config-${version}"; + version = "2.5.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/oslo.config/${name}.tar.gz"; + sha256 = "043mavrzj7vjn7kh1dddci4sf67qwqnnn6cm0k1d19alks9hismz"; + }; + + propagatedBuildInputs = with self; [ argparse pbr six netaddr stevedore ]; + buildInputs = [ self.mock ]; + + # TODO: circular import on oslo-i18n + doCheck = false; + }; + + oslotest = buildPythonPackage rec { + name = "oslotest-${version}"; + version = "1.12.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/oslotest/${name}.tar.gz"; + sha256 = "17i92hymw1dwmmb5yv90m2gam2x21mc960q1pr7bly93x49h8666"; + }; + + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + + propagatedBuildInputs = with self; [ pbr fixtures subunit six testrepository + testscenarios testtools mock mox3 oslo-config os-client-config ]; + }; + + os-client-config = buildPythonPackage rec { + name = "os-client-config-${version}"; + version = "1.8.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/o/os-client-config/${name}.tar.gz"; + sha256 = "10hz4yp594mi1p7v1pvgsmx5w2rnb9y8d0jvb2lfv03ljnwzv8jz"; + }; + + buildInputs = with self; [ pbr testtools testscenarios testrepository fixtures ]; + propagatedBuildInputs = with self; [ appdirs pyyaml keystoneauth1 ]; + + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + # TODO: circular import on oslotest + preCheck = '' + rm os_client_config/tests/{test_config,test_cloud_config,test_environ}.py + ''; + }; + + keystoneauth1 = buildPythonPackage rec { + name = "keystoneauth1-${version}"; + version = "1.1.0"; + disabled = isPyPy; # a test fails + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/k/keystoneauth1/${name}.tar.gz"; + sha256 = "05fc6xsp5mal52ijvj84sf7mrw706ihadfdf5mnq9zxn7pfl4118"; + }; + + buildInputs = with self; [ pbr testtools testresources testrepository mock + pep8 fixtures mox3 requests-mock ]; + propagatedBuildInputs = with self; [ argparse iso8601 requests2 six stevedore + webob oslo-config ]; + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + }; + + requests-mock = buildPythonPackage rec { + name = "requests-mock-${version}"; + version = "0.6.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/r/requests-mock/${name}.tar.gz"; + sha256 = "0gmd88c224y53b1ai8cfsrcxm9kw3gdqzysclmnaqspg7zjhxwd1"; + }; + + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + + buildInputs = with self; [ pbr testtools testrepository mock ]; + propagatedBuildInputs = with self; [ six requests2 ]; + }; + + mox3 = buildPythonPackage rec { + name = "mox3-${version}"; + version = "0.11.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/m/mox3/${name}.tar.gz"; + sha256 = "09dkgki21v5zqrx575h1aazxsq5akkv0a90z644bk1ry9a4zg1pn"; + }; + + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + + buildInputs = with self; [ subunit testrepository testtools six ]; + propagatedBuildInputs = with self; [ pbr fixtures ]; + }; + + debtcollector = buildPythonPackage rec { + name = "debtcollector-${version}"; + version = "0.9.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/d/debtcollector/${name}.tar.gz"; + sha256 = "1mvdxdrnwlgfqg26s5himkjq6f06r2khlrignx36kkbyaix6j9xb"; + }; + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + + buildInputs = with self; [ pbr Babel six wrapt testtools testscenarios + testrepository subunit coverage oslotest ]; + }; + + wrapt = buildPythonPackage rec { + name = "wrapt-${version}"; + version = "1.10.5"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/w/wrapt/${name}.tar.gz"; + sha256 = "0cq8rlpzkxzk48b50yrfhzn1d1hrq4gjcdqlrgq4v5palgiv9jwr"; + }; + }; + pagerduty = buildPythonPackage rec { name = "pagerduty-${version}"; version = "0.2.1"; @@ -9957,14 +11548,15 @@ let inherit (pkgs.stdenv.lib) optional optionalString; inherit (pkgs.stdenv) isDarwin; in buildPythonPackage rec { - name = "pandas-0.16.2"; + name = "pandas-${version}"; + version = "0.17.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pandas/${name}.tar.gz"; - sha256 = "10agmrkps8bi5948vwpipfxds5kj1d076m9i0nhaxwqiw7gm6670"; + sha256 = "320d4fdf734b82adebc8fde9d8ca4b05fe155a72b6f7aa95d76242da8748d6a4"; }; - buildInputs = [ self.nose ] ++ optional isDarwin pkgs.libcxx; + buildInputs = with self; [ nose ] ++ optional isDarwin pkgs.libcxx; propagatedBuildInputs = with self; [ dateutil numpy @@ -9990,31 +11582,16 @@ let "['pandas/src/klib', 'pandas/src', '$cpp_sdk']" ''; - preCheck = '' - # Broken test, probably https://github.com/pydata/pandas/issues/10312: - rm pandas/io/tests/test_html.py - - # Hitting https://github.com/pydata/pandas/pull/7362 on python - # 3.3 and 3.4, not sure why: - rm pandas/tseries/tests/test_daterange.py - - # Need to skip this test; insert a line here... hacky but oh well. - badtest=pandas/tseries/tests/test_timezones.py - fixed=$TMPDIR/fixed_test_timezones.py - touch $fixed - head -n 602 $badtest > $fixed - echo ' raise nose.SkipTest("Not working")' >> $fixed - tail -n +603 $badtest >> $fixed - mv $fixed $badtest - ''; - + # The flag `-A 'not network'` will disable tests that use internet. + # The `-e` flag disables a few problematic tests. + # https://github.com/pydata/pandas/issues/11169 + # https://github.com/pydata/pandas/issues/11287 checkPhase = '' runHook preCheck - # The flag `-A 'not network'` will disable tests that use internet. # The `-e` flag disables a few problematic tests. ${python.executable} setup.py nosetests -A 'not network' --stop \ - -e 'test_clipboard|test_series' --verbosity=3 + -e 'test_data|test_excel|test_html|test_json|test_frequencies|test_frame|test_read_clipboard_infer_excel' --verbosity=3 runHook postCheck ''; @@ -10100,6 +11677,7 @@ let md5 = "7545518b413136ba8343dcebea07e5e2"; }; + buildInputs = with self; [ nose ]; propagatedBuildInputs = with self; [six numpy]; meta = { @@ -10129,7 +11707,7 @@ let }; - paste_deploy = buildPythonPackage rec { + PasteDeploy = buildPythonPackage rec { version = "1.5.2"; name = "paste-deploy-${version}"; @@ -10158,7 +11736,7 @@ let doCheck = false; buildInputs = with self; [ nose ]; - propagatedBuildInputs = with self; [ paste paste_deploy cheetah argparse ]; + propagatedBuildInputs = with self; [ paste PasteDeploy cheetah argparse ]; meta = { description = "A pluggable command-line frontend, including commands to setup package file layouts"; @@ -10199,7 +11777,6 @@ let description = "A module wrapper for os.path"; homepage = http://github.com/jaraco/path.py; license = licenses.mit; - platforms = platforms.linux; }; # Test fails with python 2.7: TestUnicodePaths.test_walkdirs_with_unicode_name @@ -10226,18 +11803,18 @@ let }; pbr = buildPythonPackage rec { - name = "pbr-1.6.0"; + name = "pbr-${version}"; + version = "1.8.1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pbr/${name}.tar.gz"; - sha256 = "1lg1klrczvzfan89y3bl9ykrknl3nb01vvai37fkww24apzyibjf"; + sha256 = "0jcny36cf3s8ar5r4a575npz080hndnrfs4np1fqhv0ym4k7c4p2"; }; + # circular dependencies with fixtures doCheck = false; - - propagatedBuildInputs = with self; [ pip ]; - buildInputs = with self; [ virtualenv ] - ++ stdenv.lib.optional doCheck testtools; + #buildInputs = with self; [ testtools testscenarios testresources + # testrepository fixtures ]; meta = { description = "Python Build Reasonableness"; @@ -10246,6 +11823,23 @@ let }; }; + fixtures = buildPythonPackage rec { + name = "fixtures-1.4.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/f/fixtures/${name}.tar.gz"; + sha256 = "0djxvdwm8s60dbfn7bhf40x6g818p3b3mlwijm1c3bqg7msn271y"; + }; + + buildInputs = with self; [ pbr testtools mock ]; + + meta = { + description = "Reusable state for writing clean tests and more"; + homepage = "https://pypi.python.org/pypi/fixtures"; + license = licenses.asl20; + }; + }; + pelican = buildPythonPackage rec { name = "pelican-${version}"; version = "3.6.3"; @@ -10293,13 +11887,14 @@ let pep8 = buildPythonPackage rec { name = "pep8-${version}"; - version = "1.6.2"; + # 1.6.0 and higher are blocked by flake8 + version = "1.5.7"; disabled = isPy35; # Not yet supported src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pep8/${name}.tar.gz"; - sha256 = "1zybkcdw1sx84dvkfss96nhykqg9bc0cdpwpl4k9wlxm61bf7dxq"; + sha256 = "12b9bbdbwnspxgak14xg58c130x2n0blxzlms5jn2dszn8qj3d0m"; }; meta = { @@ -10318,6 +11913,7 @@ let url = "https://github.com/GreenSteam/pep257/archive/${version}.tar.gz"; sha256 = "0v8aq0xzsa7clazszxl42904c3jpq69lg8a5hg754bqcqf72hfrn"; }; + buildInputs = with self; [ pytest ]; meta = { homepage = https://github.com/GreenSteam/pep257/; @@ -10347,6 +11943,22 @@ let }; }; + pexif = buildPythonPackage rec { + name = "pexif-${version}"; + version = "0.15"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pexif/pexif-0.15.tar.gz"; + sha256 = "45a3be037c7ba8b64bbfc48f3586402cc17de55bb9d7357ef2bc99954a18da3f"; + }; + + meta = { + description = "A module for editing JPEG EXIF data"; + homepage = http://www.benno.id.au/code/pexif/; + license = licenses.mit; + }; + }; + pexpect = buildPythonPackage rec { version = "3.3"; @@ -10471,12 +12083,14 @@ let }; pip = buildPythonPackage rec { - version = "1.5.6"; + version = "7.1.2"; name = "pip-${version}"; + src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pip/pip-${version}.tar.gz"; - md5 = "01026f87978932060cc86c1dc527903e"; + sha256 = "0xx4aypfgchxdknxq7gyqghd8wb221zrzyqlbabzm32jy237j16a"; }; + buildInputs = with self; [ mock scripttest virtualenv pytest ]; }; @@ -10687,6 +12301,37 @@ let }; }; + pkgconfig = buildPythonPackage rec { + name = "pkgconfig-${version}"; + version = "1.1.0"; + + # pypy: SyntaxError: __future__ statements must appear at beginning of file + disabled = isPyPy; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pkgconfig/${name}.tar.gz"; + sha256 = "709daaf077aa2b33bedac12706373412c3683576a43013bbaa529fc2769d80df"; + }; + + buildInputs = with self; [ nose ]; + + propagatedBuildInputs = with self; [pkgs.pkgconfig]; + + meta = { + description = "Interface Python with pkg-config"; + homepage = http://github.com/matze/pkgconfig; + license = licenses.mit; + }; + + # nosetests needs to be run explicitly. + # Note that the distributed archive does not actually contain any tests. + # https://github.com/matze/pkgconfig/issues/9 + checkPhase = '' + nosetests + ''; + + }; + plumbum = buildPythonPackage rec { name = "plumbum-1.5.0"; @@ -10912,6 +12557,13 @@ let }; }; + psutil_1 = self.psutil.overrideDerivation (self: rec { + name = "psutil-1.2.1"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/psutil/${name}.tar.gz"; + sha256 = "0ibclqy6a4qmkjhlk3g8jhpvnk0v9aywknc61xm3hfi5r124m3jh"; + }; + }); psycopg2 = buildPythonPackage rec { name = "psycopg2-2.5.4"; @@ -10959,6 +12611,9 @@ let md5 = "a904aabfe4765cb754f2db84ec7bb03a"; }; + # some weird errors with paths + doCheck = !isPy3k; + meta = { description = "Library with cross-python path, ini-parsing, io, code, log facilities"; homepage = http://pylib.readthedocs.org/; @@ -11073,22 +12728,102 @@ let }; }; - vobject = buildPythonPackage rec { - version = "0.8.1c"; - name = "vobject-${version}"; + pysaml2 = buildPythonPackage rec { + name = "pysaml2-${version}"; + version = "3.0.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/v/vobject/vobject-${version}.tar.gz"; - sha256 = "1xanqn7rn96841s3lim5lnx5743gc4kyfg4ggj1ys5r0gw8i6har"; + url = "https://pypi.python.org/packages/source/p/pysaml2/${name}.tar.gz"; + sha256 = "1h2wvagvl59642jq0s63mfr01q637vq6526mr8riykrjnchcbbi2"; + }; + + propagatedBuildInputs = with self; [ + repoze_who paste cryptography pycrypto pyopenssl ipaddress six cffi idna + enum34 pytz setuptools zope_interface dateutil requests2 pyasn1 webob decorator pycparser + ]; + buildInputs = with self; [ + Mako pytest memcached pymongo mongodict pkgs.xmlsec + ]; + + preConfigure = '' + sed -i 's/pymongo==3.0.1/pymongo/' setup.py + ''; + + # 16 failed, 427 passed, 17 error in 88.85 seconds + doCheck = false; + + meta = with stdenv.lib; { + homepage = "https://github.com/rohe/pysaml2"; + }; + }; + + mongodict = buildPythonPackage rec { + name = "mongodict-${version}"; + version = "0.3.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/m/mongodict/${name}.tar.gz"; + sha256 = "0nv5amfs337m0gbxpjb0585s20rndqfc3mfrzq1iwgnds5gxcrlw"; + }; + + propagatedBuildInputs = with self; [ + pymongo + ]; + + meta = with stdenv.lib; { + description = "MongoDB-backed Python dict-like interface"; + homepage = "https://github.com/turicas/mongodict/"; + }; + }; + + + repoze_who = buildPythonPackage rec { + name = "repoze.who-${version}"; + version = "2.2"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/r/repoze.who/${name}.tar.gz"; + sha256 = "12wsviar45nwn35w2y4i8b929dq2219vmwz8013wx7bpgkn2j9ij"; + }; + + propagatedBuildInputs = with self; [ + zope_interface webob + ]; + buildInputs = with self; [ + + ]; + + meta = with stdenv.lib; { + description = "WSGI Authentication Middleware / API"; + homepage = "http://www.repoze.org"; + }; + }; + + + + vobject = buildPythonPackage rec { + version = "0.8.1d"; + name = "vobject-${version}"; + + src = pkgs.fetchFromGitHub { + owner = "adieu"; + repo = "vobject"; + sha256 = "04fz8g9i9pvrksbpzmp2ci8z34gwjdr7j0f0cxr60v5sdv6v88l9"; + rev = "ef870dfbb7642756d6b691ebf9f52285ec9e504f"; }; disabled = isPy3k || isPyPy; propagatedBuildInputs = with self; [ dateutil ]; + patchPhase = '' + # fails due to hash randomization + sed -i 's/RRULE:FREQ=MONTHLY;BYMONTHDAY=-1,-5/RRULE:FREQ=MONTHLY;BYMONTHDAY=.../' test_vobject.py + ''; + meta = { description = "Module for reading vCard and vCalendar files"; - homepage = http://vobject.skyhouseconsulting.com/; + homepage = https://github.com/adieu/vobject/; license = licenses.asl20; maintainers = with maintainers; [ DamienCassou ]; }; @@ -11168,13 +12903,14 @@ let Babel = buildPythonPackage (rec { - name = "Babel-1.3"; + name = "Babel-2.1.1"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/B/Babel/${name}.tar.gz"; - sha256 = "0bnin777lc53nxd1hp3apq410jj5wx92n08h7h4izpl4f4sx00lz"; + sha256 = "0j2jgfzj1a2m39pm2qc36fzr7a6p5ybwndi0xdzhi2p8zw7dbdkz"; }; + buildInputs = with self; [ pytest ]; propagatedBuildInputs = with self; [ pytz ]; meta = { @@ -11444,6 +13180,23 @@ let }; }; + pyelasticsearch = buildPythonPackage (rec { + name = "pyelasticsearch-1.4"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pyelasticsearch/${name}.tar.gz"; + sha256 = "18wp6llfjv6hvyhr3f6i8dm9wc5rf46wiqsfxwpvnf6mdrvk6xr7"; + }; + + # Tests require a local instance of elasticsearch + doCheck = false; + + meta = { + description = "A clean, future-proof, high-scale API to elasticsearch."; + homepage = https://pyelasticsearch.readthedocs.org; + license = licenses.bsd3; + }; + }); pyenchant = pythonPackages.buildPythonPackage rec { name = "pyenchant-1.6.6"; @@ -11554,30 +13307,6 @@ let }; }; - pyflakes_0_8 = buildPythonPackage rec { - # Pyflakes 0.8 is needed for flake8, which is needed for OpenStack Nova - # https://github.com/NixOS/nixpkgs/pull/10399 - name = "pyflakes-${version}"; - version = "0.8.1"; - - src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/p/pyflakes/${name}.tar.gz"; - sha256 = "0sbpq6pqm1i9wqi41mlfrsc5rk92jv4mskvlyxmnhlbdnc80ma1z"; - }; - - buildInputs = with self; [ unittest2 ]; - - doCheck = !isPyPy; - - disabled = isPy35; # Not supported - - meta = { - homepage = https://launchpad.net/pyflakes; - description = "A simple program which checks Python source files for errors"; - license = licenses.mit; - }; - }; - pygeoip = pythonPackages.buildPythonPackage rec { name = "pygeoip-0.3.2"; @@ -11586,7 +13315,7 @@ let md5 = "861664f8be3bed44820356539f2ea5b6"; }; - propagatedBuildInputs = with pythonPackages; [ ]; + buildInputs = with self; [ nose ]; meta = { description = "Pure Python GeoIP API"; @@ -11627,6 +13356,8 @@ let sha256 = "0lagrwifsgn0s8bzqahpr87p7gd38xja8f06akscinp6hj89283k"; }; + propagatedBuildInputs = with self; [ docutils ]; + meta = { homepage = http://pygments.org/; description = "A generic syntax highlighter"; @@ -11771,11 +13502,11 @@ let pyinotify = buildPythonPackage rec { name = "pyinotify"; - version = "0.9.5"; + version = "0.9.6"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/${name}/${name}-${version}.tar.gz"; - sha256 = "06yblnif9v05xwsbs089n0bj60ndb4lzkv1i15fprqnf6sgjmig7"; + sha256 = "1x3i9wmzw33fpkis203alygfnrkcmq9w1aydcm887jh6frfqm6cw"; }; meta = { @@ -12358,7 +14089,9 @@ let sha256 = "00p6f1dfma65192hc72dxd506491lsq3g5wgxqafi1xpg2w1xia6"; }; - propagatedBuildInputs = with self; [ cssselect lxml ]; + propagatedBuildInputs = with self; [ cssselect lxml webob ]; + # circular dependency on webtest + doCheck = false; }; pyrax = buildPythonPackage rec { @@ -12478,6 +14211,8 @@ let md5 = "c57cba33626ac4b1e3d1974923d59232"; }; + disabled = isPy3k; + meta = { homepage = "https://code.google.com/p/pysphere/"; license = "BSD"; @@ -12833,17 +14568,14 @@ let reportlab = let freetype = overrideDerivation pkgs.freetype (args: { configureFlags = "--enable-static --enable-shared"; }); in buildPythonPackage rec { - name = "reportlab-3.1.8"; + name = "reportlab-3.2.0"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/r/reportlab/${name}.tar.gz"; - md5 = "820a9fda647078503597b85cdba7ed7f"; + sha256 = "14v212cq2w3p0j5xydfr8rav8c8qas1q845r0xj7fm6q5dk8grkj"; }; - buildInputs = with self; [freetype]; - - # error: invalid command 'test' - doCheck = false; + buildInputs = with self; [ freetype pillow pip ]; meta = { description = "An Open Source Python library for generating PDFs and graphics"; @@ -12869,13 +14601,17 @@ let requests2 = buildPythonPackage rec { name = "requests-${version}"; - version = "2.7.0"; + version = "2.8.1"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/r/requests/${name}.tar.gz"; - sha256 = "0gdr9dxm24amxpbyqpbh3lbwxc2i42hnqv50sigx568qssv3v2ir"; + sha256 = "0ny2nr1sqr4hcn3903ghmh7w2yni8shlfv240a8c9p6wyidqvzl4"; }; + buildInputs = [ self.pytest ]; + # sadly, tests require networking + doCheck = false; + meta = { description = "An Apache2 licensed HTTP library, written in Python, for human beings"; homepage = http://docs.python-requests.org/en/latest/; @@ -12985,12 +14721,12 @@ let }; qtconsole = buildPythonPackage rec { - version = "4.0.1"; + version = "4.1.0"; name = "qtconsole-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/q/qtconsole/${name}.tar.gz"; - sha256 = "7d2cf976bb960df11f413709b5b5b809365c48426110e946d0c12117e6ced3a5"; + sha256 = "61fb6e001dd2619a9fe8bd3a096d91c2c794cd9b2c7550a6df27ab6d5d03eb19"; }; buildInputs = with self; [] ++ optionals isPy27 [mock]; @@ -13051,13 +14787,14 @@ let }; redis = buildPythonPackage rec { - name = "redis-2.9.1"; + name = "redis-2.10.3"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/r/redis/${name}.tar.gz"; - sha256 = "1r7lrh4kxccyhr4pyp13ilymmvh22pi7aa9514dmnhi74zn4g5xg"; + sha256 = "1701qjwn4n05q90fdg4bsg96s27xf5s4hsb4gxhv3xk052q3gyx4"; }; + # tests require a running redis doCheck = false; meta = { @@ -13104,14 +14841,20 @@ let restview = buildPythonPackage rec { name = "restview-${version}"; - version = "2.2.1"; + version = "2.5.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/r/restview/${name}.tar.gz"; - sha256 = "070qx694bpk2n67grm82jvvar4nqvvfmmibbnv8snl4qn41jw66s"; + sha256 = "18diqmh6vwz6imcmvwa7s2v4562y73n072d5d7az2r2ks0g2bzdb"; }; - propagatedBuildInputs = with self; [ docutils mock pygments ]; + propagatedBuildInputs = with self; [ docutils readme pygments ]; + buildInputs = with self; [ mock ]; + + patchPhase = '' + # dict order breaking tests + sed -i 's@@...@' src/restview/tests.py + ''; meta = { description = "ReStructuredText viewer"; @@ -13122,13 +14865,34 @@ let }; }; + readme = buildPythonPackage rec { + name = "readme-${version}"; + version = "0.6.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/r/readme/readme-${version}.tar.gz"; + sha256 = "08j2w67nilczn1i5r7h22vag9673i6vnfhyq2rv27r1bdmi5a30m"; + }; + + propagatedBuildInputs = with self; [ + six docutils pygments bleach html5lib + ]; + buildInputs = with self; [ + + ]; + + meta = with stdenv.lib; { + description = "readme"; + homepage = "https://github.com/pypa/readme"; + }; + }; reviewboard = buildPythonPackage rec { - name = "ReviewBoard-1.6.16"; + name = "ReviewBoard-1.6.22"; src = pkgs.fetchurl { url = "http://downloads.reviewboard.org/releases/ReviewBoard/1.6/${name}.tar.gz"; - sha256 = "0vg3ypm57m43bscv8vswjdllv3d2j8lxqwwvpd65cl7jd1in0yr1"; + sha256 = "09lc3ccazlyyd63ifxw3w4kzwd60ax2alk1a95ih6da4clg73mxf"; }; propagatedBuildInputs = with self; @@ -13536,6 +15300,60 @@ let }; }; + pysendfile = buildPythonPackage rec { + name = "pysendfile-${version}"; + version = "2.0.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pysendfile/pysendfile-${version}.tar.gz"; + sha256 = "05qf0m32isflln1zjgxlpw0wf469lj86vdwwqyizp1h94x5l22ji"; + }; + + doInstallCheck = true; + doCheck = false; + installCheckPhase = '' + # this test takes too long + sed -i 's/test_big_file/noop/' test/test_sendfile.py + ${self.python.executable} test/test_sendfile.py + ''; + + meta = with stdenv.lib; { + homepage = "https://github.com/giampaolo/pysendfile"; + }; + }; + + qpid-python = buildPythonPackage rec { + name = "qpid-python-${version}"; + version = "0.32"; + disabled = isPy3k; # not supported + + src = pkgs.fetchurl { + url = "http://www.us.apache.org/dist/qpid/${version}/${name}.tar.gz"; + sha256 = "09hdfjgk8z4s3dr8ym2r6xn97j1f9mkb2743pr6zd0bnj01vhsv4"; + }; + + # needs a broker running and then ./qpid-python-test + doCheck = false; + + }; + + xattr = buildPythonPackage rec { + name = "xattr-0.7.8"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/x/xattr/${name}.tar.gz"; + sha256 = "0nbqfghgy26jyp5q7wl3rj78wr8s39m5042df2jlldg3fx6j0417"; + }; + + # https://github.com/xattr/xattr/issues/43 + doCheck = false; + + postBuild = '' + ${python.interpreter} -m compileall -f xattr + ''; + + propagatedBuildInputs = [ self.cffi ]; + }; scapy = buildPythonPackage rec { name = "scapy-2.2.0"; @@ -13567,11 +15385,11 @@ let }; in buildPythonPackage rec { name = "scipy-${version}"; - version = "0.16.0"; + version = "0.16.1"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/scipy/${name}.tar.gz"; - sha256 = "92592f40097098f3fdbe7f5855d535b29bb16719c2bb59c728bce5e7a28790e0"; + sha256 = "ecd1efbb1c038accb0516151d1e6679809c6010288765eb5da6051550bf52260"; }; buildInputs = [ pkgs.gfortran self.nose ]; @@ -13595,6 +15413,7 @@ let scikitlearn = buildPythonPackage rec { name = "scikit-learn-${version}"; version = "0.17b1"; + disabled = stdenv.isi686; # https://github.com/scikit-learn/scikit-learn/issues/5534 src = pkgs.fetchurl { url = "https://github.com/scikit-learn/scikit-learn/archive/${version}.tar.gz"; @@ -13605,7 +15424,7 @@ let propagatedBuildInputs = with self; [ numpy scipy pkgs.openblas ]; buildPhase = '' - ${self.python.executable} setup.py build_ext -i --fcompiler='gnu95' + ${self.python.interpreter} setup.py build_ext -i --fcompiler='gnu95' ''; checkPhase = '' @@ -13617,7 +15436,7 @@ let homepage = http://scikit-learn.org; license = licenses.bsd3; maintainers = with maintainers; [ fridh ]; - }; + }; }; scripttest = buildPythonPackage rec { @@ -14386,10 +16205,19 @@ let src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/S/Sphinx/${name}.tar.gz"; - md5 = "8786a194acf9673464c5455b11fd4332"; + sha256 = "052i5c7cgvs5iv011dkq3r8d6jycg2gjjg3907ijsbdlq8q52vhs"; }; - propagatedBuildInputs = with self; [ docutils jinja2 pygments sphinx_rtd_theme alabaster Babel snowballstemmer six ]; + LC_ALL = "en_US.UTF-8"; + checkPhase = '' + PYTHON=${python.executable} make test + ''; + + buildInputs = with self; [ mock pkgs.glibcLocales ]; + propagatedBuildInputs = with self; [ + docutils jinja2 pygments sphinx_rtd_theme + alabaster Babel snowballstemmer six nose + ]; meta = { description = "A tool that makes it easy to create intelligent and beautiful documentation for Python projects"; @@ -14523,8 +16351,6 @@ let sqlalchemy9 = buildPythonPackage rec { name = "SQLAlchemy-0.9.9"; - disabled = isPyPy; - src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/S/SQLAlchemy/${name}.tar.gz"; sha256 = "14az6hhrz4bgnicz4q373z119zmaf7j5zxl1jfbfl5lix5m1z9bj"; @@ -14536,7 +16362,7 @@ let # Test-only dependency pysqlite doesn't build on Python 3. This isn't an # acceptable reason to make all dependents unavailable on Python 3 as well - doCheck = !isPy3k; + doCheck = !(isPyPy || isPy3k); checkPhase = '' ${python.executable} sqla_nose.py @@ -14549,11 +16375,12 @@ let }; sqlalchemy_1_0 = self.sqlalchemy9.override rec { - name = "SQLAlchemy-1.0.6"; + name = "SQLAlchemy-1.0.9"; + doCheck = !isPyPy; # lots of tests fail src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/S/SQLAlchemy/${name}.tar.gz"; - sha256 = "1wv5kjf142m8g1dnbvgpbqxb8v8rm9lzgsafql2gg229xi5sba4r"; + sha256 = "03mi79s8dcsqpwql98mlvaf6mf4xf5j3fjkv5m6dgibfwc0pbly3"; }; }; @@ -14589,24 +16416,29 @@ let sqlalchemy_migrate = buildPythonPackage rec { - name = "sqlalchemy-migrate-0.6.1"; + name = "sqlalchemy-migrate-0.10.0"; src = pkgs.fetchurl { - url = "http://sqlalchemy-migrate.googlecode.com/files/${name}.tar.gz"; - sha1 = "17168b5fa066bd56fd93f26345525377e8a83d8a"; + url = "https://pypi.python.org/packages/source/s/sqlalchemy-migrate/${name}.tar.gz"; + sha256 = "00z0lzjs4ksr9yr31zs26csyacjvavhpz6r74xaw1r89kk75qg7q"; }; - buildInputs = with self; [ nose unittest2 scripttest ]; + buildInputs = with self; [ unittest2 scripttest pytz pkgs.pylint tempest-lib mock testtools ]; + propagatedBuildInputs = with self; [ pbr tempita decorator sqlalchemy_1_0 six sqlparse ]; - propagatedBuildInputs = with self; [ tempita decorator sqlalchemy ]; - - preCheck = - '' - echo sqlite:///__tmp__ > test_db.cfg - ''; - - # Some tests fail with "unexpected keyword argument 'script_path'". + doInstallCheck = true; doCheck = false; + installCheckPhase = '' + export PATH=$PATH:$out/bin + echo sqlite:///__tmp__ > test_db.cfg + # depends on ibm_db_sa + rm migrate/tests/changeset/databases/test_ibmdb2.py + # wants very old testtools + rm migrate/tests/versioning/test_schema.py + # transient failures on py27 + substituteInPlace migrate/tests/versioning/test_util.py --replace "test_load_model" "noop" + ${python.interpreter} setup.py test + ''; meta = { homepage = http://code.google.com/p/sqlalchemy-migrate/; @@ -14740,26 +16572,28 @@ let src = pkgs.subunit.src; propagatedBuildInputs = with self; [ testtools testscenarios ]; + buildInputs = [ pkgs.pkgconfig pkgs.check pkgs.cppunit ]; + + patchPhase = '' + sed -i 's/version=VERSION/version="${pkgs.subunit.version}"/' setup.py + ''; meta = pkgs.subunit.meta; }; - sure = buildPythonPackage rec { name = "sure-${version}"; - version = "1.2.8"; + version = "1.2.24"; preBuild = '' export LC_ALL="en_US.UTF-8" ''; - # https://github.com/gabrielfalcao/sure/issues/71 - doCheck = !isPy3k; disabled = isPyPy; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/sure/${name}.tar.gz"; - sha256 = "0pgi9xg00wcw0m1pv5qp7jv53q38yffcmkf2fj1zlfi2b9c3njid"; + sha256 = "1lyjq0rvkbv585dppjdq90lbkm6gyvag3wgrggjzyh7cpyh5c12w"; }; buildInputs = with self; [ nose pkgs.glibcLocales ]; @@ -14775,13 +16609,19 @@ let structlog = buildPythonPackage rec { - name = "structlog-0.4.2"; + name = "structlog-15.3.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/structlog/${name}.tar.gz"; - md5 = "062cda36069e8573e00c265f451f899e"; + sha256 = "1h9qz4fsd7ph8rf80rqmlyj2q54xapgrmkpnyca01w1z8ww6f9w7"; }; + buildInputs = with self; [ pytest pretend freezegun ]; + + checkPhase = '' + py.test + ''; + meta = { description = "Painless structural logging"; homepage = http://www.structlog.org/; @@ -14789,6 +16629,26 @@ let }; }; + freezegun = buildPythonPackage rec { + name = "freezegun-${version}"; + version = "0.3.5"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/f/freezegun/freezegun-${version}.tar.gz"; + sha256 = "02ly89wwn0plcw8clkkzvxaw6zlpm8qyqpm9x2mfw4a0vppb4ngf"; + }; + + propagatedBuildInputs = with self; [ + dateutil six + ]; + buildInputs = [ self.mock self.nose ]; + + meta = with stdenv.lib; { + description = "FreezeGun: Let your Python tests travel through time"; + homepage = "https://github.com/spulec/freezegun"; + }; + }; + # XXX: ValueError: ZIP does not support timestamps before 1980 # svneverever = buildPythonPackage rec { @@ -14971,6 +16831,64 @@ let }; }; + keystoneclient = buildPythonPackage rec { + name = "keystoneclient-${version}"; + version = "1.8.1"; + + src = pkgs.fetchurl { + url = "https://github.com/openstack/python-keystoneclient/archive/${version}.tar.gz"; + sha256 = "0lijri0xa5fvmynvq148z13kw4xd3bam4zrfd8aj0gb3lnzh9y6v"; + }; + + PBR_VERSION = "${version}"; + + buildInputs = with self; [ + pbr testtools testresources testrepository requests-mock fixtures pkgs.openssl + oslotest pep8 ]; + propagatedBuildInputs = with self; [ + oslo-serialization oslo-config oslo-i18n oslo-utils + Babel argparse prettytable requests2 six iso8601 stevedore + netaddr debtcollector bandit webob mock pycrypto ]; + + patchPhase = '' + sed -i 's@python@${python.interpreter}@' .testr.conf + ''; + doCheck = '' + patchShebangs run_tests.sh + ./run_tests.sh + ''; + + meta = { + homepage = https://github.com/openstack/python-novaclient/; + description = "Client library and command line tool for the OpenStack Nova API"; + license = stdenv.lib.licenses.asl20; + platforms = stdenv.lib.platforms.linux; + }; + }; + + keystonemiddleware = buildPythonPackage rec { + name = "keystonemiddleware-${version}"; + version = "2.4.1"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/k/keystonemiddleware/${name}.tar.gz"; + sha256 = "0avrn1f897rnam9wfdanpdwsmn8is3ncfh3nnzq3d1m31b1yqqr6"; + }; + + buildInputs = with self; [ + fixtures mock pycrypto oslosphinx oslotest stevedore testrepository + testresources testtools bandit requests-mock memcached + pkgs.openssl + ]; + propagatedBuildInputs = with self; [ + pbr Babel oslo-config oslo-context oslo-i18n oslo-serialization oslo-utils + requests2 six webob keystoneclient pycadf oslo-messaging + ]; + + # lots of "unhashable type" errors + doCheck = false; + }; + testscenarios = buildPythonPackage rec { name = "testscenarios-${version}"; version = "0.4"; @@ -14989,17 +16907,57 @@ let }; }; + testrepository = buildPythonPackage rec { + name = "testrepository-${version}"; + version = "0.0.20"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/t/testrepository/${name}.tar.gz"; + sha256 = "1ssqb07c277010i6gzzkbdd46gd9mrj0bi0i8vn560n2k2y4j93m"; + }; + + buildInputs = with self; [ testtools testresources ]; + propagatedBuildInputs = with self; [ pbr subunit fixtures ]; + + checkPhase = '' + ${python.interpreter} ./testr + ''; + + meta = { + description = "A database of test results which can be used as part of developer workflow"; + homepage = https://pypi.python.org/pypi/testrepository; + license = licenses.bsd2; + }; + }; + + testresources = buildPythonPackage rec { + name = "testresources-${version}"; + version = "0.2.7"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/t/testresources/${name}.tar.gz"; + sha256 = "0cbj3plbllyz42c4b5xxgwaa7mml54lakslrn4kkhinxhdri22md"; + }; + + meta = { + description = "Pyunit extension for managing expensive test resources"; + homepage = https://pypi.python.org/pypi/testresources/; + license = licenses.bsd2; + }; + }; testtools = buildPythonPackage rec { name = "testtools-${version}"; - version = "0.9.34"; + version = "1.8.0"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/testtools/${name}.tar.gz"; - sha256 = "0s6sn9h26dif2c9sayf875x622kq8jb2f4qbc6if7gwh2sssgicn"; + sha256 = "15yxz8d70iy1b1x6gd7spvblq0mjxjardl4vnaqasxafzc069zca"; }; - propagatedBuildInputs = with self; [ self.python_mimeparse self.extras lxml ]; + propagatedBuildInputs = with self; [ pbr python_mimeparse extras lxml unittest2 ]; + buildInputs = with self; [ traceback2 ]; + patches = [ ../development/python-modules/testtools_support_unittest2.patch ]; meta = { description = "A set of extensions to the Python standard library's unit testing framework"; @@ -15106,7 +17064,7 @@ let sha256 = "0skzrvhjnnacrz52jml4i050vdx5lfcd3np172srxjaghdgfxg9k"; }; - propagatedBuildInputs = with self; [ six ]; + propagatedBuildInputs = with self; [ six pillow ]; meta = { description = "Quick Response code generation for Python"; @@ -15425,17 +17383,15 @@ let }; unicodecsv = buildPythonPackage rec { - version = "0.12.0"; + version = "0.14.1"; name = "unicodecsv-${version}"; - disabled = isPy3k; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/u/unicodecsv/${name}.tar.gz"; - sha256 = "012yvwza38bq84z9p8xzlxn7bkz0gf5y2nm5js7cyn766cy53dxh"; + sha256 = "1z7pdwkr6lpsa7xbyvaly7pq3akflbnz8gq62829lr28gl1hi301"; }; # ImportError: No module named runtests - #buildInputs = with self; [ unittest2 ]; doCheck = false; meta = { @@ -15446,29 +17402,68 @@ let }; unittest2 = buildPythonPackage rec { - version = "0.5.1"; + version = "1.1.0"; name = "unittest2-${version}"; - src = if python.is_py3k or false - then pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/u/unittest2py3k/unittest2py3k-${version}.tar.gz"; - sha256 = "00yl6lskygcrddx5zspkhr0ibgvpknl4678kkm6s626539grq93q"; - } - else pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/u/unittest2/unittest2-${version}.tar.gz"; - md5 = "a0af5cac92bbbfa0c3b0e99571390e0f"; - }; + src = pkgs.fetchurl { + url = "http://pypi.python.org/packages/source/u/unittest2/unittest2-${version}.tar.gz"; + sha256 = "0y855kmx7a8rnf81d3lh5lyxai1908xjp0laf4glwa4c8472m212"; + }; - preConfigure = '' - sed -i 's/unittest2py3k/unittest2/' setup.py + # # 1.0.0 and up create a circle dependency with traceback2/pbr + doCheck = false; + + # fixes a transient error when collecting tests, see https://bugs.launchpad.net/python-neutronclient/+bug/1508547 + patchPhase = '' + sed -i '510i\ return None, False' unittest2/loader.py ''; + propagatedBuildInputs = with self; [ six argparse traceback2 ]; + meta = { - description = "A backport of the new features added to the unittest testing framework in Python 2.7"; + description = "A backport of the new features added to the unittest testing framework"; homepage = http://pypi.python.org/pypi/unittest2; }; }; + traceback2 = buildPythonPackage rec { + version = "1.4.0"; + name = "traceback2-${version}"; + + src = pkgs.fetchurl { + url = "http://pypi.python.org/packages/source/t/traceback2/traceback2-${version}.tar.gz"; + sha256 = "0c1h3jas1jp1fdbn9z2mrgn3jj0hw1x3yhnkxp7jw34q15xcdb05"; + }; + + propagatedBuildInputs = with self; [ pbr linecache2 ]; + # circular dependencies for tests + doCheck = false; + + meta = { + description = "A backport of traceback to older supported Pythons."; + homepage = https://pypi.python.org/pypi/traceback2/; + }; + }; + + linecache2 = buildPythonPackage rec { + name = "linecache2-${version}"; + version = "1.0.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/l/linecache2/${name}.tar.gz"; + sha256 = "0z79g3ds5wk2lvnqw0y2jpakjf32h95bd9zmnvp7dnqhf57gy9jb"; + }; + + buildInputs = with self; [ pbr ]; + # circular dependencies for tests + doCheck = false; + + meta = with stdenv.lib; { + description = "A backport of linecache to older supported Pythons."; + homepage = "https://github.com/testing-cabal/linecache2"; + }; + }; + upass = buildPythonPackage rec { version = "0.1.4"; name = "upass-${version}"; @@ -15852,12 +17847,12 @@ let websockify = buildPythonPackage rec { - version = "0.3.0"; + version = "0.7.0"; name = "websockify-${version}"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/w/websockify/websockify-${version}.tar.gz"; - md5 = "29b6549d3421907de4bbd881ecc2e1b1"; + sha256 = "1v6pmamjprv2x55fvbdaml26ppxdw8v6xz8p0sav3368ajwwgcqc"; }; propagatedBuildInputs = with self; [ numpy ]; @@ -15896,7 +17891,7 @@ let mock pyquery wsgiproxy2 - paste_deploy + PasteDeploy coverage ]; @@ -15965,18 +17960,19 @@ let wsgiproxy2 = buildPythonPackage rec { - name = "WSGIProxy2-0.1"; + name = "WSGIProxy2-0.4.2"; src = pkgs.fetchurl { - url = "http://pypi.python.org/packages/source/W/WSGIProxy2/${name}.tar.gz"; - md5 = "157049212f1c81a8790efa31146fbabf"; + url = "http://pypi.python.org/packages/source/W/WSGIProxy2/${name}.zip"; + sha256 = "13kf9bdxrc95y9vriaz0viry3ah11nz4rlrykcfvb8nlqpx3dcm4"; }; + # circular dep on webtest + doCheck = false; propagatedBuildInputs = with self; [ six webob ]; meta = { - maintainers = with maintainers; [ garbas iElectric ]; - platforms = platforms.all; + maintainers = with maintainers; [ garbas iElectric ]; }; }; @@ -16062,11 +18058,11 @@ let xray = buildPythonPackage rec { name = "xray-${version}"; - version = "0.6.0"; + version = "0.6.1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/x/xray/${name}.tar.gz"; - sha256 = "c8c4aadb0d39662a81c259bd609f42708ff31c90012a9dd0a1f9ee56a798196f"; + sha256 = "bfbc307203d5433b4da31c210773c8474c237ff97350874b6e436d452fb9dfc8"; }; buildInputs = with self; [nose]; @@ -16731,6 +18727,9 @@ let license = licenses.zpt20; maintainers = with maintainers; [ goibhniu ]; }; + + # Python 3.5 is not yet supported. + disabled = isPy35; }; @@ -16790,12 +18789,13 @@ let cliapp = buildPythonPackage rec { name = "cliapp-${version}"; - version = "1.20140719"; + version = "1.20150305"; disabled = isPy3k; - src = pkgs.fetchurl rec { - url = "http://code.liw.fi/debian/pool/main/p/python-cliapp/python-cliapp_${version}.orig.tar.gz"; - sha256 = "0kxl2q85n4ggvbw2m8crl11x8n637mx6y3a3b5ydw8nhlsiqijgp"; + src = pkgs.fetchgit { + url = "http://git.liw.fi/cgi-bin/cgit/cgit.cgi/cliapp"; + rev = "569df8a5959cd8ef46f78c9497461240a5aa1123"; + sha256 = "882c5daf933e4cf089842995efc721e54361d98f64e0a075e7373b734cd899f3"; }; buildInputs = with self; [ sphinx ]; @@ -16810,19 +18810,6 @@ let }; }; - # Remove tornado 3.x once pythonPackages.thumbor is updated to 5.x - tornado_3 = buildPythonPackage rec { - name = "tornado-3.2.2"; - - propagatedBuildInputs = with self; [ backports_ssl_match_hostname_3_4_0_2 ]; - - src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/t/tornado/${name}.tar.gz"; - sha256 = "13mq6nx98999zql8p2zlg4sj2hr2sxq9w11mqzi7rjfjs0z2sn8i"; - }; - - doCheck = false; - }; tornado = buildPythonPackage rec { name = "tornado-${version}"; version = "4.2.1"; @@ -18013,19 +20000,24 @@ let }; - thumbor = self.buildPythonPackage rec { - name = "thumbor-4.0.4"; + thumbor = buildPythonPackage rec { + name = "thumbor-${version}"; + version = "5.2.1"; + disabled = ! isPy27; + buildInputs = with self; [ statsd nose ]; + propagatedBuildInputs = with self; [ - # Remove pythonPackages.tornado 3.x once thumbor is updated to 5.x - tornado_3 + tornado pycrypto pycurl pillow derpconf python_magic - thumborPexif + # thumborPexif + pexif + libthumbor (pkgs.opencv.override { gtk = null; glib = null; @@ -18033,11 +20025,11 @@ let gstreamer = null; ffmpeg = null; }) - ]; + ] ++ optionals (!isPy3k) [ futures ]; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/thumbor/${name}.tar.gz"; - md5 = "cf639a1cc57ee287b299ace450444408"; + sha256 = "57b0d7e261e792b2e2c53a79c3d8c722964003d1828331995dc3491dc67db7d8"; }; meta = { @@ -18198,10 +20190,10 @@ let version = "1.10"; name = "networkx-${version}"; - # Currently broken on PyPy. + # Currently broken on PyPy. # https://github.com/networkx/networkx/pull/1361 disabled = isPyPy; - + src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/n/networkx/${name}.tar.gz"; sha256 = "ced4095ab83b7451cec1172183eff419ed32e21397ea4e1971d92a5808ed6fb8"; @@ -18500,6 +20492,34 @@ let }; }; + neovim_gui = buildPythonPackage rec { + name = "neovim-gui-${self.neovim.version}"; + disabled = !isPy27; + + src = self.neovim.src; + + propagatedBuildInputs = [ + self.msgpack + self.greenlet + self.trollius + self.click + self.pygobject3 + pkgs.gobjectIntrospection + pkgs.makeWrapper + pkgs.gtk3 + ]; + + patchPhase = '' + sed -i -e "s|entry_points=entry_points,|entry_points=dict(console_scripts=['pynvim=neovim.ui.cli:main [GUI]']),|" setup.py + ''; + + postInstall = '' + wrapProgram $out/bin/pynvim \ + --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ + --prefix PYTHONPATH : "${self.pygobject3}/lib/python2.7/site-packages:$PYTHONPATH" + ''; + }; + ghp-import = buildPythonPackage rec { version = "0.4.1"; name = "ghp-import-${version}"; @@ -18712,9 +20732,11 @@ let src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/suds/suds-0.4.tar.gz"; - md5 = "b7502de662341ed7275b673e6bd73191"; + sha256 = "1w4s9051iv90c0gs73k80c3d51y2wbx1xgfdgg2hk7mv4gjlllnm"; }; + patches = [ ../development/python-modules/suds-0.4-CVE-2013-2217.patch ]; + meta = with stdenv.lib; { description = "Lightweight SOAP client"; homepage = https://fedorahosted.org/suds; @@ -18722,6 +20744,31 @@ let }; }; + suds-jurko = buildPythonPackage rec { + name = "suds-jurko-${version}"; + version = "0.6"; + disabled = isPyPy; # lots of failures + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/s/suds-jurko/${name}.zip"; + sha256 = "1s4radwf38kdh3jrn5acbidqlr66sx786fkwi0rgq61hn4n2bdqw"; + }; + + buildInputs = [ self.pytest ]; + + preBuild = '' + # fails + substituteInPlace tests/test_transport_http.py \ + --replace "test_sending_unicode_data" "noop" + ''; + + meta = with stdenv.lib; { + description = "Lightweight SOAP client (Jurko's fork)"; + homepage = "http://bitbucket.org/jurko/suds"; + }; + }; + + mps-youtube = buildPythonPackage rec { name = "mps-youtube-${version}"; version = "0.2.5"; @@ -18865,6 +20912,21 @@ let }; }; + xlsx2csv = buildPythonPackage rec { + name = "xlsx2csv-${version}"; + version = "0.7.2"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/x/xlsx2csv/${name}.tar.gz"; + md5 = "eea39d8ab08ff4503bb145171d0a46f6"; + }; + meta = { + homepage = https://github.com/bitprophet/alabaster; + description = "convert xlsx to csv"; + license = licenses.bsd3; + maintainers = with maintainers; [ jb55 ]; + }; + }; + xstatic-bootbox = buildPythonPackage rec { name = "XStatic-Bootbox-${version}"; version = "4.3.0.1"; diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index cb09a69136e2..94696f93f620 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -19,8 +19,10 @@ with import ./release-lib.nix { inherit supportedSystems; }; let + lib = pkgs.lib; + jobs = - { tarball = import ./make-tarball.nix { inherit nixpkgs officialRelease; }; + { tarball = import ./make-tarball.nix { inherit pkgs nixpkgs officialRelease; }; manual = import ../../doc; lib-tests = import ../../lib/tests/release.nix { inherit nixpkgs; }; @@ -42,9 +44,18 @@ let jobs.thunderbird.i686-linux jobs.glib-tested.x86_64-linux # standard glib doesn't do checks jobs.glib-tested.i686-linux - ]; + ] ++ lib.collect lib.isDerivation jobs.stdenvBootstrapTools; }; + stdenvBootstrapTools.i686-linux = + { inherit (import ../stdenv/linux/make-bootstrap-tools.nix { system = "i686-linux"; }) dist test; }; + + stdenvBootstrapTools.x86_64-linux = + { inherit (import ../stdenv/linux/make-bootstrap-tools.nix { system = "x86_64-linux"; }) dist test; }; + + stdenvBootstrapTools.x86_64-darwin = + { inherit (import ../stdenv/pure-darwin/make-bootstrap-tools.nix) dist test; }; + } // (mapTestOn ((packagePlatforms pkgs) // rec { abcde = linux;